koyeb

package
v0.0.0-...-e2faa4b Latest Latest
Warning

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

Go to latest
Published: Mar 28, 2024 License: Apache-2.0 Imports: 22 Imported by: 5

README ¶

Go API client for koyeb

The Koyeb API allows you to interact with the Koyeb platform in a simple, programmatic way using conventional HTTP requests.

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: 1.0.0
  • Package version: 1.0.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/oauth2
go get golang.org/x/net/context

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

import koyeb "github.com/koyeb/koyeb-api-client-go/koyeb"

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 sw.ContextServerIndex of type int.

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

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

ctx := context.WithValue(context.Background(), koyeb.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 sw.ContextOperationServerIndices and sw.ContextOperationServerVariables context maps.

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

Documentation for API Endpoints

All URIs are relative to https://app.koyeb.com

Class Method HTTP request Description
ActivityApi GetAccountActivities Get /v1/account/activities
ActivityApi ListActivities Get /v1/activities
ActivityApi ListNotifications Get /v1/notifications
AppsApi CreateApp Post /v1/apps Create App
AppsApi DeleteApp Delete /v1/apps/{id} Delete App
AppsApi GetApp Get /v1/apps/{id} Get App
AppsApi ListAppEvents Get /v1/app_events List App events
AppsApi ListApps Get /v1/apps List App
AppsApi PauseApp Post /v1/apps/{id}/pause Pause App
AppsApi ResumeApp Post /v1/apps/{id}/resume Resume App
AppsApi UpdateApp Put /v1/apps/{id} Update App
AppsApi UpdateApp2 Patch /v1/apps/{id} Update App
BillingApi HasUnpaidInvoices Get /v1/billing/has_unpaid_invoices Experimental: Has unpaid invoices
BillingApi Manage Get /v1/billing/manage
BillingApi NextInvoice Get /v1/billing/next_invoice Experimental: Fetch next invoice
CatalogDatacentersApi ListDatacenters Get /v1/catalog/datacenters List datacenters
CatalogInstancesApi GetCatalogInstance Get /v1/catalog/instances/{id} Get Instance
CatalogInstancesApi ListCatalogInstances Get /v1/catalog/instances List Instance
CatalogRegionsApi GetRegion Get /v1/catalog/regions/{id} Get Region
CatalogRegionsApi ListRegions Get /v1/catalog/regions List Region
CredentialsApi CreateCredential Post /v1/credentials Create credential
CredentialsApi DeleteCredential Delete /v1/credentials/{id} Delete credential
CredentialsApi GetCredential Get /v1/credentials/{id} Get credential
CredentialsApi ListCredentials Get /v1/credentials List credentials
CredentialsApi UpdateCredential Put /v1/credentials/{id} Update credential
CredentialsApi UpdateCredential2 Patch /v1/credentials/{id} Update credential
DeploymentsApi CancelDeployment Post /v1/deployments/{id}/cancel Cancel Deployment
DeploymentsApi GetDeployment Get /v1/deployments/{id} Get Deployment
DeploymentsApi ListDeploymentEvents Get /v1/deployment_events List Deployment events
DeploymentsApi ListDeployments Get /v1/deployments List Deployments
DockerHelperApi VerifyDockerImage Get /v1/docker-helper/verify Verify if a docker image is reachable
DomainsApi CreateDomain Post /v1/domains
DomainsApi DeleteDomain Delete /v1/domains/{id}
DomainsApi GetDomain Get /v1/domains/{id}
DomainsApi ListDomains Get /v1/domains
DomainsApi RefreshDomainStatus Post /v1/domains/{id}/refresh
DomainsApi UpdateDomain Patch /v1/domains/{id}
InstancesApi ExecCommand Get /v1/streams/instances/exec Exec Command
InstancesApi GetInstance Get /v1/instances/{id} Get Instance
InstancesApi ListInstanceEvents Get /v1/instance_events List Instance events
InstancesApi ListInstances Get /v1/instances List Instances
InviteApi CreateInvite Post /v1/account/invite
LogsApi TailLogs Get /v1/streams/logs/tail Tails logs
MetricsApi GetMetrics Get /v1/streams/metrics
OrganizationApi CreateOrganization Post /v1/organizations Create organization
OrganizationApi DeactivateOrganization Post /v1/organizations/{id}/deactivate Deactivate an organization
OrganizationApi DeleteOrganization Delete /v1/organizations/{id} Delete an organization
OrganizationApi GetGithubInstallation Get /v1/github/installation Fetch github installation configuration
OrganizationApi GetOrganization Get /v1/organizations/{id} Get organization
OrganizationApi GithubInstallation Post /v1/github/installation Start github installation
OrganizationApi GithubInstallationCallback Post /v1/github/installation/callback Github callback for app installation
OrganizationApi ReactivateOrganization Post /v1/organizations/{id}/reactivate Reactivate an organization
OrganizationApi SwitchOrganization Post /v1/organizations/{id}/switch Switch organization context
OrganizationApi UpdateOrganization Put /v1/organizations/{id} Update organization
OrganizationApi UpdateOrganization2 Patch /v1/organizations/{id} Update organization
OrganizationApi UpdateOrganizationPlan Post /v1/organizations/{id}/plan Update organization plan
OrganizationApi UpsertSignupQualification Post /v1/organizations/{id}/signup_qualification Upsert organization's signup qualification
OrganizationConfirmationsApi ConfirmOrganizationAction Post /v1/organization_confirmations/{id} Confirm organization action
OrganizationInvitationsApi CreateOrganizationInvitation Post /v1/organization_invitations
OrganizationInvitationsApi DeleteOrganizationInvitation Delete /v1/organization_invitations/{id}
OrganizationInvitationsApi GetOrganizationInvitation Get /v1/organization_invitations/{id}
OrganizationInvitationsApi ListOrganizationInvitations Get /v1/organization_invitations
OrganizationInvitationsApi ResendOrganizationInvitation Post /v1/organization_invitations/{id}/resend
OrganizationMembersApi ListOrganizationMembers Get /v1/organization_members List organization members
OrganizationMembersApi RemoveOrganizationMember Delete /v1/organization_members/{id} Remove an organization member
OrganizationQuotasApi GetQuotas Get /v1/organizations/{organization_id}/quotas
PaymentMethodsApi ConfirmPaymentAuthorization Post /v1/payment_methods/{id}/confirm Confirm payment authorization
PaymentMethodsApi CreatePaymentAuthorization Post /v1/payment_methods Create payment authorization
PaymentMethodsApi DeletePaymentMethod Delete /v1/payment_methods/{id} Delete payment method
PaymentMethodsApi GetPaymentMethod Get /v1/payment_methods/{id} Get payment method
PaymentMethodsApi ListPaymentMethods Get /v1/payment_methods List payment methods
ProfileApi AcceptOrganizationInvitation Post /v1/account/organization_invitations/{id}/accept
ProfileApi DeclineOrganizationInvitation Post /v1/account/organization_invitations/{id}/decline
ProfileApi GetCurrentOrganization Get /v1/account/organization
ProfileApi GetCurrentUser Get /v1/account/profile
ProfileApi GetOAuthOptions Get /v1/account/oauth Get OAuth Providers
ProfileApi GetUserOrganizationInvitation Get /v1/account/organization_invitations/{id}
ProfileApi ListUserOrganizationInvitations Get /v1/account/organization_invitations
ProfileApi OAuthCallback Post /v1/account/oauth Authenticate using OAuth
ProfileApi ResendEmailValidation Post /v1/account/resend_validation
ProfileApi ResetPassword Post /v1/account/reset_password
ProfileApi Signup Post /v1/account/signup
ProfileApi UpdatePassword Post /v1/account/update_password
ProfileApi UpdateUser Put /v1/account/profile
ProfileApi UpdateUser2 Patch /v1/account/profile
ProfileApi Validate Post /v1/account/validate/{id}
QuotasApi ReviewOrganizationCapacity Post /v1/quotas/capacity Review Organization Capacity
RegionalDeploymentsApi GetRegionalDeployment Get /v1/regional_deployments/{id} Experimental: Get regional deployment Use at your own risk
RegionalDeploymentsApi ListRegionalDeploymentEvents Get /v1/regional_deployment_events List Regional Deployment events
RegionalDeploymentsApi ListRegionalDeployments Get /v1/regional_deployments Experimental: List regional deployments Use at your own risk
RepositoriesApi ListBranches Get /v1/git/branches
RepositoriesApi ListRepositories Get /v1/git/repositories
RepositoriesApi ResyncOrganization Post /v1/git/sync/organization/{organization_id}
SearchApi Search Get /v1/search Search
SecretsApi CreateSecret Post /v1/secrets
SecretsApi DeleteSecret Delete /v1/secrets/{id}
SecretsApi GetSecret Get /v1/secrets/{id}
SecretsApi ListSecrets Get /v1/secrets
SecretsApi RevealSecret Post /v1/secrets/{id}/reveal
SecretsApi UpdateSecret Put /v1/secrets/{id}
SecretsApi UpdateSecret2 Patch /v1/secrets/{id}
ServicesApi CreateService Post /v1/services Create Service
ServicesApi DeleteService Delete /v1/services/{id} Delete Service
ServicesApi GetService Get /v1/services/{id} Get Service
ServicesApi ListServiceEvents Get /v1/service_events List Service events
ServicesApi ListServices Get /v1/services List Services
ServicesApi PauseService Post /v1/services/{id}/pause Pause Service
ServicesApi ReDeploy Post /v1/services/{id}/redeploy ReDeploy Service
ServicesApi ResumeService Post /v1/services/{id}/resume Resume Service
ServicesApi UpdateService Put /v1/services/{id} Update Service
ServicesApi UpdateService2 Patch /v1/services/{id} Update Service
SessionsApi Login Post /v1/account/login Login user
SessionsApi Logout Delete /v1/account/logout Logout user
SessionsApi NewSession Post /v1/account/session New session
SessionsApi RefreshToken Put /v1/account/refresh Refresh token
SsoApi CannyAuth Post /v1/sso/canny
SsoApi DiscourseAuth Post /v1/sso/discourse
SubscriptionsApi GetSubscription Get /v1/subscriptions/{id} Get Subscription
SummaryApi GetOrganizationSummary Get /v1/organizations/{organization_id}/summary Get organization usage summary
UsagesApi GetOrganizationUsage Get /v1/usages Get organization usage
UsagesApi GetOrganizationUsageDetails Get /v1/usages/details Get organization usage details
UsersApi DeleteUser Delete /v1/users/{id} Delete user

Documentation For Models

Documentation For Authorization

Bearer
  • 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: Authorization and passed in as the auth context for each request.

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 (
	// ContextOAuth2 takes an oauth2.TokenSource as authentication for the request.
	ContextOAuth2 = contextKey("token")

	// ContextBasicAuth takes BasicAuth as authentication for the request.
	ContextBasicAuth = contextKey("basic")

	// ContextAccessToken takes a string oauth2 access token as authentication for the request.
	ContextAccessToken = contextKey("accesstoken")

	// ContextAPIKeys takes a string apikey as authentication for the request
	ContextAPIKeys = contextKey("apiKeys")

	// ContextHttpSignatureAuth takes HttpSignatureAuth as authentication for the request.
	ContextHttpSignatureAuth = contextKey("httpsignature")

	// 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 AllowedActionEnumValues = []Action{
	"signin",
	"signup",
	"register",
}

All allowed values of Action enum

View Source
var AllowedAppStatusEnumValues = []AppStatus{
	"STARTING",
	"HEALTHY",
	"DEGRADED",
	"UNHEALTHY",
	"DELETING",
	"DELETED",
	"PAUSING",
	"PAUSED",
	"RESUMING",
}

All allowed values of AppStatus enum

View Source
var AllowedCredentialTypeEnumValues = []CredentialType{
	"INVALID",
	"USER",
	"ORGANIZATION",
}

All allowed values of CredentialType enum

View Source
var AllowedDeploymentDefinitionTypeEnumValues = []DeploymentDefinitionType{
	"INVALID",
	"WEB",
	"WORKER",
	"DATABASE",
}

All allowed values of DeploymentDefinitionType enum

View Source
var AllowedDeploymentProvisioningInfoStageStatusEnumValues = []DeploymentProvisioningInfoStageStatus{
	"UNKNOWN",
	"RUNNING",
	"FAILED",
	"COMPLETED",
	"ABORTED",
}

All allowed values of DeploymentProvisioningInfoStageStatus enum

View Source
var AllowedDeploymentStatusEnumValues = []DeploymentStatus{
	"PENDING",
	"PROVISIONING",
	"SCHEDULED",
	"CANCELING",
	"CANCELED",
	"ALLOCATING",
	"STARTING",
	"HEALTHY",
	"DEGRADED",
	"UNHEALTHY",
	"STOPPING",
	"STOPPED",
	"ERRORING",
	"ERROR",
	"STASHED",
}

All allowed values of DeploymentStatus enum

View Source
var AllowedDomainStatusEnumValues = []DomainStatus{
	"PENDING",
	"ACTIVE",
	"ERROR",
	"DELETING",
	"DELETED",
}

All allowed values of DomainStatus enum

View Source
var AllowedDomainTypeEnumValues = []DomainType{
	"AUTOASSIGNED",
	"CUSTOM",
}

All allowed values of DomainType enum

View Source
var AllowedExecCommandRequestIdTypeEnumValues = []ExecCommandRequestIdType{
	"INVALID",
	"INSTANCE_ID",
	"SERVICE_ID",
}

All allowed values of ExecCommandRequestIdType enum

View Source
var AllowedGoogleProtobufNullValueEnumValues = []GoogleProtobufNullValue{
	"NULL_VALUE",
}

All allowed values of GoogleProtobufNullValue enum

View Source
var AllowedInstanceStatusEnumValues = []InstanceStatus{
	"ALLOCATING",
	"STARTING",
	"HEALTHY",
	"UNHEALTHY",
	"STOPPING",
	"STOPPED",
	"ERROR",
	"SLEEPING",
}

All allowed values of InstanceStatus enum

View Source
var AllowedKgitproxyGithubInstallationStatusEnumValues = []KgitproxyGithubInstallationStatus{
	"INVALID",
	"INSTALLED",
	"SUSPENDED",
	"DELETED",
}

All allowed values of KgitproxyGithubInstallationStatus enum

View Source
var AllowedKgitproxyIndexingStatusEnumValues = []KgitproxyIndexingStatus{
	"INVALID_INDEXING_STATUS",
	"NOT_STARTED",
	"IN_PROGRESS",
	"COMPLETED",
}

All allowed values of KgitproxyIndexingStatus enum

View Source
var AllowedKgitproxyRepositoryProviderEnumValues = []KgitproxyRepositoryProvider{
	"INVALID_PROVIDER",
	"GITHUB",
}

All allowed values of KgitproxyRepositoryProvider enum

View Source
var AllowedMetricNameEnumValues = []MetricName{
	"UNKNOWN",
	"CPU_TOTAL_PERCENT",
	"MEM_RSS",
	"HTTP_THROUGHPUT",
	"HTTP_RESPONSE_TIME_50P",
	"HTTP_RESPONSE_TIME_90P",
	"HTTP_RESPONSE_TIME_99P",
	"HTTP_RESPONSE_TIME_MAX",
	"PUBLIC_DATA_TRANSFER_IN",
	"PUBLIC_DATA_TRANSFER_OUT",
}

All allowed values of MetricName enum

View Source
var AllowedOrganizationDeactivationReasonEnumValues = []OrganizationDeactivationReason{
	"INVALID",
	"REQUESTED_BY_OWNER",
	"SUBSCRIPTION_TERMINATION",
	"LOCKED_BY_ADMIN",
	"VERIFICATION_FAILED",
}

All allowed values of OrganizationDeactivationReason enum

View Source
var AllowedOrganizationDetailedStatusEnumValues = []OrganizationDetailedStatus{
	"NEW",
	"EMAIL_NOT_VALIDATED",
	"BILLING_INFO_MISSING",
	"LOCKED",
	"PAYMENT_FAILURE",
	"VALID",
	"PENDING_VERIFICATION",
	"VERIFICATION_FAILED",
	"REVIEWING_ACCOUNT",
	"PLAN_UPGRADE_REQUIRED",
}

All allowed values of OrganizationDetailedStatus enum

View Source
var AllowedOrganizationInvitationStatusEnumValues = []OrganizationInvitationStatus{
	"INVALID",
	"PENDING",
	"ACCEPTED",
	"REFUSED",
	"EXPIRED",
}

All allowed values of OrganizationInvitationStatus enum

View Source
var AllowedOrganizationMemberStatusEnumValues = []OrganizationMemberStatus{
	"INVALID",
	"ACTIVE",
	"DELETED",
}

All allowed values of OrganizationMemberStatus enum

View Source
var AllowedOrganizationStatusEnumValues = []OrganizationStatus{
	"WARNING",
	"LOCKED",
	"ACTIVE",
	"DEACTIVATING",
	"DEACTIVATED",
	"DELETING",
	"DELETED",
}

All allowed values of OrganizationStatus enum

View Source
var AllowedPaymentMethodStatusEnumValues = []PaymentMethodStatus{
	"INVALID",
	"CREATED",
	"AUTHORIZED",
	"DECLINED",
	"CANCELED",
	"EXPIRED",
	"UNCHECKED",
}

All allowed values of PaymentMethodStatus enum

View Source
var AllowedPlanEnumValues = []Plan{
	"hobby",
	"starter",
	"startup",
	"business",
	"enterprise",
	"internal",
	"hobby23",
	"no_plan",
}

All allowed values of Plan enum

View Source
var AllowedRegionalDeploymentDefinitionTypeEnumValues = []RegionalDeploymentDefinitionType{
	"INVALID",
	"WEB",
	"WORKER",
}

All allowed values of RegionalDeploymentDefinitionType enum

View Source
var AllowedRegionalDeploymentStatusEnumValues = []RegionalDeploymentStatus{
	"PENDING",
	"PROVISIONING",
	"SCHEDULED",
	"CANCELING",
	"CANCELED",
	"ALLOCATING",
	"STARTING",
	"HEALTHY",
	"DEGRADED",
	"UNHEALTHY",
	"STOPPING",
	"STOPPED",
	"ERRORING",
	"ERROR",
}

All allowed values of RegionalDeploymentStatus enum

View Source
var AllowedSecretTypeEnumValues = []SecretType{
	"SIMPLE",
	"REGISTRY",
	"MANAGED",
}

All allowed values of SecretType enum

View Source
var AllowedServiceStatusEnumValues = []ServiceStatus{
	"STARTING",
	"HEALTHY",
	"DEGRADED",
	"UNHEALTHY",
	"DELETING",
	"DELETED",
	"PAUSING",
	"PAUSED",
	"RESUMING",
}

All allowed values of ServiceStatus enum

View Source
var AllowedServiceTypeEnumValues = []ServiceType{
	"INVALID_TYPE",
	"WEB",
	"WORKER",
	"DATABASE",
}

All allowed values of ServiceType enum

View Source
var AllowedSubscriptionStatusEnumValues = []SubscriptionStatus{
	"INVALID",
	"CREATED",
	"ACTIVE",
	"WARNING",
	"URGENT",
	"CANCELING",
	"CANCELED",
	"TERMINATING",
	"TERMINATED",
}

All allowed values of SubscriptionStatus enum

View Source
var AllowedTriggerDeploymentMetadataActorTypeEnumValues = []TriggerDeploymentMetadataActorType{
	"UNKNOWN_ACTOR",
	"USER",
	"SYSTEM",
}

All allowed values of TriggerDeploymentMetadataActorType enum

View Source
var AllowedTriggerDeploymentMetadataTriggerTypeEnumValues = []TriggerDeploymentMetadataTriggerType{
	"UNKNOWN_TYPE",
	"GIT",
	"RESUME",
	"DATABASE_SYNC",
}

All allowed values of TriggerDeploymentMetadataTriggerType enum

View Source
var AllowedTriggerGitDeploymentMetadataProviderEnumValues = []TriggerGitDeploymentMetadataProvider{
	"UNKNOWN",
	"GITHUB",
}

All allowed values of TriggerGitDeploymentMetadataProvider enum

View Source
var AllowedUserFlagsEnumValues = []UserFlags{
	"ADMIN",
	"TEST",
	"RESTRICTED",
	"ACTIVE",
	"BETA",
}

All allowed values of UserFlags enum

View Source
var AllowedUserRoleRoleEnumValues = []UserRoleRole{
	"INVALID",
	"OWNER",
}

All allowed values of UserRoleRole enum

View Source
var AllowedVerifyDockerImageReplyErrCodeEnumValues = []VerifyDockerImageReplyErrCode{
	"UNKNOWN",
	"AUTH_ACCESS_DENIED",
	"ANON_ACCESS_DENIED",
	"AUTH_NOT_FOUND",
	"ANON_NOT_FOUND",
	"REGISTRY_ERROR",
	"TIMEOUT",
	"DNS",
	"MALFORMED",
}

All allowed values of VerifyDockerImageReplyErrCode enum

Functions ¶

func CacheExpires ¶

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

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

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 {
	ActivityApi ActivityApi

	AppsApi AppsApi

	BillingApi BillingApi

	CatalogDatacentersApi CatalogDatacentersApi

	CatalogInstancesApi CatalogInstancesApi

	CatalogRegionsApi CatalogRegionsApi

	CredentialsApi CredentialsApi

	DeploymentsApi DeploymentsApi

	DockerHelperApi DockerHelperApi

	DomainsApi DomainsApi

	InstancesApi InstancesApi

	InviteApi InviteApi

	LogsApi LogsApi

	MetricsApi MetricsApi

	OrganizationApi OrganizationApi

	OrganizationConfirmationsApi OrganizationConfirmationsApi

	OrganizationInvitationsApi OrganizationInvitationsApi

	OrganizationMembersApi OrganizationMembersApi

	OrganizationQuotasApi OrganizationQuotasApi

	PaymentMethodsApi PaymentMethodsApi

	ProfileApi ProfileApi

	QuotasApi QuotasApi

	RegionalDeploymentsApi RegionalDeploymentsApi

	RepositoriesApi RepositoriesApi

	SearchApi SearchApi

	SecretsApi SecretsApi

	ServicesApi ServicesApi

	SessionsApi SessionsApi

	SsoApi SsoApi

	SubscriptionsApi SubscriptionsApi

	SummaryApi SummaryApi

	UsagesApi UsagesApi

	UsersApi UsersApi
	// contains filtered or unexported fields
}

APIClient manages communication with the Koyeb Rest API API v1.0.0 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 AcceptOrganizationInvitationReply ¶

type AcceptOrganizationInvitationReply struct {
	Invitation *OrganizationInvitation `json:"invitation,omitempty"`
}

AcceptOrganizationInvitationReply struct for AcceptOrganizationInvitationReply

func NewAcceptOrganizationInvitationReply ¶

func NewAcceptOrganizationInvitationReply() *AcceptOrganizationInvitationReply

NewAcceptOrganizationInvitationReply instantiates a new AcceptOrganizationInvitationReply 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 NewAcceptOrganizationInvitationReplyWithDefaults ¶

func NewAcceptOrganizationInvitationReplyWithDefaults() *AcceptOrganizationInvitationReply

NewAcceptOrganizationInvitationReplyWithDefaults instantiates a new AcceptOrganizationInvitationReply 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 (*AcceptOrganizationInvitationReply) GetInvitation ¶

GetInvitation returns the Invitation field value if set, zero value otherwise.

func (*AcceptOrganizationInvitationReply) GetInvitationOk ¶

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

func (*AcceptOrganizationInvitationReply) HasInvitation ¶

func (o *AcceptOrganizationInvitationReply) HasInvitation() bool

HasInvitation returns a boolean if a field has been set.

func (AcceptOrganizationInvitationReply) MarshalJSON ¶

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

func (*AcceptOrganizationInvitationReply) SetInvitation ¶

SetInvitation gets a reference to the given OrganizationInvitation and assigns it to the Invitation field.

type Action ¶

type Action string

Action the model 'Action'

const (
	ACTION_SIGNIN   Action = "signin"
	ACTION_SIGNUP   Action = "signup"
	ACTION_REGISTER Action = "register"
)

List of Action

func NewActionFromValue ¶

func NewActionFromValue(v string) (*Action, error)

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

func (Action) IsValid ¶

func (v Action) IsValid() bool

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

func (Action) Ptr ¶

func (v Action) Ptr() *Action

Ptr returns reference to Action value

func (*Action) UnmarshalJSON ¶

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

type Activity ¶

type Activity struct {
	Id        *string                `json:"id,omitempty"`
	Actor     *Object                `json:"actor,omitempty"`
	Object    *Object                `json:"object,omitempty"`
	Verb      *string                `json:"verb,omitempty"`
	Metadata  map[string]interface{} `json:"metadata,omitempty"`
	CreatedAt *time.Time             `json:"created_at,omitempty"`
}

Activity struct for Activity

func NewActivity ¶

func NewActivity() *Activity

NewActivity instantiates a new Activity 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 NewActivityWithDefaults ¶

func NewActivityWithDefaults() *Activity

NewActivityWithDefaults instantiates a new Activity 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 (*Activity) GetActor ¶

func (o *Activity) GetActor() Object

GetActor returns the Actor field value if set, zero value otherwise.

func (*Activity) GetActorOk ¶

func (o *Activity) GetActorOk() (*Object, bool)

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

func (*Activity) GetCreatedAt ¶

func (o *Activity) GetCreatedAt() time.Time

GetCreatedAt returns the CreatedAt field value if set, zero value otherwise.

func (*Activity) GetCreatedAtOk ¶

func (o *Activity) GetCreatedAtOk() (*time.Time, bool)

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

func (*Activity) GetId ¶

func (o *Activity) GetId() string

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

func (*Activity) GetIdOk ¶

func (o *Activity) 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 (*Activity) GetMetadata ¶

func (o *Activity) GetMetadata() map[string]interface{}

GetMetadata returns the Metadata field value if set, zero value otherwise.

func (*Activity) GetMetadataOk ¶

func (o *Activity) GetMetadataOk() (map[string]interface{}, bool)

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

func (*Activity) GetObject ¶

func (o *Activity) GetObject() Object

GetObject returns the Object field value if set, zero value otherwise.

func (*Activity) GetObjectOk ¶

func (o *Activity) GetObjectOk() (*Object, bool)

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

func (*Activity) GetVerb ¶

func (o *Activity) GetVerb() string

GetVerb returns the Verb field value if set, zero value otherwise.

func (*Activity) GetVerbOk ¶

func (o *Activity) GetVerbOk() (*string, bool)

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

func (*Activity) HasActor ¶

func (o *Activity) HasActor() bool

HasActor returns a boolean if a field has been set.

func (*Activity) HasCreatedAt ¶

func (o *Activity) HasCreatedAt() bool

HasCreatedAt returns a boolean if a field has been set.

func (*Activity) HasId ¶

func (o *Activity) HasId() bool

HasId returns a boolean if a field has been set.

func (*Activity) HasMetadata ¶

func (o *Activity) HasMetadata() bool

HasMetadata returns a boolean if a field has been set.

func (*Activity) HasObject ¶

func (o *Activity) HasObject() bool

HasObject returns a boolean if a field has been set.

func (*Activity) HasVerb ¶

func (o *Activity) HasVerb() bool

HasVerb returns a boolean if a field has been set.

func (Activity) MarshalJSON ¶

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

func (*Activity) SetActor ¶

func (o *Activity) SetActor(v Object)

SetActor gets a reference to the given Object and assigns it to the Actor field.

func (*Activity) SetCreatedAt ¶

func (o *Activity) SetCreatedAt(v time.Time)

SetCreatedAt gets a reference to the given time.Time and assigns it to the CreatedAt field.

func (*Activity) SetId ¶

func (o *Activity) SetId(v string)

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

func (*Activity) SetMetadata ¶

func (o *Activity) SetMetadata(v map[string]interface{})

SetMetadata gets a reference to the given map[string]interface{} and assigns it to the Metadata field.

func (*Activity) SetObject ¶

func (o *Activity) SetObject(v Object)

SetObject gets a reference to the given Object and assigns it to the Object field.

func (*Activity) SetVerb ¶

func (o *Activity) SetVerb(v string)

SetVerb gets a reference to the given string and assigns it to the Verb field.

type ActivityApi ¶

type ActivityApi interface {

	/*
		GetAccountActivities Method for GetAccountActivities

		@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
		@return ApiGetAccountActivitiesRequest
	*/
	GetAccountActivities(ctx context.Context) ApiGetAccountActivitiesRequest

	// GetAccountActivitiesExecute executes the request
	//  @return ActivityList
	GetAccountActivitiesExecute(r ApiGetAccountActivitiesRequest) (*ActivityList, *http.Response, error)

	/*
		ListActivities Method for ListActivities

		@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
		@return ApiListActivitiesRequest
	*/
	ListActivities(ctx context.Context) ApiListActivitiesRequest

	// ListActivitiesExecute executes the request
	//  @return ActivityList
	ListActivitiesExecute(r ApiListActivitiesRequest) (*ActivityList, *http.Response, error)

	/*
		ListNotifications Method for ListNotifications

		@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
		@return ApiListNotificationsRequest
	*/
	ListNotifications(ctx context.Context) ApiListNotificationsRequest

	// ListNotificationsExecute executes the request
	//  @return NotificationList
	ListNotificationsExecute(r ApiListNotificationsRequest) (*NotificationList, *http.Response, error)
}

type ActivityApiService ¶

type ActivityApiService service

ActivityApiService ActivityApi service

func (*ActivityApiService) GetAccountActivities ¶

GetAccountActivities Method for GetAccountActivities

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@return ApiGetAccountActivitiesRequest

func (*ActivityApiService) GetAccountActivitiesExecute ¶

func (a *ActivityApiService) GetAccountActivitiesExecute(r ApiGetAccountActivitiesRequest) (*ActivityList, *http.Response, error)

Execute executes the request

@return ActivityList

func (*ActivityApiService) ListActivities ¶

ListActivities Method for ListActivities

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@return ApiListActivitiesRequest

func (*ActivityApiService) ListActivitiesExecute ¶

func (a *ActivityApiService) ListActivitiesExecute(r ApiListActivitiesRequest) (*ActivityList, *http.Response, error)

Execute executes the request

@return ActivityList

func (*ActivityApiService) ListNotifications ¶

ListNotifications Method for ListNotifications

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@return ApiListNotificationsRequest

func (*ActivityApiService) ListNotificationsExecute ¶

Execute executes the request

@return NotificationList

type ActivityList ¶

type ActivityList struct {
	Activities []Activity `json:"activities,omitempty"`
	Limit      *int64     `json:"limit,omitempty"`
	Offset     *int64     `json:"offset,omitempty"`
	Count      *int64     `json:"count,omitempty"`
}

ActivityList struct for ActivityList

func NewActivityList ¶

func NewActivityList() *ActivityList

NewActivityList instantiates a new ActivityList 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 NewActivityListWithDefaults ¶

func NewActivityListWithDefaults() *ActivityList

NewActivityListWithDefaults instantiates a new ActivityList 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 (*ActivityList) GetActivities ¶

func (o *ActivityList) GetActivities() []Activity

GetActivities returns the Activities field value if set, zero value otherwise.

func (*ActivityList) GetActivitiesOk ¶

func (o *ActivityList) GetActivitiesOk() ([]Activity, bool)

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

func (*ActivityList) GetCount ¶

func (o *ActivityList) GetCount() int64

GetCount returns the Count field value if set, zero value otherwise.

func (*ActivityList) GetCountOk ¶

func (o *ActivityList) GetCountOk() (*int64, bool)

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

func (*ActivityList) GetLimit ¶

func (o *ActivityList) GetLimit() int64

GetLimit returns the Limit field value if set, zero value otherwise.

func (*ActivityList) GetLimitOk ¶

func (o *ActivityList) GetLimitOk() (*int64, bool)

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

func (*ActivityList) GetOffset ¶

func (o *ActivityList) GetOffset() int64

GetOffset returns the Offset field value if set, zero value otherwise.

func (*ActivityList) GetOffsetOk ¶

func (o *ActivityList) GetOffsetOk() (*int64, bool)

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

func (*ActivityList) HasActivities ¶

func (o *ActivityList) HasActivities() bool

HasActivities returns a boolean if a field has been set.

func (*ActivityList) HasCount ¶

func (o *ActivityList) HasCount() bool

HasCount returns a boolean if a field has been set.

func (*ActivityList) HasLimit ¶

func (o *ActivityList) HasLimit() bool

HasLimit returns a boolean if a field has been set.

func (*ActivityList) HasOffset ¶

func (o *ActivityList) HasOffset() bool

HasOffset returns a boolean if a field has been set.

func (ActivityList) MarshalJSON ¶

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

func (*ActivityList) SetActivities ¶

func (o *ActivityList) SetActivities(v []Activity)

SetActivities gets a reference to the given []Activity and assigns it to the Activities field.

func (*ActivityList) SetCount ¶

func (o *ActivityList) SetCount(v int64)

SetCount gets a reference to the given int64 and assigns it to the Count field.

func (*ActivityList) SetLimit ¶

func (o *ActivityList) SetLimit(v int64)

SetLimit gets a reference to the given int64 and assigns it to the Limit field.

func (*ActivityList) SetOffset ¶

func (o *ActivityList) SetOffset(v int64)

SetOffset gets a reference to the given int64 and assigns it to the Offset field.

type ApiAcceptOrganizationInvitationRequest ¶

type ApiAcceptOrganizationInvitationRequest struct {
	ApiService ProfileApi
	// contains filtered or unexported fields
}

func (ApiAcceptOrganizationInvitationRequest) Body ¶

func (ApiAcceptOrganizationInvitationRequest) Execute ¶

type ApiCancelDeploymentRequest ¶

type ApiCancelDeploymentRequest struct {
	ApiService DeploymentsApi
	// contains filtered or unexported fields
}

func (ApiCancelDeploymentRequest) Execute ¶

func (r ApiCancelDeploymentRequest) Execute() (map[string]interface{}, *http.Response, error)

type ApiCannyAuthRequest ¶

type ApiCannyAuthRequest struct {
	ApiService SsoApi
	// contains filtered or unexported fields
}

func (ApiCannyAuthRequest) Body ¶

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

func (ApiCannyAuthRequest) Execute ¶

type ApiConfirmOrganizationActionRequest ¶

type ApiConfirmOrganizationActionRequest struct {
	ApiService OrganizationConfirmationsApi
	// contains filtered or unexported fields
}

func (ApiConfirmOrganizationActionRequest) Execute ¶

func (r ApiConfirmOrganizationActionRequest) Execute() (map[string]interface{}, *http.Response, error)

type ApiConfirmPaymentAuthorizationRequest ¶

type ApiConfirmPaymentAuthorizationRequest struct {
	ApiService PaymentMethodsApi
	// contains filtered or unexported fields
}

func (ApiConfirmPaymentAuthorizationRequest) Body ¶

func (ApiConfirmPaymentAuthorizationRequest) Execute ¶

type ApiCreateAppRequest ¶

type ApiCreateAppRequest struct {
	ApiService AppsApi
	// contains filtered or unexported fields
}

func (ApiCreateAppRequest) App ¶

func (ApiCreateAppRequest) Execute ¶

type ApiCreateCredentialRequest ¶

type ApiCreateCredentialRequest struct {
	ApiService CredentialsApi
	// contains filtered or unexported fields
}

func (ApiCreateCredentialRequest) Credential ¶

func (ApiCreateCredentialRequest) Execute ¶

type ApiCreateDomainRequest ¶

type ApiCreateDomainRequest struct {
	ApiService DomainsApi
	// contains filtered or unexported fields
}

func (ApiCreateDomainRequest) Domain ¶

func (ApiCreateDomainRequest) Execute ¶

type ApiCreateInviteRequest ¶

type ApiCreateInviteRequest struct {
	ApiService InviteApi
	// contains filtered or unexported fields
}

func (ApiCreateInviteRequest) Body ¶

func (ApiCreateInviteRequest) Execute ¶

func (r ApiCreateInviteRequest) Execute() (map[string]interface{}, *http.Response, error)

type ApiCreateOrganizationInvitationRequest ¶

type ApiCreateOrganizationInvitationRequest struct {
	ApiService OrganizationInvitationsApi
	// contains filtered or unexported fields
}

func (ApiCreateOrganizationInvitationRequest) Execute ¶

type ApiCreateOrganizationRequest ¶

type ApiCreateOrganizationRequest struct {
	ApiService OrganizationApi
	// contains filtered or unexported fields
}

func (ApiCreateOrganizationRequest) Body ¶

func (ApiCreateOrganizationRequest) Execute ¶

type ApiCreatePaymentAuthorizationRequest ¶

type ApiCreatePaymentAuthorizationRequest struct {
	ApiService PaymentMethodsApi
	// contains filtered or unexported fields
}

func (ApiCreatePaymentAuthorizationRequest) Body ¶

func (ApiCreatePaymentAuthorizationRequest) Execute ¶

type ApiCreateSecretRequest ¶

type ApiCreateSecretRequest struct {
	ApiService SecretsApi
	// contains filtered or unexported fields
}

func (ApiCreateSecretRequest) Execute ¶

func (ApiCreateSecretRequest) Secret ¶

type ApiCreateServiceRequest ¶

type ApiCreateServiceRequest struct {
	ApiService ServicesApi
	// contains filtered or unexported fields
}

func (ApiCreateServiceRequest) DryRun ¶

If set only run validation

func (ApiCreateServiceRequest) Execute ¶

func (ApiCreateServiceRequest) Service ¶

type ApiDeactivateOrganizationRequest ¶

type ApiDeactivateOrganizationRequest struct {
	ApiService OrganizationApi
	// contains filtered or unexported fields
}

func (ApiDeactivateOrganizationRequest) Body ¶

func (ApiDeactivateOrganizationRequest) Execute ¶

type ApiDeclineOrganizationInvitationRequest ¶

type ApiDeclineOrganizationInvitationRequest struct {
	ApiService ProfileApi
	// contains filtered or unexported fields
}

func (ApiDeclineOrganizationInvitationRequest) Body ¶

func (ApiDeclineOrganizationInvitationRequest) Execute ¶

type ApiDeleteAppRequest ¶

type ApiDeleteAppRequest struct {
	ApiService AppsApi
	// contains filtered or unexported fields
}

func (ApiDeleteAppRequest) Execute ¶

func (r ApiDeleteAppRequest) Execute() (map[string]interface{}, *http.Response, error)

type ApiDeleteCredentialRequest ¶

type ApiDeleteCredentialRequest struct {
	ApiService CredentialsApi
	// contains filtered or unexported fields
}

func (ApiDeleteCredentialRequest) Execute ¶

func (r ApiDeleteCredentialRequest) Execute() (map[string]interface{}, *http.Response, error)

type ApiDeleteDomainRequest ¶

type ApiDeleteDomainRequest struct {
	ApiService DomainsApi
	// contains filtered or unexported fields
}

func (ApiDeleteDomainRequest) Execute ¶

func (r ApiDeleteDomainRequest) Execute() (map[string]interface{}, *http.Response, error)

type ApiDeleteOrganizationInvitationRequest ¶

type ApiDeleteOrganizationInvitationRequest struct {
	ApiService OrganizationInvitationsApi
	// contains filtered or unexported fields
}

func (ApiDeleteOrganizationInvitationRequest) Execute ¶

func (r ApiDeleteOrganizationInvitationRequest) Execute() (map[string]interface{}, *http.Response, error)

type ApiDeleteOrganizationRequest ¶

type ApiDeleteOrganizationRequest struct {
	ApiService OrganizationApi
	// contains filtered or unexported fields
}

func (ApiDeleteOrganizationRequest) Execute ¶

type ApiDeletePaymentMethodRequest ¶

type ApiDeletePaymentMethodRequest struct {
	ApiService PaymentMethodsApi
	// contains filtered or unexported fields
}

func (ApiDeletePaymentMethodRequest) Execute ¶

func (r ApiDeletePaymentMethodRequest) Execute() (map[string]interface{}, *http.Response, error)

type ApiDeleteSecretRequest ¶

type ApiDeleteSecretRequest struct {
	ApiService SecretsApi
	// contains filtered or unexported fields
}

func (ApiDeleteSecretRequest) Execute ¶

func (r ApiDeleteSecretRequest) Execute() (map[string]interface{}, *http.Response, error)

type ApiDeleteServiceRequest ¶

type ApiDeleteServiceRequest struct {
	ApiService ServicesApi
	// contains filtered or unexported fields
}

func (ApiDeleteServiceRequest) Execute ¶

func (r ApiDeleteServiceRequest) Execute() (map[string]interface{}, *http.Response, error)

type ApiDeleteUserRequest ¶

type ApiDeleteUserRequest struct {
	ApiService UsersApi
	// contains filtered or unexported fields
}

func (ApiDeleteUserRequest) Execute ¶

type ApiDiscourseAuthRequest ¶

type ApiDiscourseAuthRequest struct {
	ApiService SsoApi
	// contains filtered or unexported fields
}

func (ApiDiscourseAuthRequest) Body ¶

func (ApiDiscourseAuthRequest) Execute ¶

type ApiExecCommandRequest ¶

type ApiExecCommandRequest struct {
	ApiService InstancesApi
	// contains filtered or unexported fields
}

func (ApiExecCommandRequest) BodyCommand ¶

func (r ApiExecCommandRequest) BodyCommand(bodyCommand []string) ApiExecCommandRequest

Command to exec. Mandatory in the first frame sent

func (ApiExecCommandRequest) BodyDisableTty ¶

func (r ApiExecCommandRequest) BodyDisableTty(bodyDisableTty bool) ApiExecCommandRequest

Disable TTY. It's enough to specify it in the first frame

func (ApiExecCommandRequest) BodyStdinClose ¶

func (r ApiExecCommandRequest) BodyStdinClose(bodyStdinClose bool) ApiExecCommandRequest

Indicate last data frame

func (ApiExecCommandRequest) BodyStdinData ¶

func (r ApiExecCommandRequest) BodyStdinData(bodyStdinData string) ApiExecCommandRequest

Data is base64 encoded

func (ApiExecCommandRequest) BodyTtySizeHeight ¶

func (r ApiExecCommandRequest) BodyTtySizeHeight(bodyTtySizeHeight int32) ApiExecCommandRequest

func (ApiExecCommandRequest) BodyTtySizeWidth ¶

func (r ApiExecCommandRequest) BodyTtySizeWidth(bodyTtySizeWidth int32) ApiExecCommandRequest

func (ApiExecCommandRequest) Execute ¶

func (ApiExecCommandRequest) Id ¶

ID of the resource to exec on.

func (ApiExecCommandRequest) IdType ¶

When specified, it is used to determine if the kind of resource the id refers to. If missing, defaults to the instance id.

type ApiGetAccountActivitiesRequest ¶

type ApiGetAccountActivitiesRequest struct {
	ApiService ActivityApi
	// contains filtered or unexported fields
}

func (ApiGetAccountActivitiesRequest) Execute ¶

func (ApiGetAccountActivitiesRequest) Limit ¶

func (ApiGetAccountActivitiesRequest) Offset ¶

type ApiGetAppRequest ¶

type ApiGetAppRequest struct {
	ApiService AppsApi
	// contains filtered or unexported fields
}

func (ApiGetAppRequest) Execute ¶

func (r ApiGetAppRequest) Execute() (*GetAppReply, *http.Response, error)

type ApiGetCatalogInstanceRequest ¶

type ApiGetCatalogInstanceRequest struct {
	ApiService CatalogInstancesApi
	// contains filtered or unexported fields
}

func (ApiGetCatalogInstanceRequest) Execute ¶

type ApiGetCredentialRequest ¶

type ApiGetCredentialRequest struct {
	ApiService CredentialsApi
	// contains filtered or unexported fields
}

func (ApiGetCredentialRequest) Execute ¶

type ApiGetCurrentOrganizationRequest ¶

type ApiGetCurrentOrganizationRequest struct {
	ApiService ProfileApi
	// contains filtered or unexported fields
}

func (ApiGetCurrentOrganizationRequest) Execute ¶

type ApiGetCurrentUserRequest ¶

type ApiGetCurrentUserRequest struct {
	ApiService ProfileApi
	// contains filtered or unexported fields
}

func (ApiGetCurrentUserRequest) Execute ¶

type ApiGetDeploymentRequest ¶

type ApiGetDeploymentRequest struct {
	ApiService DeploymentsApi
	// contains filtered or unexported fields
}

func (ApiGetDeploymentRequest) Execute ¶

type ApiGetDomainRequest ¶

type ApiGetDomainRequest struct {
	ApiService DomainsApi
	// contains filtered or unexported fields
}

func (ApiGetDomainRequest) Execute ¶

type ApiGetGithubInstallationRequest ¶

type ApiGetGithubInstallationRequest struct {
	ApiService OrganizationApi
	// contains filtered or unexported fields
}

func (ApiGetGithubInstallationRequest) Execute ¶

type ApiGetInstanceRequest ¶

type ApiGetInstanceRequest struct {
	ApiService InstancesApi
	// contains filtered or unexported fields
}

func (ApiGetInstanceRequest) Execute ¶

type ApiGetMetricsRequest ¶

type ApiGetMetricsRequest struct {
	ApiService MetricsApi
	// contains filtered or unexported fields
}

func (ApiGetMetricsRequest) End ¶

(Optional) Defaults to now.

func (ApiGetMetricsRequest) Execute ¶

func (ApiGetMetricsRequest) InstanceId ¶

func (r ApiGetMetricsRequest) InstanceId(instanceId string) ApiGetMetricsRequest

ID of the instance to query metrics for.

func (ApiGetMetricsRequest) Name ¶

Metric to query.

func (ApiGetMetricsRequest) ServiceId ¶

func (r ApiGetMetricsRequest) ServiceId(serviceId string) ApiGetMetricsRequest

ID of the service to query instances metrics for. Ignored if instance_id is set.

func (ApiGetMetricsRequest) Start ¶

(Optional) Defaults to an hour prior to end.

func (ApiGetMetricsRequest) Step ¶

(Optional) Must be a valid duration in hours (h) or minutes (m). Defaulst to 5m.

type ApiGetOAuthOptionsRequest ¶

type ApiGetOAuthOptionsRequest struct {
	ApiService ProfileApi
	// contains filtered or unexported fields
}

func (ApiGetOAuthOptionsRequest) Action ¶

Which authentication flow is being initiated

func (ApiGetOAuthOptionsRequest) Execute ¶

func (ApiGetOAuthOptionsRequest) Metadata ¶

A small (limited to 400 characters) string of arbitrary metadata which will be encoded in the state

type ApiGetOrganizationInvitationRequest ¶

type ApiGetOrganizationInvitationRequest struct {
	ApiService OrganizationInvitationsApi
	// contains filtered or unexported fields
}

func (ApiGetOrganizationInvitationRequest) Execute ¶

type ApiGetOrganizationRequest ¶

type ApiGetOrganizationRequest struct {
	ApiService OrganizationApi
	// contains filtered or unexported fields
}

func (ApiGetOrganizationRequest) Execute ¶

type ApiGetOrganizationSummaryRequest ¶

type ApiGetOrganizationSummaryRequest struct {
	ApiService SummaryApi
	// contains filtered or unexported fields
}

func (ApiGetOrganizationSummaryRequest) Execute ¶

type ApiGetOrganizationUsageDetailsRequest ¶

type ApiGetOrganizationUsageDetailsRequest struct {
	ApiService UsagesApi
	// contains filtered or unexported fields
}

func (ApiGetOrganizationUsageDetailsRequest) Accept ¶

If defined with the value 'text/csv', a csv file is returned

func (ApiGetOrganizationUsageDetailsRequest) EndingTime ¶

The ending time of the period to get data from

func (ApiGetOrganizationUsageDetailsRequest) Execute ¶

func (ApiGetOrganizationUsageDetailsRequest) Limit ¶

(Optional) The number of items to return

func (ApiGetOrganizationUsageDetailsRequest) Offset ¶

(Optional) The offset in the list of item to return

func (ApiGetOrganizationUsageDetailsRequest) Order ¶

(Optional) Sorts the list in the ascending or the descending order

func (ApiGetOrganizationUsageDetailsRequest) StartingTime ¶

The starting time of the period to get data from

type ApiGetOrganizationUsageRequest ¶

type ApiGetOrganizationUsageRequest struct {
	ApiService UsagesApi
	// contains filtered or unexported fields
}

func (ApiGetOrganizationUsageRequest) EndingTime ¶

The ending time of the period to get data from

func (ApiGetOrganizationUsageRequest) Execute ¶

func (ApiGetOrganizationUsageRequest) StartingTime ¶

The starting time of the period to get data from

type ApiGetPaymentMethodRequest ¶

type ApiGetPaymentMethodRequest struct {
	ApiService PaymentMethodsApi
	// contains filtered or unexported fields
}

func (ApiGetPaymentMethodRequest) Execute ¶

type ApiGetQuotasRequest ¶

type ApiGetQuotasRequest struct {
	ApiService OrganizationQuotasApi
	// contains filtered or unexported fields
}

func (ApiGetQuotasRequest) Execute ¶

type ApiGetRegionRequest ¶

type ApiGetRegionRequest struct {
	ApiService CatalogRegionsApi
	// contains filtered or unexported fields
}

func (ApiGetRegionRequest) Execute ¶

type ApiGetRegionalDeploymentRequest ¶

type ApiGetRegionalDeploymentRequest struct {
	ApiService RegionalDeploymentsApi
	// contains filtered or unexported fields
}

func (ApiGetRegionalDeploymentRequest) Execute ¶

type ApiGetSecretRequest ¶

type ApiGetSecretRequest struct {
	ApiService SecretsApi
	// contains filtered or unexported fields
}

func (ApiGetSecretRequest) Execute ¶

type ApiGetServiceRequest ¶

type ApiGetServiceRequest struct {
	ApiService ServicesApi
	// contains filtered or unexported fields
}

func (ApiGetServiceRequest) Execute ¶

type ApiGetSubscriptionRequest ¶

type ApiGetSubscriptionRequest struct {
	ApiService SubscriptionsApi
	// contains filtered or unexported fields
}

func (ApiGetSubscriptionRequest) Execute ¶

type ApiGetUserOrganizationInvitationRequest ¶

type ApiGetUserOrganizationInvitationRequest struct {
	ApiService ProfileApi
	// contains filtered or unexported fields
}

func (ApiGetUserOrganizationInvitationRequest) Execute ¶

type ApiGithubInstallationCallbackRequest ¶

type ApiGithubInstallationCallbackRequest struct {
	ApiService OrganizationApi
	// contains filtered or unexported fields
}

func (ApiGithubInstallationCallbackRequest) Execute ¶

func (r ApiGithubInstallationCallbackRequest) Execute() (map[string]interface{}, *http.Response, error)

type ApiGithubInstallationRequest ¶

type ApiGithubInstallationRequest struct {
	ApiService OrganizationApi
	// contains filtered or unexported fields
}

func (ApiGithubInstallationRequest) Body ¶

func (ApiGithubInstallationRequest) Execute ¶

type ApiHasUnpaidInvoicesRequest ¶

type ApiHasUnpaidInvoicesRequest struct {
	ApiService BillingApi
	// contains filtered or unexported fields
}

func (ApiHasUnpaidInvoicesRequest) Execute ¶

type ApiListActivitiesRequest ¶

type ApiListActivitiesRequest struct {
	ApiService ActivityApi
	// contains filtered or unexported fields
}

func (ApiListActivitiesRequest) Execute ¶

func (ApiListActivitiesRequest) Limit ¶

func (ApiListActivitiesRequest) Offset ¶

type ApiListAppEventsRequest ¶

type ApiListAppEventsRequest struct {
	ApiService AppsApi
	// contains filtered or unexported fields
}

func (ApiListAppEventsRequest) AppId ¶

(Optional) Filter on app id

func (ApiListAppEventsRequest) Execute ¶

func (ApiListAppEventsRequest) Limit ¶

(Optional) The number of items to return

func (ApiListAppEventsRequest) Offset ¶

(Optional) The offset in the list of item to return

func (ApiListAppEventsRequest) Order ¶

(Optional) Sorts the list in the ascending or the descending order

func (ApiListAppEventsRequest) Types ¶

(Optional) Filter on app event types

type ApiListAppsRequest ¶

type ApiListAppsRequest struct {
	ApiService AppsApi
	// contains filtered or unexported fields
}

func (ApiListAppsRequest) Execute ¶

func (ApiListAppsRequest) Limit ¶

(Optional) The number of items to return

func (ApiListAppsRequest) Name ¶

(Optional) A filter for name

func (ApiListAppsRequest) Offset ¶

func (r ApiListAppsRequest) Offset(offset string) ApiListAppsRequest

(Optional) The offset in the list of item to return

type ApiListBranchesRequest ¶

type ApiListBranchesRequest struct {
	ApiService RepositoriesApi
	// contains filtered or unexported fields
}

func (ApiListBranchesRequest) Execute ¶

func (ApiListBranchesRequest) Limit ¶

(Optional) The number of items to return.

func (ApiListBranchesRequest) Name ¶

(Optional) Filter on branch name using a fuzzy search. Repository filter is required to enable this filter.

func (ApiListBranchesRequest) Offset ¶

(Optional) The offset in the list of item to return.

func (ApiListBranchesRequest) RepositoryId ¶

func (r ApiListBranchesRequest) RepositoryId(repositoryId string) ApiListBranchesRequest

(Optional) Filter on one repository.

type ApiListCatalogInstancesRequest ¶

type ApiListCatalogInstancesRequest struct {
	ApiService CatalogInstancesApi
	// contains filtered or unexported fields
}

func (ApiListCatalogInstancesRequest) Execute ¶

func (ApiListCatalogInstancesRequest) Id ¶

(Optional) A filter for instances

func (ApiListCatalogInstancesRequest) Limit ¶

(Optional) The number of items to return

func (ApiListCatalogInstancesRequest) Offset ¶

(Optional) The offset in the list of item to return

type ApiListCredentialsRequest ¶

type ApiListCredentialsRequest struct {
	ApiService CredentialsApi
	// contains filtered or unexported fields
}

func (ApiListCredentialsRequest) Execute ¶

func (ApiListCredentialsRequest) Limit ¶

(Optional) The number of items to return

func (ApiListCredentialsRequest) Name ¶

(Optional) A filter for name

func (ApiListCredentialsRequest) Offset ¶

(Optional) The offset in the list of item to return

func (ApiListCredentialsRequest) OrganizationId ¶

func (r ApiListCredentialsRequest) OrganizationId(organizationId string) ApiListCredentialsRequest

(Optional) Filter for an organization

func (ApiListCredentialsRequest) Type_ ¶

(Optional) A filter for type

func (ApiListCredentialsRequest) UserId ¶

(Optional) Filter for an user

type ApiListDatacentersRequest ¶

type ApiListDatacentersRequest struct {
	ApiService CatalogDatacentersApi
	// contains filtered or unexported fields
}

func (ApiListDatacentersRequest) Execute ¶

type ApiListDeploymentEventsRequest ¶

type ApiListDeploymentEventsRequest struct {
	ApiService DeploymentsApi
	// contains filtered or unexported fields
}

func (ApiListDeploymentEventsRequest) DeploymentId ¶

(Optional) Filter on deployment id

func (ApiListDeploymentEventsRequest) Execute ¶

func (ApiListDeploymentEventsRequest) Limit ¶

(Optional) The number of items to return

func (ApiListDeploymentEventsRequest) Offset ¶

(Optional) The offset in the list of item to return

func (ApiListDeploymentEventsRequest) Order ¶

(Optional) Sorts the list in the ascending or the descending order

func (ApiListDeploymentEventsRequest) Types ¶

(Optional) Filter on deployment event types

type ApiListDeploymentsRequest ¶

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

func (ApiListDeploymentsRequest) AppId ¶

(Optional) Filter on application id

func (ApiListDeploymentsRequest) Execute ¶

func (ApiListDeploymentsRequest) Limit ¶

(Optional) The number of items to return

func (ApiListDeploymentsRequest) Offset ¶

(Optional) The offset in the list of item to return

func (ApiListDeploymentsRequest) ServiceId ¶

(Optional) Filter on service id

func (ApiListDeploymentsRequest) Statuses ¶

(Optional) Filter on statuses

type ApiListDomainsRequest ¶

type ApiListDomainsRequest struct {
	ApiService DomainsApi
	// contains filtered or unexported fields
}

func (ApiListDomainsRequest) AppIds ¶

(Optional) A filter for apps

func (ApiListDomainsRequest) Execute ¶

func (ApiListDomainsRequest) Limit ¶

(Optional) The number of items to return

func (ApiListDomainsRequest) Name ¶

(Optional) A filter for name

func (ApiListDomainsRequest) Offset ¶

(Optional) The offset in the list of item to return

func (ApiListDomainsRequest) Statuses ¶

func (r ApiListDomainsRequest) Statuses(statuses []string) ApiListDomainsRequest

(Optional) A filter for statuses

func (ApiListDomainsRequest) Types ¶

(Optional) A filter for types - AUTOASSIGNED: Domain like <appName>-<orgName>.koyeb.app

type ApiListInstanceEventsRequest ¶

type ApiListInstanceEventsRequest struct {
	ApiService InstancesApi
	// contains filtered or unexported fields
}

func (ApiListInstanceEventsRequest) Execute ¶

func (ApiListInstanceEventsRequest) InstanceIds ¶

(Optional) Filter on list of instance id

func (ApiListInstanceEventsRequest) Limit ¶

(Optional) The number of items to return

func (ApiListInstanceEventsRequest) Offset ¶

(Optional) The offset in the list of item to return

func (ApiListInstanceEventsRequest) Order ¶

(Optional) Sorts the list in the ascending or the descending order

func (ApiListInstanceEventsRequest) Types ¶

(Optional) Filter on instance event types

type ApiListInstancesRequest ¶

type ApiListInstancesRequest struct {
	ApiService InstancesApi
	// contains filtered or unexported fields
}

func (ApiListInstancesRequest) AllocationId ¶

func (r ApiListInstancesRequest) AllocationId(allocationId string) ApiListInstancesRequest

(Optional) Filter on allocation id

func (ApiListInstancesRequest) AppId ¶

(Optional) Filter on application id

func (ApiListInstancesRequest) DeploymentId ¶

func (r ApiListInstancesRequest) DeploymentId(deploymentId string) ApiListInstancesRequest

(Optional) Filter on deployment id

func (ApiListInstancesRequest) EndingTime ¶

func (r ApiListInstancesRequest) EndingTime(endingTime time.Time) ApiListInstancesRequest

(Optional) The ending time of the period of running instance

func (ApiListInstancesRequest) Execute ¶

func (ApiListInstancesRequest) Limit ¶

(Optional) The number of items to return

func (ApiListInstancesRequest) Offset ¶

(Optional) The offset in the list of item to return

func (ApiListInstancesRequest) Order ¶

(Optional) Sorts the list in the ascending or the descending order

func (ApiListInstancesRequest) RegionalDeploymentId ¶

func (r ApiListInstancesRequest) RegionalDeploymentId(regionalDeploymentId string) ApiListInstancesRequest

(Optional) Filter on regional deployment id

func (ApiListInstancesRequest) ServiceId ¶

(Optional) Filter on service id

func (ApiListInstancesRequest) StartingTime ¶

func (r ApiListInstancesRequest) StartingTime(startingTime time.Time) ApiListInstancesRequest

(Optional) The starting time of the period of running instance

func (ApiListInstancesRequest) Statuses ¶

(Optional) Filter on instance statuses

type ApiListNotificationsRequest ¶

type ApiListNotificationsRequest struct {
	ApiService ActivityApi
	// contains filtered or unexported fields
}

func (ApiListNotificationsRequest) Execute ¶

func (ApiListNotificationsRequest) Limit ¶

func (ApiListNotificationsRequest) MarkRead ¶

func (ApiListNotificationsRequest) MarkSeen ¶

func (ApiListNotificationsRequest) Offset ¶

func (ApiListNotificationsRequest) Unread ¶

func (ApiListNotificationsRequest) Unseen ¶

type ApiListOrganizationInvitationsRequest ¶

type ApiListOrganizationInvitationsRequest struct {
	ApiService OrganizationInvitationsApi
	// contains filtered or unexported fields
}

func (ApiListOrganizationInvitationsRequest) Execute ¶

func (ApiListOrganizationInvitationsRequest) Limit ¶

(Optional) The number of items to return

func (ApiListOrganizationInvitationsRequest) Offset ¶

(Optional) The offset in the list of item to return

func (ApiListOrganizationInvitationsRequest) Statuses ¶

(Optional) Filter on organization invitation statuses

func (ApiListOrganizationInvitationsRequest) UserId ¶

(Optional) Filter on invitee ID. Will match both invitations sent to that user_id and invitations sent to the email of that user_id. The only valid value is the requester's user_id

type ApiListOrganizationMembersRequest ¶

type ApiListOrganizationMembersRequest struct {
	ApiService OrganizationMembersApi
	// contains filtered or unexported fields
}

func (ApiListOrganizationMembersRequest) Execute ¶

func (ApiListOrganizationMembersRequest) Limit ¶

(Optional) The number of items to return

func (ApiListOrganizationMembersRequest) Offset ¶

(Optional) The offset in the list of item to return

func (ApiListOrganizationMembersRequest) OrganizationId ¶

(Optional) Filter for an organization

func (ApiListOrganizationMembersRequest) UserId ¶

(Optional) Filter for an user

type ApiListPaymentMethodsRequest ¶

type ApiListPaymentMethodsRequest struct {
	ApiService PaymentMethodsApi
	// contains filtered or unexported fields
}

func (ApiListPaymentMethodsRequest) Execute ¶

func (ApiListPaymentMethodsRequest) Limit ¶

(Optional) The number of items to return

func (ApiListPaymentMethodsRequest) Offset ¶

(Optional) The offset in the list of item to return

func (ApiListPaymentMethodsRequest) Statuses ¶

(Optional) Filter on payment method statuses

type ApiListRegionalDeploymentEventsRequest ¶

type ApiListRegionalDeploymentEventsRequest struct {
	ApiService RegionalDeploymentsApi
	// contains filtered or unexported fields
}

func (ApiListRegionalDeploymentEventsRequest) Execute ¶

func (ApiListRegionalDeploymentEventsRequest) Limit ¶

(Optional) The number of items to return

func (ApiListRegionalDeploymentEventsRequest) Offset ¶

(Optional) The offset in the list of item to return

func (ApiListRegionalDeploymentEventsRequest) Order ¶

(Optional) Sorts the list in the ascending or the descending order

func (ApiListRegionalDeploymentEventsRequest) RegionalDeploymentId ¶

func (r ApiListRegionalDeploymentEventsRequest) RegionalDeploymentId(regionalDeploymentId string) ApiListRegionalDeploymentEventsRequest

(Optional) Filter on regional deployment id

func (ApiListRegionalDeploymentEventsRequest) Types ¶

(Optional) Filter on regional deployment event types

type ApiListRegionalDeploymentsRequest ¶

type ApiListRegionalDeploymentsRequest struct {
	ApiService RegionalDeploymentsApi
	// contains filtered or unexported fields
}

func (ApiListRegionalDeploymentsRequest) DeploymentId ¶

(Optional) Filter on deployment id

func (ApiListRegionalDeploymentsRequest) Execute ¶

func (ApiListRegionalDeploymentsRequest) Limit ¶

(Optional) The number of items to return

func (ApiListRegionalDeploymentsRequest) Offset ¶

(Optional) The offset in the list of item to return

type ApiListRegionsRequest ¶

type ApiListRegionsRequest struct {
	ApiService CatalogRegionsApi
	// contains filtered or unexported fields
}

func (ApiListRegionsRequest) Execute ¶

func (ApiListRegionsRequest) Id ¶

(Optional) A filter for regions

func (ApiListRegionsRequest) Limit ¶

(Optional) The number of items to return

func (ApiListRegionsRequest) Offset ¶

(Optional) The offset in the list of item to return

type ApiListRepositoriesRequest ¶

type ApiListRepositoriesRequest struct {
	ApiService RepositoriesApi
	// contains filtered or unexported fields
}

func (ApiListRepositoriesRequest) Execute ¶

func (ApiListRepositoriesRequest) Limit ¶

(Optional) The number of items to return.

func (ApiListRepositoriesRequest) Name ¶

(Optional) Filter on repository name using a fuzzy search.

func (ApiListRepositoriesRequest) NameSearchOp ¶

func (r ApiListRepositoriesRequest) NameSearchOp(nameSearchOp string) ApiListRepositoriesRequest

(Optional) Define search operation for repository name. Accept either \"fuzzy\" or \"equality\", use \"fuzzy\" by default.

func (ApiListRepositoriesRequest) Offset ¶

(Optional) The offset in the list of item to return.

type ApiListSecretsRequest ¶

type ApiListSecretsRequest struct {
	ApiService SecretsApi
	// contains filtered or unexported fields
}

func (ApiListSecretsRequest) Execute ¶

func (ApiListSecretsRequest) Limit ¶

func (ApiListSecretsRequest) Name ¶

func (ApiListSecretsRequest) Offset ¶

func (ApiListSecretsRequest) Types ¶

Filter by secret types

type ApiListServiceEventsRequest ¶

type ApiListServiceEventsRequest struct {
	ApiService ServicesApi
	// contains filtered or unexported fields
}

func (ApiListServiceEventsRequest) Execute ¶

func (ApiListServiceEventsRequest) Limit ¶

(Optional) The number of items to return

func (ApiListServiceEventsRequest) Offset ¶

(Optional) The offset in the list of item to return

func (ApiListServiceEventsRequest) Order ¶

(Optional) Sorts the list in the ascending or the descending order

func (ApiListServiceEventsRequest) ServiceId ¶

(Optional) Filter on service id

func (ApiListServiceEventsRequest) Types ¶

(Optional) Filter on service event types

type ApiListServicesRequest ¶

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

func (ApiListServicesRequest) AppId ¶

(Optional) The id of the app

func (ApiListServicesRequest) Execute ¶

func (ApiListServicesRequest) Limit ¶

(Optional) The number of items to return

func (ApiListServicesRequest) Name ¶

(Optional) A filter for name

func (ApiListServicesRequest) Offset ¶

(Optional) The offset in the list of item to return

func (ApiListServicesRequest) Types ¶

(Optional) Filter on service types

type ApiListUserOrganizationInvitationsRequest ¶

type ApiListUserOrganizationInvitationsRequest struct {
	ApiService ProfileApi
	// contains filtered or unexported fields
}

func (ApiListUserOrganizationInvitationsRequest) Execute ¶

func (ApiListUserOrganizationInvitationsRequest) Limit ¶

(Optional) The number of items to return

func (ApiListUserOrganizationInvitationsRequest) Offset ¶

(Optional) The offset in the list of item to return

func (ApiListUserOrganizationInvitationsRequest) Statuses ¶

(Optional) Filter on organization invitation statuses

type ApiLoginRequest ¶

type ApiLoginRequest struct {
	ApiService SessionsApi
	// contains filtered or unexported fields
}

func (ApiLoginRequest) Body ¶

func (ApiLoginRequest) Execute ¶

func (r ApiLoginRequest) Execute() (*LoginReply, *http.Response, error)

func (ApiLoginRequest) SeonFp ¶

func (r ApiLoginRequest) SeonFp(seonFp string) ApiLoginRequest

Seon Fingerprint

type ApiLogoutRequest ¶

type ApiLogoutRequest struct {
	ApiService SessionsApi
	// contains filtered or unexported fields
}

func (ApiLogoutRequest) Execute ¶

func (r ApiLogoutRequest) Execute() (map[string]interface{}, *http.Response, error)

type ApiManageRequest ¶

type ApiManageRequest struct {
	ApiService BillingApi
	// contains filtered or unexported fields
}

func (ApiManageRequest) Execute ¶

func (r ApiManageRequest) Execute() (*ManageReply, *http.Response, error)

type ApiNewSessionRequest ¶

type ApiNewSessionRequest struct {
	ApiService SessionsApi
	// contains filtered or unexported fields
}

func (ApiNewSessionRequest) Execute ¶

type ApiNextInvoiceRequest ¶

type ApiNextInvoiceRequest struct {
	ApiService BillingApi
	// contains filtered or unexported fields
}

func (ApiNextInvoiceRequest) Execute ¶

type ApiOAuthCallbackRequest ¶

type ApiOAuthCallbackRequest struct {
	ApiService ProfileApi
	// contains filtered or unexported fields
}

func (ApiOAuthCallbackRequest) Body ¶

func (ApiOAuthCallbackRequest) Execute ¶

func (ApiOAuthCallbackRequest) SeonFp ¶

Seon Fingerprint

type ApiPauseAppRequest ¶

type ApiPauseAppRequest struct {
	ApiService AppsApi
	// contains filtered or unexported fields
}

func (ApiPauseAppRequest) Execute ¶

func (r ApiPauseAppRequest) Execute() (map[string]interface{}, *http.Response, error)

type ApiPauseServiceRequest ¶

type ApiPauseServiceRequest struct {
	ApiService ServicesApi
	// contains filtered or unexported fields
}

func (ApiPauseServiceRequest) Execute ¶

func (r ApiPauseServiceRequest) Execute() (map[string]interface{}, *http.Response, error)

type ApiReDeployRequest ¶

type ApiReDeployRequest struct {
	ApiService ServicesApi
	// contains filtered or unexported fields
}

func (ApiReDeployRequest) Execute ¶

func (ApiReDeployRequest) Info ¶

type ApiReactivateOrganizationRequest ¶

type ApiReactivateOrganizationRequest struct {
	ApiService OrganizationApi
	// contains filtered or unexported fields
}

func (ApiReactivateOrganizationRequest) Body ¶

func (ApiReactivateOrganizationRequest) Execute ¶

type ApiRefreshDomainStatusRequest ¶

type ApiRefreshDomainStatusRequest struct {
	ApiService DomainsApi
	// contains filtered or unexported fields
}

func (ApiRefreshDomainStatusRequest) Execute ¶

func (r ApiRefreshDomainStatusRequest) Execute() (map[string]interface{}, *http.Response, error)

type ApiRefreshTokenRequest ¶

type ApiRefreshTokenRequest struct {
	ApiService SessionsApi
	// contains filtered or unexported fields
}

func (ApiRefreshTokenRequest) Execute ¶

type ApiRemoveOrganizationMemberRequest ¶

type ApiRemoveOrganizationMemberRequest struct {
	ApiService OrganizationMembersApi
	// contains filtered or unexported fields
}

func (ApiRemoveOrganizationMemberRequest) Execute ¶

type ApiResendEmailValidationRequest ¶

type ApiResendEmailValidationRequest struct {
	ApiService ProfileApi
	// contains filtered or unexported fields
}

func (ApiResendEmailValidationRequest) Body ¶

func (ApiResendEmailValidationRequest) Execute ¶

func (r ApiResendEmailValidationRequest) Execute() (map[string]interface{}, *http.Response, error)

type ApiResendOrganizationInvitationRequest ¶

type ApiResendOrganizationInvitationRequest struct {
	ApiService OrganizationInvitationsApi
	// contains filtered or unexported fields
}

func (ApiResendOrganizationInvitationRequest) Body ¶

func (ApiResendOrganizationInvitationRequest) Execute ¶

type ApiResetPasswordRequest ¶

type ApiResetPasswordRequest struct {
	ApiService ProfileApi
	// contains filtered or unexported fields
}

func (ApiResetPasswordRequest) Body ¶

func (ApiResetPasswordRequest) Execute ¶

func (r ApiResetPasswordRequest) Execute() (map[string]interface{}, *http.Response, error)

type ApiResumeAppRequest ¶

type ApiResumeAppRequest struct {
	ApiService AppsApi
	// contains filtered or unexported fields
}

func (ApiResumeAppRequest) Execute ¶

func (r ApiResumeAppRequest) Execute() (map[string]interface{}, *http.Response, error)

type ApiResumeServiceRequest ¶

type ApiResumeServiceRequest struct {
	ApiService ServicesApi
	// contains filtered or unexported fields
}

func (ApiResumeServiceRequest) Execute ¶

func (r ApiResumeServiceRequest) Execute() (map[string]interface{}, *http.Response, error)

type ApiResyncOrganizationRequest ¶

type ApiResyncOrganizationRequest struct {
	ApiService RepositoriesApi
	// contains filtered or unexported fields
}

func (ApiResyncOrganizationRequest) Execute ¶

func (r ApiResyncOrganizationRequest) Execute() (map[string]interface{}, *http.Response, error)

type ApiRevealSecretRequest ¶

type ApiRevealSecretRequest struct {
	ApiService SecretsApi
	// contains filtered or unexported fields
}

func (ApiRevealSecretRequest) Body ¶

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

func (ApiRevealSecretRequest) Execute ¶

type ApiReviewOrganizationCapacityRequest ¶

type ApiReviewOrganizationCapacityRequest struct {
	ApiService QuotasApi
	// contains filtered or unexported fields
}

func (ApiReviewOrganizationCapacityRequest) Execute ¶

type ApiSearchRequest ¶

type ApiSearchRequest struct {
	ApiService SearchApi
	// contains filtered or unexported fields
}

func (ApiSearchRequest) Execute ¶

func (ApiSearchRequest) Query ¶

func (r ApiSearchRequest) Query(query string) ApiSearchRequest

(Optional) Search query

type ApiSignupRequest ¶

type ApiSignupRequest struct {
	ApiService ProfileApi
	// contains filtered or unexported fields
}

func (ApiSignupRequest) Body ¶

Create new account

func (ApiSignupRequest) Execute ¶

func (r ApiSignupRequest) Execute() (*LoginReply, *http.Response, error)

func (ApiSignupRequest) SeonFp ¶

func (r ApiSignupRequest) SeonFp(seonFp string) ApiSignupRequest

Seon Fingerprint

type ApiSwitchOrganizationRequest ¶

type ApiSwitchOrganizationRequest struct {
	ApiService OrganizationApi
	// contains filtered or unexported fields
}

func (ApiSwitchOrganizationRequest) Body ¶

func (ApiSwitchOrganizationRequest) Execute ¶

func (ApiSwitchOrganizationRequest) SeonFp ¶

Seon Fingerprint

type ApiTailLogsRequest ¶

type ApiTailLogsRequest struct {
	ApiService LogsApi
	// contains filtered or unexported fields
}

func (ApiTailLogsRequest) AppId ¶

func (ApiTailLogsRequest) DeploymentId ¶

func (r ApiTailLogsRequest) DeploymentId(deploymentId string) ApiTailLogsRequest

func (ApiTailLogsRequest) Execute ¶

func (ApiTailLogsRequest) InstanceId ¶

func (r ApiTailLogsRequest) InstanceId(instanceId string) ApiTailLogsRequest

func (ApiTailLogsRequest) Limit ¶

func (ApiTailLogsRequest) RegionalDeploymentId ¶

func (r ApiTailLogsRequest) RegionalDeploymentId(regionalDeploymentId string) ApiTailLogsRequest

func (ApiTailLogsRequest) ServiceId ¶

func (r ApiTailLogsRequest) ServiceId(serviceId string) ApiTailLogsRequest

func (ApiTailLogsRequest) Start ¶

func (ApiTailLogsRequest) Stream ¶

func (r ApiTailLogsRequest) Stream(stream string) ApiTailLogsRequest

func (ApiTailLogsRequest) Type_ ¶

type ApiUpdateApp2Request ¶

type ApiUpdateApp2Request struct {
	ApiService AppsApi
	// contains filtered or unexported fields
}

func (ApiUpdateApp2Request) App ¶

func (ApiUpdateApp2Request) Execute ¶

func (ApiUpdateApp2Request) UpdateMask ¶

func (r ApiUpdateApp2Request) UpdateMask(updateMask string) ApiUpdateApp2Request

type ApiUpdateAppRequest ¶

type ApiUpdateAppRequest struct {
	ApiService AppsApi
	// contains filtered or unexported fields
}

func (ApiUpdateAppRequest) AppName ¶

func (r ApiUpdateAppRequest) AppName(appName string) ApiUpdateAppRequest

func (ApiUpdateAppRequest) Execute ¶

func (ApiUpdateAppRequest) UpdateMask ¶

func (r ApiUpdateAppRequest) UpdateMask(updateMask string) ApiUpdateAppRequest

type ApiUpdateCredential2Request ¶

type ApiUpdateCredential2Request struct {
	ApiService CredentialsApi
	// contains filtered or unexported fields
}

func (ApiUpdateCredential2Request) Credential ¶

func (ApiUpdateCredential2Request) Execute ¶

func (ApiUpdateCredential2Request) UpdateMask ¶

type ApiUpdateCredentialRequest ¶

type ApiUpdateCredentialRequest struct {
	ApiService CredentialsApi
	// contains filtered or unexported fields
}

func (ApiUpdateCredentialRequest) Credential ¶

func (ApiUpdateCredentialRequest) Execute ¶

func (ApiUpdateCredentialRequest) UpdateMask ¶

type ApiUpdateDomainRequest ¶

type ApiUpdateDomainRequest struct {
	ApiService DomainsApi
	// contains filtered or unexported fields
}

func (ApiUpdateDomainRequest) Domain ¶

func (ApiUpdateDomainRequest) Execute ¶

func (ApiUpdateDomainRequest) UpdateMask ¶

func (r ApiUpdateDomainRequest) UpdateMask(updateMask string) ApiUpdateDomainRequest

type ApiUpdateOrganization2Request ¶

type ApiUpdateOrganization2Request struct {
	ApiService OrganizationApi
	// contains filtered or unexported fields
}

func (ApiUpdateOrganization2Request) Execute ¶

func (ApiUpdateOrganization2Request) Organization ¶

func (ApiUpdateOrganization2Request) UpdateMask ¶

type ApiUpdateOrganizationPlanRequest ¶

type ApiUpdateOrganizationPlanRequest struct {
	ApiService OrganizationApi
	// contains filtered or unexported fields
}

func (ApiUpdateOrganizationPlanRequest) Execute ¶

type ApiUpdateOrganizationRequest ¶

type ApiUpdateOrganizationRequest struct {
	ApiService OrganizationApi
	// contains filtered or unexported fields
}

func (ApiUpdateOrganizationRequest) Execute ¶

func (ApiUpdateOrganizationRequest) Organization ¶

func (ApiUpdateOrganizationRequest) UpdateMask ¶

type ApiUpdatePasswordRequest ¶

type ApiUpdatePasswordRequest struct {
	ApiService ProfileApi
	// contains filtered or unexported fields
}

func (ApiUpdatePasswordRequest) Body ¶

func (ApiUpdatePasswordRequest) Execute ¶

func (ApiUpdatePasswordRequest) SeonFp ¶

Seon Fingerprint

type ApiUpdateSecret2Request ¶

type ApiUpdateSecret2Request struct {
	ApiService SecretsApi
	// contains filtered or unexported fields
}

func (ApiUpdateSecret2Request) Execute ¶

func (ApiUpdateSecret2Request) Secret ¶

func (ApiUpdateSecret2Request) UpdateMask ¶

func (r ApiUpdateSecret2Request) UpdateMask(updateMask string) ApiUpdateSecret2Request

type ApiUpdateSecretRequest ¶

type ApiUpdateSecretRequest struct {
	ApiService SecretsApi
	// contains filtered or unexported fields
}

func (ApiUpdateSecretRequest) Execute ¶

func (ApiUpdateSecretRequest) Secret ¶

func (ApiUpdateSecretRequest) UpdateMask ¶

func (r ApiUpdateSecretRequest) UpdateMask(updateMask string) ApiUpdateSecretRequest

type ApiUpdateService2Request ¶

type ApiUpdateService2Request struct {
	ApiService ServicesApi
	// contains filtered or unexported fields
}

func (ApiUpdateService2Request) DryRun ¶

If set, run validation and check that the service exists

func (ApiUpdateService2Request) Execute ¶

func (ApiUpdateService2Request) Service ¶

type ApiUpdateServiceRequest ¶

type ApiUpdateServiceRequest struct {
	ApiService ServicesApi
	// contains filtered or unexported fields
}

func (ApiUpdateServiceRequest) DryRun ¶

If set, run validation and check that the service exists

func (ApiUpdateServiceRequest) Execute ¶

func (ApiUpdateServiceRequest) Service ¶

type ApiUpdateUser2Request ¶

type ApiUpdateUser2Request struct {
	ApiService ProfileApi
	// contains filtered or unexported fields
}

func (ApiUpdateUser2Request) Execute ¶

func (ApiUpdateUser2Request) UpdateMask ¶

func (r ApiUpdateUser2Request) UpdateMask(updateMask string) ApiUpdateUser2Request

func (ApiUpdateUser2Request) User ¶

type ApiUpdateUserRequest ¶

type ApiUpdateUserRequest struct {
	ApiService ProfileApi
	// contains filtered or unexported fields
}

func (ApiUpdateUserRequest) Execute ¶

func (r ApiUpdateUserRequest) Execute() (*UserReply, *http.Response, error)

func (ApiUpdateUserRequest) UpdateMask ¶

func (r ApiUpdateUserRequest) UpdateMask(updateMask string) ApiUpdateUserRequest

func (ApiUpdateUserRequest) User ¶

type ApiUpsertSignupQualificationRequest ¶

type ApiUpsertSignupQualificationRequest struct {
	ApiService OrganizationApi
	// contains filtered or unexported fields
}

func (ApiUpsertSignupQualificationRequest) Execute ¶

type ApiValidateRequest ¶

type ApiValidateRequest struct {
	ApiService ProfileApi
	// contains filtered or unexported fields
}

func (ApiValidateRequest) Execute ¶

func (r ApiValidateRequest) Execute() (*LoginReply, *http.Response, error)

func (ApiValidateRequest) SeonFp ¶

func (r ApiValidateRequest) SeonFp(seonFp string) ApiValidateRequest

Seon Fingerprint

type ApiVerifyDockerImageRequest ¶

type ApiVerifyDockerImageRequest struct {
	ApiService DockerHelperApi
	// contains filtered or unexported fields
}

func (ApiVerifyDockerImageRequest) Execute ¶

func (ApiVerifyDockerImageRequest) Image ¶

The full image uri to be verified

func (ApiVerifyDockerImageRequest) SecretId ¶

(Optional) the id of the secret to use to authenticate to the registry

type App ¶

type App struct {
	Id             *string    `json:"id,omitempty"`
	Name           *string    `json:"name,omitempty"`
	OrganizationId *string    `json:"organization_id,omitempty"`
	CreatedAt      *time.Time `json:"created_at,omitempty"`
	UpdatedAt      *time.Time `json:"updated_at,omitempty"`
	StartedAt      *time.Time `json:"started_at,omitempty"`
	SucceededAt    *time.Time `json:"succeeded_at,omitempty"`
	PausedAt       *time.Time `json:"paused_at,omitempty"`
	ResumedAt      *time.Time `json:"resumed_at,omitempty"`
	TerminatedAt   *time.Time `json:"terminated_at,omitempty"`
	Status         *AppStatus `json:"status,omitempty"`
	Messages       []string   `json:"messages,omitempty"`
	Version        *string    `json:"version,omitempty"`
	Domains        []Domain   `json:"domains,omitempty"`
}

App struct for App

func NewApp ¶

func NewApp() *App

NewApp instantiates a new App 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 NewAppWithDefaults ¶

func NewAppWithDefaults() *App

NewAppWithDefaults instantiates a new App 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 (*App) GetCreatedAt ¶

func (o *App) GetCreatedAt() time.Time

GetCreatedAt returns the CreatedAt field value if set, zero value otherwise.

func (*App) GetCreatedAtOk ¶

func (o *App) GetCreatedAtOk() (*time.Time, bool)

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

func (*App) GetDomains ¶

func (o *App) GetDomains() []Domain

GetDomains returns the Domains field value if set, zero value otherwise.

func (*App) GetDomainsOk ¶

func (o *App) GetDomainsOk() ([]Domain, bool)

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

func (*App) GetId ¶

func (o *App) GetId() string

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

func (*App) GetIdOk ¶

func (o *App) 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 (*App) GetMessages ¶

func (o *App) GetMessages() []string

GetMessages returns the Messages field value if set, zero value otherwise.

func (*App) GetMessagesOk ¶

func (o *App) GetMessagesOk() ([]string, bool)

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

func (*App) GetName ¶

func (o *App) GetName() string

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

func (*App) GetNameOk ¶

func (o *App) 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 (*App) GetOrganizationId ¶

func (o *App) GetOrganizationId() string

GetOrganizationId returns the OrganizationId field value if set, zero value otherwise.

func (*App) GetOrganizationIdOk ¶

func (o *App) GetOrganizationIdOk() (*string, bool)

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

func (*App) GetPausedAt ¶

func (o *App) GetPausedAt() time.Time

GetPausedAt returns the PausedAt field value if set, zero value otherwise.

func (*App) GetPausedAtOk ¶

func (o *App) GetPausedAtOk() (*time.Time, bool)

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

func (*App) GetResumedAt ¶

func (o *App) GetResumedAt() time.Time

GetResumedAt returns the ResumedAt field value if set, zero value otherwise.

func (*App) GetResumedAtOk ¶

func (o *App) GetResumedAtOk() (*time.Time, bool)

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

func (*App) GetStartedAt ¶

func (o *App) GetStartedAt() time.Time

GetStartedAt returns the StartedAt field value if set, zero value otherwise.

func (*App) GetStartedAtOk ¶

func (o *App) GetStartedAtOk() (*time.Time, bool)

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

func (*App) GetStatus ¶

func (o *App) GetStatus() AppStatus

GetStatus returns the Status field value if set, zero value otherwise.

func (*App) GetStatusOk ¶

func (o *App) GetStatusOk() (*AppStatus, 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 (*App) GetSucceededAt ¶

func (o *App) GetSucceededAt() time.Time

GetSucceededAt returns the SucceededAt field value if set, zero value otherwise.

func (*App) GetSucceededAtOk ¶

func (o *App) GetSucceededAtOk() (*time.Time, bool)

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

func (*App) GetTerminatedAt ¶

func (o *App) GetTerminatedAt() time.Time

GetTerminatedAt returns the TerminatedAt field value if set, zero value otherwise.

func (*App) GetTerminatedAtOk ¶

func (o *App) GetTerminatedAtOk() (*time.Time, bool)

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

func (*App) GetUpdatedAt ¶

func (o *App) GetUpdatedAt() time.Time

GetUpdatedAt returns the UpdatedAt field value if set, zero value otherwise.

func (*App) GetUpdatedAtOk ¶

func (o *App) GetUpdatedAtOk() (*time.Time, bool)

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

func (*App) GetVersion ¶

func (o *App) GetVersion() string

GetVersion returns the Version field value if set, zero value otherwise.

func (*App) GetVersionOk ¶

func (o *App) GetVersionOk() (*string, bool)

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

func (*App) HasCreatedAt ¶

func (o *App) HasCreatedAt() bool

HasCreatedAt returns a boolean if a field has been set.

func (*App) HasDomains ¶

func (o *App) HasDomains() bool

HasDomains returns a boolean if a field has been set.

func (*App) HasId ¶

func (o *App) HasId() bool

HasId returns a boolean if a field has been set.

func (*App) HasMessages ¶

func (o *App) HasMessages() bool

HasMessages returns a boolean if a field has been set.

func (*App) HasName ¶

func (o *App) HasName() bool

HasName returns a boolean if a field has been set.

func (*App) HasOrganizationId ¶

func (o *App) HasOrganizationId() bool

HasOrganizationId returns a boolean if a field has been set.

func (*App) HasPausedAt ¶

func (o *App) HasPausedAt() bool

HasPausedAt returns a boolean if a field has been set.

func (*App) HasResumedAt ¶

func (o *App) HasResumedAt() bool

HasResumedAt returns a boolean if a field has been set.

func (*App) HasStartedAt ¶

func (o *App) HasStartedAt() bool

HasStartedAt returns a boolean if a field has been set.

func (*App) HasStatus ¶

func (o *App) HasStatus() bool

HasStatus returns a boolean if a field has been set.

func (*App) HasSucceededAt ¶

func (o *App) HasSucceededAt() bool

HasSucceededAt returns a boolean if a field has been set.

func (*App) HasTerminatedAt ¶

func (o *App) HasTerminatedAt() bool

HasTerminatedAt returns a boolean if a field has been set.

func (*App) HasUpdatedAt ¶

func (o *App) HasUpdatedAt() bool

HasUpdatedAt returns a boolean if a field has been set.

func (*App) HasVersion ¶

func (o *App) HasVersion() bool

HasVersion returns a boolean if a field has been set.

func (App) MarshalJSON ¶

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

func (*App) SetCreatedAt ¶

func (o *App) SetCreatedAt(v time.Time)

SetCreatedAt gets a reference to the given time.Time and assigns it to the CreatedAt field.

func (*App) SetDomains ¶

func (o *App) SetDomains(v []Domain)

SetDomains gets a reference to the given []Domain and assigns it to the Domains field.

func (*App) SetId ¶

func (o *App) SetId(v string)

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

func (*App) SetMessages ¶

func (o *App) SetMessages(v []string)

SetMessages gets a reference to the given []string and assigns it to the Messages field.

func (*App) SetName ¶

func (o *App) SetName(v string)

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

func (*App) SetOrganizationId ¶

func (o *App) SetOrganizationId(v string)

SetOrganizationId gets a reference to the given string and assigns it to the OrganizationId field.

func (*App) SetPausedAt ¶

func (o *App) SetPausedAt(v time.Time)

SetPausedAt gets a reference to the given time.Time and assigns it to the PausedAt field.

func (*App) SetResumedAt ¶

func (o *App) SetResumedAt(v time.Time)

SetResumedAt gets a reference to the given time.Time and assigns it to the ResumedAt field.

func (*App) SetStartedAt ¶

func (o *App) SetStartedAt(v time.Time)

SetStartedAt gets a reference to the given time.Time and assigns it to the StartedAt field.

func (*App) SetStatus ¶

func (o *App) SetStatus(v AppStatus)

SetStatus gets a reference to the given AppStatus and assigns it to the Status field.

func (*App) SetSucceededAt ¶

func (o *App) SetSucceededAt(v time.Time)

SetSucceededAt gets a reference to the given time.Time and assigns it to the SucceededAt field.

func (*App) SetTerminatedAt ¶

func (o *App) SetTerminatedAt(v time.Time)

SetTerminatedAt gets a reference to the given time.Time and assigns it to the TerminatedAt field.

func (*App) SetUpdatedAt ¶

func (o *App) SetUpdatedAt(v time.Time)

SetUpdatedAt gets a reference to the given time.Time and assigns it to the UpdatedAt field.

func (*App) SetVersion ¶

func (o *App) SetVersion(v string)

SetVersion gets a reference to the given string and assigns it to the Version field.

type AppEvent ¶

type AppEvent struct {
	Id             *string                `json:"id,omitempty"`
	When           *time.Time             `json:"when,omitempty"`
	OrganizationId *string                `json:"organization_id,omitempty"`
	AppId          *string                `json:"app_id,omitempty"`
	Type           *string                `json:"type,omitempty"`
	Message        *string                `json:"message,omitempty"`
	Metadata       map[string]interface{} `json:"metadata,omitempty"`
}

AppEvent struct for AppEvent

func NewAppEvent ¶

func NewAppEvent() *AppEvent

NewAppEvent instantiates a new AppEvent 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 NewAppEventWithDefaults ¶

func NewAppEventWithDefaults() *AppEvent

NewAppEventWithDefaults instantiates a new AppEvent 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 (*AppEvent) GetAppId ¶

func (o *AppEvent) GetAppId() string

GetAppId returns the AppId field value if set, zero value otherwise.

func (*AppEvent) GetAppIdOk ¶

func (o *AppEvent) GetAppIdOk() (*string, bool)

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

func (*AppEvent) GetId ¶

func (o *AppEvent) GetId() string

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

func (*AppEvent) GetIdOk ¶

func (o *AppEvent) 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 (*AppEvent) GetMessage ¶

func (o *AppEvent) GetMessage() string

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

func (*AppEvent) GetMessageOk ¶

func (o *AppEvent) 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 (*AppEvent) GetMetadata ¶

func (o *AppEvent) GetMetadata() map[string]interface{}

GetMetadata returns the Metadata field value if set, zero value otherwise.

func (*AppEvent) GetMetadataOk ¶

func (o *AppEvent) GetMetadataOk() (map[string]interface{}, bool)

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

func (*AppEvent) GetOrganizationId ¶

func (o *AppEvent) GetOrganizationId() string

GetOrganizationId returns the OrganizationId field value if set, zero value otherwise.

func (*AppEvent) GetOrganizationIdOk ¶

func (o *AppEvent) GetOrganizationIdOk() (*string, bool)

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

func (*AppEvent) GetType ¶

func (o *AppEvent) GetType() string

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

func (*AppEvent) GetTypeOk ¶

func (o *AppEvent) 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 (*AppEvent) GetWhen ¶

func (o *AppEvent) GetWhen() time.Time

GetWhen returns the When field value if set, zero value otherwise.

func (*AppEvent) GetWhenOk ¶

func (o *AppEvent) GetWhenOk() (*time.Time, bool)

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

func (*AppEvent) HasAppId ¶

func (o *AppEvent) HasAppId() bool

HasAppId returns a boolean if a field has been set.

func (*AppEvent) HasId ¶

func (o *AppEvent) HasId() bool

HasId returns a boolean if a field has been set.

func (*AppEvent) HasMessage ¶

func (o *AppEvent) HasMessage() bool

HasMessage returns a boolean if a field has been set.

func (*AppEvent) HasMetadata ¶

func (o *AppEvent) HasMetadata() bool

HasMetadata returns a boolean if a field has been set.

func (*AppEvent) HasOrganizationId ¶

func (o *AppEvent) HasOrganizationId() bool

HasOrganizationId returns a boolean if a field has been set.

func (*AppEvent) HasType ¶

func (o *AppEvent) HasType() bool

HasType returns a boolean if a field has been set.

func (*AppEvent) HasWhen ¶

func (o *AppEvent) HasWhen() bool

HasWhen returns a boolean if a field has been set.

func (AppEvent) MarshalJSON ¶

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

func (*AppEvent) SetAppId ¶

func (o *AppEvent) SetAppId(v string)

SetAppId gets a reference to the given string and assigns it to the AppId field.

func (*AppEvent) SetId ¶

func (o *AppEvent) SetId(v string)

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

func (*AppEvent) SetMessage ¶

func (o *AppEvent) SetMessage(v string)

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

func (*AppEvent) SetMetadata ¶

func (o *AppEvent) SetMetadata(v map[string]interface{})

SetMetadata gets a reference to the given map[string]interface{} and assigns it to the Metadata field.

func (*AppEvent) SetOrganizationId ¶

func (o *AppEvent) SetOrganizationId(v string)

SetOrganizationId gets a reference to the given string and assigns it to the OrganizationId field.

func (*AppEvent) SetType ¶

func (o *AppEvent) SetType(v string)

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

func (*AppEvent) SetWhen ¶

func (o *AppEvent) SetWhen(v time.Time)

SetWhen gets a reference to the given time.Time and assigns it to the When field.

type AppListItem ¶

type AppListItem struct {
	Id             *string    `json:"id,omitempty"`
	Name           *string    `json:"name,omitempty"`
	OrganizationId *string    `json:"organization_id,omitempty"`
	UpdatedAt      *time.Time `json:"updated_at,omitempty"`
	CreatedAt      *time.Time `json:"created_at,omitempty"`
	Domains        []Domain   `json:"domains,omitempty"`
	Status         *AppStatus `json:"status,omitempty"`
	Messages       []string   `json:"messages,omitempty"`
}

AppListItem struct for AppListItem

func NewAppListItem ¶

func NewAppListItem() *AppListItem

NewAppListItem instantiates a new AppListItem 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 NewAppListItemWithDefaults ¶

func NewAppListItemWithDefaults() *AppListItem

NewAppListItemWithDefaults instantiates a new AppListItem 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 (*AppListItem) GetCreatedAt ¶

func (o *AppListItem) GetCreatedAt() time.Time

GetCreatedAt returns the CreatedAt field value if set, zero value otherwise.

func (*AppListItem) GetCreatedAtOk ¶

func (o *AppListItem) GetCreatedAtOk() (*time.Time, bool)

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

func (*AppListItem) GetDomains ¶

func (o *AppListItem) GetDomains() []Domain

GetDomains returns the Domains field value if set, zero value otherwise.

func (*AppListItem) GetDomainsOk ¶

func (o *AppListItem) GetDomainsOk() ([]Domain, bool)

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

func (*AppListItem) GetId ¶

func (o *AppListItem) GetId() string

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

func (*AppListItem) GetIdOk ¶

func (o *AppListItem) 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 (*AppListItem) GetMessages ¶

func (o *AppListItem) GetMessages() []string

GetMessages returns the Messages field value if set, zero value otherwise.

func (*AppListItem) GetMessagesOk ¶

func (o *AppListItem) GetMessagesOk() ([]string, bool)

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

func (*AppListItem) GetName ¶

func (o *AppListItem) GetName() string

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

func (*AppListItem) GetNameOk ¶

func (o *AppListItem) 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 (*AppListItem) GetOrganizationId ¶

func (o *AppListItem) GetOrganizationId() string

GetOrganizationId returns the OrganizationId field value if set, zero value otherwise.

func (*AppListItem) GetOrganizationIdOk ¶

func (o *AppListItem) GetOrganizationIdOk() (*string, bool)

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

func (*AppListItem) GetStatus ¶

func (o *AppListItem) GetStatus() AppStatus

GetStatus returns the Status field value if set, zero value otherwise.

func (*AppListItem) GetStatusOk ¶

func (o *AppListItem) GetStatusOk() (*AppStatus, 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 (*AppListItem) GetUpdatedAt ¶

func (o *AppListItem) GetUpdatedAt() time.Time

GetUpdatedAt returns the UpdatedAt field value if set, zero value otherwise.

func (*AppListItem) GetUpdatedAtOk ¶

func (o *AppListItem) GetUpdatedAtOk() (*time.Time, bool)

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

func (*AppListItem) HasCreatedAt ¶

func (o *AppListItem) HasCreatedAt() bool

HasCreatedAt returns a boolean if a field has been set.

func (*AppListItem) HasDomains ¶

func (o *AppListItem) HasDomains() bool

HasDomains returns a boolean if a field has been set.

func (*AppListItem) HasId ¶

func (o *AppListItem) HasId() bool

HasId returns a boolean if a field has been set.

func (*AppListItem) HasMessages ¶

func (o *AppListItem) HasMessages() bool

HasMessages returns a boolean if a field has been set.

func (*AppListItem) HasName ¶

func (o *AppListItem) HasName() bool

HasName returns a boolean if a field has been set.

func (*AppListItem) HasOrganizationId ¶

func (o *AppListItem) HasOrganizationId() bool

HasOrganizationId returns a boolean if a field has been set.

func (*AppListItem) HasStatus ¶

func (o *AppListItem) HasStatus() bool

HasStatus returns a boolean if a field has been set.

func (*AppListItem) HasUpdatedAt ¶

func (o *AppListItem) HasUpdatedAt() bool

HasUpdatedAt returns a boolean if a field has been set.

func (AppListItem) MarshalJSON ¶

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

func (*AppListItem) SetCreatedAt ¶

func (o *AppListItem) SetCreatedAt(v time.Time)

SetCreatedAt gets a reference to the given time.Time and assigns it to the CreatedAt field.

func (*AppListItem) SetDomains ¶

func (o *AppListItem) SetDomains(v []Domain)

SetDomains gets a reference to the given []Domain and assigns it to the Domains field.

func (*AppListItem) SetId ¶

func (o *AppListItem) SetId(v string)

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

func (*AppListItem) SetMessages ¶

func (o *AppListItem) SetMessages(v []string)

SetMessages gets a reference to the given []string and assigns it to the Messages field.

func (*AppListItem) SetName ¶

func (o *AppListItem) SetName(v string)

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

func (*AppListItem) SetOrganizationId ¶

func (o *AppListItem) SetOrganizationId(v string)

SetOrganizationId gets a reference to the given string and assigns it to the OrganizationId field.

func (*AppListItem) SetStatus ¶

func (o *AppListItem) SetStatus(v AppStatus)

SetStatus gets a reference to the given AppStatus and assigns it to the Status field.

func (*AppListItem) SetUpdatedAt ¶

func (o *AppListItem) SetUpdatedAt(v time.Time)

SetUpdatedAt gets a reference to the given time.Time and assigns it to the UpdatedAt field.

type AppStatus ¶

type AppStatus string

AppStatus the model 'AppStatus'

const (
	APPSTATUS_STARTING  AppStatus = "STARTING"
	APPSTATUS_HEALTHY   AppStatus = "HEALTHY"
	APPSTATUS_DEGRADED  AppStatus = "DEGRADED"
	APPSTATUS_UNHEALTHY AppStatus = "UNHEALTHY"
	APPSTATUS_DELETING  AppStatus = "DELETING"
	APPSTATUS_DELETED   AppStatus = "DELETED"
	APPSTATUS_PAUSING   AppStatus = "PAUSING"
	APPSTATUS_PAUSED    AppStatus = "PAUSED"
	APPSTATUS_RESUMING  AppStatus = "RESUMING"
)

List of App.Status

func NewAppStatusFromValue ¶

func NewAppStatusFromValue(v string) (*AppStatus, error)

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

func (AppStatus) IsValid ¶

func (v AppStatus) IsValid() bool

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

func (AppStatus) Ptr ¶

func (v AppStatus) Ptr() *AppStatus

Ptr returns reference to App.Status value

func (*AppStatus) UnmarshalJSON ¶

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

type AppUsage ¶

type AppUsage struct {
	AppId    *string        `json:"app_id,omitempty"`
	AppName  *string        `json:"app_name,omitempty"`
	Services []ServiceUsage `json:"services,omitempty"`
}

AppUsage struct for AppUsage

func NewAppUsage ¶

func NewAppUsage() *AppUsage

NewAppUsage instantiates a new AppUsage 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 NewAppUsageWithDefaults ¶

func NewAppUsageWithDefaults() *AppUsage

NewAppUsageWithDefaults instantiates a new AppUsage 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 (*AppUsage) GetAppId ¶

func (o *AppUsage) GetAppId() string

GetAppId returns the AppId field value if set, zero value otherwise.

func (*AppUsage) GetAppIdOk ¶

func (o *AppUsage) GetAppIdOk() (*string, bool)

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

func (*AppUsage) GetAppName ¶

func (o *AppUsage) GetAppName() string

GetAppName returns the AppName field value if set, zero value otherwise.

func (*AppUsage) GetAppNameOk ¶

func (o *AppUsage) GetAppNameOk() (*string, bool)

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

func (*AppUsage) GetServices ¶

func (o *AppUsage) GetServices() []ServiceUsage

GetServices returns the Services field value if set, zero value otherwise.

func (*AppUsage) GetServicesOk ¶

func (o *AppUsage) GetServicesOk() ([]ServiceUsage, bool)

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

func (*AppUsage) HasAppId ¶

func (o *AppUsage) HasAppId() bool

HasAppId returns a boolean if a field has been set.

func (*AppUsage) HasAppName ¶

func (o *AppUsage) HasAppName() bool

HasAppName returns a boolean if a field has been set.

func (*AppUsage) HasServices ¶

func (o *AppUsage) HasServices() bool

HasServices returns a boolean if a field has been set.

func (AppUsage) MarshalJSON ¶

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

func (*AppUsage) SetAppId ¶

func (o *AppUsage) SetAppId(v string)

SetAppId gets a reference to the given string and assigns it to the AppId field.

func (*AppUsage) SetAppName ¶

func (o *AppUsage) SetAppName(v string)

SetAppName gets a reference to the given string and assigns it to the AppName field.

func (*AppUsage) SetServices ¶

func (o *AppUsage) SetServices(v []ServiceUsage)

SetServices gets a reference to the given []ServiceUsage and assigns it to the Services field.

type AppsApi ¶

type AppsApi interface {

	/*
		CreateApp Create App

		@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
		@return ApiCreateAppRequest
	*/
	CreateApp(ctx context.Context) ApiCreateAppRequest

	// CreateAppExecute executes the request
	//  @return CreateAppReply
	CreateAppExecute(r ApiCreateAppRequest) (*CreateAppReply, *http.Response, error)

	/*
		DeleteApp Delete App

		App deletion is allowed for all status.

		@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
		@param id The id of the App to delete
		@return ApiDeleteAppRequest
	*/
	DeleteApp(ctx context.Context, id string) ApiDeleteAppRequest

	// DeleteAppExecute executes the request
	//  @return map[string]interface{}
	DeleteAppExecute(r ApiDeleteAppRequest) (map[string]interface{}, *http.Response, error)

	/*
		GetApp Get App

		@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
		@param id The id of the App
		@return ApiGetAppRequest
	*/
	GetApp(ctx context.Context, id string) ApiGetAppRequest

	// GetAppExecute executes the request
	//  @return GetAppReply
	GetAppExecute(r ApiGetAppRequest) (*GetAppReply, *http.Response, error)

	/*
		ListAppEvents List App events

		@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
		@return ApiListAppEventsRequest
	*/
	ListAppEvents(ctx context.Context) ApiListAppEventsRequest

	// ListAppEventsExecute executes the request
	//  @return ListAppEventsReply
	ListAppEventsExecute(r ApiListAppEventsRequest) (*ListAppEventsReply, *http.Response, error)

	/*
		ListApps List App

		@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
		@return ApiListAppsRequest
	*/
	ListApps(ctx context.Context) ApiListAppsRequest

	// ListAppsExecute executes the request
	//  @return ListAppsReply
	ListAppsExecute(r ApiListAppsRequest) (*ListAppsReply, *http.Response, error)

	/*
		PauseApp Pause App

		App pause action is allowed for the following status:
	 - starting
	 - healthy
	 - degraded
	 - unhealthy
	 - resuming

		@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
		@param id The id of the app to pause.
		@return ApiPauseAppRequest
	*/
	PauseApp(ctx context.Context, id string) ApiPauseAppRequest

	// PauseAppExecute executes the request
	//  @return map[string]interface{}
	PauseAppExecute(r ApiPauseAppRequest) (map[string]interface{}, *http.Response, error)

	/*
		ResumeApp Resume App

		App resume action is allowed for the following status:
	 - paused

		@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
		@param id The id of the app to resume.
		@return ApiResumeAppRequest
	*/
	ResumeApp(ctx context.Context, id string) ApiResumeAppRequest

	// ResumeAppExecute executes the request
	//  @return map[string]interface{}
	ResumeAppExecute(r ApiResumeAppRequest) (map[string]interface{}, *http.Response, error)

	/*
		UpdateApp Update App

		@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
		@param id The id of the app to update.
		@return ApiUpdateAppRequest
	*/
	UpdateApp(ctx context.Context, id string) ApiUpdateAppRequest

	// UpdateAppExecute executes the request
	//  @return UpdateAppReply
	UpdateAppExecute(r ApiUpdateAppRequest) (*UpdateAppReply, *http.Response, error)

	/*
		UpdateApp2 Update App

		@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
		@param id The id of the app to update.
		@return ApiUpdateApp2Request
	*/
	UpdateApp2(ctx context.Context, id string) ApiUpdateApp2Request

	// UpdateApp2Execute executes the request
	//  @return UpdateAppReply
	UpdateApp2Execute(r ApiUpdateApp2Request) (*UpdateAppReply, *http.Response, error)
}

type AppsApiService ¶

type AppsApiService service

AppsApiService AppsApi service

func (*AppsApiService) CreateApp ¶

CreateApp Create App

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@return ApiCreateAppRequest

func (*AppsApiService) CreateAppExecute ¶

func (a *AppsApiService) CreateAppExecute(r ApiCreateAppRequest) (*CreateAppReply, *http.Response, error)

Execute executes the request

@return CreateAppReply

func (*AppsApiService) DeleteApp ¶

DeleteApp Delete App

App deletion is allowed for all status.

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param id The id of the App to delete
@return ApiDeleteAppRequest

func (*AppsApiService) DeleteAppExecute ¶

func (a *AppsApiService) DeleteAppExecute(r ApiDeleteAppRequest) (map[string]interface{}, *http.Response, error)

Execute executes the request

@return map[string]interface{}

func (*AppsApiService) GetApp ¶

GetApp Get App

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param id The id of the App
@return ApiGetAppRequest

func (*AppsApiService) GetAppExecute ¶

func (a *AppsApiService) GetAppExecute(r ApiGetAppRequest) (*GetAppReply, *http.Response, error)

Execute executes the request

@return GetAppReply

func (*AppsApiService) ListAppEvents ¶

func (a *AppsApiService) ListAppEvents(ctx context.Context) ApiListAppEventsRequest

ListAppEvents List App events

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@return ApiListAppEventsRequest

func (*AppsApiService) ListAppEventsExecute ¶

Execute executes the request

@return ListAppEventsReply

func (*AppsApiService) ListApps ¶

ListApps List App

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@return ApiListAppsRequest

func (*AppsApiService) ListAppsExecute ¶

func (a *AppsApiService) ListAppsExecute(r ApiListAppsRequest) (*ListAppsReply, *http.Response, error)

Execute executes the request

@return ListAppsReply

func (*AppsApiService) PauseApp ¶

PauseApp Pause App

App pause action is allowed for the following status:

  • starting

  • healthy

  • degraded

  • unhealthy

  • resuming

    @param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background(). @param id The id of the app to pause. @return ApiPauseAppRequest

func (*AppsApiService) PauseAppExecute ¶

func (a *AppsApiService) PauseAppExecute(r ApiPauseAppRequest) (map[string]interface{}, *http.Response, error)

Execute executes the request

@return map[string]interface{}

func (*AppsApiService) ResumeApp ¶

ResumeApp Resume App

App resume action is allowed for the following status:

  • paused

    @param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background(). @param id The id of the app to resume. @return ApiResumeAppRequest

func (*AppsApiService) ResumeAppExecute ¶

func (a *AppsApiService) ResumeAppExecute(r ApiResumeAppRequest) (map[string]interface{}, *http.Response, error)

Execute executes the request

@return map[string]interface{}

func (*AppsApiService) UpdateApp ¶

UpdateApp Update App

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param id The id of the app to update.
@return ApiUpdateAppRequest

func (*AppsApiService) UpdateApp2 ¶

func (a *AppsApiService) UpdateApp2(ctx context.Context, id string) ApiUpdateApp2Request

UpdateApp2 Update App

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param id The id of the app to update.
@return ApiUpdateApp2Request

func (*AppsApiService) UpdateApp2Execute ¶

func (a *AppsApiService) UpdateApp2Execute(r ApiUpdateApp2Request) (*UpdateAppReply, *http.Response, error)

Execute executes the request

@return UpdateAppReply

func (*AppsApiService) UpdateAppExecute ¶

func (a *AppsApiService) UpdateAppExecute(r ApiUpdateAppRequest) (*UpdateAppReply, *http.Response, error)

Execute executes the request

@return UpdateAppReply

type AppsSummary ¶

type AppsSummary struct {
	Total    *string            `json:"total,omitempty"`
	ByStatus *map[string]string `json:"by_status,omitempty"`
}

AppsSummary struct for AppsSummary

func NewAppsSummary ¶

func NewAppsSummary() *AppsSummary

NewAppsSummary instantiates a new AppsSummary 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 NewAppsSummaryWithDefaults ¶

func NewAppsSummaryWithDefaults() *AppsSummary

NewAppsSummaryWithDefaults instantiates a new AppsSummary 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 (*AppsSummary) GetByStatus ¶

func (o *AppsSummary) GetByStatus() map[string]string

GetByStatus returns the ByStatus field value if set, zero value otherwise.

func (*AppsSummary) GetByStatusOk ¶

func (o *AppsSummary) GetByStatusOk() (*map[string]string, bool)

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

func (*AppsSummary) GetTotal ¶

func (o *AppsSummary) GetTotal() string

GetTotal returns the Total field value if set, zero value otherwise.

func (*AppsSummary) GetTotalOk ¶

func (o *AppsSummary) GetTotalOk() (*string, bool)

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

func (*AppsSummary) HasByStatus ¶

func (o *AppsSummary) HasByStatus() bool

HasByStatus returns a boolean if a field has been set.

func (*AppsSummary) HasTotal ¶

func (o *AppsSummary) HasTotal() bool

HasTotal returns a boolean if a field has been set.

func (AppsSummary) MarshalJSON ¶

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

func (*AppsSummary) SetByStatus ¶

func (o *AppsSummary) SetByStatus(v map[string]string)

SetByStatus gets a reference to the given map[string]string and assigns it to the ByStatus field.

func (*AppsSummary) SetTotal ¶

func (o *AppsSummary) SetTotal(v string)

SetTotal gets a reference to the given string and assigns it to the Total field.

type AutoRelease ¶

type AutoRelease struct {
	Groups []AutoReleaseGroup `json:"groups,omitempty"`
}

AutoRelease struct for AutoRelease

func NewAutoRelease ¶

func NewAutoRelease() *AutoRelease

NewAutoRelease instantiates a new AutoRelease 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 NewAutoReleaseWithDefaults ¶

func NewAutoReleaseWithDefaults() *AutoRelease

NewAutoReleaseWithDefaults instantiates a new AutoRelease 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 (*AutoRelease) GetGroups ¶

func (o *AutoRelease) GetGroups() []AutoReleaseGroup

GetGroups returns the Groups field value if set, zero value otherwise.

func (*AutoRelease) GetGroupsOk ¶

func (o *AutoRelease) GetGroupsOk() ([]AutoReleaseGroup, bool)

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

func (*AutoRelease) HasGroups ¶

func (o *AutoRelease) HasGroups() bool

HasGroups returns a boolean if a field has been set.

func (AutoRelease) MarshalJSON ¶

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

func (*AutoRelease) SetGroups ¶

func (o *AutoRelease) SetGroups(v []AutoReleaseGroup)

SetGroups gets a reference to the given []AutoReleaseGroup and assigns it to the Groups field.

type AutoReleaseGroup ¶

type AutoReleaseGroup struct {
	Name       *string `json:"name,omitempty"`
	Repository *string `json:"repository,omitempty"`
	GitRef     *string `json:"git_ref,omitempty"`
	LatestSha  *string `json:"latest_sha,omitempty"`
}

AutoReleaseGroup struct for AutoReleaseGroup

func NewAutoReleaseGroup ¶

func NewAutoReleaseGroup() *AutoReleaseGroup

NewAutoReleaseGroup instantiates a new AutoReleaseGroup 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 NewAutoReleaseGroupWithDefaults ¶

func NewAutoReleaseGroupWithDefaults() *AutoReleaseGroup

NewAutoReleaseGroupWithDefaults instantiates a new AutoReleaseGroup 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 (*AutoReleaseGroup) GetGitRef ¶

func (o *AutoReleaseGroup) GetGitRef() string

GetGitRef returns the GitRef field value if set, zero value otherwise.

func (*AutoReleaseGroup) GetGitRefOk ¶

func (o *AutoReleaseGroup) GetGitRefOk() (*string, bool)

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

func (*AutoReleaseGroup) GetLatestSha ¶

func (o *AutoReleaseGroup) GetLatestSha() string

GetLatestSha returns the LatestSha field value if set, zero value otherwise.

func (*AutoReleaseGroup) GetLatestShaOk ¶

func (o *AutoReleaseGroup) GetLatestShaOk() (*string, bool)

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

func (*AutoReleaseGroup) GetName ¶

func (o *AutoReleaseGroup) GetName() string

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

func (*AutoReleaseGroup) GetNameOk ¶

func (o *AutoReleaseGroup) 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 (*AutoReleaseGroup) GetRepository ¶

func (o *AutoReleaseGroup) GetRepository() string

GetRepository returns the Repository field value if set, zero value otherwise.

func (*AutoReleaseGroup) GetRepositoryOk ¶

func (o *AutoReleaseGroup) GetRepositoryOk() (*string, bool)

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

func (*AutoReleaseGroup) HasGitRef ¶

func (o *AutoReleaseGroup) HasGitRef() bool

HasGitRef returns a boolean if a field has been set.

func (*AutoReleaseGroup) HasLatestSha ¶

func (o *AutoReleaseGroup) HasLatestSha() bool

HasLatestSha returns a boolean if a field has been set.

func (*AutoReleaseGroup) HasName ¶

func (o *AutoReleaseGroup) HasName() bool

HasName returns a boolean if a field has been set.

func (*AutoReleaseGroup) HasRepository ¶

func (o *AutoReleaseGroup) HasRepository() bool

HasRepository returns a boolean if a field has been set.

func (AutoReleaseGroup) MarshalJSON ¶

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

func (*AutoReleaseGroup) SetGitRef ¶

func (o *AutoReleaseGroup) SetGitRef(v string)

SetGitRef gets a reference to the given string and assigns it to the GitRef field.

func (*AutoReleaseGroup) SetLatestSha ¶

func (o *AutoReleaseGroup) SetLatestSha(v string)

SetLatestSha gets a reference to the given string and assigns it to the LatestSha field.

func (*AutoReleaseGroup) SetName ¶

func (o *AutoReleaseGroup) SetName(v string)

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

func (*AutoReleaseGroup) SetRepository ¶

func (o *AutoReleaseGroup) SetRepository(v string)

SetRepository gets a reference to the given string and assigns it to the Repository field.

type AzureContainerRegistryConfiguration ¶

type AzureContainerRegistryConfiguration struct {
	RegistryName *string `json:"registry_name,omitempty"`
	Username     *string `json:"username,omitempty"`
	Password     *string `json:"password,omitempty"`
}

AzureContainerRegistryConfiguration struct for AzureContainerRegistryConfiguration

func NewAzureContainerRegistryConfiguration ¶

func NewAzureContainerRegistryConfiguration() *AzureContainerRegistryConfiguration

NewAzureContainerRegistryConfiguration instantiates a new AzureContainerRegistryConfiguration 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 NewAzureContainerRegistryConfigurationWithDefaults ¶

func NewAzureContainerRegistryConfigurationWithDefaults() *AzureContainerRegistryConfiguration

NewAzureContainerRegistryConfigurationWithDefaults instantiates a new AzureContainerRegistryConfiguration 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 (*AzureContainerRegistryConfiguration) GetPassword ¶

GetPassword returns the Password field value if set, zero value otherwise.

func (*AzureContainerRegistryConfiguration) GetPasswordOk ¶

func (o *AzureContainerRegistryConfiguration) GetPasswordOk() (*string, bool)

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

func (*AzureContainerRegistryConfiguration) GetRegistryName ¶

func (o *AzureContainerRegistryConfiguration) GetRegistryName() string

GetRegistryName returns the RegistryName field value if set, zero value otherwise.

func (*AzureContainerRegistryConfiguration) GetRegistryNameOk ¶

func (o *AzureContainerRegistryConfiguration) GetRegistryNameOk() (*string, bool)

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

func (*AzureContainerRegistryConfiguration) GetUsername ¶

GetUsername returns the Username field value if set, zero value otherwise.

func (*AzureContainerRegistryConfiguration) GetUsernameOk ¶

func (o *AzureContainerRegistryConfiguration) GetUsernameOk() (*string, bool)

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

func (*AzureContainerRegistryConfiguration) HasPassword ¶

func (o *AzureContainerRegistryConfiguration) HasPassword() bool

HasPassword returns a boolean if a field has been set.

func (*AzureContainerRegistryConfiguration) HasRegistryName ¶

func (o *AzureContainerRegistryConfiguration) HasRegistryName() bool

HasRegistryName returns a boolean if a field has been set.

func (*AzureContainerRegistryConfiguration) HasUsername ¶

func (o *AzureContainerRegistryConfiguration) HasUsername() bool

HasUsername returns a boolean if a field has been set.

func (AzureContainerRegistryConfiguration) MarshalJSON ¶

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

func (*AzureContainerRegistryConfiguration) SetPassword ¶

func (o *AzureContainerRegistryConfiguration) SetPassword(v string)

SetPassword gets a reference to the given string and assigns it to the Password field.

func (*AzureContainerRegistryConfiguration) SetRegistryName ¶

func (o *AzureContainerRegistryConfiguration) SetRegistryName(v string)

SetRegistryName gets a reference to the given string and assigns it to the RegistryName field.

func (*AzureContainerRegistryConfiguration) SetUsername ¶

func (o *AzureContainerRegistryConfiguration) SetUsername(v string)

SetUsername gets a reference to the given string and assigns it to the Username field.

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 BillingApi ¶

type BillingApi interface {

	/*
		HasUnpaidInvoices Experimental: Has unpaid invoices

		WARNING: Please don't use the following method.
	Koyeb doesn't guarantee backwards compatible breaking change and reserve the right to completely drop it without notice.
	USE AT YOUR OWN RISK.

		@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
		@return ApiHasUnpaidInvoicesRequest
	*/
	HasUnpaidInvoices(ctx context.Context) ApiHasUnpaidInvoicesRequest

	// HasUnpaidInvoicesExecute executes the request
	//  @return HasUnpaidInvoicesReply
	HasUnpaidInvoicesExecute(r ApiHasUnpaidInvoicesRequest) (*HasUnpaidInvoicesReply, *http.Response, error)

	/*
		Manage Method for Manage

		@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
		@return ApiManageRequest
	*/
	Manage(ctx context.Context) ApiManageRequest

	// ManageExecute executes the request
	//  @return ManageReply
	ManageExecute(r ApiManageRequest) (*ManageReply, *http.Response, error)

	/*
		NextInvoice Experimental: Fetch next invoice

		WARNING: Please don't use the following method.
	Koyeb doesn't guarantee backwards compatible breaking change and reserve the right to completely drop it without notice.
	USE AT YOUR OWN RISK.

		@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
		@return ApiNextInvoiceRequest
	*/
	NextInvoice(ctx context.Context) ApiNextInvoiceRequest

	// NextInvoiceExecute executes the request
	//  @return NextInvoiceReply
	NextInvoiceExecute(r ApiNextInvoiceRequest) (*NextInvoiceReply, *http.Response, error)
}

type BillingApiService ¶

type BillingApiService service

BillingApiService BillingApi service

func (*BillingApiService) HasUnpaidInvoices ¶

HasUnpaidInvoices Experimental: Has unpaid invoices

WARNING: Please don't use the following method. Koyeb doesn't guarantee backwards compatible breaking change and reserve the right to completely drop it without notice. USE AT YOUR OWN RISK.

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@return ApiHasUnpaidInvoicesRequest

func (*BillingApiService) HasUnpaidInvoicesExecute ¶

Execute executes the request

@return HasUnpaidInvoicesReply

func (*BillingApiService) Manage ¶

Manage Method for Manage

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@return ApiManageRequest

func (*BillingApiService) ManageExecute ¶

Execute executes the request

@return ManageReply

func (*BillingApiService) NextInvoice ¶

NextInvoice Experimental: Fetch next invoice

WARNING: Please don't use the following method. Koyeb doesn't guarantee backwards compatible breaking change and reserve the right to completely drop it without notice. USE AT YOUR OWN RISK.

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@return ApiNextInvoiceRequest

func (*BillingApiService) NextInvoiceExecute ¶

Execute executes the request

@return NextInvoiceReply

type BuildpackBuilder ¶

type BuildpackBuilder struct {
	BuildCommand *string `json:"build_command,omitempty"`
	RunCommand   *string `json:"run_command,omitempty"`
	Privileged   *bool   `json:"privileged,omitempty"`
}

BuildpackBuilder struct for BuildpackBuilder

func NewBuildpackBuilder ¶

func NewBuildpackBuilder() *BuildpackBuilder

NewBuildpackBuilder instantiates a new BuildpackBuilder 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 NewBuildpackBuilderWithDefaults ¶

func NewBuildpackBuilderWithDefaults() *BuildpackBuilder

NewBuildpackBuilderWithDefaults instantiates a new BuildpackBuilder 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 (*BuildpackBuilder) GetBuildCommand ¶

func (o *BuildpackBuilder) GetBuildCommand() string

GetBuildCommand returns the BuildCommand field value if set, zero value otherwise.

func (*BuildpackBuilder) GetBuildCommandOk ¶

func (o *BuildpackBuilder) GetBuildCommandOk() (*string, bool)

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

func (*BuildpackBuilder) GetPrivileged ¶

func (o *BuildpackBuilder) GetPrivileged() bool

GetPrivileged returns the Privileged field value if set, zero value otherwise.

func (*BuildpackBuilder) GetPrivilegedOk ¶

func (o *BuildpackBuilder) GetPrivilegedOk() (*bool, bool)

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

func (*BuildpackBuilder) GetRunCommand ¶

func (o *BuildpackBuilder) GetRunCommand() string

GetRunCommand returns the RunCommand field value if set, zero value otherwise.

func (*BuildpackBuilder) GetRunCommandOk ¶

func (o *BuildpackBuilder) GetRunCommandOk() (*string, bool)

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

func (*BuildpackBuilder) HasBuildCommand ¶

func (o *BuildpackBuilder) HasBuildCommand() bool

HasBuildCommand returns a boolean if a field has been set.

func (*BuildpackBuilder) HasPrivileged ¶

func (o *BuildpackBuilder) HasPrivileged() bool

HasPrivileged returns a boolean if a field has been set.

func (*BuildpackBuilder) HasRunCommand ¶

func (o *BuildpackBuilder) HasRunCommand() bool

HasRunCommand returns a boolean if a field has been set.

func (BuildpackBuilder) MarshalJSON ¶

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

func (*BuildpackBuilder) SetBuildCommand ¶

func (o *BuildpackBuilder) SetBuildCommand(v string)

SetBuildCommand gets a reference to the given string and assigns it to the BuildCommand field.

func (*BuildpackBuilder) SetPrivileged ¶

func (o *BuildpackBuilder) SetPrivileged(v bool)

SetPrivileged gets a reference to the given bool and assigns it to the Privileged field.

func (*BuildpackBuilder) SetRunCommand ¶

func (o *BuildpackBuilder) SetRunCommand(v string)

SetRunCommand gets a reference to the given string and assigns it to the RunCommand field.

type CannyAuthReply ¶

type CannyAuthReply struct {
	Token *string `json:"token,omitempty"`
}

CannyAuthReply struct for CannyAuthReply

func NewCannyAuthReply ¶

func NewCannyAuthReply() *CannyAuthReply

NewCannyAuthReply instantiates a new CannyAuthReply 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 NewCannyAuthReplyWithDefaults ¶

func NewCannyAuthReplyWithDefaults() *CannyAuthReply

NewCannyAuthReplyWithDefaults instantiates a new CannyAuthReply 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 (*CannyAuthReply) GetToken ¶

func (o *CannyAuthReply) GetToken() string

GetToken returns the Token field value if set, zero value otherwise.

func (*CannyAuthReply) GetTokenOk ¶

func (o *CannyAuthReply) GetTokenOk() (*string, bool)

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

func (*CannyAuthReply) HasToken ¶

func (o *CannyAuthReply) HasToken() bool

HasToken returns a boolean if a field has been set.

func (CannyAuthReply) MarshalJSON ¶

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

func (*CannyAuthReply) SetToken ¶

func (o *CannyAuthReply) SetToken(v string)

SetToken gets a reference to the given string and assigns it to the Token field.

type CatalogDatacentersApi ¶

type CatalogDatacentersApi interface {

	/*
		ListDatacenters List datacenters

		@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
		@return ApiListDatacentersRequest
	*/
	ListDatacenters(ctx context.Context) ApiListDatacentersRequest

	// ListDatacentersExecute executes the request
	//  @return ListDatacentersReply
	ListDatacentersExecute(r ApiListDatacentersRequest) (*ListDatacentersReply, *http.Response, error)
}

type CatalogDatacentersApiService ¶

type CatalogDatacentersApiService service

CatalogDatacentersApiService CatalogDatacentersApi service

func (*CatalogDatacentersApiService) ListDatacenters ¶

ListDatacenters List datacenters

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@return ApiListDatacentersRequest

func (*CatalogDatacentersApiService) ListDatacentersExecute ¶

Execute executes the request

@return ListDatacentersReply

type CatalogInstance ¶

type CatalogInstance struct {
	Id          *string `json:"id,omitempty"`
	Description *string `json:"description,omitempty"`
	// The number of cpus. Deprecated. Use vcpu_shares instead.
	Vcpu         *int64   `json:"vcpu,omitempty"`
	Memory       *string  `json:"memory,omitempty"`
	Disk         *string  `json:"disk,omitempty"`
	PriceHourly  *string  `json:"price_hourly,omitempty"`
	PriceMonthly *string  `json:"price_monthly,omitempty"`
	Regions      []string `json:"regions,omitempty"`
	Status       *string  `json:"status,omitempty"`
	RequirePlan  []string `json:"require_plan,omitempty"`
	// The number of vcpu shares reserved for the instance.
	VcpuShares  *float32 `json:"vcpu_shares,omitempty"`
	DisplayName *string  `json:"display_name,omitempty"`
}

CatalogInstance struct for CatalogInstance

func NewCatalogInstance ¶

func NewCatalogInstance() *CatalogInstance

NewCatalogInstance instantiates a new CatalogInstance 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 NewCatalogInstanceWithDefaults ¶

func NewCatalogInstanceWithDefaults() *CatalogInstance

NewCatalogInstanceWithDefaults instantiates a new CatalogInstance 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 (*CatalogInstance) GetDescription ¶

func (o *CatalogInstance) GetDescription() string

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

func (*CatalogInstance) GetDescriptionOk ¶

func (o *CatalogInstance) 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 (*CatalogInstance) GetDisk ¶

func (o *CatalogInstance) GetDisk() string

GetDisk returns the Disk field value if set, zero value otherwise.

func (*CatalogInstance) GetDiskOk ¶

func (o *CatalogInstance) GetDiskOk() (*string, bool)

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

func (*CatalogInstance) GetDisplayName ¶

func (o *CatalogInstance) GetDisplayName() string

GetDisplayName returns the DisplayName field value if set, zero value otherwise.

func (*CatalogInstance) GetDisplayNameOk ¶

func (o *CatalogInstance) GetDisplayNameOk() (*string, bool)

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

func (*CatalogInstance) GetId ¶

func (o *CatalogInstance) GetId() string

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

func (*CatalogInstance) GetIdOk ¶

func (o *CatalogInstance) 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 (*CatalogInstance) GetMemory ¶

func (o *CatalogInstance) GetMemory() string

GetMemory returns the Memory field value if set, zero value otherwise.

func (*CatalogInstance) GetMemoryOk ¶

func (o *CatalogInstance) GetMemoryOk() (*string, bool)

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

func (*CatalogInstance) GetPriceHourly ¶

func (o *CatalogInstance) GetPriceHourly() string

GetPriceHourly returns the PriceHourly field value if set, zero value otherwise.

func (*CatalogInstance) GetPriceHourlyOk ¶

func (o *CatalogInstance) GetPriceHourlyOk() (*string, bool)

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

func (*CatalogInstance) GetPriceMonthly ¶

func (o *CatalogInstance) GetPriceMonthly() string

GetPriceMonthly returns the PriceMonthly field value if set, zero value otherwise.

func (*CatalogInstance) GetPriceMonthlyOk ¶

func (o *CatalogInstance) GetPriceMonthlyOk() (*string, bool)

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

func (*CatalogInstance) GetRegions ¶

func (o *CatalogInstance) GetRegions() []string

GetRegions returns the Regions field value if set, zero value otherwise.

func (*CatalogInstance) GetRegionsOk ¶

func (o *CatalogInstance) GetRegionsOk() ([]string, bool)

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

func (*CatalogInstance) GetRequirePlan ¶

func (o *CatalogInstance) GetRequirePlan() []string

GetRequirePlan returns the RequirePlan field value if set, zero value otherwise.

func (*CatalogInstance) GetRequirePlanOk ¶

func (o *CatalogInstance) GetRequirePlanOk() ([]string, bool)

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

func (*CatalogInstance) GetStatus ¶

func (o *CatalogInstance) GetStatus() string

GetStatus returns the Status field value if set, zero value otherwise.

func (*CatalogInstance) GetStatusOk ¶

func (o *CatalogInstance) GetStatusOk() (*string, 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 (*CatalogInstance) GetVcpu ¶

func (o *CatalogInstance) GetVcpu() int64

GetVcpu returns the Vcpu field value if set, zero value otherwise.

func (*CatalogInstance) GetVcpuOk ¶

func (o *CatalogInstance) GetVcpuOk() (*int64, bool)

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

func (*CatalogInstance) GetVcpuShares ¶

func (o *CatalogInstance) GetVcpuShares() float32

GetVcpuShares returns the VcpuShares field value if set, zero value otherwise.

func (*CatalogInstance) GetVcpuSharesOk ¶

func (o *CatalogInstance) GetVcpuSharesOk() (*float32, bool)

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

func (*CatalogInstance) HasDescription ¶

func (o *CatalogInstance) HasDescription() bool

HasDescription returns a boolean if a field has been set.

func (*CatalogInstance) HasDisk ¶

func (o *CatalogInstance) HasDisk() bool

HasDisk returns a boolean if a field has been set.

func (*CatalogInstance) HasDisplayName ¶

func (o *CatalogInstance) HasDisplayName() bool

HasDisplayName returns a boolean if a field has been set.

func (*CatalogInstance) HasId ¶

func (o *CatalogInstance) HasId() bool

HasId returns a boolean if a field has been set.

func (*CatalogInstance) HasMemory ¶

func (o *CatalogInstance) HasMemory() bool

HasMemory returns a boolean if a field has been set.

func (*CatalogInstance) HasPriceHourly ¶

func (o *CatalogInstance) HasPriceHourly() bool

HasPriceHourly returns a boolean if a field has been set.

func (*CatalogInstance) HasPriceMonthly ¶

func (o *CatalogInstance) HasPriceMonthly() bool

HasPriceMonthly returns a boolean if a field has been set.

func (*CatalogInstance) HasRegions ¶

func (o *CatalogInstance) HasRegions() bool

HasRegions returns a boolean if a field has been set.

func (*CatalogInstance) HasRequirePlan ¶

func (o *CatalogInstance) HasRequirePlan() bool

HasRequirePlan returns a boolean if a field has been set.

func (*CatalogInstance) HasStatus ¶

func (o *CatalogInstance) HasStatus() bool

HasStatus returns a boolean if a field has been set.

func (*CatalogInstance) HasVcpu ¶

func (o *CatalogInstance) HasVcpu() bool

HasVcpu returns a boolean if a field has been set.

func (*CatalogInstance) HasVcpuShares ¶

func (o *CatalogInstance) HasVcpuShares() bool

HasVcpuShares returns a boolean if a field has been set.

func (CatalogInstance) MarshalJSON ¶

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

func (*CatalogInstance) SetDescription ¶

func (o *CatalogInstance) SetDescription(v string)

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

func (*CatalogInstance) SetDisk ¶

func (o *CatalogInstance) SetDisk(v string)

SetDisk gets a reference to the given string and assigns it to the Disk field.

func (*CatalogInstance) SetDisplayName ¶

func (o *CatalogInstance) SetDisplayName(v string)

SetDisplayName gets a reference to the given string and assigns it to the DisplayName field.

func (*CatalogInstance) SetId ¶

func (o *CatalogInstance) SetId(v string)

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

func (*CatalogInstance) SetMemory ¶

func (o *CatalogInstance) SetMemory(v string)

SetMemory gets a reference to the given string and assigns it to the Memory field.

func (*CatalogInstance) SetPriceHourly ¶

func (o *CatalogInstance) SetPriceHourly(v string)

SetPriceHourly gets a reference to the given string and assigns it to the PriceHourly field.

func (*CatalogInstance) SetPriceMonthly ¶

func (o *CatalogInstance) SetPriceMonthly(v string)

SetPriceMonthly gets a reference to the given string and assigns it to the PriceMonthly field.

func (*CatalogInstance) SetRegions ¶

func (o *CatalogInstance) SetRegions(v []string)

SetRegions gets a reference to the given []string and assigns it to the Regions field.

func (*CatalogInstance) SetRequirePlan ¶

func (o *CatalogInstance) SetRequirePlan(v []string)

SetRequirePlan gets a reference to the given []string and assigns it to the RequirePlan field.

func (*CatalogInstance) SetStatus ¶

func (o *CatalogInstance) SetStatus(v string)

SetStatus gets a reference to the given string and assigns it to the Status field.

func (*CatalogInstance) SetVcpu ¶

func (o *CatalogInstance) SetVcpu(v int64)

SetVcpu gets a reference to the given int64 and assigns it to the Vcpu field.

func (*CatalogInstance) SetVcpuShares ¶

func (o *CatalogInstance) SetVcpuShares(v float32)

SetVcpuShares gets a reference to the given float32 and assigns it to the VcpuShares field.

type CatalogInstanceListItem ¶

type CatalogInstanceListItem struct {
	Id          *string `json:"id,omitempty"`
	Description *string `json:"description,omitempty"`
	// The number of cpus. Deprecated. Use vcpu_shares instead.
	Vcpu         *int64   `json:"vcpu,omitempty"`
	Memory       *string  `json:"memory,omitempty"`
	Disk         *string  `json:"disk,omitempty"`
	PriceHourly  *string  `json:"price_hourly,omitempty"`
	PriceMonthly *string  `json:"price_monthly,omitempty"`
	Regions      []string `json:"regions,omitempty"`
	Status       *string  `json:"status,omitempty"`
	RequirePlan  []string `json:"require_plan,omitempty"`
	// The number of vcpu shares reserved for the instance.
	VcpuShares  *float32 `json:"vcpu_shares,omitempty"`
	DisplayName *string  `json:"display_name,omitempty"`
}

CatalogInstanceListItem struct for CatalogInstanceListItem

func NewCatalogInstanceListItem ¶

func NewCatalogInstanceListItem() *CatalogInstanceListItem

NewCatalogInstanceListItem instantiates a new CatalogInstanceListItem 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 NewCatalogInstanceListItemWithDefaults ¶

func NewCatalogInstanceListItemWithDefaults() *CatalogInstanceListItem

NewCatalogInstanceListItemWithDefaults instantiates a new CatalogInstanceListItem 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 (*CatalogInstanceListItem) GetDescription ¶

func (o *CatalogInstanceListItem) GetDescription() string

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

func (*CatalogInstanceListItem) GetDescriptionOk ¶

func (o *CatalogInstanceListItem) 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 (*CatalogInstanceListItem) GetDisk ¶

func (o *CatalogInstanceListItem) GetDisk() string

GetDisk returns the Disk field value if set, zero value otherwise.

func (*CatalogInstanceListItem) GetDiskOk ¶

func (o *CatalogInstanceListItem) GetDiskOk() (*string, bool)

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

func (*CatalogInstanceListItem) GetDisplayName ¶

func (o *CatalogInstanceListItem) GetDisplayName() string

GetDisplayName returns the DisplayName field value if set, zero value otherwise.

func (*CatalogInstanceListItem) GetDisplayNameOk ¶

func (o *CatalogInstanceListItem) GetDisplayNameOk() (*string, bool)

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

func (*CatalogInstanceListItem) GetId ¶

func (o *CatalogInstanceListItem) GetId() string

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

func (*CatalogInstanceListItem) GetIdOk ¶

func (o *CatalogInstanceListItem) 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 (*CatalogInstanceListItem) GetMemory ¶

func (o *CatalogInstanceListItem) GetMemory() string

GetMemory returns the Memory field value if set, zero value otherwise.

func (*CatalogInstanceListItem) GetMemoryOk ¶

func (o *CatalogInstanceListItem) GetMemoryOk() (*string, bool)

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

func (*CatalogInstanceListItem) GetPriceHourly ¶

func (o *CatalogInstanceListItem) GetPriceHourly() string

GetPriceHourly returns the PriceHourly field value if set, zero value otherwise.

func (*CatalogInstanceListItem) GetPriceHourlyOk ¶

func (o *CatalogInstanceListItem) GetPriceHourlyOk() (*string, bool)

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

func (*CatalogInstanceListItem) GetPriceMonthly ¶

func (o *CatalogInstanceListItem) GetPriceMonthly() string

GetPriceMonthly returns the PriceMonthly field value if set, zero value otherwise.

func (*CatalogInstanceListItem) GetPriceMonthlyOk ¶

func (o *CatalogInstanceListItem) GetPriceMonthlyOk() (*string, bool)

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

func (*CatalogInstanceListItem) GetRegions ¶

func (o *CatalogInstanceListItem) GetRegions() []string

GetRegions returns the Regions field value if set, zero value otherwise.

func (*CatalogInstanceListItem) GetRegionsOk ¶

func (o *CatalogInstanceListItem) GetRegionsOk() ([]string, bool)

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

func (*CatalogInstanceListItem) GetRequirePlan ¶

func (o *CatalogInstanceListItem) GetRequirePlan() []string

GetRequirePlan returns the RequirePlan field value if set, zero value otherwise.

func (*CatalogInstanceListItem) GetRequirePlanOk ¶

func (o *CatalogInstanceListItem) GetRequirePlanOk() ([]string, bool)

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

func (*CatalogInstanceListItem) GetStatus ¶

func (o *CatalogInstanceListItem) GetStatus() string

GetStatus returns the Status field value if set, zero value otherwise.

func (*CatalogInstanceListItem) GetStatusOk ¶

func (o *CatalogInstanceListItem) GetStatusOk() (*string, 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 (*CatalogInstanceListItem) GetVcpu ¶

func (o *CatalogInstanceListItem) GetVcpu() int64

GetVcpu returns the Vcpu field value if set, zero value otherwise.

func (*CatalogInstanceListItem) GetVcpuOk ¶

func (o *CatalogInstanceListItem) GetVcpuOk() (*int64, bool)

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

func (*CatalogInstanceListItem) GetVcpuShares ¶

func (o *CatalogInstanceListItem) GetVcpuShares() float32

GetVcpuShares returns the VcpuShares field value if set, zero value otherwise.

func (*CatalogInstanceListItem) GetVcpuSharesOk ¶

func (o *CatalogInstanceListItem) GetVcpuSharesOk() (*float32, bool)

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

func (*CatalogInstanceListItem) HasDescription ¶

func (o *CatalogInstanceListItem) HasDescription() bool

HasDescription returns a boolean if a field has been set.

func (*CatalogInstanceListItem) HasDisk ¶

func (o *CatalogInstanceListItem) HasDisk() bool

HasDisk returns a boolean if a field has been set.

func (*CatalogInstanceListItem) HasDisplayName ¶

func (o *CatalogInstanceListItem) HasDisplayName() bool

HasDisplayName returns a boolean if a field has been set.

func (*CatalogInstanceListItem) HasId ¶

func (o *CatalogInstanceListItem) HasId() bool

HasId returns a boolean if a field has been set.

func (*CatalogInstanceListItem) HasMemory ¶

func (o *CatalogInstanceListItem) HasMemory() bool

HasMemory returns a boolean if a field has been set.

func (*CatalogInstanceListItem) HasPriceHourly ¶

func (o *CatalogInstanceListItem) HasPriceHourly() bool

HasPriceHourly returns a boolean if a field has been set.

func (*CatalogInstanceListItem) HasPriceMonthly ¶

func (o *CatalogInstanceListItem) HasPriceMonthly() bool

HasPriceMonthly returns a boolean if a field has been set.

func (*CatalogInstanceListItem) HasRegions ¶

func (o *CatalogInstanceListItem) HasRegions() bool

HasRegions returns a boolean if a field has been set.

func (*CatalogInstanceListItem) HasRequirePlan ¶

func (o *CatalogInstanceListItem) HasRequirePlan() bool

HasRequirePlan returns a boolean if a field has been set.

func (*CatalogInstanceListItem) HasStatus ¶

func (o *CatalogInstanceListItem) HasStatus() bool

HasStatus returns a boolean if a field has been set.

func (*CatalogInstanceListItem) HasVcpu ¶

func (o *CatalogInstanceListItem) HasVcpu() bool

HasVcpu returns a boolean if a field has been set.

func (*CatalogInstanceListItem) HasVcpuShares ¶

func (o *CatalogInstanceListItem) HasVcpuShares() bool

HasVcpuShares returns a boolean if a field has been set.

func (CatalogInstanceListItem) MarshalJSON ¶

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

func (*CatalogInstanceListItem) SetDescription ¶

func (o *CatalogInstanceListItem) SetDescription(v string)

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

func (*CatalogInstanceListItem) SetDisk ¶

func (o *CatalogInstanceListItem) SetDisk(v string)

SetDisk gets a reference to the given string and assigns it to the Disk field.

func (*CatalogInstanceListItem) SetDisplayName ¶

func (o *CatalogInstanceListItem) SetDisplayName(v string)

SetDisplayName gets a reference to the given string and assigns it to the DisplayName field.

func (*CatalogInstanceListItem) SetId ¶

func (o *CatalogInstanceListItem) SetId(v string)

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

func (*CatalogInstanceListItem) SetMemory ¶

func (o *CatalogInstanceListItem) SetMemory(v string)

SetMemory gets a reference to the given string and assigns it to the Memory field.

func (*CatalogInstanceListItem) SetPriceHourly ¶

func (o *CatalogInstanceListItem) SetPriceHourly(v string)

SetPriceHourly gets a reference to the given string and assigns it to the PriceHourly field.

func (*CatalogInstanceListItem) SetPriceMonthly ¶

func (o *CatalogInstanceListItem) SetPriceMonthly(v string)

SetPriceMonthly gets a reference to the given string and assigns it to the PriceMonthly field.

func (*CatalogInstanceListItem) SetRegions ¶

func (o *CatalogInstanceListItem) SetRegions(v []string)

SetRegions gets a reference to the given []string and assigns it to the Regions field.

func (*CatalogInstanceListItem) SetRequirePlan ¶

func (o *CatalogInstanceListItem) SetRequirePlan(v []string)

SetRequirePlan gets a reference to the given []string and assigns it to the RequirePlan field.

func (*CatalogInstanceListItem) SetStatus ¶

func (o *CatalogInstanceListItem) SetStatus(v string)

SetStatus gets a reference to the given string and assigns it to the Status field.

func (*CatalogInstanceListItem) SetVcpu ¶

func (o *CatalogInstanceListItem) SetVcpu(v int64)

SetVcpu gets a reference to the given int64 and assigns it to the Vcpu field.

func (*CatalogInstanceListItem) SetVcpuShares ¶

func (o *CatalogInstanceListItem) SetVcpuShares(v float32)

SetVcpuShares gets a reference to the given float32 and assigns it to the VcpuShares field.

type CatalogInstancesApi ¶

type CatalogInstancesApi interface {

	/*
		GetCatalogInstance Get Instance

		@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
		@param id The name of the instance
		@return ApiGetCatalogInstanceRequest
	*/
	GetCatalogInstance(ctx context.Context, id string) ApiGetCatalogInstanceRequest

	// GetCatalogInstanceExecute executes the request
	//  @return GetCatalogInstanceReply
	GetCatalogInstanceExecute(r ApiGetCatalogInstanceRequest) (*GetCatalogInstanceReply, *http.Response, error)

	/*
		ListCatalogInstances List Instance

		@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
		@return ApiListCatalogInstancesRequest
	*/
	ListCatalogInstances(ctx context.Context) ApiListCatalogInstancesRequest

	// ListCatalogInstancesExecute executes the request
	//  @return ListCatalogInstancesReply
	ListCatalogInstancesExecute(r ApiListCatalogInstancesRequest) (*ListCatalogInstancesReply, *http.Response, error)
}

type CatalogInstancesApiService ¶

type CatalogInstancesApiService service

CatalogInstancesApiService CatalogInstancesApi service

func (*CatalogInstancesApiService) GetCatalogInstance ¶

GetCatalogInstance Get Instance

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param id The name of the instance
@return ApiGetCatalogInstanceRequest

func (*CatalogInstancesApiService) GetCatalogInstanceExecute ¶

Execute executes the request

@return GetCatalogInstanceReply

func (*CatalogInstancesApiService) ListCatalogInstances ¶

ListCatalogInstances List Instance

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@return ApiListCatalogInstancesRequest

func (*CatalogInstancesApiService) ListCatalogInstancesExecute ¶

Execute executes the request

@return ListCatalogInstancesReply

type CatalogRegionsApi ¶

type CatalogRegionsApi interface {

	/*
		GetRegion Get Region

		@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
		@param id The name of the region
		@return ApiGetRegionRequest
	*/
	GetRegion(ctx context.Context, id string) ApiGetRegionRequest

	// GetRegionExecute executes the request
	//  @return GetRegionReply
	GetRegionExecute(r ApiGetRegionRequest) (*GetRegionReply, *http.Response, error)

	/*
		ListRegions List Region

		@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
		@return ApiListRegionsRequest
	*/
	ListRegions(ctx context.Context) ApiListRegionsRequest

	// ListRegionsExecute executes the request
	//  @return ListRegionsReply
	ListRegionsExecute(r ApiListRegionsRequest) (*ListRegionsReply, *http.Response, error)
}

type CatalogRegionsApiService ¶

type CatalogRegionsApiService service

CatalogRegionsApiService CatalogRegionsApi service

func (*CatalogRegionsApiService) GetRegion ¶

GetRegion Get Region

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param id The name of the region
@return ApiGetRegionRequest

func (*CatalogRegionsApiService) GetRegionExecute ¶

Execute executes the request

@return GetRegionReply

func (*CatalogRegionsApiService) ListRegions ¶

ListRegions List Region

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@return ApiListRegionsRequest

func (*CatalogRegionsApiService) ListRegionsExecute ¶

Execute executes the request

@return ListRegionsReply

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 ConfirmPaymentAuthorizationReply ¶

type ConfirmPaymentAuthorizationReply struct {
	PaymentMethod *PaymentMethod `json:"payment_method,omitempty"`
}

ConfirmPaymentAuthorizationReply struct for ConfirmPaymentAuthorizationReply

func NewConfirmPaymentAuthorizationReply ¶

func NewConfirmPaymentAuthorizationReply() *ConfirmPaymentAuthorizationReply

NewConfirmPaymentAuthorizationReply instantiates a new ConfirmPaymentAuthorizationReply 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 NewConfirmPaymentAuthorizationReplyWithDefaults ¶

func NewConfirmPaymentAuthorizationReplyWithDefaults() *ConfirmPaymentAuthorizationReply

NewConfirmPaymentAuthorizationReplyWithDefaults instantiates a new ConfirmPaymentAuthorizationReply 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 (*ConfirmPaymentAuthorizationReply) GetPaymentMethod ¶

func (o *ConfirmPaymentAuthorizationReply) GetPaymentMethod() PaymentMethod

GetPaymentMethod returns the PaymentMethod field value if set, zero value otherwise.

func (*ConfirmPaymentAuthorizationReply) GetPaymentMethodOk ¶

func (o *ConfirmPaymentAuthorizationReply) GetPaymentMethodOk() (*PaymentMethod, bool)

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

func (*ConfirmPaymentAuthorizationReply) HasPaymentMethod ¶

func (o *ConfirmPaymentAuthorizationReply) HasPaymentMethod() bool

HasPaymentMethod returns a boolean if a field has been set.

func (ConfirmPaymentAuthorizationReply) MarshalJSON ¶

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

func (*ConfirmPaymentAuthorizationReply) SetPaymentMethod ¶

func (o *ConfirmPaymentAuthorizationReply) SetPaymentMethod(v PaymentMethod)

SetPaymentMethod gets a reference to the given PaymentMethod and assigns it to the PaymentMethod field.

type CreateAccountRequest ¶

type CreateAccountRequest struct {
	Email    string  `json:"email"`
	Password string  `json:"password"`
	Name     *string `json:"name,omitempty"`
	Captcha  *string `json:"captcha,omitempty"`
}

CreateAccountRequest Create new account

func NewCreateAccountRequest ¶

func NewCreateAccountRequest(email string, password string) *CreateAccountRequest

NewCreateAccountRequest instantiates a new CreateAccountRequest 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 NewCreateAccountRequestWithDefaults ¶

func NewCreateAccountRequestWithDefaults() *CreateAccountRequest

NewCreateAccountRequestWithDefaults instantiates a new CreateAccountRequest 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 (*CreateAccountRequest) GetCaptcha ¶

func (o *CreateAccountRequest) GetCaptcha() string

GetCaptcha returns the Captcha field value if set, zero value otherwise.

func (*CreateAccountRequest) GetCaptchaOk ¶

func (o *CreateAccountRequest) GetCaptchaOk() (*string, bool)

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

func (*CreateAccountRequest) GetEmail ¶

func (o *CreateAccountRequest) GetEmail() string

GetEmail returns the Email field value

func (*CreateAccountRequest) GetEmailOk ¶

func (o *CreateAccountRequest) GetEmailOk() (*string, bool)

GetEmailOk returns a tuple with the Email field value and a boolean to check if the value has been set.

func (*CreateAccountRequest) GetName ¶

func (o *CreateAccountRequest) GetName() string

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

func (*CreateAccountRequest) GetNameOk ¶

func (o *CreateAccountRequest) 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 (*CreateAccountRequest) GetPassword ¶

func (o *CreateAccountRequest) GetPassword() string

GetPassword returns the Password field value

func (*CreateAccountRequest) GetPasswordOk ¶

func (o *CreateAccountRequest) GetPasswordOk() (*string, bool)

GetPasswordOk returns a tuple with the Password field value and a boolean to check if the value has been set.

func (*CreateAccountRequest) HasCaptcha ¶

func (o *CreateAccountRequest) HasCaptcha() bool

HasCaptcha returns a boolean if a field has been set.

func (*CreateAccountRequest) HasName ¶

func (o *CreateAccountRequest) HasName() bool

HasName returns a boolean if a field has been set.

func (CreateAccountRequest) MarshalJSON ¶

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

func (*CreateAccountRequest) SetCaptcha ¶

func (o *CreateAccountRequest) SetCaptcha(v string)

SetCaptcha gets a reference to the given string and assigns it to the Captcha field.

func (*CreateAccountRequest) SetEmail ¶

func (o *CreateAccountRequest) SetEmail(v string)

SetEmail sets field value

func (*CreateAccountRequest) SetName ¶

func (o *CreateAccountRequest) SetName(v string)

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

func (*CreateAccountRequest) SetPassword ¶

func (o *CreateAccountRequest) SetPassword(v string)

SetPassword sets field value

type CreateApp ¶

type CreateApp struct {
	Name *string `json:"name,omitempty"`
}

CreateApp struct for CreateApp

func NewCreateApp ¶

func NewCreateApp() *CreateApp

NewCreateApp instantiates a new CreateApp 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 NewCreateAppWithDefaults ¶

func NewCreateAppWithDefaults() *CreateApp

NewCreateAppWithDefaults instantiates a new CreateApp 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 (*CreateApp) GetName ¶

func (o *CreateApp) GetName() string

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

func (*CreateApp) GetNameOk ¶

func (o *CreateApp) 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 (*CreateApp) HasName ¶

func (o *CreateApp) HasName() bool

HasName returns a boolean if a field has been set.

func (CreateApp) MarshalJSON ¶

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

func (*CreateApp) SetName ¶

func (o *CreateApp) SetName(v string)

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

type CreateAppReply ¶

type CreateAppReply struct {
	App *App `json:"app,omitempty"`
}

CreateAppReply struct for CreateAppReply

func NewCreateAppReply ¶

func NewCreateAppReply() *CreateAppReply

NewCreateAppReply instantiates a new CreateAppReply 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 NewCreateAppReplyWithDefaults ¶

func NewCreateAppReplyWithDefaults() *CreateAppReply

NewCreateAppReplyWithDefaults instantiates a new CreateAppReply 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 (*CreateAppReply) GetApp ¶

func (o *CreateAppReply) GetApp() App

GetApp returns the App field value if set, zero value otherwise.

func (*CreateAppReply) GetAppOk ¶

func (o *CreateAppReply) GetAppOk() (*App, bool)

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

func (*CreateAppReply) HasApp ¶

func (o *CreateAppReply) HasApp() bool

HasApp returns a boolean if a field has been set.

func (CreateAppReply) MarshalJSON ¶

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

func (*CreateAppReply) SetApp ¶

func (o *CreateAppReply) SetApp(v App)

SetApp gets a reference to the given App and assigns it to the App field.

type CreateCredential ¶

type CreateCredential struct {
	Name           *string         `json:"name,omitempty"`
	Description    *string         `json:"description,omitempty"`
	Type           *CredentialType `json:"type,omitempty"`
	OrganizationId *string         `json:"organization_id,omitempty"`
}

CreateCredential struct for CreateCredential

func NewCreateCredential ¶

func NewCreateCredential() *CreateCredential

NewCreateCredential instantiates a new CreateCredential 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 NewCreateCredentialWithDefaults ¶

func NewCreateCredentialWithDefaults() *CreateCredential

NewCreateCredentialWithDefaults instantiates a new CreateCredential 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 (*CreateCredential) GetDescription ¶

func (o *CreateCredential) GetDescription() string

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

func (*CreateCredential) GetDescriptionOk ¶

func (o *CreateCredential) 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 (*CreateCredential) GetName ¶

func (o *CreateCredential) GetName() string

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

func (*CreateCredential) GetNameOk ¶

func (o *CreateCredential) 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 (*CreateCredential) GetOrganizationId ¶

func (o *CreateCredential) GetOrganizationId() string

GetOrganizationId returns the OrganizationId field value if set, zero value otherwise.

func (*CreateCredential) GetOrganizationIdOk ¶

func (o *CreateCredential) GetOrganizationIdOk() (*string, bool)

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

func (*CreateCredential) GetType ¶

func (o *CreateCredential) GetType() CredentialType

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

func (*CreateCredential) GetTypeOk ¶

func (o *CreateCredential) GetTypeOk() (*CredentialType, 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 (*CreateCredential) HasDescription ¶

func (o *CreateCredential) HasDescription() bool

HasDescription returns a boolean if a field has been set.

func (*CreateCredential) HasName ¶

func (o *CreateCredential) HasName() bool

HasName returns a boolean if a field has been set.

func (*CreateCredential) HasOrganizationId ¶

func (o *CreateCredential) HasOrganizationId() bool

HasOrganizationId returns a boolean if a field has been set.

func (*CreateCredential) HasType ¶

func (o *CreateCredential) HasType() bool

HasType returns a boolean if a field has been set.

func (CreateCredential) MarshalJSON ¶

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

func (*CreateCredential) SetDescription ¶

func (o *CreateCredential) SetDescription(v string)

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

func (*CreateCredential) SetName ¶

func (o *CreateCredential) SetName(v string)

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

func (*CreateCredential) SetOrganizationId ¶

func (o *CreateCredential) SetOrganizationId(v string)

SetOrganizationId gets a reference to the given string and assigns it to the OrganizationId field.

func (*CreateCredential) SetType ¶

func (o *CreateCredential) SetType(v CredentialType)

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

type CreateCredentialReply ¶

type CreateCredentialReply struct {
	Credential *Credential `json:"credential,omitempty"`
}

CreateCredentialReply struct for CreateCredentialReply

func NewCreateCredentialReply ¶

func NewCreateCredentialReply() *CreateCredentialReply

NewCreateCredentialReply instantiates a new CreateCredentialReply 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 NewCreateCredentialReplyWithDefaults ¶

func NewCreateCredentialReplyWithDefaults() *CreateCredentialReply

NewCreateCredentialReplyWithDefaults instantiates a new CreateCredentialReply 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 (*CreateCredentialReply) GetCredential ¶

func (o *CreateCredentialReply) GetCredential() Credential

GetCredential returns the Credential field value if set, zero value otherwise.

func (*CreateCredentialReply) GetCredentialOk ¶

func (o *CreateCredentialReply) GetCredentialOk() (*Credential, bool)

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

func (*CreateCredentialReply) HasCredential ¶

func (o *CreateCredentialReply) HasCredential() bool

HasCredential returns a boolean if a field has been set.

func (CreateCredentialReply) MarshalJSON ¶

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

func (*CreateCredentialReply) SetCredential ¶

func (o *CreateCredentialReply) SetCredential(v Credential)

SetCredential gets a reference to the given Credential and assigns it to the Credential field.

type CreateDomain ¶

type CreateDomain struct {
	Name  *string     `json:"name,omitempty"`
	Type  *DomainType `json:"type,omitempty"`
	AppId *string     `json:"app_id,omitempty"`
}

CreateDomain struct for CreateDomain

func NewCreateDomain ¶

func NewCreateDomain() *CreateDomain

NewCreateDomain instantiates a new CreateDomain 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 NewCreateDomainWithDefaults ¶

func NewCreateDomainWithDefaults() *CreateDomain

NewCreateDomainWithDefaults instantiates a new CreateDomain 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 (*CreateDomain) GetAppId ¶

func (o *CreateDomain) GetAppId() string

GetAppId returns the AppId field value if set, zero value otherwise.

func (*CreateDomain) GetAppIdOk ¶

func (o *CreateDomain) GetAppIdOk() (*string, bool)

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

func (*CreateDomain) GetName ¶

func (o *CreateDomain) GetName() string

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

func (*CreateDomain) GetNameOk ¶

func (o *CreateDomain) 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 (*CreateDomain) GetType ¶

func (o *CreateDomain) GetType() DomainType

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

func (*CreateDomain) GetTypeOk ¶

func (o *CreateDomain) GetTypeOk() (*DomainType, 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 (*CreateDomain) HasAppId ¶

func (o *CreateDomain) HasAppId() bool

HasAppId returns a boolean if a field has been set.

func (*CreateDomain) HasName ¶

func (o *CreateDomain) HasName() bool

HasName returns a boolean if a field has been set.

func (*CreateDomain) HasType ¶

func (o *CreateDomain) HasType() bool

HasType returns a boolean if a field has been set.

func (CreateDomain) MarshalJSON ¶

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

func (*CreateDomain) SetAppId ¶

func (o *CreateDomain) SetAppId(v string)

SetAppId gets a reference to the given string and assigns it to the AppId field.

func (*CreateDomain) SetName ¶

func (o *CreateDomain) SetName(v string)

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

func (*CreateDomain) SetType ¶

func (o *CreateDomain) SetType(v DomainType)

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

type CreateDomainReply ¶

type CreateDomainReply struct {
	Domain *Domain `json:"domain,omitempty"`
}

CreateDomainReply struct for CreateDomainReply

func NewCreateDomainReply ¶

func NewCreateDomainReply() *CreateDomainReply

NewCreateDomainReply instantiates a new CreateDomainReply 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 NewCreateDomainReplyWithDefaults ¶

func NewCreateDomainReplyWithDefaults() *CreateDomainReply

NewCreateDomainReplyWithDefaults instantiates a new CreateDomainReply 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 (*CreateDomainReply) GetDomain ¶

func (o *CreateDomainReply) GetDomain() Domain

GetDomain returns the Domain field value if set, zero value otherwise.

func (*CreateDomainReply) GetDomainOk ¶

func (o *CreateDomainReply) GetDomainOk() (*Domain, bool)

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

func (*CreateDomainReply) HasDomain ¶

func (o *CreateDomainReply) HasDomain() bool

HasDomain returns a boolean if a field has been set.

func (CreateDomainReply) MarshalJSON ¶

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

func (*CreateDomainReply) SetDomain ¶

func (o *CreateDomainReply) SetDomain(v Domain)

SetDomain gets a reference to the given Domain and assigns it to the Domain field.

type CreateOrganizationInvitationReply ¶

type CreateOrganizationInvitationReply struct {
	Invitation *OrganizationInvitation `json:"invitation,omitempty"`
}

CreateOrganizationInvitationReply struct for CreateOrganizationInvitationReply

func NewCreateOrganizationInvitationReply ¶

func NewCreateOrganizationInvitationReply() *CreateOrganizationInvitationReply

NewCreateOrganizationInvitationReply instantiates a new CreateOrganizationInvitationReply 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 NewCreateOrganizationInvitationReplyWithDefaults ¶

func NewCreateOrganizationInvitationReplyWithDefaults() *CreateOrganizationInvitationReply

NewCreateOrganizationInvitationReplyWithDefaults instantiates a new CreateOrganizationInvitationReply 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 (*CreateOrganizationInvitationReply) GetInvitation ¶

GetInvitation returns the Invitation field value if set, zero value otherwise.

func (*CreateOrganizationInvitationReply) GetInvitationOk ¶

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

func (*CreateOrganizationInvitationReply) HasInvitation ¶

func (o *CreateOrganizationInvitationReply) HasInvitation() bool

HasInvitation returns a boolean if a field has been set.

func (CreateOrganizationInvitationReply) MarshalJSON ¶

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

func (*CreateOrganizationInvitationReply) SetInvitation ¶

SetInvitation gets a reference to the given OrganizationInvitation and assigns it to the Invitation field.

type CreateOrganizationInvitationRequest ¶

type CreateOrganizationInvitationRequest struct {
	Email *string `json:"email,omitempty"`
}

CreateOrganizationInvitationRequest struct for CreateOrganizationInvitationRequest

func NewCreateOrganizationInvitationRequest ¶

func NewCreateOrganizationInvitationRequest() *CreateOrganizationInvitationRequest

NewCreateOrganizationInvitationRequest instantiates a new CreateOrganizationInvitationRequest 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 NewCreateOrganizationInvitationRequestWithDefaults ¶

func NewCreateOrganizationInvitationRequestWithDefaults() *CreateOrganizationInvitationRequest

NewCreateOrganizationInvitationRequestWithDefaults instantiates a new CreateOrganizationInvitationRequest 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 (*CreateOrganizationInvitationRequest) GetEmail ¶

GetEmail returns the Email field value if set, zero value otherwise.

func (*CreateOrganizationInvitationRequest) GetEmailOk ¶

func (o *CreateOrganizationInvitationRequest) GetEmailOk() (*string, bool)

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

func (*CreateOrganizationInvitationRequest) HasEmail ¶

HasEmail returns a boolean if a field has been set.

func (CreateOrganizationInvitationRequest) MarshalJSON ¶

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

func (*CreateOrganizationInvitationRequest) SetEmail ¶

SetEmail gets a reference to the given string and assigns it to the Email field.

type CreateOrganizationReply ¶

type CreateOrganizationReply struct {
	Organization *Organization `json:"organization,omitempty"`
}

CreateOrganizationReply struct for CreateOrganizationReply

func NewCreateOrganizationReply ¶

func NewCreateOrganizationReply() *CreateOrganizationReply

NewCreateOrganizationReply instantiates a new CreateOrganizationReply 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 NewCreateOrganizationReplyWithDefaults ¶

func NewCreateOrganizationReplyWithDefaults() *CreateOrganizationReply

NewCreateOrganizationReplyWithDefaults instantiates a new CreateOrganizationReply 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 (*CreateOrganizationReply) GetOrganization ¶

func (o *CreateOrganizationReply) GetOrganization() Organization

GetOrganization returns the Organization field value if set, zero value otherwise.

func (*CreateOrganizationReply) GetOrganizationOk ¶

func (o *CreateOrganizationReply) GetOrganizationOk() (*Organization, bool)

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

func (*CreateOrganizationReply) HasOrganization ¶

func (o *CreateOrganizationReply) HasOrganization() bool

HasOrganization returns a boolean if a field has been set.

func (CreateOrganizationReply) MarshalJSON ¶

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

func (*CreateOrganizationReply) SetOrganization ¶

func (o *CreateOrganizationReply) SetOrganization(v Organization)

SetOrganization gets a reference to the given Organization and assigns it to the Organization field.

type CreateOrganizationRequest ¶

type CreateOrganizationRequest struct {
	Name *string `json:"name,omitempty"`
}

CreateOrganizationRequest struct for CreateOrganizationRequest

func NewCreateOrganizationRequest ¶

func NewCreateOrganizationRequest() *CreateOrganizationRequest

NewCreateOrganizationRequest instantiates a new CreateOrganizationRequest 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 NewCreateOrganizationRequestWithDefaults ¶

func NewCreateOrganizationRequestWithDefaults() *CreateOrganizationRequest

NewCreateOrganizationRequestWithDefaults instantiates a new CreateOrganizationRequest 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 (*CreateOrganizationRequest) GetName ¶

func (o *CreateOrganizationRequest) GetName() string

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

func (*CreateOrganizationRequest) GetNameOk ¶

func (o *CreateOrganizationRequest) 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 (*CreateOrganizationRequest) HasName ¶

func (o *CreateOrganizationRequest) HasName() bool

HasName returns a boolean if a field has been set.

func (CreateOrganizationRequest) MarshalJSON ¶

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

func (*CreateOrganizationRequest) SetName ¶

func (o *CreateOrganizationRequest) SetName(v string)

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

type CreatePaymentAuthorizationReply ¶

type CreatePaymentAuthorizationReply struct {
	PaymentMethod *PaymentMethod `json:"payment_method,omitempty"`
}

CreatePaymentAuthorizationReply struct for CreatePaymentAuthorizationReply

func NewCreatePaymentAuthorizationReply ¶

func NewCreatePaymentAuthorizationReply() *CreatePaymentAuthorizationReply

NewCreatePaymentAuthorizationReply instantiates a new CreatePaymentAuthorizationReply 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 NewCreatePaymentAuthorizationReplyWithDefaults ¶

func NewCreatePaymentAuthorizationReplyWithDefaults() *CreatePaymentAuthorizationReply

NewCreatePaymentAuthorizationReplyWithDefaults instantiates a new CreatePaymentAuthorizationReply 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 (*CreatePaymentAuthorizationReply) GetPaymentMethod ¶

func (o *CreatePaymentAuthorizationReply) GetPaymentMethod() PaymentMethod

GetPaymentMethod returns the PaymentMethod field value if set, zero value otherwise.

func (*CreatePaymentAuthorizationReply) GetPaymentMethodOk ¶

func (o *CreatePaymentAuthorizationReply) GetPaymentMethodOk() (*PaymentMethod, bool)

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

func (*CreatePaymentAuthorizationReply) HasPaymentMethod ¶

func (o *CreatePaymentAuthorizationReply) HasPaymentMethod() bool

HasPaymentMethod returns a boolean if a field has been set.

func (CreatePaymentAuthorizationReply) MarshalJSON ¶

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

func (*CreatePaymentAuthorizationReply) SetPaymentMethod ¶

func (o *CreatePaymentAuthorizationReply) SetPaymentMethod(v PaymentMethod)

SetPaymentMethod gets a reference to the given PaymentMethod and assigns it to the PaymentMethod field.

type CreateSecret ¶

type CreateSecret struct {
	Name                   *string                              `json:"name,omitempty"`
	Type                   *SecretType                          `json:"type,omitempty"`
	Value                  *string                              `json:"value,omitempty"`
	DockerHubRegistry      *DockerHubRegistryConfiguration      `json:"docker_hub_registry,omitempty"`
	PrivateRegistry        *PrivateRegistryConfiguration        `json:"private_registry,omitempty"`
	DigitalOceanRegistry   *DigitalOceanRegistryConfiguration   `json:"digital_ocean_registry,omitempty"`
	GithubRegistry         *GitHubRegistryConfiguration         `json:"github_registry,omitempty"`
	GitlabRegistry         *GitLabRegistryConfiguration         `json:"gitlab_registry,omitempty"`
	GcpContainerRegistry   *GCPContainerRegistryConfiguration   `json:"gcp_container_registry,omitempty"`
	AzureContainerRegistry *AzureContainerRegistryConfiguration `json:"azure_container_registry,omitempty"`
}

CreateSecret struct for CreateSecret

func NewCreateSecret ¶

func NewCreateSecret() *CreateSecret

NewCreateSecret instantiates a new CreateSecret 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 NewCreateSecretWithDefaults ¶

func NewCreateSecretWithDefaults() *CreateSecret

NewCreateSecretWithDefaults instantiates a new CreateSecret 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 (*CreateSecret) GetAzureContainerRegistry ¶

func (o *CreateSecret) GetAzureContainerRegistry() AzureContainerRegistryConfiguration

GetAzureContainerRegistry returns the AzureContainerRegistry field value if set, zero value otherwise.

func (*CreateSecret) GetAzureContainerRegistryOk ¶

func (o *CreateSecret) GetAzureContainerRegistryOk() (*AzureContainerRegistryConfiguration, bool)

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

func (*CreateSecret) GetDigitalOceanRegistry ¶

func (o *CreateSecret) GetDigitalOceanRegistry() DigitalOceanRegistryConfiguration

GetDigitalOceanRegistry returns the DigitalOceanRegistry field value if set, zero value otherwise.

func (*CreateSecret) GetDigitalOceanRegistryOk ¶

func (o *CreateSecret) GetDigitalOceanRegistryOk() (*DigitalOceanRegistryConfiguration, bool)

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

func (*CreateSecret) GetDockerHubRegistry ¶

func (o *CreateSecret) GetDockerHubRegistry() DockerHubRegistryConfiguration

GetDockerHubRegistry returns the DockerHubRegistry field value if set, zero value otherwise.

func (*CreateSecret) GetDockerHubRegistryOk ¶

func (o *CreateSecret) GetDockerHubRegistryOk() (*DockerHubRegistryConfiguration, bool)

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

func (*CreateSecret) GetGcpContainerRegistry ¶

func (o *CreateSecret) GetGcpContainerRegistry() GCPContainerRegistryConfiguration

GetGcpContainerRegistry returns the GcpContainerRegistry field value if set, zero value otherwise.

func (*CreateSecret) GetGcpContainerRegistryOk ¶

func (o *CreateSecret) GetGcpContainerRegistryOk() (*GCPContainerRegistryConfiguration, bool)

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

func (*CreateSecret) GetGithubRegistry ¶

func (o *CreateSecret) GetGithubRegistry() GitHubRegistryConfiguration

GetGithubRegistry returns the GithubRegistry field value if set, zero value otherwise.

func (*CreateSecret) GetGithubRegistryOk ¶

func (o *CreateSecret) GetGithubRegistryOk() (*GitHubRegistryConfiguration, bool)

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

func (*CreateSecret) GetGitlabRegistry ¶

func (o *CreateSecret) GetGitlabRegistry() GitLabRegistryConfiguration

GetGitlabRegistry returns the GitlabRegistry field value if set, zero value otherwise.

func (*CreateSecret) GetGitlabRegistryOk ¶

func (o *CreateSecret) GetGitlabRegistryOk() (*GitLabRegistryConfiguration, bool)

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

func (*CreateSecret) GetName ¶

func (o *CreateSecret) GetName() string

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

func (*CreateSecret) GetNameOk ¶

func (o *CreateSecret) 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 (*CreateSecret) GetPrivateRegistry ¶

func (o *CreateSecret) GetPrivateRegistry() PrivateRegistryConfiguration

GetPrivateRegistry returns the PrivateRegistry field value if set, zero value otherwise.

func (*CreateSecret) GetPrivateRegistryOk ¶

func (o *CreateSecret) GetPrivateRegistryOk() (*PrivateRegistryConfiguration, bool)

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

func (*CreateSecret) GetType ¶

func (o *CreateSecret) GetType() SecretType

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

func (*CreateSecret) GetTypeOk ¶

func (o *CreateSecret) GetTypeOk() (*SecretType, 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 (*CreateSecret) GetValue ¶

func (o *CreateSecret) GetValue() string

GetValue returns the Value field value if set, zero value otherwise.

func (*CreateSecret) GetValueOk ¶

func (o *CreateSecret) GetValueOk() (*string, bool)

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

func (*CreateSecret) HasAzureContainerRegistry ¶

func (o *CreateSecret) HasAzureContainerRegistry() bool

HasAzureContainerRegistry returns a boolean if a field has been set.

func (*CreateSecret) HasDigitalOceanRegistry ¶

func (o *CreateSecret) HasDigitalOceanRegistry() bool

HasDigitalOceanRegistry returns a boolean if a field has been set.

func (*CreateSecret) HasDockerHubRegistry ¶

func (o *CreateSecret) HasDockerHubRegistry() bool

HasDockerHubRegistry returns a boolean if a field has been set.

func (*CreateSecret) HasGcpContainerRegistry ¶

func (o *CreateSecret) HasGcpContainerRegistry() bool

HasGcpContainerRegistry returns a boolean if a field has been set.

func (*CreateSecret) HasGithubRegistry ¶

func (o *CreateSecret) HasGithubRegistry() bool

HasGithubRegistry returns a boolean if a field has been set.

func (*CreateSecret) HasGitlabRegistry ¶

func (o *CreateSecret) HasGitlabRegistry() bool

HasGitlabRegistry returns a boolean if a field has been set.

func (*CreateSecret) HasName ¶

func (o *CreateSecret) HasName() bool

HasName returns a boolean if a field has been set.

func (*CreateSecret) HasPrivateRegistry ¶

func (o *CreateSecret) HasPrivateRegistry() bool

HasPrivateRegistry returns a boolean if a field has been set.

func (*CreateSecret) HasType ¶

func (o *CreateSecret) HasType() bool

HasType returns a boolean if a field has been set.

func (*CreateSecret) HasValue ¶

func (o *CreateSecret) HasValue() bool

HasValue returns a boolean if a field has been set.

func (CreateSecret) MarshalJSON ¶

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

func (*CreateSecret) SetAzureContainerRegistry ¶

func (o *CreateSecret) SetAzureContainerRegistry(v AzureContainerRegistryConfiguration)

SetAzureContainerRegistry gets a reference to the given AzureContainerRegistryConfiguration and assigns it to the AzureContainerRegistry field.

func (*CreateSecret) SetDigitalOceanRegistry ¶

func (o *CreateSecret) SetDigitalOceanRegistry(v DigitalOceanRegistryConfiguration)

SetDigitalOceanRegistry gets a reference to the given DigitalOceanRegistryConfiguration and assigns it to the DigitalOceanRegistry field.

func (*CreateSecret) SetDockerHubRegistry ¶

func (o *CreateSecret) SetDockerHubRegistry(v DockerHubRegistryConfiguration)

SetDockerHubRegistry gets a reference to the given DockerHubRegistryConfiguration and assigns it to the DockerHubRegistry field.

func (*CreateSecret) SetGcpContainerRegistry ¶

func (o *CreateSecret) SetGcpContainerRegistry(v GCPContainerRegistryConfiguration)

SetGcpContainerRegistry gets a reference to the given GCPContainerRegistryConfiguration and assigns it to the GcpContainerRegistry field.

func (*CreateSecret) SetGithubRegistry ¶

func (o *CreateSecret) SetGithubRegistry(v GitHubRegistryConfiguration)

SetGithubRegistry gets a reference to the given GitHubRegistryConfiguration and assigns it to the GithubRegistry field.

func (*CreateSecret) SetGitlabRegistry ¶

func (o *CreateSecret) SetGitlabRegistry(v GitLabRegistryConfiguration)

SetGitlabRegistry gets a reference to the given GitLabRegistryConfiguration and assigns it to the GitlabRegistry field.

func (*CreateSecret) SetName ¶

func (o *CreateSecret) SetName(v string)

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

func (*CreateSecret) SetPrivateRegistry ¶

func (o *CreateSecret) SetPrivateRegistry(v PrivateRegistryConfiguration)

SetPrivateRegistry gets a reference to the given PrivateRegistryConfiguration and assigns it to the PrivateRegistry field.

func (*CreateSecret) SetType ¶

func (o *CreateSecret) SetType(v SecretType)

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

func (*CreateSecret) SetValue ¶

func (o *CreateSecret) SetValue(v string)

SetValue gets a reference to the given string and assigns it to the Value field.

type CreateSecretReply ¶

type CreateSecretReply struct {
	Secret *Secret `json:"secret,omitempty"`
}

CreateSecretReply struct for CreateSecretReply

func NewCreateSecretReply ¶

func NewCreateSecretReply() *CreateSecretReply

NewCreateSecretReply instantiates a new CreateSecretReply 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 NewCreateSecretReplyWithDefaults ¶

func NewCreateSecretReplyWithDefaults() *CreateSecretReply

NewCreateSecretReplyWithDefaults instantiates a new CreateSecretReply 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 (*CreateSecretReply) GetSecret ¶

func (o *CreateSecretReply) GetSecret() Secret

GetSecret returns the Secret field value if set, zero value otherwise.

func (*CreateSecretReply) GetSecretOk ¶

func (o *CreateSecretReply) GetSecretOk() (*Secret, bool)

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

func (*CreateSecretReply) HasSecret ¶

func (o *CreateSecretReply) HasSecret() bool

HasSecret returns a boolean if a field has been set.

func (CreateSecretReply) MarshalJSON ¶

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

func (*CreateSecretReply) SetSecret ¶

func (o *CreateSecretReply) SetSecret(v Secret)

SetSecret gets a reference to the given Secret and assigns it to the Secret field.

type CreateService ¶

type CreateService struct {
	AppId      *string               `json:"app_id,omitempty"`
	Definition *DeploymentDefinition `json:"definition,omitempty"`
}

CreateService struct for CreateService

func NewCreateService ¶

func NewCreateService() *CreateService

NewCreateService instantiates a new CreateService 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 NewCreateServiceWithDefaults ¶

func NewCreateServiceWithDefaults() *CreateService

NewCreateServiceWithDefaults instantiates a new CreateService 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 (*CreateService) GetAppId ¶

func (o *CreateService) GetAppId() string

GetAppId returns the AppId field value if set, zero value otherwise.

func (*CreateService) GetAppIdOk ¶

func (o *CreateService) GetAppIdOk() (*string, bool)

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

func (*CreateService) GetDefinition ¶

func (o *CreateService) GetDefinition() DeploymentDefinition

GetDefinition returns the Definition field value if set, zero value otherwise.

func (*CreateService) GetDefinitionOk ¶

func (o *CreateService) GetDefinitionOk() (*DeploymentDefinition, bool)

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

func (*CreateService) HasAppId ¶

func (o *CreateService) HasAppId() bool

HasAppId returns a boolean if a field has been set.

func (*CreateService) HasDefinition ¶

func (o *CreateService) HasDefinition() bool

HasDefinition returns a boolean if a field has been set.

func (CreateService) MarshalJSON ¶

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

func (*CreateService) SetAppId ¶

func (o *CreateService) SetAppId(v string)

SetAppId gets a reference to the given string and assigns it to the AppId field.

func (*CreateService) SetDefinition ¶

func (o *CreateService) SetDefinition(v DeploymentDefinition)

SetDefinition gets a reference to the given DeploymentDefinition and assigns it to the Definition field.

type CreateServiceReply ¶

type CreateServiceReply struct {
	Service *Service `json:"service,omitempty"`
}

CreateServiceReply struct for CreateServiceReply

func NewCreateServiceReply ¶

func NewCreateServiceReply() *CreateServiceReply

NewCreateServiceReply instantiates a new CreateServiceReply 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 NewCreateServiceReplyWithDefaults ¶

func NewCreateServiceReplyWithDefaults() *CreateServiceReply

NewCreateServiceReplyWithDefaults instantiates a new CreateServiceReply 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 (*CreateServiceReply) GetService ¶

func (o *CreateServiceReply) GetService() Service

GetService returns the Service field value if set, zero value otherwise.

func (*CreateServiceReply) GetServiceOk ¶

func (o *CreateServiceReply) GetServiceOk() (*Service, bool)

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

func (*CreateServiceReply) HasService ¶

func (o *CreateServiceReply) HasService() bool

HasService returns a boolean if a field has been set.

func (CreateServiceReply) MarshalJSON ¶

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

func (*CreateServiceReply) SetService ¶

func (o *CreateServiceReply) SetService(v Service)

SetService gets a reference to the given Service and assigns it to the Service field.

type Credential ¶

type Credential struct {
	Id             *string         `json:"id,omitempty"`
	Type           *CredentialType `json:"type,omitempty"`
	Name           *string         `json:"name,omitempty"`
	Token          *string         `json:"token,omitempty"`
	Description    *string         `json:"description,omitempty"`
	UserId         *string         `json:"user_id,omitempty"`
	OrganizationId *string         `json:"organization_id,omitempty"`
	UpdatedAt      *time.Time      `json:"updated_at,omitempty"`
	CreatedAt      *time.Time      `json:"created_at,omitempty"`
}

Credential struct for Credential

func NewCredential ¶

func NewCredential() *Credential

NewCredential instantiates a new Credential 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 NewCredentialWithDefaults ¶

func NewCredentialWithDefaults() *Credential

NewCredentialWithDefaults instantiates a new Credential 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 (*Credential) GetCreatedAt ¶

func (o *Credential) GetCreatedAt() time.Time

GetCreatedAt returns the CreatedAt field value if set, zero value otherwise.

func (*Credential) GetCreatedAtOk ¶

func (o *Credential) GetCreatedAtOk() (*time.Time, bool)

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

func (*Credential) GetDescription ¶

func (o *Credential) GetDescription() string

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

func (*Credential) GetDescriptionOk ¶

func (o *Credential) 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 (*Credential) GetId ¶

func (o *Credential) GetId() string

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

func (*Credential) GetIdOk ¶

func (o *Credential) 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 (*Credential) GetName ¶

func (o *Credential) GetName() string

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

func (*Credential) GetNameOk ¶

func (o *Credential) 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 (*Credential) GetOrganizationId ¶

func (o *Credential) GetOrganizationId() string

GetOrganizationId returns the OrganizationId field value if set, zero value otherwise.

func (*Credential) GetOrganizationIdOk ¶

func (o *Credential) GetOrganizationIdOk() (*string, bool)

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

func (*Credential) GetToken ¶

func (o *Credential) GetToken() string

GetToken returns the Token field value if set, zero value otherwise.

func (*Credential) GetTokenOk ¶

func (o *Credential) GetTokenOk() (*string, bool)

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

func (*Credential) GetType ¶

func (o *Credential) GetType() CredentialType

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

func (*Credential) GetTypeOk ¶

func (o *Credential) GetTypeOk() (*CredentialType, 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 (*Credential) GetUpdatedAt ¶

func (o *Credential) GetUpdatedAt() time.Time

GetUpdatedAt returns the UpdatedAt field value if set, zero value otherwise.

func (*Credential) GetUpdatedAtOk ¶

func (o *Credential) GetUpdatedAtOk() (*time.Time, bool)

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

func (*Credential) GetUserId ¶

func (o *Credential) GetUserId() string

GetUserId returns the UserId field value if set, zero value otherwise.

func (*Credential) GetUserIdOk ¶

func (o *Credential) GetUserIdOk() (*string, bool)

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

func (*Credential) HasCreatedAt ¶

func (o *Credential) HasCreatedAt() bool

HasCreatedAt returns a boolean if a field has been set.

func (*Credential) HasDescription ¶

func (o *Credential) HasDescription() bool

HasDescription returns a boolean if a field has been set.

func (*Credential) HasId ¶

func (o *Credential) HasId() bool

HasId returns a boolean if a field has been set.

func (*Credential) HasName ¶

func (o *Credential) HasName() bool

HasName returns a boolean if a field has been set.

func (*Credential) HasOrganizationId ¶

func (o *Credential) HasOrganizationId() bool

HasOrganizationId returns a boolean if a field has been set.

func (*Credential) HasToken ¶

func (o *Credential) HasToken() bool

HasToken returns a boolean if a field has been set.

func (*Credential) HasType ¶

func (o *Credential) HasType() bool

HasType returns a boolean if a field has been set.

func (*Credential) HasUpdatedAt ¶

func (o *Credential) HasUpdatedAt() bool

HasUpdatedAt returns a boolean if a field has been set.

func (*Credential) HasUserId ¶

func (o *Credential) HasUserId() bool

HasUserId returns a boolean if a field has been set.

func (Credential) MarshalJSON ¶

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

func (*Credential) SetCreatedAt ¶

func (o *Credential) SetCreatedAt(v time.Time)

SetCreatedAt gets a reference to the given time.Time and assigns it to the CreatedAt field.

func (*Credential) SetDescription ¶

func (o *Credential) SetDescription(v string)

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

func (*Credential) SetId ¶

func (o *Credential) SetId(v string)

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

func (*Credential) SetName ¶

func (o *Credential) SetName(v string)

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

func (*Credential) SetOrganizationId ¶

func (o *Credential) SetOrganizationId(v string)

SetOrganizationId gets a reference to the given string and assigns it to the OrganizationId field.

func (*Credential) SetToken ¶

func (o *Credential) SetToken(v string)

SetToken gets a reference to the given string and assigns it to the Token field.

func (*Credential) SetType ¶

func (o *Credential) SetType(v CredentialType)

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

func (*Credential) SetUpdatedAt ¶

func (o *Credential) SetUpdatedAt(v time.Time)

SetUpdatedAt gets a reference to the given time.Time and assigns it to the UpdatedAt field.

func (*Credential) SetUserId ¶

func (o *Credential) SetUserId(v string)

SetUserId gets a reference to the given string and assigns it to the UserId field.

type CredentialType ¶

type CredentialType string

CredentialType the model 'CredentialType'

const (
	CREDENTIALTYPE_INVALID      CredentialType = "INVALID"
	CREDENTIALTYPE_USER         CredentialType = "USER"
	CREDENTIALTYPE_ORGANIZATION CredentialType = "ORGANIZATION"
)

List of Credential.Type

func NewCredentialTypeFromValue ¶

func NewCredentialTypeFromValue(v string) (*CredentialType, error)

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

func (CredentialType) IsValid ¶

func (v CredentialType) IsValid() bool

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

func (CredentialType) Ptr ¶

func (v CredentialType) Ptr() *CredentialType

Ptr returns reference to Credential.Type value

func (*CredentialType) UnmarshalJSON ¶

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

type CredentialsApi ¶

type CredentialsApi interface {

	/*
		CreateCredential Create credential

		@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
		@return ApiCreateCredentialRequest
	*/
	CreateCredential(ctx context.Context) ApiCreateCredentialRequest

	// CreateCredentialExecute executes the request
	//  @return CreateCredentialReply
	CreateCredentialExecute(r ApiCreateCredentialRequest) (*CreateCredentialReply, *http.Response, error)

	/*
		DeleteCredential Delete credential

		@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
		@param id
		@return ApiDeleteCredentialRequest
	*/
	DeleteCredential(ctx context.Context, id string) ApiDeleteCredentialRequest

	// DeleteCredentialExecute executes the request
	//  @return map[string]interface{}
	DeleteCredentialExecute(r ApiDeleteCredentialRequest) (map[string]interface{}, *http.Response, error)

	/*
		GetCredential Get credential

		@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
		@param id
		@return ApiGetCredentialRequest
	*/
	GetCredential(ctx context.Context, id string) ApiGetCredentialRequest

	// GetCredentialExecute executes the request
	//  @return GetCredentialReply
	GetCredentialExecute(r ApiGetCredentialRequest) (*GetCredentialReply, *http.Response, error)

	/*
		ListCredentials List credentials

		@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
		@return ApiListCredentialsRequest
	*/
	ListCredentials(ctx context.Context) ApiListCredentialsRequest

	// ListCredentialsExecute executes the request
	//  @return ListCredentialsReply
	ListCredentialsExecute(r ApiListCredentialsRequest) (*ListCredentialsReply, *http.Response, error)

	/*
		UpdateCredential Update credential

		@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
		@param id
		@return ApiUpdateCredentialRequest
	*/
	UpdateCredential(ctx context.Context, id string) ApiUpdateCredentialRequest

	// UpdateCredentialExecute executes the request
	//  @return UpdateCredentialReply
	UpdateCredentialExecute(r ApiUpdateCredentialRequest) (*UpdateCredentialReply, *http.Response, error)

	/*
		UpdateCredential2 Update credential

		@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
		@param id
		@return ApiUpdateCredential2Request
	*/
	UpdateCredential2(ctx context.Context, id string) ApiUpdateCredential2Request

	// UpdateCredential2Execute executes the request
	//  @return UpdateCredentialReply
	UpdateCredential2Execute(r ApiUpdateCredential2Request) (*UpdateCredentialReply, *http.Response, error)
}

type CredentialsApiService ¶

type CredentialsApiService service

CredentialsApiService CredentialsApi service

func (*CredentialsApiService) CreateCredential ¶

CreateCredential Create credential

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@return ApiCreateCredentialRequest

func (*CredentialsApiService) CreateCredentialExecute ¶

Execute executes the request

@return CreateCredentialReply

func (*CredentialsApiService) DeleteCredential ¶

DeleteCredential Delete credential

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param id
@return ApiDeleteCredentialRequest

func (*CredentialsApiService) DeleteCredentialExecute ¶

func (a *CredentialsApiService) DeleteCredentialExecute(r ApiDeleteCredentialRequest) (map[string]interface{}, *http.Response, error)

Execute executes the request

@return map[string]interface{}

func (*CredentialsApiService) GetCredential ¶

GetCredential Get credential

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param id
@return ApiGetCredentialRequest

func (*CredentialsApiService) GetCredentialExecute ¶

Execute executes the request

@return GetCredentialReply

func (*CredentialsApiService) ListCredentials ¶

ListCredentials List credentials

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@return ApiListCredentialsRequest

func (*CredentialsApiService) ListCredentialsExecute ¶

Execute executes the request

@return ListCredentialsReply

func (*CredentialsApiService) UpdateCredential ¶

UpdateCredential Update credential

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param id
@return ApiUpdateCredentialRequest

func (*CredentialsApiService) UpdateCredential2 ¶

UpdateCredential2 Update credential

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param id
@return ApiUpdateCredential2Request

func (*CredentialsApiService) UpdateCredential2Execute ¶

Execute executes the request

@return UpdateCredentialReply

func (*CredentialsApiService) UpdateCredentialExecute ¶

Execute executes the request

@return UpdateCredentialReply

type DatabaseDeploymentMetadata ¶

type DatabaseDeploymentMetadata struct {
	NeonPostgres *NeonPostgresDatabaseDeploymentMetadata `json:"neon_postgres,omitempty"`
}

DatabaseDeploymentMetadata struct for DatabaseDeploymentMetadata

func NewDatabaseDeploymentMetadata ¶

func NewDatabaseDeploymentMetadata() *DatabaseDeploymentMetadata

NewDatabaseDeploymentMetadata instantiates a new DatabaseDeploymentMetadata 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 NewDatabaseDeploymentMetadataWithDefaults ¶

func NewDatabaseDeploymentMetadataWithDefaults() *DatabaseDeploymentMetadata

NewDatabaseDeploymentMetadataWithDefaults instantiates a new DatabaseDeploymentMetadata 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 (*DatabaseDeploymentMetadata) GetNeonPostgres ¶

GetNeonPostgres returns the NeonPostgres field value if set, zero value otherwise.

func (*DatabaseDeploymentMetadata) GetNeonPostgresOk ¶

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

func (*DatabaseDeploymentMetadata) HasNeonPostgres ¶

func (o *DatabaseDeploymentMetadata) HasNeonPostgres() bool

HasNeonPostgres returns a boolean if a field has been set.

func (DatabaseDeploymentMetadata) MarshalJSON ¶

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

func (*DatabaseDeploymentMetadata) SetNeonPostgres ¶

SetNeonPostgres gets a reference to the given NeonPostgresDatabaseDeploymentMetadata and assigns it to the NeonPostgres field.

type DatabaseRolePassword ¶

type DatabaseRolePassword struct {
	Username *string `json:"username,omitempty"`
	Password *string `json:"password,omitempty"`
}

DatabaseRolePassword struct for DatabaseRolePassword

func NewDatabaseRolePassword ¶

func NewDatabaseRolePassword() *DatabaseRolePassword

NewDatabaseRolePassword instantiates a new DatabaseRolePassword 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 NewDatabaseRolePasswordWithDefaults ¶

func NewDatabaseRolePasswordWithDefaults() *DatabaseRolePassword

NewDatabaseRolePasswordWithDefaults instantiates a new DatabaseRolePassword 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 (*DatabaseRolePassword) GetPassword ¶

func (o *DatabaseRolePassword) GetPassword() string

GetPassword returns the Password field value if set, zero value otherwise.

func (*DatabaseRolePassword) GetPasswordOk ¶

func (o *DatabaseRolePassword) GetPasswordOk() (*string, bool)

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

func (*DatabaseRolePassword) GetUsername ¶

func (o *DatabaseRolePassword) GetUsername() string

GetUsername returns the Username field value if set, zero value otherwise.

func (*DatabaseRolePassword) GetUsernameOk ¶

func (o *DatabaseRolePassword) GetUsernameOk() (*string, bool)

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

func (*DatabaseRolePassword) HasPassword ¶

func (o *DatabaseRolePassword) HasPassword() bool

HasPassword returns a boolean if a field has been set.

func (*DatabaseRolePassword) HasUsername ¶

func (o *DatabaseRolePassword) HasUsername() bool

HasUsername returns a boolean if a field has been set.

func (DatabaseRolePassword) MarshalJSON ¶

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

func (*DatabaseRolePassword) SetPassword ¶

func (o *DatabaseRolePassword) SetPassword(v string)

SetPassword gets a reference to the given string and assigns it to the Password field.

func (*DatabaseRolePassword) SetUsername ¶

func (o *DatabaseRolePassword) SetUsername(v string)

SetUsername gets a reference to the given string and assigns it to the Username field.

type DatabaseSource ¶

type DatabaseSource struct {
	NeonPostgres *NeonPostgresDatabase `json:"neon_postgres,omitempty"`
}

DatabaseSource struct for DatabaseSource

func NewDatabaseSource ¶

func NewDatabaseSource() *DatabaseSource

NewDatabaseSource instantiates a new DatabaseSource 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 NewDatabaseSourceWithDefaults ¶

func NewDatabaseSourceWithDefaults() *DatabaseSource

NewDatabaseSourceWithDefaults instantiates a new DatabaseSource 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 (*DatabaseSource) GetNeonPostgres ¶

func (o *DatabaseSource) GetNeonPostgres() NeonPostgresDatabase

GetNeonPostgres returns the NeonPostgres field value if set, zero value otherwise.

func (*DatabaseSource) GetNeonPostgresOk ¶

func (o *DatabaseSource) GetNeonPostgresOk() (*NeonPostgresDatabase, bool)

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

func (*DatabaseSource) HasNeonPostgres ¶

func (o *DatabaseSource) HasNeonPostgres() bool

HasNeonPostgres returns a boolean if a field has been set.

func (DatabaseSource) MarshalJSON ¶

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

func (*DatabaseSource) SetNeonPostgres ¶

func (o *DatabaseSource) SetNeonPostgres(v NeonPostgresDatabase)

SetNeonPostgres gets a reference to the given NeonPostgresDatabase and assigns it to the NeonPostgres field.

type DatacenterListItem ¶

type DatacenterListItem struct {
	Id          *string  `json:"id,omitempty"`
	RegionId    *string  `json:"region_id,omitempty"`
	Domain      *string  `json:"domain,omitempty"`
	Coordinates []string `json:"coordinates,omitempty"`
}

DatacenterListItem struct for DatacenterListItem

func NewDatacenterListItem ¶

func NewDatacenterListItem() *DatacenterListItem

NewDatacenterListItem instantiates a new DatacenterListItem 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 NewDatacenterListItemWithDefaults ¶

func NewDatacenterListItemWithDefaults() *DatacenterListItem

NewDatacenterListItemWithDefaults instantiates a new DatacenterListItem 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 (*DatacenterListItem) GetCoordinates ¶

func (o *DatacenterListItem) GetCoordinates() []string

GetCoordinates returns the Coordinates field value if set, zero value otherwise.

func (*DatacenterListItem) GetCoordinatesOk ¶

func (o *DatacenterListItem) GetCoordinatesOk() ([]string, bool)

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

func (*DatacenterListItem) GetDomain ¶

func (o *DatacenterListItem) GetDomain() string

GetDomain returns the Domain field value if set, zero value otherwise.

func (*DatacenterListItem) GetDomainOk ¶

func (o *DatacenterListItem) GetDomainOk() (*string, bool)

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

func (*DatacenterListItem) GetId ¶

func (o *DatacenterListItem) GetId() string

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

func (*DatacenterListItem) GetIdOk ¶

func (o *DatacenterListItem) 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 (*DatacenterListItem) GetRegionId ¶

func (o *DatacenterListItem) GetRegionId() string

GetRegionId returns the RegionId field value if set, zero value otherwise.

func (*DatacenterListItem) GetRegionIdOk ¶

func (o *DatacenterListItem) GetRegionIdOk() (*string, bool)

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

func (*DatacenterListItem) HasCoordinates ¶

func (o *DatacenterListItem) HasCoordinates() bool

HasCoordinates returns a boolean if a field has been set.

func (*DatacenterListItem) HasDomain ¶

func (o *DatacenterListItem) HasDomain() bool

HasDomain returns a boolean if a field has been set.

func (*DatacenterListItem) HasId ¶

func (o *DatacenterListItem) HasId() bool

HasId returns a boolean if a field has been set.

func (*DatacenterListItem) HasRegionId ¶

func (o *DatacenterListItem) HasRegionId() bool

HasRegionId returns a boolean if a field has been set.

func (DatacenterListItem) MarshalJSON ¶

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

func (*DatacenterListItem) SetCoordinates ¶

func (o *DatacenterListItem) SetCoordinates(v []string)

SetCoordinates gets a reference to the given []string and assigns it to the Coordinates field.

func (*DatacenterListItem) SetDomain ¶

func (o *DatacenterListItem) SetDomain(v string)

SetDomain gets a reference to the given string and assigns it to the Domain field.

func (*DatacenterListItem) SetId ¶

func (o *DatacenterListItem) SetId(v string)

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

func (*DatacenterListItem) SetRegionId ¶

func (o *DatacenterListItem) SetRegionId(v string)

SetRegionId gets a reference to the given string and assigns it to the RegionId field.

type DeactivateOrganizationReply ¶

type DeactivateOrganizationReply struct {
	Organization *Organization `json:"organization,omitempty"`
}

DeactivateOrganizationReply struct for DeactivateOrganizationReply

func NewDeactivateOrganizationReply ¶

func NewDeactivateOrganizationReply() *DeactivateOrganizationReply

NewDeactivateOrganizationReply instantiates a new DeactivateOrganizationReply 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 NewDeactivateOrganizationReplyWithDefaults ¶

func NewDeactivateOrganizationReplyWithDefaults() *DeactivateOrganizationReply

NewDeactivateOrganizationReplyWithDefaults instantiates a new DeactivateOrganizationReply 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 (*DeactivateOrganizationReply) GetOrganization ¶

func (o *DeactivateOrganizationReply) GetOrganization() Organization

GetOrganization returns the Organization field value if set, zero value otherwise.

func (*DeactivateOrganizationReply) GetOrganizationOk ¶

func (o *DeactivateOrganizationReply) GetOrganizationOk() (*Organization, bool)

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

func (*DeactivateOrganizationReply) HasOrganization ¶

func (o *DeactivateOrganizationReply) HasOrganization() bool

HasOrganization returns a boolean if a field has been set.

func (DeactivateOrganizationReply) MarshalJSON ¶

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

func (*DeactivateOrganizationReply) SetOrganization ¶

func (o *DeactivateOrganizationReply) SetOrganization(v Organization)

SetOrganization gets a reference to the given Organization and assigns it to the Organization field.

type DeclineOrganizationInvitationReply ¶

type DeclineOrganizationInvitationReply struct {
	Invitation *OrganizationInvitation `json:"invitation,omitempty"`
}

DeclineOrganizationInvitationReply struct for DeclineOrganizationInvitationReply

func NewDeclineOrganizationInvitationReply ¶

func NewDeclineOrganizationInvitationReply() *DeclineOrganizationInvitationReply

NewDeclineOrganizationInvitationReply instantiates a new DeclineOrganizationInvitationReply 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 NewDeclineOrganizationInvitationReplyWithDefaults ¶

func NewDeclineOrganizationInvitationReplyWithDefaults() *DeclineOrganizationInvitationReply

NewDeclineOrganizationInvitationReplyWithDefaults instantiates a new DeclineOrganizationInvitationReply 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 (*DeclineOrganizationInvitationReply) GetInvitation ¶

GetInvitation returns the Invitation field value if set, zero value otherwise.

func (*DeclineOrganizationInvitationReply) GetInvitationOk ¶

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

func (*DeclineOrganizationInvitationReply) HasInvitation ¶

func (o *DeclineOrganizationInvitationReply) HasInvitation() bool

HasInvitation returns a boolean if a field has been set.

func (DeclineOrganizationInvitationReply) MarshalJSON ¶

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

func (*DeclineOrganizationInvitationReply) SetInvitation ¶

SetInvitation gets a reference to the given OrganizationInvitation and assigns it to the Invitation field.

type DeleteOrganizationReply ¶

type DeleteOrganizationReply struct {
	Organization *Organization `json:"organization,omitempty"`
}

DeleteOrganizationReply struct for DeleteOrganizationReply

func NewDeleteOrganizationReply ¶

func NewDeleteOrganizationReply() *DeleteOrganizationReply

NewDeleteOrganizationReply instantiates a new DeleteOrganizationReply 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 NewDeleteOrganizationReplyWithDefaults ¶

func NewDeleteOrganizationReplyWithDefaults() *DeleteOrganizationReply

NewDeleteOrganizationReplyWithDefaults instantiates a new DeleteOrganizationReply 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 (*DeleteOrganizationReply) GetOrganization ¶

func (o *DeleteOrganizationReply) GetOrganization() Organization

GetOrganization returns the Organization field value if set, zero value otherwise.

func (*DeleteOrganizationReply) GetOrganizationOk ¶

func (o *DeleteOrganizationReply) GetOrganizationOk() (*Organization, bool)

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

func (*DeleteOrganizationReply) HasOrganization ¶

func (o *DeleteOrganizationReply) HasOrganization() bool

HasOrganization returns a boolean if a field has been set.

func (DeleteOrganizationReply) MarshalJSON ¶

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

func (*DeleteOrganizationReply) SetOrganization ¶

func (o *DeleteOrganizationReply) SetOrganization(v Organization)

SetOrganization gets a reference to the given Organization and assigns it to the Organization field.

type DeleteUserReply ¶

type DeleteUserReply struct {
	User *User `json:"user,omitempty"`
}

DeleteUserReply struct for DeleteUserReply

func NewDeleteUserReply ¶

func NewDeleteUserReply() *DeleteUserReply

NewDeleteUserReply instantiates a new DeleteUserReply 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 NewDeleteUserReplyWithDefaults ¶

func NewDeleteUserReplyWithDefaults() *DeleteUserReply

NewDeleteUserReplyWithDefaults instantiates a new DeleteUserReply 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 (*DeleteUserReply) GetUser ¶

func (o *DeleteUserReply) GetUser() User

GetUser returns the User field value if set, zero value otherwise.

func (*DeleteUserReply) GetUserOk ¶

func (o *DeleteUserReply) GetUserOk() (*User, bool)

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

func (*DeleteUserReply) HasUser ¶

func (o *DeleteUserReply) HasUser() bool

HasUser returns a boolean if a field has been set.

func (DeleteUserReply) MarshalJSON ¶

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

func (*DeleteUserReply) SetUser ¶

func (o *DeleteUserReply) SetUser(v User)

SetUser gets a reference to the given User and assigns it to the User field.

type Deployment ¶

type Deployment struct {
	Id               *string                     `json:"id,omitempty"`
	CreatedAt        *time.Time                  `json:"created_at,omitempty"`
	UpdatedAt        *time.Time                  `json:"updated_at,omitempty"`
	AllocatedAt      *time.Time                  `json:"allocated_at,omitempty"`
	StartedAt        *time.Time                  `json:"started_at,omitempty"`
	SucceededAt      *time.Time                  `json:"succeeded_at,omitempty"`
	TerminatedAt     *time.Time                  `json:"terminated_at,omitempty"`
	OrganizationId   *string                     `json:"organization_id,omitempty"`
	AppId            *string                     `json:"app_id,omitempty"`
	ServiceId        *string                     `json:"service_id,omitempty"`
	ParentId         *string                     `json:"parent_id,omitempty"`
	ChildId          *string                     `json:"child_id,omitempty"`
	Status           *DeploymentStatus           `json:"status,omitempty"`
	Metadata         *DeploymentMetadata         `json:"metadata,omitempty"`
	Definition       *DeploymentDefinition       `json:"definition,omitempty"`
	Messages         []string                    `json:"messages,omitempty"`
	ProvisioningInfo *DeploymentProvisioningInfo `json:"provisioning_info,omitempty"`
	DatabaseInfo     *DeploymentDatabaseInfo     `json:"database_info,omitempty"`
	SkipBuild        *bool                       `json:"skip_build,omitempty"`
	Version          *string                     `json:"version,omitempty"`
	DeploymentGroup  *string                     `json:"deployment_group,omitempty"`
}

Deployment struct for Deployment

func NewDeployment ¶

func NewDeployment() *Deployment

NewDeployment instantiates a new Deployment 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 NewDeploymentWithDefaults ¶

func NewDeploymentWithDefaults() *Deployment

NewDeploymentWithDefaults instantiates a new Deployment 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 (*Deployment) GetAllocatedAt ¶

func (o *Deployment) GetAllocatedAt() time.Time

GetAllocatedAt returns the AllocatedAt field value if set, zero value otherwise.

func (*Deployment) GetAllocatedAtOk ¶

func (o *Deployment) GetAllocatedAtOk() (*time.Time, bool)

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

func (*Deployment) GetAppId ¶

func (o *Deployment) GetAppId() string

GetAppId returns the AppId field value if set, zero value otherwise.

func (*Deployment) GetAppIdOk ¶

func (o *Deployment) GetAppIdOk() (*string, bool)

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

func (*Deployment) GetChildId ¶

func (o *Deployment) GetChildId() string

GetChildId returns the ChildId field value if set, zero value otherwise.

func (*Deployment) GetChildIdOk ¶

func (o *Deployment) GetChildIdOk() (*string, bool)

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

func (*Deployment) GetCreatedAt ¶

func (o *Deployment) GetCreatedAt() time.Time

GetCreatedAt returns the CreatedAt field value if set, zero value otherwise.

func (*Deployment) GetCreatedAtOk ¶

func (o *Deployment) GetCreatedAtOk() (*time.Time, bool)

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

func (*Deployment) GetDatabaseInfo ¶

func (o *Deployment) GetDatabaseInfo() DeploymentDatabaseInfo

GetDatabaseInfo returns the DatabaseInfo field value if set, zero value otherwise.

func (*Deployment) GetDatabaseInfoOk ¶

func (o *Deployment) GetDatabaseInfoOk() (*DeploymentDatabaseInfo, bool)

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

func (*Deployment) GetDefinition ¶

func (o *Deployment) GetDefinition() DeploymentDefinition

GetDefinition returns the Definition field value if set, zero value otherwise.

func (*Deployment) GetDefinitionOk ¶

func (o *Deployment) GetDefinitionOk() (*DeploymentDefinition, bool)

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

func (*Deployment) GetDeploymentGroup ¶

func (o *Deployment) GetDeploymentGroup() string

GetDeploymentGroup returns the DeploymentGroup field value if set, zero value otherwise.

func (*Deployment) GetDeploymentGroupOk ¶

func (o *Deployment) GetDeploymentGroupOk() (*string, bool)

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

func (*Deployment) GetId ¶

func (o *Deployment) GetId() string

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

func (*Deployment) GetIdOk ¶

func (o *Deployment) 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 (*Deployment) GetMessages ¶

func (o *Deployment) GetMessages() []string

GetMessages returns the Messages field value if set, zero value otherwise.

func (*Deployment) GetMessagesOk ¶

func (o *Deployment) GetMessagesOk() ([]string, bool)

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

func (*Deployment) GetMetadata ¶

func (o *Deployment) GetMetadata() DeploymentMetadata

GetMetadata returns the Metadata field value if set, zero value otherwise.

func (*Deployment) GetMetadataOk ¶

func (o *Deployment) GetMetadataOk() (*DeploymentMetadata, bool)

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

func (*Deployment) GetOrganizationId ¶

func (o *Deployment) GetOrganizationId() string

GetOrganizationId returns the OrganizationId field value if set, zero value otherwise.

func (*Deployment) GetOrganizationIdOk ¶

func (o *Deployment) GetOrganizationIdOk() (*string, bool)

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

func (*Deployment) GetParentId ¶

func (o *Deployment) GetParentId() string

GetParentId returns the ParentId field value if set, zero value otherwise.

func (*Deployment) GetParentIdOk ¶

func (o *Deployment) GetParentIdOk() (*string, bool)

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

func (*Deployment) GetProvisioningInfo ¶

func (o *Deployment) GetProvisioningInfo() DeploymentProvisioningInfo

GetProvisioningInfo returns the ProvisioningInfo field value if set, zero value otherwise.

func (*Deployment) GetProvisioningInfoOk ¶

func (o *Deployment) GetProvisioningInfoOk() (*DeploymentProvisioningInfo, bool)

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

func (*Deployment) GetServiceId ¶

func (o *Deployment) GetServiceId() string

GetServiceId returns the ServiceId field value if set, zero value otherwise.

func (*Deployment) GetServiceIdOk ¶

func (o *Deployment) GetServiceIdOk() (*string, bool)

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

func (*Deployment) GetSkipBuild ¶

func (o *Deployment) GetSkipBuild() bool

GetSkipBuild returns the SkipBuild field value if set, zero value otherwise.

func (*Deployment) GetSkipBuildOk ¶

func (o *Deployment) GetSkipBuildOk() (*bool, bool)

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

func (*Deployment) GetStartedAt ¶

func (o *Deployment) GetStartedAt() time.Time

GetStartedAt returns the StartedAt field value if set, zero value otherwise.

func (*Deployment) GetStartedAtOk ¶

func (o *Deployment) GetStartedAtOk() (*time.Time, bool)

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

func (*Deployment) GetStatus ¶

func (o *Deployment) GetStatus() DeploymentStatus

GetStatus returns the Status field value if set, zero value otherwise.

func (*Deployment) GetStatusOk ¶

func (o *Deployment) GetStatusOk() (*DeploymentStatus, 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 (*Deployment) GetSucceededAt ¶

func (o *Deployment) GetSucceededAt() time.Time

GetSucceededAt returns the SucceededAt field value if set, zero value otherwise.

func (*Deployment) GetSucceededAtOk ¶

func (o *Deployment) GetSucceededAtOk() (*time.Time, bool)

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

func (*Deployment) GetTerminatedAt ¶

func (o *Deployment) GetTerminatedAt() time.Time

GetTerminatedAt returns the TerminatedAt field value if set, zero value otherwise.

func (*Deployment) GetTerminatedAtOk ¶

func (o *Deployment) GetTerminatedAtOk() (*time.Time, bool)

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

func (*Deployment) GetUpdatedAt ¶

func (o *Deployment) GetUpdatedAt() time.Time

GetUpdatedAt returns the UpdatedAt field value if set, zero value otherwise.

func (*Deployment) GetUpdatedAtOk ¶

func (o *Deployment) GetUpdatedAtOk() (*time.Time, bool)

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

func (*Deployment) GetVersion ¶

func (o *Deployment) GetVersion() string

GetVersion returns the Version field value if set, zero value otherwise.

func (*Deployment) GetVersionOk ¶

func (o *Deployment) GetVersionOk() (*string, bool)

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

func (*Deployment) HasAllocatedAt ¶

func (o *Deployment) HasAllocatedAt() bool

HasAllocatedAt returns a boolean if a field has been set.

func (*Deployment) HasAppId ¶

func (o *Deployment) HasAppId() bool

HasAppId returns a boolean if a field has been set.

func (*Deployment) HasChildId ¶

func (o *Deployment) HasChildId() bool

HasChildId returns a boolean if a field has been set.

func (*Deployment) HasCreatedAt ¶

func (o *Deployment) HasCreatedAt() bool

HasCreatedAt returns a boolean if a field has been set.

func (*Deployment) HasDatabaseInfo ¶

func (o *Deployment) HasDatabaseInfo() bool

HasDatabaseInfo returns a boolean if a field has been set.

func (*Deployment) HasDefinition ¶

func (o *Deployment) HasDefinition() bool

HasDefinition returns a boolean if a field has been set.

func (*Deployment) HasDeploymentGroup ¶

func (o *Deployment) HasDeploymentGroup() bool

HasDeploymentGroup returns a boolean if a field has been set.

func (*Deployment) HasId ¶

func (o *Deployment) HasId() bool

HasId returns a boolean if a field has been set.

func (*Deployment) HasMessages ¶

func (o *Deployment) HasMessages() bool

HasMessages returns a boolean if a field has been set.

func (*Deployment) HasMetadata ¶

func (o *Deployment) HasMetadata() bool

HasMetadata returns a boolean if a field has been set.

func (*Deployment) HasOrganizationId ¶

func (o *Deployment) HasOrganizationId() bool

HasOrganizationId returns a boolean if a field has been set.

func (*Deployment) HasParentId ¶

func (o *Deployment) HasParentId() bool

HasParentId returns a boolean if a field has been set.

func (*Deployment) HasProvisioningInfo ¶

func (o *Deployment) HasProvisioningInfo() bool

HasProvisioningInfo returns a boolean if a field has been set.

func (*Deployment) HasServiceId ¶

func (o *Deployment) HasServiceId() bool

HasServiceId returns a boolean if a field has been set.

func (*Deployment) HasSkipBuild ¶

func (o *Deployment) HasSkipBuild() bool

HasSkipBuild returns a boolean if a field has been set.

func (*Deployment) HasStartedAt ¶

func (o *Deployment) HasStartedAt() bool

HasStartedAt returns a boolean if a field has been set.

func (*Deployment) HasStatus ¶

func (o *Deployment) HasStatus() bool

HasStatus returns a boolean if a field has been set.

func (*Deployment) HasSucceededAt ¶

func (o *Deployment) HasSucceededAt() bool

HasSucceededAt returns a boolean if a field has been set.

func (*Deployment) HasTerminatedAt ¶

func (o *Deployment) HasTerminatedAt() bool

HasTerminatedAt returns a boolean if a field has been set.

func (*Deployment) HasUpdatedAt ¶

func (o *Deployment) HasUpdatedAt() bool

HasUpdatedAt returns a boolean if a field has been set.

func (*Deployment) HasVersion ¶

func (o *Deployment) HasVersion() bool

HasVersion returns a boolean if a field has been set.

func (Deployment) MarshalJSON ¶

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

func (*Deployment) SetAllocatedAt ¶

func (o *Deployment) SetAllocatedAt(v time.Time)

SetAllocatedAt gets a reference to the given time.Time and assigns it to the AllocatedAt field.

func (*Deployment) SetAppId ¶

func (o *Deployment) SetAppId(v string)

SetAppId gets a reference to the given string and assigns it to the AppId field.

func (*Deployment) SetChildId ¶

func (o *Deployment) SetChildId(v string)

SetChildId gets a reference to the given string and assigns it to the ChildId field.

func (*Deployment) SetCreatedAt ¶

func (o *Deployment) SetCreatedAt(v time.Time)

SetCreatedAt gets a reference to the given time.Time and assigns it to the CreatedAt field.

func (*Deployment) SetDatabaseInfo ¶

func (o *Deployment) SetDatabaseInfo(v DeploymentDatabaseInfo)

SetDatabaseInfo gets a reference to the given DeploymentDatabaseInfo and assigns it to the DatabaseInfo field.

func (*Deployment) SetDefinition ¶

func (o *Deployment) SetDefinition(v DeploymentDefinition)

SetDefinition gets a reference to the given DeploymentDefinition and assigns it to the Definition field.

func (*Deployment) SetDeploymentGroup ¶

func (o *Deployment) SetDeploymentGroup(v string)

SetDeploymentGroup gets a reference to the given string and assigns it to the DeploymentGroup field.

func (*Deployment) SetId ¶

func (o *Deployment) SetId(v string)

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

func (*Deployment) SetMessages ¶

func (o *Deployment) SetMessages(v []string)

SetMessages gets a reference to the given []string and assigns it to the Messages field.

func (*Deployment) SetMetadata ¶

func (o *Deployment) SetMetadata(v DeploymentMetadata)

SetMetadata gets a reference to the given DeploymentMetadata and assigns it to the Metadata field.

func (*Deployment) SetOrganizationId ¶

func (o *Deployment) SetOrganizationId(v string)

SetOrganizationId gets a reference to the given string and assigns it to the OrganizationId field.

func (*Deployment) SetParentId ¶

func (o *Deployment) SetParentId(v string)

SetParentId gets a reference to the given string and assigns it to the ParentId field.

func (*Deployment) SetProvisioningInfo ¶

func (o *Deployment) SetProvisioningInfo(v DeploymentProvisioningInfo)

SetProvisioningInfo gets a reference to the given DeploymentProvisioningInfo and assigns it to the ProvisioningInfo field.

func (*Deployment) SetServiceId ¶

func (o *Deployment) SetServiceId(v string)

SetServiceId gets a reference to the given string and assigns it to the ServiceId field.

func (*Deployment) SetSkipBuild ¶

func (o *Deployment) SetSkipBuild(v bool)

SetSkipBuild gets a reference to the given bool and assigns it to the SkipBuild field.

func (*Deployment) SetStartedAt ¶

func (o *Deployment) SetStartedAt(v time.Time)

SetStartedAt gets a reference to the given time.Time and assigns it to the StartedAt field.

func (*Deployment) SetStatus ¶

func (o *Deployment) SetStatus(v DeploymentStatus)

SetStatus gets a reference to the given DeploymentStatus and assigns it to the Status field.

func (*Deployment) SetSucceededAt ¶

func (o *Deployment) SetSucceededAt(v time.Time)

SetSucceededAt gets a reference to the given time.Time and assigns it to the SucceededAt field.

func (*Deployment) SetTerminatedAt ¶

func (o *Deployment) SetTerminatedAt(v time.Time)

SetTerminatedAt gets a reference to the given time.Time and assigns it to the TerminatedAt field.

func (*Deployment) SetUpdatedAt ¶

func (o *Deployment) SetUpdatedAt(v time.Time)

SetUpdatedAt gets a reference to the given time.Time and assigns it to the UpdatedAt field.

func (*Deployment) SetVersion ¶

func (o *Deployment) SetVersion(v string)

SetVersion gets a reference to the given string and assigns it to the Version field.

type DeploymentDatabaseInfo ¶

type DeploymentDatabaseInfo struct {
	NeonPostgres *DeploymentNeonPostgresDatabaseInfo `json:"neon_postgres,omitempty"`
}

DeploymentDatabaseInfo struct for DeploymentDatabaseInfo

func NewDeploymentDatabaseInfo ¶

func NewDeploymentDatabaseInfo() *DeploymentDatabaseInfo

NewDeploymentDatabaseInfo instantiates a new DeploymentDatabaseInfo 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 NewDeploymentDatabaseInfoWithDefaults ¶

func NewDeploymentDatabaseInfoWithDefaults() *DeploymentDatabaseInfo

NewDeploymentDatabaseInfoWithDefaults instantiates a new DeploymentDatabaseInfo 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 (*DeploymentDatabaseInfo) GetNeonPostgres ¶

GetNeonPostgres returns the NeonPostgres field value if set, zero value otherwise.

func (*DeploymentDatabaseInfo) GetNeonPostgresOk ¶

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

func (*DeploymentDatabaseInfo) HasNeonPostgres ¶

func (o *DeploymentDatabaseInfo) HasNeonPostgres() bool

HasNeonPostgres returns a boolean if a field has been set.

func (DeploymentDatabaseInfo) MarshalJSON ¶

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

func (*DeploymentDatabaseInfo) SetNeonPostgres ¶

SetNeonPostgres gets a reference to the given DeploymentNeonPostgresDatabaseInfo and assigns it to the NeonPostgres field.

type DeploymentDefinition ¶

type DeploymentDefinition struct {
	Name          *string                   `json:"name,omitempty"`
	Type          *DeploymentDefinitionType `json:"type,omitempty"`
	Routes        []DeploymentRoute         `json:"routes,omitempty"`
	Ports         []DeploymentPort          `json:"ports,omitempty"`
	Env           []DeploymentEnv           `json:"env,omitempty"`
	Regions       []string                  `json:"regions,omitempty"`
	Scalings      []DeploymentScaling       `json:"scalings,omitempty"`
	InstanceTypes []DeploymentInstanceType  `json:"instance_types,omitempty"`
	HealthChecks  []DeploymentHealthCheck   `json:"health_checks,omitempty"`
	SkipCache     *bool                     `json:"skip_cache,omitempty"`
	Docker        *DockerSource             `json:"docker,omitempty"`
	Git           *GitSource                `json:"git,omitempty"`
	Database      *DatabaseSource           `json:"database,omitempty"`
}

DeploymentDefinition struct for DeploymentDefinition

func NewDeploymentDefinition ¶

func NewDeploymentDefinition() *DeploymentDefinition

NewDeploymentDefinition instantiates a new DeploymentDefinition 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 NewDeploymentDefinitionWithDefaults ¶

func NewDeploymentDefinitionWithDefaults() *DeploymentDefinition

NewDeploymentDefinitionWithDefaults instantiates a new DeploymentDefinition 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 (*DeploymentDefinition) GetDatabase ¶

func (o *DeploymentDefinition) GetDatabase() DatabaseSource

GetDatabase returns the Database field value if set, zero value otherwise.

func (*DeploymentDefinition) GetDatabaseOk ¶

func (o *DeploymentDefinition) GetDatabaseOk() (*DatabaseSource, bool)

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

func (*DeploymentDefinition) GetDocker ¶

func (o *DeploymentDefinition) GetDocker() DockerSource

GetDocker returns the Docker field value if set, zero value otherwise.

func (*DeploymentDefinition) GetDockerOk ¶

func (o *DeploymentDefinition) GetDockerOk() (*DockerSource, bool)

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

func (*DeploymentDefinition) GetEnv ¶

func (o *DeploymentDefinition) GetEnv() []DeploymentEnv

GetEnv returns the Env field value if set, zero value otherwise.

func (*DeploymentDefinition) GetEnvOk ¶

func (o *DeploymentDefinition) GetEnvOk() ([]DeploymentEnv, bool)

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

func (*DeploymentDefinition) GetGit ¶

func (o *DeploymentDefinition) GetGit() GitSource

GetGit returns the Git field value if set, zero value otherwise.

func (*DeploymentDefinition) GetGitOk ¶

func (o *DeploymentDefinition) GetGitOk() (*GitSource, bool)

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

func (*DeploymentDefinition) GetHealthChecks ¶

func (o *DeploymentDefinition) GetHealthChecks() []DeploymentHealthCheck

GetHealthChecks returns the HealthChecks field value if set, zero value otherwise.

func (*DeploymentDefinition) GetHealthChecksOk ¶

func (o *DeploymentDefinition) GetHealthChecksOk() ([]DeploymentHealthCheck, bool)

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

func (*DeploymentDefinition) GetInstanceTypes ¶

func (o *DeploymentDefinition) GetInstanceTypes() []DeploymentInstanceType

GetInstanceTypes returns the InstanceTypes field value if set, zero value otherwise.

func (*DeploymentDefinition) GetInstanceTypesOk ¶

func (o *DeploymentDefinition) GetInstanceTypesOk() ([]DeploymentInstanceType, bool)

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

func (*DeploymentDefinition) GetName ¶

func (o *DeploymentDefinition) GetName() string

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

func (*DeploymentDefinition) GetNameOk ¶

func (o *DeploymentDefinition) 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 (*DeploymentDefinition) GetPorts ¶

func (o *DeploymentDefinition) GetPorts() []DeploymentPort

GetPorts returns the Ports field value if set, zero value otherwise.

func (*DeploymentDefinition) GetPortsOk ¶

func (o *DeploymentDefinition) GetPortsOk() ([]DeploymentPort, bool)

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

func (*DeploymentDefinition) GetRegions ¶

func (o *DeploymentDefinition) GetRegions() []string

GetRegions returns the Regions field value if set, zero value otherwise.

func (*DeploymentDefinition) GetRegionsOk ¶

func (o *DeploymentDefinition) GetRegionsOk() ([]string, bool)

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

func (*DeploymentDefinition) GetRoutes ¶

func (o *DeploymentDefinition) GetRoutes() []DeploymentRoute

GetRoutes returns the Routes field value if set, zero value otherwise.

func (*DeploymentDefinition) GetRoutesOk ¶

func (o *DeploymentDefinition) GetRoutesOk() ([]DeploymentRoute, bool)

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

func (*DeploymentDefinition) GetScalings ¶

func (o *DeploymentDefinition) GetScalings() []DeploymentScaling

GetScalings returns the Scalings field value if set, zero value otherwise.

func (*DeploymentDefinition) GetScalingsOk ¶

func (o *DeploymentDefinition) GetScalingsOk() ([]DeploymentScaling, bool)

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

func (*DeploymentDefinition) GetSkipCache ¶

func (o *DeploymentDefinition) GetSkipCache() bool

GetSkipCache returns the SkipCache field value if set, zero value otherwise.

func (*DeploymentDefinition) GetSkipCacheOk ¶

func (o *DeploymentDefinition) GetSkipCacheOk() (*bool, bool)

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

func (*DeploymentDefinition) GetType ¶

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

func (*DeploymentDefinition) GetTypeOk ¶

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 (*DeploymentDefinition) HasDatabase ¶

func (o *DeploymentDefinition) HasDatabase() bool

HasDatabase returns a boolean if a field has been set.

func (*DeploymentDefinition) HasDocker ¶

func (o *DeploymentDefinition) HasDocker() bool

HasDocker returns a boolean if a field has been set.

func (*DeploymentDefinition) HasEnv ¶

func (o *DeploymentDefinition) HasEnv() bool

HasEnv returns a boolean if a field has been set.

func (*DeploymentDefinition) HasGit ¶

func (o *DeploymentDefinition) HasGit() bool

HasGit returns a boolean if a field has been set.

func (*DeploymentDefinition) HasHealthChecks ¶

func (o *DeploymentDefinition) HasHealthChecks() bool

HasHealthChecks returns a boolean if a field has been set.

func (*DeploymentDefinition) HasInstanceTypes ¶

func (o *DeploymentDefinition) HasInstanceTypes() bool

HasInstanceTypes returns a boolean if a field has been set.

func (*DeploymentDefinition) HasName ¶

func (o *DeploymentDefinition) HasName() bool

HasName returns a boolean if a field has been set.

func (*DeploymentDefinition) HasPorts ¶

func (o *DeploymentDefinition) HasPorts() bool

HasPorts returns a boolean if a field has been set.

func (*DeploymentDefinition) HasRegions ¶

func (o *DeploymentDefinition) HasRegions() bool

HasRegions returns a boolean if a field has been set.

func (*DeploymentDefinition) HasRoutes ¶

func (o *DeploymentDefinition) HasRoutes() bool

HasRoutes returns a boolean if a field has been set.

func (*DeploymentDefinition) HasScalings ¶

func (o *DeploymentDefinition) HasScalings() bool

HasScalings returns a boolean if a field has been set.

func (*DeploymentDefinition) HasSkipCache ¶

func (o *DeploymentDefinition) HasSkipCache() bool

HasSkipCache returns a boolean if a field has been set.

func (*DeploymentDefinition) HasType ¶

func (o *DeploymentDefinition) HasType() bool

HasType returns a boolean if a field has been set.

func (DeploymentDefinition) MarshalJSON ¶

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

func (*DeploymentDefinition) SetDatabase ¶

func (o *DeploymentDefinition) SetDatabase(v DatabaseSource)

SetDatabase gets a reference to the given DatabaseSource and assigns it to the Database field.

func (*DeploymentDefinition) SetDocker ¶

func (o *DeploymentDefinition) SetDocker(v DockerSource)

SetDocker gets a reference to the given DockerSource and assigns it to the Docker field.

func (*DeploymentDefinition) SetEnv ¶

func (o *DeploymentDefinition) SetEnv(v []DeploymentEnv)

SetEnv gets a reference to the given []DeploymentEnv and assigns it to the Env field.

func (*DeploymentDefinition) SetGit ¶

func (o *DeploymentDefinition) SetGit(v GitSource)

SetGit gets a reference to the given GitSource and assigns it to the Git field.

func (*DeploymentDefinition) SetHealthChecks ¶

func (o *DeploymentDefinition) SetHealthChecks(v []DeploymentHealthCheck)

SetHealthChecks gets a reference to the given []DeploymentHealthCheck and assigns it to the HealthChecks field.

func (*DeploymentDefinition) SetInstanceTypes ¶

func (o *DeploymentDefinition) SetInstanceTypes(v []DeploymentInstanceType)

SetInstanceTypes gets a reference to the given []DeploymentInstanceType and assigns it to the InstanceTypes field.

func (*DeploymentDefinition) SetName ¶

func (o *DeploymentDefinition) SetName(v string)

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

func (*DeploymentDefinition) SetPorts ¶

func (o *DeploymentDefinition) SetPorts(v []DeploymentPort)

SetPorts gets a reference to the given []DeploymentPort and assigns it to the Ports field.

func (*DeploymentDefinition) SetRegions ¶

func (o *DeploymentDefinition) SetRegions(v []string)

SetRegions gets a reference to the given []string and assigns it to the Regions field.

func (*DeploymentDefinition) SetRoutes ¶

func (o *DeploymentDefinition) SetRoutes(v []DeploymentRoute)

SetRoutes gets a reference to the given []DeploymentRoute and assigns it to the Routes field.

func (*DeploymentDefinition) SetScalings ¶

func (o *DeploymentDefinition) SetScalings(v []DeploymentScaling)

SetScalings gets a reference to the given []DeploymentScaling and assigns it to the Scalings field.

func (*DeploymentDefinition) SetSkipCache ¶

func (o *DeploymentDefinition) SetSkipCache(v bool)

SetSkipCache gets a reference to the given bool and assigns it to the SkipCache field.

func (*DeploymentDefinition) SetType ¶

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

type DeploymentDefinitionType ¶

type DeploymentDefinitionType string

DeploymentDefinitionType the model 'DeploymentDefinitionType'

const (
	DEPLOYMENTDEFINITIONTYPE_INVALID  DeploymentDefinitionType = "INVALID"
	DEPLOYMENTDEFINITIONTYPE_WEB      DeploymentDefinitionType = "WEB"
	DEPLOYMENTDEFINITIONTYPE_WORKER   DeploymentDefinitionType = "WORKER"
	DEPLOYMENTDEFINITIONTYPE_DATABASE DeploymentDefinitionType = "DATABASE"
)

List of DeploymentDefinition.Type

func NewDeploymentDefinitionTypeFromValue ¶

func NewDeploymentDefinitionTypeFromValue(v string) (*DeploymentDefinitionType, error)

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

func (DeploymentDefinitionType) IsValid ¶

func (v DeploymentDefinitionType) IsValid() bool

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

func (DeploymentDefinitionType) Ptr ¶

Ptr returns reference to DeploymentDefinition.Type value

func (*DeploymentDefinitionType) UnmarshalJSON ¶

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

type DeploymentEnv ¶

type DeploymentEnv struct {
	Scopes []string `json:"scopes,omitempty"`
	Key    *string  `json:"key,omitempty"`
	Value  *string  `json:"value,omitempty"`
	Secret *string  `json:"secret,omitempty"`
}

DeploymentEnv struct for DeploymentEnv

func NewDeploymentEnv ¶

func NewDeploymentEnv() *DeploymentEnv

NewDeploymentEnv instantiates a new DeploymentEnv 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 NewDeploymentEnvWithDefaults ¶

func NewDeploymentEnvWithDefaults() *DeploymentEnv

NewDeploymentEnvWithDefaults instantiates a new DeploymentEnv 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 (*DeploymentEnv) GetKey ¶

func (o *DeploymentEnv) GetKey() string

GetKey returns the Key field value if set, zero value otherwise.

func (*DeploymentEnv) GetKeyOk ¶

func (o *DeploymentEnv) 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 (*DeploymentEnv) GetScopes ¶

func (o *DeploymentEnv) GetScopes() []string

GetScopes returns the Scopes field value if set, zero value otherwise.

func (*DeploymentEnv) GetScopesOk ¶

func (o *DeploymentEnv) GetScopesOk() ([]string, bool)

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

func (*DeploymentEnv) GetSecret ¶

func (o *DeploymentEnv) GetSecret() string

GetSecret returns the Secret field value if set, zero value otherwise.

func (*DeploymentEnv) GetSecretOk ¶

func (o *DeploymentEnv) GetSecretOk() (*string, bool)

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

func (*DeploymentEnv) GetValue ¶

func (o *DeploymentEnv) GetValue() string

GetValue returns the Value field value if set, zero value otherwise.

func (*DeploymentEnv) GetValueOk ¶

func (o *DeploymentEnv) GetValueOk() (*string, bool)

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

func (*DeploymentEnv) HasKey ¶

func (o *DeploymentEnv) HasKey() bool

HasKey returns a boolean if a field has been set.

func (*DeploymentEnv) HasScopes ¶

func (o *DeploymentEnv) HasScopes() bool

HasScopes returns a boolean if a field has been set.

func (*DeploymentEnv) HasSecret ¶

func (o *DeploymentEnv) HasSecret() bool

HasSecret returns a boolean if a field has been set.

func (*DeploymentEnv) HasValue ¶

func (o *DeploymentEnv) HasValue() bool

HasValue returns a boolean if a field has been set.

func (DeploymentEnv) MarshalJSON ¶

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

func (*DeploymentEnv) SetKey ¶

func (o *DeploymentEnv) SetKey(v string)

SetKey gets a reference to the given string and assigns it to the Key field.

func (*DeploymentEnv) SetScopes ¶

func (o *DeploymentEnv) SetScopes(v []string)

SetScopes gets a reference to the given []string and assigns it to the Scopes field.

func (*DeploymentEnv) SetSecret ¶

func (o *DeploymentEnv) SetSecret(v string)

SetSecret gets a reference to the given string and assigns it to the Secret field.

func (*DeploymentEnv) SetValue ¶

func (o *DeploymentEnv) SetValue(v string)

SetValue gets a reference to the given string and assigns it to the Value field.

type DeploymentEvent ¶

type DeploymentEvent struct {
	Id             *string                `json:"id,omitempty"`
	When           *time.Time             `json:"when,omitempty"`
	OrganizationId *string                `json:"organization_id,omitempty"`
	DeploymentId   *string                `json:"deployment_id,omitempty"`
	Type           *string                `json:"type,omitempty"`
	Message        *string                `json:"message,omitempty"`
	Metadata       map[string]interface{} `json:"metadata,omitempty"`
}

DeploymentEvent struct for DeploymentEvent

func NewDeploymentEvent ¶

func NewDeploymentEvent() *DeploymentEvent

NewDeploymentEvent instantiates a new DeploymentEvent 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 NewDeploymentEventWithDefaults ¶

func NewDeploymentEventWithDefaults() *DeploymentEvent

NewDeploymentEventWithDefaults instantiates a new DeploymentEvent 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 (*DeploymentEvent) GetDeploymentId ¶

func (o *DeploymentEvent) GetDeploymentId() string

GetDeploymentId returns the DeploymentId field value if set, zero value otherwise.

func (*DeploymentEvent) GetDeploymentIdOk ¶

func (o *DeploymentEvent) GetDeploymentIdOk() (*string, bool)

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

func (*DeploymentEvent) GetId ¶

func (o *DeploymentEvent) GetId() string

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

func (*DeploymentEvent) GetIdOk ¶

func (o *DeploymentEvent) 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 (*DeploymentEvent) GetMessage ¶

func (o *DeploymentEvent) GetMessage() string

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

func (*DeploymentEvent) GetMessageOk ¶

func (o *DeploymentEvent) 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 (*DeploymentEvent) GetMetadata ¶

func (o *DeploymentEvent) GetMetadata() map[string]interface{}

GetMetadata returns the Metadata field value if set, zero value otherwise.

func (*DeploymentEvent) GetMetadataOk ¶

func (o *DeploymentEvent) GetMetadataOk() (map[string]interface{}, bool)

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

func (*DeploymentEvent) GetOrganizationId ¶

func (o *DeploymentEvent) GetOrganizationId() string

GetOrganizationId returns the OrganizationId field value if set, zero value otherwise.

func (*DeploymentEvent) GetOrganizationIdOk ¶

func (o *DeploymentEvent) GetOrganizationIdOk() (*string, bool)

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

func (*DeploymentEvent) GetType ¶

func (o *DeploymentEvent) GetType() string

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

func (*DeploymentEvent) GetTypeOk ¶

func (o *DeploymentEvent) 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 (*DeploymentEvent) GetWhen ¶

func (o *DeploymentEvent) GetWhen() time.Time

GetWhen returns the When field value if set, zero value otherwise.

func (*DeploymentEvent) GetWhenOk ¶

func (o *DeploymentEvent) GetWhenOk() (*time.Time, bool)

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

func (*DeploymentEvent) HasDeploymentId ¶

func (o *DeploymentEvent) HasDeploymentId() bool

HasDeploymentId returns a boolean if a field has been set.

func (*DeploymentEvent) HasId ¶

func (o *DeploymentEvent) HasId() bool

HasId returns a boolean if a field has been set.

func (*DeploymentEvent) HasMessage ¶

func (o *DeploymentEvent) HasMessage() bool

HasMessage returns a boolean if a field has been set.

func (*DeploymentEvent) HasMetadata ¶

func (o *DeploymentEvent) HasMetadata() bool

HasMetadata returns a boolean if a field has been set.

func (*DeploymentEvent) HasOrganizationId ¶

func (o *DeploymentEvent) HasOrganizationId() bool

HasOrganizationId returns a boolean if a field has been set.

func (*DeploymentEvent) HasType ¶

func (o *DeploymentEvent) HasType() bool

HasType returns a boolean if a field has been set.

func (*DeploymentEvent) HasWhen ¶

func (o *DeploymentEvent) HasWhen() bool

HasWhen returns a boolean if a field has been set.

func (DeploymentEvent) MarshalJSON ¶

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

func (*DeploymentEvent) SetDeploymentId ¶

func (o *DeploymentEvent) SetDeploymentId(v string)

SetDeploymentId gets a reference to the given string and assigns it to the DeploymentId field.

func (*DeploymentEvent) SetId ¶

func (o *DeploymentEvent) SetId(v string)

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

func (*DeploymentEvent) SetMessage ¶

func (o *DeploymentEvent) SetMessage(v string)

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

func (*DeploymentEvent) SetMetadata ¶

func (o *DeploymentEvent) SetMetadata(v map[string]interface{})

SetMetadata gets a reference to the given map[string]interface{} and assigns it to the Metadata field.

func (*DeploymentEvent) SetOrganizationId ¶

func (o *DeploymentEvent) SetOrganizationId(v string)

SetOrganizationId gets a reference to the given string and assigns it to the OrganizationId field.

func (*DeploymentEvent) SetType ¶

func (o *DeploymentEvent) SetType(v string)

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

func (*DeploymentEvent) SetWhen ¶

func (o *DeploymentEvent) SetWhen(v time.Time)

SetWhen gets a reference to the given time.Time and assigns it to the When field.

type DeploymentHealthCheck ¶

type DeploymentHealthCheck struct {
	GracePeriod  *int64           `json:"grace_period,omitempty"`
	Interval     *int64           `json:"interval,omitempty"`
	RestartLimit *int64           `json:"restart_limit,omitempty"`
	Timeout      *int64           `json:"timeout,omitempty"`
	Tcp          *TCPHealthCheck  `json:"tcp,omitempty"`
	Http         *HTTPHealthCheck `json:"http,omitempty"`
}

DeploymentHealthCheck struct for DeploymentHealthCheck

func NewDeploymentHealthCheck ¶

func NewDeploymentHealthCheck() *DeploymentHealthCheck

NewDeploymentHealthCheck instantiates a new DeploymentHealthCheck 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 NewDeploymentHealthCheckWithDefaults ¶

func NewDeploymentHealthCheckWithDefaults() *DeploymentHealthCheck

NewDeploymentHealthCheckWithDefaults instantiates a new DeploymentHealthCheck 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 (*DeploymentHealthCheck) GetGracePeriod ¶

func (o *DeploymentHealthCheck) GetGracePeriod() int64

GetGracePeriod returns the GracePeriod field value if set, zero value otherwise.

func (*DeploymentHealthCheck) GetGracePeriodOk ¶

func (o *DeploymentHealthCheck) GetGracePeriodOk() (*int64, bool)

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

func (*DeploymentHealthCheck) GetHttp ¶

GetHttp returns the Http field value if set, zero value otherwise.

func (*DeploymentHealthCheck) GetHttpOk ¶

func (o *DeploymentHealthCheck) GetHttpOk() (*HTTPHealthCheck, bool)

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

func (*DeploymentHealthCheck) GetInterval ¶

func (o *DeploymentHealthCheck) GetInterval() int64

GetInterval returns the Interval field value if set, zero value otherwise.

func (*DeploymentHealthCheck) GetIntervalOk ¶

func (o *DeploymentHealthCheck) GetIntervalOk() (*int64, bool)

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

func (*DeploymentHealthCheck) GetRestartLimit ¶

func (o *DeploymentHealthCheck) GetRestartLimit() int64

GetRestartLimit returns the RestartLimit field value if set, zero value otherwise.

func (*DeploymentHealthCheck) GetRestartLimitOk ¶

func (o *DeploymentHealthCheck) GetRestartLimitOk() (*int64, bool)

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

func (*DeploymentHealthCheck) GetTcp ¶

GetTcp returns the Tcp field value if set, zero value otherwise.

func (*DeploymentHealthCheck) GetTcpOk ¶

func (o *DeploymentHealthCheck) GetTcpOk() (*TCPHealthCheck, bool)

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

func (*DeploymentHealthCheck) GetTimeout ¶

func (o *DeploymentHealthCheck) GetTimeout() int64

GetTimeout returns the Timeout field value if set, zero value otherwise.

func (*DeploymentHealthCheck) GetTimeoutOk ¶

func (o *DeploymentHealthCheck) GetTimeoutOk() (*int64, bool)

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

func (*DeploymentHealthCheck) HasGracePeriod ¶

func (o *DeploymentHealthCheck) HasGracePeriod() bool

HasGracePeriod returns a boolean if a field has been set.

func (*DeploymentHealthCheck) HasHttp ¶

func (o *DeploymentHealthCheck) HasHttp() bool

HasHttp returns a boolean if a field has been set.

func (*DeploymentHealthCheck) HasInterval ¶

func (o *DeploymentHealthCheck) HasInterval() bool

HasInterval returns a boolean if a field has been set.

func (*DeploymentHealthCheck) HasRestartLimit ¶

func (o *DeploymentHealthCheck) HasRestartLimit() bool

HasRestartLimit returns a boolean if a field has been set.

func (*DeploymentHealthCheck) HasTcp ¶

func (o *DeploymentHealthCheck) HasTcp() bool

HasTcp returns a boolean if a field has been set.

func (*DeploymentHealthCheck) HasTimeout ¶

func (o *DeploymentHealthCheck) HasTimeout() bool

HasTimeout returns a boolean if a field has been set.

func (DeploymentHealthCheck) MarshalJSON ¶

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

func (*DeploymentHealthCheck) SetGracePeriod ¶

func (o *DeploymentHealthCheck) SetGracePeriod(v int64)

SetGracePeriod gets a reference to the given int64 and assigns it to the GracePeriod field.

func (*DeploymentHealthCheck) SetHttp ¶

func (o *DeploymentHealthCheck) SetHttp(v HTTPHealthCheck)

SetHttp gets a reference to the given HTTPHealthCheck and assigns it to the Http field.

func (*DeploymentHealthCheck) SetInterval ¶

func (o *DeploymentHealthCheck) SetInterval(v int64)

SetInterval gets a reference to the given int64 and assigns it to the Interval field.

func (*DeploymentHealthCheck) SetRestartLimit ¶

func (o *DeploymentHealthCheck) SetRestartLimit(v int64)

SetRestartLimit gets a reference to the given int64 and assigns it to the RestartLimit field.

func (*DeploymentHealthCheck) SetTcp ¶

SetTcp gets a reference to the given TCPHealthCheck and assigns it to the Tcp field.

func (*DeploymentHealthCheck) SetTimeout ¶

func (o *DeploymentHealthCheck) SetTimeout(v int64)

SetTimeout gets a reference to the given int64 and assigns it to the Timeout field.

type DeploymentInstanceType ¶

type DeploymentInstanceType struct {
	Scopes []string `json:"scopes,omitempty"`
	Type   *string  `json:"type,omitempty"`
}

DeploymentInstanceType struct for DeploymentInstanceType

func NewDeploymentInstanceType ¶

func NewDeploymentInstanceType() *DeploymentInstanceType

NewDeploymentInstanceType instantiates a new DeploymentInstanceType 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 NewDeploymentInstanceTypeWithDefaults ¶

func NewDeploymentInstanceTypeWithDefaults() *DeploymentInstanceType

NewDeploymentInstanceTypeWithDefaults instantiates a new DeploymentInstanceType 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 (*DeploymentInstanceType) GetScopes ¶

func (o *DeploymentInstanceType) GetScopes() []string

GetScopes returns the Scopes field value if set, zero value otherwise.

func (*DeploymentInstanceType) GetScopesOk ¶

func (o *DeploymentInstanceType) GetScopesOk() ([]string, bool)

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

func (*DeploymentInstanceType) GetType ¶

func (o *DeploymentInstanceType) GetType() string

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

func (*DeploymentInstanceType) GetTypeOk ¶

func (o *DeploymentInstanceType) 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 (*DeploymentInstanceType) HasScopes ¶

func (o *DeploymentInstanceType) HasScopes() bool

HasScopes returns a boolean if a field has been set.

func (*DeploymentInstanceType) HasType ¶

func (o *DeploymentInstanceType) HasType() bool

HasType returns a boolean if a field has been set.

func (DeploymentInstanceType) MarshalJSON ¶

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

func (*DeploymentInstanceType) SetScopes ¶

func (o *DeploymentInstanceType) SetScopes(v []string)

SetScopes gets a reference to the given []string and assigns it to the Scopes field.

func (*DeploymentInstanceType) SetType ¶

func (o *DeploymentInstanceType) SetType(v string)

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

type DeploymentListItem ¶

type DeploymentListItem struct {
	Id               *string                     `json:"id,omitempty"`
	CreatedAt        *time.Time                  `json:"created_at,omitempty"`
	UpdatedAt        *time.Time                  `json:"updated_at,omitempty"`
	AllocatedAt      *time.Time                  `json:"allocated_at,omitempty"`
	StartedAt        *time.Time                  `json:"started_at,omitempty"`
	SucceededAt      *time.Time                  `json:"succeeded_at,omitempty"`
	TerminatedAt     *time.Time                  `json:"terminated_at,omitempty"`
	OrganizationId   *string                     `json:"organization_id,omitempty"`
	AppId            *string                     `json:"app_id,omitempty"`
	ServiceId        *string                     `json:"service_id,omitempty"`
	ParentId         *string                     `json:"parent_id,omitempty"`
	ChildId          *string                     `json:"child_id,omitempty"`
	Status           *DeploymentStatus           `json:"status,omitempty"`
	Metadata         *DeploymentMetadata         `json:"metadata,omitempty"`
	Definition       *DeploymentDefinition       `json:"definition,omitempty"`
	Messages         []string                    `json:"messages,omitempty"`
	ProvisioningInfo *DeploymentProvisioningInfo `json:"provisioning_info,omitempty"`
	DatabaseInfo     *DeploymentDatabaseInfo     `json:"database_info,omitempty"`
	Version          *string                     `json:"version,omitempty"`
	DeploymentGroup  *string                     `json:"deployment_group,omitempty"`
}

DeploymentListItem struct for DeploymentListItem

func NewDeploymentListItem ¶

func NewDeploymentListItem() *DeploymentListItem

NewDeploymentListItem instantiates a new DeploymentListItem 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 NewDeploymentListItemWithDefaults ¶

func NewDeploymentListItemWithDefaults() *DeploymentListItem

NewDeploymentListItemWithDefaults instantiates a new DeploymentListItem 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 (*DeploymentListItem) GetAllocatedAt ¶

func (o *DeploymentListItem) GetAllocatedAt() time.Time

GetAllocatedAt returns the AllocatedAt field value if set, zero value otherwise.

func (*DeploymentListItem) GetAllocatedAtOk ¶

func (o *DeploymentListItem) GetAllocatedAtOk() (*time.Time, bool)

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

func (*DeploymentListItem) GetAppId ¶

func (o *DeploymentListItem) GetAppId() string

GetAppId returns the AppId field value if set, zero value otherwise.

func (*DeploymentListItem) GetAppIdOk ¶

func (o *DeploymentListItem) GetAppIdOk() (*string, bool)

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

func (*DeploymentListItem) GetChildId ¶

func (o *DeploymentListItem) GetChildId() string

GetChildId returns the ChildId field value if set, zero value otherwise.

func (*DeploymentListItem) GetChildIdOk ¶

func (o *DeploymentListItem) GetChildIdOk() (*string, bool)

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

func (*DeploymentListItem) GetCreatedAt ¶

func (o *DeploymentListItem) GetCreatedAt() time.Time

GetCreatedAt returns the CreatedAt field value if set, zero value otherwise.

func (*DeploymentListItem) GetCreatedAtOk ¶

func (o *DeploymentListItem) GetCreatedAtOk() (*time.Time, bool)

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

func (*DeploymentListItem) GetDatabaseInfo ¶

func (o *DeploymentListItem) GetDatabaseInfo() DeploymentDatabaseInfo

GetDatabaseInfo returns the DatabaseInfo field value if set, zero value otherwise.

func (*DeploymentListItem) GetDatabaseInfoOk ¶

func (o *DeploymentListItem) GetDatabaseInfoOk() (*DeploymentDatabaseInfo, bool)

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

func (*DeploymentListItem) GetDefinition ¶

func (o *DeploymentListItem) GetDefinition() DeploymentDefinition

GetDefinition returns the Definition field value if set, zero value otherwise.

func (*DeploymentListItem) GetDefinitionOk ¶

func (o *DeploymentListItem) GetDefinitionOk() (*DeploymentDefinition, bool)

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

func (*DeploymentListItem) GetDeploymentGroup ¶

func (o *DeploymentListItem) GetDeploymentGroup() string

GetDeploymentGroup returns the DeploymentGroup field value if set, zero value otherwise.

func (*DeploymentListItem) GetDeploymentGroupOk ¶

func (o *DeploymentListItem) GetDeploymentGroupOk() (*string, bool)

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

func (*DeploymentListItem) GetId ¶

func (o *DeploymentListItem) GetId() string

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

func (*DeploymentListItem) GetIdOk ¶

func (o *DeploymentListItem) 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 (*DeploymentListItem) GetMessages ¶

func (o *DeploymentListItem) GetMessages() []string

GetMessages returns the Messages field value if set, zero value otherwise.

func (*DeploymentListItem) GetMessagesOk ¶

func (o *DeploymentListItem) GetMessagesOk() ([]string, bool)

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

func (*DeploymentListItem) GetMetadata ¶

func (o *DeploymentListItem) GetMetadata() DeploymentMetadata

GetMetadata returns the Metadata field value if set, zero value otherwise.

func (*DeploymentListItem) GetMetadataOk ¶

func (o *DeploymentListItem) GetMetadataOk() (*DeploymentMetadata, bool)

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

func (*DeploymentListItem) GetOrganizationId ¶

func (o *DeploymentListItem) GetOrganizationId() string

GetOrganizationId returns the OrganizationId field value if set, zero value otherwise.

func (*DeploymentListItem) GetOrganizationIdOk ¶

func (o *DeploymentListItem) GetOrganizationIdOk() (*string, bool)

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

func (*DeploymentListItem) GetParentId ¶

func (o *DeploymentListItem) GetParentId() string

GetParentId returns the ParentId field value if set, zero value otherwise.

func (*DeploymentListItem) GetParentIdOk ¶

func (o *DeploymentListItem) GetParentIdOk() (*string, bool)

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

func (*DeploymentListItem) GetProvisioningInfo ¶

func (o *DeploymentListItem) GetProvisioningInfo() DeploymentProvisioningInfo

GetProvisioningInfo returns the ProvisioningInfo field value if set, zero value otherwise.

func (*DeploymentListItem) GetProvisioningInfoOk ¶

func (o *DeploymentListItem) GetProvisioningInfoOk() (*DeploymentProvisioningInfo, bool)

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

func (*DeploymentListItem) GetServiceId ¶

func (o *DeploymentListItem) GetServiceId() string

GetServiceId returns the ServiceId field value if set, zero value otherwise.

func (*DeploymentListItem) GetServiceIdOk ¶

func (o *DeploymentListItem) GetServiceIdOk() (*string, bool)

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

func (*DeploymentListItem) GetStartedAt ¶

func (o *DeploymentListItem) GetStartedAt() time.Time

GetStartedAt returns the StartedAt field value if set, zero value otherwise.

func (*DeploymentListItem) GetStartedAtOk ¶

func (o *DeploymentListItem) GetStartedAtOk() (*time.Time, bool)

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

func (*DeploymentListItem) GetStatus ¶

func (o *DeploymentListItem) GetStatus() DeploymentStatus

GetStatus returns the Status field value if set, zero value otherwise.

func (*DeploymentListItem) GetStatusOk ¶

func (o *DeploymentListItem) GetStatusOk() (*DeploymentStatus, 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 (*DeploymentListItem) GetSucceededAt ¶

func (o *DeploymentListItem) GetSucceededAt() time.Time

GetSucceededAt returns the SucceededAt field value if set, zero value otherwise.

func (*DeploymentListItem) GetSucceededAtOk ¶

func (o *DeploymentListItem) GetSucceededAtOk() (*time.Time, bool)

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

func (*DeploymentListItem) GetTerminatedAt ¶

func (o *DeploymentListItem) GetTerminatedAt() time.Time

GetTerminatedAt returns the TerminatedAt field value if set, zero value otherwise.

func (*DeploymentListItem) GetTerminatedAtOk ¶

func (o *DeploymentListItem) GetTerminatedAtOk() (*time.Time, bool)

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

func (*DeploymentListItem) GetUpdatedAt ¶

func (o *DeploymentListItem) GetUpdatedAt() time.Time

GetUpdatedAt returns the UpdatedAt field value if set, zero value otherwise.

func (*DeploymentListItem) GetUpdatedAtOk ¶

func (o *DeploymentListItem) GetUpdatedAtOk() (*time.Time, bool)

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

func (*DeploymentListItem) GetVersion ¶

func (o *DeploymentListItem) GetVersion() string

GetVersion returns the Version field value if set, zero value otherwise.

func (*DeploymentListItem) GetVersionOk ¶

func (o *DeploymentListItem) GetVersionOk() (*string, bool)

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

func (*DeploymentListItem) HasAllocatedAt ¶

func (o *DeploymentListItem) HasAllocatedAt() bool

HasAllocatedAt returns a boolean if a field has been set.

func (*DeploymentListItem) HasAppId ¶

func (o *DeploymentListItem) HasAppId() bool

HasAppId returns a boolean if a field has been set.

func (*DeploymentListItem) HasChildId ¶

func (o *DeploymentListItem) HasChildId() bool

HasChildId returns a boolean if a field has been set.

func (*DeploymentListItem) HasCreatedAt ¶

func (o *DeploymentListItem) HasCreatedAt() bool

HasCreatedAt returns a boolean if a field has been set.

func (*DeploymentListItem) HasDatabaseInfo ¶

func (o *DeploymentListItem) HasDatabaseInfo() bool

HasDatabaseInfo returns a boolean if a field has been set.

func (*DeploymentListItem) HasDefinition ¶

func (o *DeploymentListItem) HasDefinition() bool

HasDefinition returns a boolean if a field has been set.

func (*DeploymentListItem) HasDeploymentGroup ¶

func (o *DeploymentListItem) HasDeploymentGroup() bool

HasDeploymentGroup returns a boolean if a field has been set.

func (*DeploymentListItem) HasId ¶

func (o *DeploymentListItem) HasId() bool

HasId returns a boolean if a field has been set.

func (*DeploymentListItem) HasMessages ¶

func (o *DeploymentListItem) HasMessages() bool

HasMessages returns a boolean if a field has been set.

func (*DeploymentListItem) HasMetadata ¶

func (o *DeploymentListItem) HasMetadata() bool

HasMetadata returns a boolean if a field has been set.

func (*DeploymentListItem) HasOrganizationId ¶

func (o *DeploymentListItem) HasOrganizationId() bool

HasOrganizationId returns a boolean if a field has been set.

func (*DeploymentListItem) HasParentId ¶

func (o *DeploymentListItem) HasParentId() bool

HasParentId returns a boolean if a field has been set.

func (*DeploymentListItem) HasProvisioningInfo ¶

func (o *DeploymentListItem) HasProvisioningInfo() bool

HasProvisioningInfo returns a boolean if a field has been set.

func (*DeploymentListItem) HasServiceId ¶

func (o *DeploymentListItem) HasServiceId() bool

HasServiceId returns a boolean if a field has been set.

func (*DeploymentListItem) HasStartedAt ¶

func (o *DeploymentListItem) HasStartedAt() bool

HasStartedAt returns a boolean if a field has been set.

func (*DeploymentListItem) HasStatus ¶

func (o *DeploymentListItem) HasStatus() bool

HasStatus returns a boolean if a field has been set.

func (*DeploymentListItem) HasSucceededAt ¶

func (o *DeploymentListItem) HasSucceededAt() bool

HasSucceededAt returns a boolean if a field has been set.

func (*DeploymentListItem) HasTerminatedAt ¶

func (o *DeploymentListItem) HasTerminatedAt() bool

HasTerminatedAt returns a boolean if a field has been set.

func (*DeploymentListItem) HasUpdatedAt ¶

func (o *DeploymentListItem) HasUpdatedAt() bool

HasUpdatedAt returns a boolean if a field has been set.

func (*DeploymentListItem) HasVersion ¶

func (o *DeploymentListItem) HasVersion() bool

HasVersion returns a boolean if a field has been set.

func (DeploymentListItem) MarshalJSON ¶

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

func (*DeploymentListItem) SetAllocatedAt ¶

func (o *DeploymentListItem) SetAllocatedAt(v time.Time)

SetAllocatedAt gets a reference to the given time.Time and assigns it to the AllocatedAt field.

func (*DeploymentListItem) SetAppId ¶

func (o *DeploymentListItem) SetAppId(v string)

SetAppId gets a reference to the given string and assigns it to the AppId field.

func (*DeploymentListItem) SetChildId ¶

func (o *DeploymentListItem) SetChildId(v string)

SetChildId gets a reference to the given string and assigns it to the ChildId field.

func (*DeploymentListItem) SetCreatedAt ¶

func (o *DeploymentListItem) SetCreatedAt(v time.Time)

SetCreatedAt gets a reference to the given time.Time and assigns it to the CreatedAt field.

func (*DeploymentListItem) SetDatabaseInfo ¶

func (o *DeploymentListItem) SetDatabaseInfo(v DeploymentDatabaseInfo)

SetDatabaseInfo gets a reference to the given DeploymentDatabaseInfo and assigns it to the DatabaseInfo field.

func (*DeploymentListItem) SetDefinition ¶

func (o *DeploymentListItem) SetDefinition(v DeploymentDefinition)

SetDefinition gets a reference to the given DeploymentDefinition and assigns it to the Definition field.

func (*DeploymentListItem) SetDeploymentGroup ¶

func (o *DeploymentListItem) SetDeploymentGroup(v string)

SetDeploymentGroup gets a reference to the given string and assigns it to the DeploymentGroup field.

func (*DeploymentListItem) SetId ¶

func (o *DeploymentListItem) SetId(v string)

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

func (*DeploymentListItem) SetMessages ¶

func (o *DeploymentListItem) SetMessages(v []string)

SetMessages gets a reference to the given []string and assigns it to the Messages field.

func (*DeploymentListItem) SetMetadata ¶

func (o *DeploymentListItem) SetMetadata(v DeploymentMetadata)

SetMetadata gets a reference to the given DeploymentMetadata and assigns it to the Metadata field.

func (*DeploymentListItem) SetOrganizationId ¶

func (o *DeploymentListItem) SetOrganizationId(v string)

SetOrganizationId gets a reference to the given string and assigns it to the OrganizationId field.

func (*DeploymentListItem) SetParentId ¶

func (o *DeploymentListItem) SetParentId(v string)

SetParentId gets a reference to the given string and assigns it to the ParentId field.

func (*DeploymentListItem) SetProvisioningInfo ¶

func (o *DeploymentListItem) SetProvisioningInfo(v DeploymentProvisioningInfo)

SetProvisioningInfo gets a reference to the given DeploymentProvisioningInfo and assigns it to the ProvisioningInfo field.

func (*DeploymentListItem) SetServiceId ¶

func (o *DeploymentListItem) SetServiceId(v string)

SetServiceId gets a reference to the given string and assigns it to the ServiceId field.

func (*DeploymentListItem) SetStartedAt ¶

func (o *DeploymentListItem) SetStartedAt(v time.Time)

SetStartedAt gets a reference to the given time.Time and assigns it to the StartedAt field.

func (*DeploymentListItem) SetStatus ¶

func (o *DeploymentListItem) SetStatus(v DeploymentStatus)

SetStatus gets a reference to the given DeploymentStatus and assigns it to the Status field.

func (*DeploymentListItem) SetSucceededAt ¶

func (o *DeploymentListItem) SetSucceededAt(v time.Time)

SetSucceededAt gets a reference to the given time.Time and assigns it to the SucceededAt field.

func (*DeploymentListItem) SetTerminatedAt ¶

func (o *DeploymentListItem) SetTerminatedAt(v time.Time)

SetTerminatedAt gets a reference to the given time.Time and assigns it to the TerminatedAt field.

func (*DeploymentListItem) SetUpdatedAt ¶

func (o *DeploymentListItem) SetUpdatedAt(v time.Time)

SetUpdatedAt gets a reference to the given time.Time and assigns it to the UpdatedAt field.

func (*DeploymentListItem) SetVersion ¶

func (o *DeploymentListItem) SetVersion(v string)

SetVersion gets a reference to the given string and assigns it to the Version field.

type DeploymentMetadata ¶

type DeploymentMetadata struct {
	Trigger  *TriggerDeploymentMetadata  `json:"trigger,omitempty"`
	Database *DatabaseDeploymentMetadata `json:"database,omitempty"`
	Git      *GitDeploymentMetadata      `json:"git,omitempty"`
}

DeploymentMetadata struct for DeploymentMetadata

func NewDeploymentMetadata ¶

func NewDeploymentMetadata() *DeploymentMetadata

NewDeploymentMetadata instantiates a new DeploymentMetadata 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 NewDeploymentMetadataWithDefaults ¶

func NewDeploymentMetadataWithDefaults() *DeploymentMetadata

NewDeploymentMetadataWithDefaults instantiates a new DeploymentMetadata 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 (*DeploymentMetadata) GetDatabase ¶

GetDatabase returns the Database field value if set, zero value otherwise.

func (*DeploymentMetadata) GetDatabaseOk ¶

func (o *DeploymentMetadata) GetDatabaseOk() (*DatabaseDeploymentMetadata, bool)

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

func (*DeploymentMetadata) GetGit ¶

GetGit returns the Git field value if set, zero value otherwise.

func (*DeploymentMetadata) GetGitOk ¶

func (o *DeploymentMetadata) GetGitOk() (*GitDeploymentMetadata, bool)

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

func (*DeploymentMetadata) GetTrigger ¶

GetTrigger returns the Trigger field value if set, zero value otherwise.

func (*DeploymentMetadata) GetTriggerOk ¶

func (o *DeploymentMetadata) GetTriggerOk() (*TriggerDeploymentMetadata, bool)

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

func (*DeploymentMetadata) HasDatabase ¶

func (o *DeploymentMetadata) HasDatabase() bool

HasDatabase returns a boolean if a field has been set.

func (*DeploymentMetadata) HasGit ¶

func (o *DeploymentMetadata) HasGit() bool

HasGit returns a boolean if a field has been set.

func (*DeploymentMetadata) HasTrigger ¶

func (o *DeploymentMetadata) HasTrigger() bool

HasTrigger returns a boolean if a field has been set.

func (DeploymentMetadata) MarshalJSON ¶

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

func (*DeploymentMetadata) SetDatabase ¶

SetDatabase gets a reference to the given DatabaseDeploymentMetadata and assigns it to the Database field.

func (*DeploymentMetadata) SetGit ¶

SetGit gets a reference to the given GitDeploymentMetadata and assigns it to the Git field.

func (*DeploymentMetadata) SetTrigger ¶

SetTrigger gets a reference to the given TriggerDeploymentMetadata and assigns it to the Trigger field.

type DeploymentNeonPostgresDatabaseInfo ¶

type DeploymentNeonPostgresDatabaseInfo struct {
	ActiveTimeSeconds        *string                                  `json:"active_time_seconds,omitempty"`
	ComputeTimeSeconds       *string                                  `json:"compute_time_seconds,omitempty"`
	WrittenDataBytes         *string                                  `json:"written_data_bytes,omitempty"`
	DataTransferBytes        *string                                  `json:"data_transfer_bytes,omitempty"`
	DataStorageBytesHour     *string                                  `json:"data_storage_bytes_hour,omitempty"`
	ServerHost               *string                                  `json:"server_host,omitempty"`
	ServerPort               *int64                                   `json:"server_port,omitempty"`
	EndpointState            *string                                  `json:"endpoint_state,omitempty"`
	EndpointLastActive       *time.Time                               `json:"endpoint_last_active,omitempty"`
	DefaultBranchId          *string                                  `json:"default_branch_id,omitempty"`
	DefaultBranchName        *string                                  `json:"default_branch_name,omitempty"`
	DefaultBranchState       *string                                  `json:"default_branch_state,omitempty"`
	DefaultBranchLogicalSize *string                                  `json:"default_branch_logical_size,omitempty"`
	Roles                    []DeploymentNeonPostgresDatabaseInfoRole `json:"roles,omitempty"`
}

DeploymentNeonPostgresDatabaseInfo struct for DeploymentNeonPostgresDatabaseInfo

func NewDeploymentNeonPostgresDatabaseInfo ¶

func NewDeploymentNeonPostgresDatabaseInfo() *DeploymentNeonPostgresDatabaseInfo

NewDeploymentNeonPostgresDatabaseInfo instantiates a new DeploymentNeonPostgresDatabaseInfo 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 NewDeploymentNeonPostgresDatabaseInfoWithDefaults ¶

func NewDeploymentNeonPostgresDatabaseInfoWithDefaults() *DeploymentNeonPostgresDatabaseInfo

NewDeploymentNeonPostgresDatabaseInfoWithDefaults instantiates a new DeploymentNeonPostgresDatabaseInfo 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 (*DeploymentNeonPostgresDatabaseInfo) GetActiveTimeSeconds ¶

func (o *DeploymentNeonPostgresDatabaseInfo) GetActiveTimeSeconds() string

GetActiveTimeSeconds returns the ActiveTimeSeconds field value if set, zero value otherwise.

func (*DeploymentNeonPostgresDatabaseInfo) GetActiveTimeSecondsOk ¶

func (o *DeploymentNeonPostgresDatabaseInfo) GetActiveTimeSecondsOk() (*string, bool)

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

func (*DeploymentNeonPostgresDatabaseInfo) GetComputeTimeSeconds ¶

func (o *DeploymentNeonPostgresDatabaseInfo) GetComputeTimeSeconds() string

GetComputeTimeSeconds returns the ComputeTimeSeconds field value if set, zero value otherwise.

func (*DeploymentNeonPostgresDatabaseInfo) GetComputeTimeSecondsOk ¶

func (o *DeploymentNeonPostgresDatabaseInfo) GetComputeTimeSecondsOk() (*string, bool)

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

func (*DeploymentNeonPostgresDatabaseInfo) GetDataStorageBytesHour ¶

func (o *DeploymentNeonPostgresDatabaseInfo) GetDataStorageBytesHour() string

GetDataStorageBytesHour returns the DataStorageBytesHour field value if set, zero value otherwise.

func (*DeploymentNeonPostgresDatabaseInfo) GetDataStorageBytesHourOk ¶

func (o *DeploymentNeonPostgresDatabaseInfo) GetDataStorageBytesHourOk() (*string, bool)

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

func (*DeploymentNeonPostgresDatabaseInfo) GetDataTransferBytes ¶

func (o *DeploymentNeonPostgresDatabaseInfo) GetDataTransferBytes() string

GetDataTransferBytes returns the DataTransferBytes field value if set, zero value otherwise.

func (*DeploymentNeonPostgresDatabaseInfo) GetDataTransferBytesOk ¶

func (o *DeploymentNeonPostgresDatabaseInfo) GetDataTransferBytesOk() (*string, bool)

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

func (*DeploymentNeonPostgresDatabaseInfo) GetDefaultBranchId ¶

func (o *DeploymentNeonPostgresDatabaseInfo) GetDefaultBranchId() string

GetDefaultBranchId returns the DefaultBranchId field value if set, zero value otherwise.

func (*DeploymentNeonPostgresDatabaseInfo) GetDefaultBranchIdOk ¶

func (o *DeploymentNeonPostgresDatabaseInfo) GetDefaultBranchIdOk() (*string, bool)

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

func (*DeploymentNeonPostgresDatabaseInfo) GetDefaultBranchLogicalSize ¶

func (o *DeploymentNeonPostgresDatabaseInfo) GetDefaultBranchLogicalSize() string

GetDefaultBranchLogicalSize returns the DefaultBranchLogicalSize field value if set, zero value otherwise.

func (*DeploymentNeonPostgresDatabaseInfo) GetDefaultBranchLogicalSizeOk ¶

func (o *DeploymentNeonPostgresDatabaseInfo) GetDefaultBranchLogicalSizeOk() (*string, bool)

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

func (*DeploymentNeonPostgresDatabaseInfo) GetDefaultBranchName ¶

func (o *DeploymentNeonPostgresDatabaseInfo) GetDefaultBranchName() string

GetDefaultBranchName returns the DefaultBranchName field value if set, zero value otherwise.

func (*DeploymentNeonPostgresDatabaseInfo) GetDefaultBranchNameOk ¶

func (o *DeploymentNeonPostgresDatabaseInfo) GetDefaultBranchNameOk() (*string, bool)

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

func (*DeploymentNeonPostgresDatabaseInfo) GetDefaultBranchState ¶

func (o *DeploymentNeonPostgresDatabaseInfo) GetDefaultBranchState() string

GetDefaultBranchState returns the DefaultBranchState field value if set, zero value otherwise.

func (*DeploymentNeonPostgresDatabaseInfo) GetDefaultBranchStateOk ¶

func (o *DeploymentNeonPostgresDatabaseInfo) GetDefaultBranchStateOk() (*string, bool)

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

func (*DeploymentNeonPostgresDatabaseInfo) GetEndpointLastActive ¶

func (o *DeploymentNeonPostgresDatabaseInfo) GetEndpointLastActive() time.Time

GetEndpointLastActive returns the EndpointLastActive field value if set, zero value otherwise.

func (*DeploymentNeonPostgresDatabaseInfo) GetEndpointLastActiveOk ¶

func (o *DeploymentNeonPostgresDatabaseInfo) GetEndpointLastActiveOk() (*time.Time, bool)

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

func (*DeploymentNeonPostgresDatabaseInfo) GetEndpointState ¶

func (o *DeploymentNeonPostgresDatabaseInfo) GetEndpointState() string

GetEndpointState returns the EndpointState field value if set, zero value otherwise.

func (*DeploymentNeonPostgresDatabaseInfo) GetEndpointStateOk ¶

func (o *DeploymentNeonPostgresDatabaseInfo) GetEndpointStateOk() (*string, bool)

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

func (*DeploymentNeonPostgresDatabaseInfo) GetRoles ¶

GetRoles returns the Roles field value if set, zero value otherwise.

func (*DeploymentNeonPostgresDatabaseInfo) GetRolesOk ¶

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

func (*DeploymentNeonPostgresDatabaseInfo) GetServerHost ¶

func (o *DeploymentNeonPostgresDatabaseInfo) GetServerHost() string

GetServerHost returns the ServerHost field value if set, zero value otherwise.

func (*DeploymentNeonPostgresDatabaseInfo) GetServerHostOk ¶

func (o *DeploymentNeonPostgresDatabaseInfo) GetServerHostOk() (*string, bool)

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

func (*DeploymentNeonPostgresDatabaseInfo) GetServerPort ¶

func (o *DeploymentNeonPostgresDatabaseInfo) GetServerPort() int64

GetServerPort returns the ServerPort field value if set, zero value otherwise.

func (*DeploymentNeonPostgresDatabaseInfo) GetServerPortOk ¶

func (o *DeploymentNeonPostgresDatabaseInfo) GetServerPortOk() (*int64, bool)

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

func (*DeploymentNeonPostgresDatabaseInfo) GetWrittenDataBytes ¶

func (o *DeploymentNeonPostgresDatabaseInfo) GetWrittenDataBytes() string

GetWrittenDataBytes returns the WrittenDataBytes field value if set, zero value otherwise.

func (*DeploymentNeonPostgresDatabaseInfo) GetWrittenDataBytesOk ¶

func (o *DeploymentNeonPostgresDatabaseInfo) GetWrittenDataBytesOk() (*string, bool)

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

func (*DeploymentNeonPostgresDatabaseInfo) HasActiveTimeSeconds ¶

func (o *DeploymentNeonPostgresDatabaseInfo) HasActiveTimeSeconds() bool

HasActiveTimeSeconds returns a boolean if a field has been set.

func (*DeploymentNeonPostgresDatabaseInfo) HasComputeTimeSeconds ¶

func (o *DeploymentNeonPostgresDatabaseInfo) HasComputeTimeSeconds() bool

HasComputeTimeSeconds returns a boolean if a field has been set.

func (*DeploymentNeonPostgresDatabaseInfo) HasDataStorageBytesHour ¶

func (o *DeploymentNeonPostgresDatabaseInfo) HasDataStorageBytesHour() bool

HasDataStorageBytesHour returns a boolean if a field has been set.

func (*DeploymentNeonPostgresDatabaseInfo) HasDataTransferBytes ¶

func (o *DeploymentNeonPostgresDatabaseInfo) HasDataTransferBytes() bool

HasDataTransferBytes returns a boolean if a field has been set.

func (*DeploymentNeonPostgresDatabaseInfo) HasDefaultBranchId ¶

func (o *DeploymentNeonPostgresDatabaseInfo) HasDefaultBranchId() bool

HasDefaultBranchId returns a boolean if a field has been set.

func (*DeploymentNeonPostgresDatabaseInfo) HasDefaultBranchLogicalSize ¶

func (o *DeploymentNeonPostgresDatabaseInfo) HasDefaultBranchLogicalSize() bool

HasDefaultBranchLogicalSize returns a boolean if a field has been set.

func (*DeploymentNeonPostgresDatabaseInfo) HasDefaultBranchName ¶

func (o *DeploymentNeonPostgresDatabaseInfo) HasDefaultBranchName() bool

HasDefaultBranchName returns a boolean if a field has been set.

func (*DeploymentNeonPostgresDatabaseInfo) HasDefaultBranchState ¶

func (o *DeploymentNeonPostgresDatabaseInfo) HasDefaultBranchState() bool

HasDefaultBranchState returns a boolean if a field has been set.

func (*DeploymentNeonPostgresDatabaseInfo) HasEndpointLastActive ¶

func (o *DeploymentNeonPostgresDatabaseInfo) HasEndpointLastActive() bool

HasEndpointLastActive returns a boolean if a field has been set.

func (*DeploymentNeonPostgresDatabaseInfo) HasEndpointState ¶

func (o *DeploymentNeonPostgresDatabaseInfo) HasEndpointState() bool

HasEndpointState returns a boolean if a field has been set.

func (*DeploymentNeonPostgresDatabaseInfo) HasRoles ¶

HasRoles returns a boolean if a field has been set.

func (*DeploymentNeonPostgresDatabaseInfo) HasServerHost ¶

func (o *DeploymentNeonPostgresDatabaseInfo) HasServerHost() bool

HasServerHost returns a boolean if a field has been set.

func (*DeploymentNeonPostgresDatabaseInfo) HasServerPort ¶

func (o *DeploymentNeonPostgresDatabaseInfo) HasServerPort() bool

HasServerPort returns a boolean if a field has been set.

func (*DeploymentNeonPostgresDatabaseInfo) HasWrittenDataBytes ¶

func (o *DeploymentNeonPostgresDatabaseInfo) HasWrittenDataBytes() bool

HasWrittenDataBytes returns a boolean if a field has been set.

func (DeploymentNeonPostgresDatabaseInfo) MarshalJSON ¶

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

func (*DeploymentNeonPostgresDatabaseInfo) SetActiveTimeSeconds ¶

func (o *DeploymentNeonPostgresDatabaseInfo) SetActiveTimeSeconds(v string)

SetActiveTimeSeconds gets a reference to the given string and assigns it to the ActiveTimeSeconds field.

func (*DeploymentNeonPostgresDatabaseInfo) SetComputeTimeSeconds ¶

func (o *DeploymentNeonPostgresDatabaseInfo) SetComputeTimeSeconds(v string)

SetComputeTimeSeconds gets a reference to the given string and assigns it to the ComputeTimeSeconds field.

func (*DeploymentNeonPostgresDatabaseInfo) SetDataStorageBytesHour ¶

func (o *DeploymentNeonPostgresDatabaseInfo) SetDataStorageBytesHour(v string)

SetDataStorageBytesHour gets a reference to the given string and assigns it to the DataStorageBytesHour field.

func (*DeploymentNeonPostgresDatabaseInfo) SetDataTransferBytes ¶

func (o *DeploymentNeonPostgresDatabaseInfo) SetDataTransferBytes(v string)

SetDataTransferBytes gets a reference to the given string and assigns it to the DataTransferBytes field.

func (*DeploymentNeonPostgresDatabaseInfo) SetDefaultBranchId ¶

func (o *DeploymentNeonPostgresDatabaseInfo) SetDefaultBranchId(v string)

SetDefaultBranchId gets a reference to the given string and assigns it to the DefaultBranchId field.

func (*DeploymentNeonPostgresDatabaseInfo) SetDefaultBranchLogicalSize ¶

func (o *DeploymentNeonPostgresDatabaseInfo) SetDefaultBranchLogicalSize(v string)

SetDefaultBranchLogicalSize gets a reference to the given string and assigns it to the DefaultBranchLogicalSize field.

func (*DeploymentNeonPostgresDatabaseInfo) SetDefaultBranchName ¶

func (o *DeploymentNeonPostgresDatabaseInfo) SetDefaultBranchName(v string)

SetDefaultBranchName gets a reference to the given string and assigns it to the DefaultBranchName field.

func (*DeploymentNeonPostgresDatabaseInfo) SetDefaultBranchState ¶

func (o *DeploymentNeonPostgresDatabaseInfo) SetDefaultBranchState(v string)

SetDefaultBranchState gets a reference to the given string and assigns it to the DefaultBranchState field.

func (*DeploymentNeonPostgresDatabaseInfo) SetEndpointLastActive ¶

func (o *DeploymentNeonPostgresDatabaseInfo) SetEndpointLastActive(v time.Time)

SetEndpointLastActive gets a reference to the given time.Time and assigns it to the EndpointLastActive field.

func (*DeploymentNeonPostgresDatabaseInfo) SetEndpointState ¶

func (o *DeploymentNeonPostgresDatabaseInfo) SetEndpointState(v string)

SetEndpointState gets a reference to the given string and assigns it to the EndpointState field.

func (*DeploymentNeonPostgresDatabaseInfo) SetRoles ¶

SetRoles gets a reference to the given []DeploymentNeonPostgresDatabaseInfoRole and assigns it to the Roles field.

func (*DeploymentNeonPostgresDatabaseInfo) SetServerHost ¶

func (o *DeploymentNeonPostgresDatabaseInfo) SetServerHost(v string)

SetServerHost gets a reference to the given string and assigns it to the ServerHost field.

func (*DeploymentNeonPostgresDatabaseInfo) SetServerPort ¶

func (o *DeploymentNeonPostgresDatabaseInfo) SetServerPort(v int64)

SetServerPort gets a reference to the given int64 and assigns it to the ServerPort field.

func (*DeploymentNeonPostgresDatabaseInfo) SetWrittenDataBytes ¶

func (o *DeploymentNeonPostgresDatabaseInfo) SetWrittenDataBytes(v string)

SetWrittenDataBytes gets a reference to the given string and assigns it to the WrittenDataBytes field.

type DeploymentNeonPostgresDatabaseInfoRole ¶

type DeploymentNeonPostgresDatabaseInfoRole struct {
	Name     *string `json:"name,omitempty"`
	SecretId *string `json:"secret_id,omitempty"`
}

DeploymentNeonPostgresDatabaseInfoRole struct for DeploymentNeonPostgresDatabaseInfoRole

func NewDeploymentNeonPostgresDatabaseInfoRole ¶

func NewDeploymentNeonPostgresDatabaseInfoRole() *DeploymentNeonPostgresDatabaseInfoRole

NewDeploymentNeonPostgresDatabaseInfoRole instantiates a new DeploymentNeonPostgresDatabaseInfoRole 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 NewDeploymentNeonPostgresDatabaseInfoRoleWithDefaults ¶

func NewDeploymentNeonPostgresDatabaseInfoRoleWithDefaults() *DeploymentNeonPostgresDatabaseInfoRole

NewDeploymentNeonPostgresDatabaseInfoRoleWithDefaults instantiates a new DeploymentNeonPostgresDatabaseInfoRole 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 (*DeploymentNeonPostgresDatabaseInfoRole) GetName ¶

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

func (*DeploymentNeonPostgresDatabaseInfoRole) GetNameOk ¶

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 (*DeploymentNeonPostgresDatabaseInfoRole) GetSecretId ¶

GetSecretId returns the SecretId field value if set, zero value otherwise.

func (*DeploymentNeonPostgresDatabaseInfoRole) GetSecretIdOk ¶

func (o *DeploymentNeonPostgresDatabaseInfoRole) GetSecretIdOk() (*string, bool)

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

func (*DeploymentNeonPostgresDatabaseInfoRole) HasName ¶

HasName returns a boolean if a field has been set.

func (*DeploymentNeonPostgresDatabaseInfoRole) HasSecretId ¶

HasSecretId returns a boolean if a field has been set.

func (DeploymentNeonPostgresDatabaseInfoRole) MarshalJSON ¶

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

func (*DeploymentNeonPostgresDatabaseInfoRole) SetName ¶

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

func (*DeploymentNeonPostgresDatabaseInfoRole) SetSecretId ¶

SetSecretId gets a reference to the given string and assigns it to the SecretId field.

type DeploymentPort ¶

type DeploymentPort struct {
	Port     *int64  `json:"port,omitempty"`
	Protocol *string `json:"protocol,omitempty"`
}

DeploymentPort struct for DeploymentPort

func NewDeploymentPort ¶

func NewDeploymentPort() *DeploymentPort

NewDeploymentPort instantiates a new DeploymentPort 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 NewDeploymentPortWithDefaults ¶

func NewDeploymentPortWithDefaults() *DeploymentPort

NewDeploymentPortWithDefaults instantiates a new DeploymentPort 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 (*DeploymentPort) GetPort ¶

func (o *DeploymentPort) GetPort() int64

GetPort returns the Port field value if set, zero value otherwise.

func (*DeploymentPort) GetPortOk ¶

func (o *DeploymentPort) GetPortOk() (*int64, 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 (*DeploymentPort) GetProtocol ¶

func (o *DeploymentPort) GetProtocol() string

GetProtocol returns the Protocol field value if set, zero value otherwise.

func (*DeploymentPort) GetProtocolOk ¶

func (o *DeploymentPort) GetProtocolOk() (*string, bool)

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

func (*DeploymentPort) HasPort ¶

func (o *DeploymentPort) HasPort() bool

HasPort returns a boolean if a field has been set.

func (*DeploymentPort) HasProtocol ¶

func (o *DeploymentPort) HasProtocol() bool

HasProtocol returns a boolean if a field has been set.

func (DeploymentPort) MarshalJSON ¶

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

func (*DeploymentPort) SetPort ¶

func (o *DeploymentPort) SetPort(v int64)

SetPort gets a reference to the given int64 and assigns it to the Port field.

func (*DeploymentPort) SetProtocol ¶

func (o *DeploymentPort) SetProtocol(v string)

SetProtocol gets a reference to the given string and assigns it to the Protocol field.

type DeploymentProvisioningInfo ¶

type DeploymentProvisioningInfo struct {
	// The git sha for this build (we resolve the reference at the start of the build).
	Sha *string `json:"sha,omitempty"`
	// The docker image built as a result of this build.
	Image *string `json:"image,omitempty"`
	// Some info about the build.
	Stages []DeploymentProvisioningInfoStage `json:"stages,omitempty"`
}

DeploymentProvisioningInfo struct for DeploymentProvisioningInfo

func NewDeploymentProvisioningInfo ¶

func NewDeploymentProvisioningInfo() *DeploymentProvisioningInfo

NewDeploymentProvisioningInfo instantiates a new DeploymentProvisioningInfo 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 NewDeploymentProvisioningInfoWithDefaults ¶

func NewDeploymentProvisioningInfoWithDefaults() *DeploymentProvisioningInfo

NewDeploymentProvisioningInfoWithDefaults instantiates a new DeploymentProvisioningInfo 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 (*DeploymentProvisioningInfo) GetImage ¶

func (o *DeploymentProvisioningInfo) GetImage() string

GetImage returns the Image field value if set, zero value otherwise.

func (*DeploymentProvisioningInfo) GetImageOk ¶

func (o *DeploymentProvisioningInfo) GetImageOk() (*string, bool)

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

func (*DeploymentProvisioningInfo) GetSha ¶

func (o *DeploymentProvisioningInfo) GetSha() string

GetSha returns the Sha field value if set, zero value otherwise.

func (*DeploymentProvisioningInfo) GetShaOk ¶

func (o *DeploymentProvisioningInfo) GetShaOk() (*string, bool)

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

func (*DeploymentProvisioningInfo) GetStages ¶

GetStages returns the Stages field value if set, zero value otherwise.

func (*DeploymentProvisioningInfo) GetStagesOk ¶

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

func (*DeploymentProvisioningInfo) HasImage ¶

func (o *DeploymentProvisioningInfo) HasImage() bool

HasImage returns a boolean if a field has been set.

func (*DeploymentProvisioningInfo) HasSha ¶

func (o *DeploymentProvisioningInfo) HasSha() bool

HasSha returns a boolean if a field has been set.

func (*DeploymentProvisioningInfo) HasStages ¶

func (o *DeploymentProvisioningInfo) HasStages() bool

HasStages returns a boolean if a field has been set.

func (DeploymentProvisioningInfo) MarshalJSON ¶

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

func (*DeploymentProvisioningInfo) SetImage ¶

func (o *DeploymentProvisioningInfo) SetImage(v string)

SetImage gets a reference to the given string and assigns it to the Image field.

func (*DeploymentProvisioningInfo) SetSha ¶

func (o *DeploymentProvisioningInfo) SetSha(v string)

SetSha gets a reference to the given string and assigns it to the Sha field.

func (*DeploymentProvisioningInfo) SetStages ¶

SetStages gets a reference to the given []DeploymentProvisioningInfoStage and assigns it to the Stages field.

type DeploymentProvisioningInfoStage ¶

type DeploymentProvisioningInfoStage struct {
	Name          *string                                       `json:"name,omitempty"`
	Status        *DeploymentProvisioningInfoStageStatus        `json:"status,omitempty"`
	Messages      []string                                      `json:"messages,omitempty"`
	StartedAt     *time.Time                                    `json:"started_at,omitempty"`
	FinishedAt    *time.Time                                    `json:"finished_at,omitempty"`
	BuildAttempts []DeploymentProvisioningInfoStageBuildAttempt `json:"build_attempts,omitempty"`
}

DeploymentProvisioningInfoStage struct for DeploymentProvisioningInfoStage

func NewDeploymentProvisioningInfoStage ¶

func NewDeploymentProvisioningInfoStage() *DeploymentProvisioningInfoStage

NewDeploymentProvisioningInfoStage instantiates a new DeploymentProvisioningInfoStage 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 NewDeploymentProvisioningInfoStageWithDefaults ¶

func NewDeploymentProvisioningInfoStageWithDefaults() *DeploymentProvisioningInfoStage

NewDeploymentProvisioningInfoStageWithDefaults instantiates a new DeploymentProvisioningInfoStage 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 (*DeploymentProvisioningInfoStage) GetBuildAttempts ¶

GetBuildAttempts returns the BuildAttempts field value if set, zero value otherwise.

func (*DeploymentProvisioningInfoStage) GetBuildAttemptsOk ¶

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

func (*DeploymentProvisioningInfoStage) GetFinishedAt ¶

func (o *DeploymentProvisioningInfoStage) GetFinishedAt() time.Time

GetFinishedAt returns the FinishedAt field value if set, zero value otherwise.

func (*DeploymentProvisioningInfoStage) GetFinishedAtOk ¶

func (o *DeploymentProvisioningInfoStage) GetFinishedAtOk() (*time.Time, bool)

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

func (*DeploymentProvisioningInfoStage) GetMessages ¶

func (o *DeploymentProvisioningInfoStage) GetMessages() []string

GetMessages returns the Messages field value if set, zero value otherwise.

func (*DeploymentProvisioningInfoStage) GetMessagesOk ¶

func (o *DeploymentProvisioningInfoStage) GetMessagesOk() ([]string, bool)

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

func (*DeploymentProvisioningInfoStage) GetName ¶

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

func (*DeploymentProvisioningInfoStage) GetNameOk ¶

func (o *DeploymentProvisioningInfoStage) 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 (*DeploymentProvisioningInfoStage) GetStartedAt ¶

func (o *DeploymentProvisioningInfoStage) GetStartedAt() time.Time

GetStartedAt returns the StartedAt field value if set, zero value otherwise.

func (*DeploymentProvisioningInfoStage) GetStartedAtOk ¶

func (o *DeploymentProvisioningInfoStage) GetStartedAtOk() (*time.Time, bool)

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

func (*DeploymentProvisioningInfoStage) GetStatus ¶

GetStatus returns the Status field value if set, zero value otherwise.

func (*DeploymentProvisioningInfoStage) GetStatusOk ¶

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 (*DeploymentProvisioningInfoStage) HasBuildAttempts ¶

func (o *DeploymentProvisioningInfoStage) HasBuildAttempts() bool

HasBuildAttempts returns a boolean if a field has been set.

func (*DeploymentProvisioningInfoStage) HasFinishedAt ¶

func (o *DeploymentProvisioningInfoStage) HasFinishedAt() bool

HasFinishedAt returns a boolean if a field has been set.

func (*DeploymentProvisioningInfoStage) HasMessages ¶

func (o *DeploymentProvisioningInfoStage) HasMessages() bool

HasMessages returns a boolean if a field has been set.

func (*DeploymentProvisioningInfoStage) HasName ¶

HasName returns a boolean if a field has been set.

func (*DeploymentProvisioningInfoStage) HasStartedAt ¶

func (o *DeploymentProvisioningInfoStage) HasStartedAt() bool

HasStartedAt returns a boolean if a field has been set.

func (*DeploymentProvisioningInfoStage) HasStatus ¶

func (o *DeploymentProvisioningInfoStage) HasStatus() bool

HasStatus returns a boolean if a field has been set.

func (DeploymentProvisioningInfoStage) MarshalJSON ¶

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

func (*DeploymentProvisioningInfoStage) SetBuildAttempts ¶

SetBuildAttempts gets a reference to the given []DeploymentProvisioningInfoStageBuildAttempt and assigns it to the BuildAttempts field.

func (*DeploymentProvisioningInfoStage) SetFinishedAt ¶

func (o *DeploymentProvisioningInfoStage) SetFinishedAt(v time.Time)

SetFinishedAt gets a reference to the given time.Time and assigns it to the FinishedAt field.

func (*DeploymentProvisioningInfoStage) SetMessages ¶

func (o *DeploymentProvisioningInfoStage) SetMessages(v []string)

SetMessages gets a reference to the given []string and assigns it to the Messages field.

func (*DeploymentProvisioningInfoStage) SetName ¶

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

func (*DeploymentProvisioningInfoStage) SetStartedAt ¶

func (o *DeploymentProvisioningInfoStage) SetStartedAt(v time.Time)

SetStartedAt gets a reference to the given time.Time and assigns it to the StartedAt field.

func (*DeploymentProvisioningInfoStage) SetStatus ¶

SetStatus gets a reference to the given DeploymentProvisioningInfoStageStatus and assigns it to the Status field.

type DeploymentProvisioningInfoStageBuildAttempt ¶

type DeploymentProvisioningInfoStageBuildAttempt struct {
	Id         *int64                                 `json:"id,omitempty"`
	Status     *DeploymentProvisioningInfoStageStatus `json:"status,omitempty"`
	Messages   []string                               `json:"messages,omitempty"`
	StartedAt  *time.Time                             `json:"started_at,omitempty"`
	FinishedAt *time.Time                             `json:"finished_at,omitempty"`
}

DeploymentProvisioningInfoStageBuildAttempt struct for DeploymentProvisioningInfoStageBuildAttempt

func NewDeploymentProvisioningInfoStageBuildAttempt ¶

func NewDeploymentProvisioningInfoStageBuildAttempt() *DeploymentProvisioningInfoStageBuildAttempt

NewDeploymentProvisioningInfoStageBuildAttempt instantiates a new DeploymentProvisioningInfoStageBuildAttempt 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 NewDeploymentProvisioningInfoStageBuildAttemptWithDefaults ¶

func NewDeploymentProvisioningInfoStageBuildAttemptWithDefaults() *DeploymentProvisioningInfoStageBuildAttempt

NewDeploymentProvisioningInfoStageBuildAttemptWithDefaults instantiates a new DeploymentProvisioningInfoStageBuildAttempt 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 (*DeploymentProvisioningInfoStageBuildAttempt) GetFinishedAt ¶

GetFinishedAt returns the FinishedAt field value if set, zero value otherwise.

func (*DeploymentProvisioningInfoStageBuildAttempt) GetFinishedAtOk ¶

func (o *DeploymentProvisioningInfoStageBuildAttempt) GetFinishedAtOk() (*time.Time, bool)

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

func (*DeploymentProvisioningInfoStageBuildAttempt) GetId ¶

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

func (*DeploymentProvisioningInfoStageBuildAttempt) GetIdOk ¶

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 (*DeploymentProvisioningInfoStageBuildAttempt) GetMessages ¶

GetMessages returns the Messages field value if set, zero value otherwise.

func (*DeploymentProvisioningInfoStageBuildAttempt) GetMessagesOk ¶

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

func (*DeploymentProvisioningInfoStageBuildAttempt) GetStartedAt ¶

GetStartedAt returns the StartedAt field value if set, zero value otherwise.

func (*DeploymentProvisioningInfoStageBuildAttempt) GetStartedAtOk ¶

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

func (*DeploymentProvisioningInfoStageBuildAttempt) GetStatus ¶

GetStatus returns the Status field value if set, zero value otherwise.

func (*DeploymentProvisioningInfoStageBuildAttempt) GetStatusOk ¶

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 (*DeploymentProvisioningInfoStageBuildAttempt) HasFinishedAt ¶

HasFinishedAt returns a boolean if a field has been set.

func (*DeploymentProvisioningInfoStageBuildAttempt) HasId ¶

HasId returns a boolean if a field has been set.

func (*DeploymentProvisioningInfoStageBuildAttempt) HasMessages ¶

HasMessages returns a boolean if a field has been set.

func (*DeploymentProvisioningInfoStageBuildAttempt) HasStartedAt ¶

HasStartedAt returns a boolean if a field has been set.

func (*DeploymentProvisioningInfoStageBuildAttempt) HasStatus ¶

HasStatus returns a boolean if a field has been set.

func (DeploymentProvisioningInfoStageBuildAttempt) MarshalJSON ¶

func (*DeploymentProvisioningInfoStageBuildAttempt) SetFinishedAt ¶

SetFinishedAt gets a reference to the given time.Time and assigns it to the FinishedAt field.

func (*DeploymentProvisioningInfoStageBuildAttempt) SetId ¶

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

func (*DeploymentProvisioningInfoStageBuildAttempt) SetMessages ¶

SetMessages gets a reference to the given []string and assigns it to the Messages field.

func (*DeploymentProvisioningInfoStageBuildAttempt) SetStartedAt ¶

SetStartedAt gets a reference to the given time.Time and assigns it to the StartedAt field.

func (*DeploymentProvisioningInfoStageBuildAttempt) SetStatus ¶

SetStatus gets a reference to the given DeploymentProvisioningInfoStageStatus and assigns it to the Status field.

type DeploymentProvisioningInfoStageStatus ¶

type DeploymentProvisioningInfoStageStatus string

DeploymentProvisioningInfoStageStatus the model 'DeploymentProvisioningInfoStageStatus'

const (
	DEPLOYMENTPROVISIONINGINFOSTAGESTATUS_UNKNOWN   DeploymentProvisioningInfoStageStatus = "UNKNOWN"
	DEPLOYMENTPROVISIONINGINFOSTAGESTATUS_RUNNING   DeploymentProvisioningInfoStageStatus = "RUNNING"
	DEPLOYMENTPROVISIONINGINFOSTAGESTATUS_FAILED    DeploymentProvisioningInfoStageStatus = "FAILED"
	DEPLOYMENTPROVISIONINGINFOSTAGESTATUS_COMPLETED DeploymentProvisioningInfoStageStatus = "COMPLETED"
	DEPLOYMENTPROVISIONINGINFOSTAGESTATUS_ABORTED   DeploymentProvisioningInfoStageStatus = "ABORTED"
)

List of DeploymentProvisioningInfo.Stage.Status

func NewDeploymentProvisioningInfoStageStatusFromValue ¶

func NewDeploymentProvisioningInfoStageStatusFromValue(v string) (*DeploymentProvisioningInfoStageStatus, error)

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

func (DeploymentProvisioningInfoStageStatus) IsValid ¶

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

func (DeploymentProvisioningInfoStageStatus) Ptr ¶

Ptr returns reference to DeploymentProvisioningInfo.Stage.Status value

func (*DeploymentProvisioningInfoStageStatus) UnmarshalJSON ¶

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

type DeploymentRoute ¶

type DeploymentRoute struct {
	Port *int64  `json:"port,omitempty"`
	Path *string `json:"path,omitempty"`
}

DeploymentRoute struct for DeploymentRoute

func NewDeploymentRoute ¶

func NewDeploymentRoute() *DeploymentRoute

NewDeploymentRoute instantiates a new DeploymentRoute 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 NewDeploymentRouteWithDefaults ¶

func NewDeploymentRouteWithDefaults() *DeploymentRoute

NewDeploymentRouteWithDefaults instantiates a new DeploymentRoute 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 (*DeploymentRoute) GetPath ¶

func (o *DeploymentRoute) GetPath() string

GetPath returns the Path field value if set, zero value otherwise.

func (*DeploymentRoute) GetPathOk ¶

func (o *DeploymentRoute) GetPathOk() (*string, bool)

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

func (*DeploymentRoute) GetPort ¶

func (o *DeploymentRoute) GetPort() int64

GetPort returns the Port field value if set, zero value otherwise.

func (*DeploymentRoute) GetPortOk ¶

func (o *DeploymentRoute) GetPortOk() (*int64, 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 (*DeploymentRoute) HasPath ¶

func (o *DeploymentRoute) HasPath() bool

HasPath returns a boolean if a field has been set.

func (*DeploymentRoute) HasPort ¶

func (o *DeploymentRoute) HasPort() bool

HasPort returns a boolean if a field has been set.

func (DeploymentRoute) MarshalJSON ¶

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

func (*DeploymentRoute) SetPath ¶

func (o *DeploymentRoute) SetPath(v string)

SetPath gets a reference to the given string and assigns it to the Path field.

func (*DeploymentRoute) SetPort ¶

func (o *DeploymentRoute) SetPort(v int64)

SetPort gets a reference to the given int64 and assigns it to the Port field.

type DeploymentScaling ¶

type DeploymentScaling struct {
	Scopes  []string                  `json:"scopes,omitempty"`
	Min     *int64                    `json:"min,omitempty"`
	Max     *int64                    `json:"max,omitempty"`
	Targets []DeploymentScalingTarget `json:"targets,omitempty"`
}

DeploymentScaling struct for DeploymentScaling

func NewDeploymentScaling ¶

func NewDeploymentScaling() *DeploymentScaling

NewDeploymentScaling instantiates a new DeploymentScaling 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 NewDeploymentScalingWithDefaults ¶

func NewDeploymentScalingWithDefaults() *DeploymentScaling

NewDeploymentScalingWithDefaults instantiates a new DeploymentScaling 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 (*DeploymentScaling) GetMax ¶

func (o *DeploymentScaling) GetMax() int64

GetMax returns the Max field value if set, zero value otherwise.

func (*DeploymentScaling) GetMaxOk ¶

func (o *DeploymentScaling) GetMaxOk() (*int64, bool)

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

func (*DeploymentScaling) GetMin ¶

func (o *DeploymentScaling) GetMin() int64

GetMin returns the Min field value if set, zero value otherwise.

func (*DeploymentScaling) GetMinOk ¶

func (o *DeploymentScaling) GetMinOk() (*int64, bool)

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

func (*DeploymentScaling) GetScopes ¶

func (o *DeploymentScaling) GetScopes() []string

GetScopes returns the Scopes field value if set, zero value otherwise.

func (*DeploymentScaling) GetScopesOk ¶

func (o *DeploymentScaling) GetScopesOk() ([]string, bool)

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

func (*DeploymentScaling) GetTargets ¶

func (o *DeploymentScaling) GetTargets() []DeploymentScalingTarget

GetTargets returns the Targets field value if set, zero value otherwise.

func (*DeploymentScaling) GetTargetsOk ¶

func (o *DeploymentScaling) GetTargetsOk() ([]DeploymentScalingTarget, bool)

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

func (*DeploymentScaling) HasMax ¶

func (o *DeploymentScaling) HasMax() bool

HasMax returns a boolean if a field has been set.

func (*DeploymentScaling) HasMin ¶

func (o *DeploymentScaling) HasMin() bool

HasMin returns a boolean if a field has been set.

func (*DeploymentScaling) HasScopes ¶

func (o *DeploymentScaling) HasScopes() bool

HasScopes returns a boolean if a field has been set.

func (*DeploymentScaling) HasTargets ¶

func (o *DeploymentScaling) HasTargets() bool

HasTargets returns a boolean if a field has been set.

func (DeploymentScaling) MarshalJSON ¶

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

func (*DeploymentScaling) SetMax ¶

func (o *DeploymentScaling) SetMax(v int64)

SetMax gets a reference to the given int64 and assigns it to the Max field.

func (*DeploymentScaling) SetMin ¶

func (o *DeploymentScaling) SetMin(v int64)

SetMin gets a reference to the given int64 and assigns it to the Min field.

func (*DeploymentScaling) SetScopes ¶

func (o *DeploymentScaling) SetScopes(v []string)

SetScopes gets a reference to the given []string and assigns it to the Scopes field.

func (*DeploymentScaling) SetTargets ¶

func (o *DeploymentScaling) SetTargets(v []DeploymentScalingTarget)

SetTargets gets a reference to the given []DeploymentScalingTarget and assigns it to the Targets field.

type DeploymentScalingTarget ¶

type DeploymentScalingTarget struct {
	AverageCpu        *DeploymentScalingTargetAverageCPU        `json:"average_cpu,omitempty"`
	AverageMem        *DeploymentScalingTargetAverageMem        `json:"average_mem,omitempty"`
	RequestsPerSecond *DeploymentScalingTargetRequestsPerSecond `json:"requests_per_second,omitempty"`
}

DeploymentScalingTarget struct for DeploymentScalingTarget

func NewDeploymentScalingTarget ¶

func NewDeploymentScalingTarget() *DeploymentScalingTarget

NewDeploymentScalingTarget instantiates a new DeploymentScalingTarget 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 NewDeploymentScalingTargetWithDefaults ¶

func NewDeploymentScalingTargetWithDefaults() *DeploymentScalingTarget

NewDeploymentScalingTargetWithDefaults instantiates a new DeploymentScalingTarget 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 (*DeploymentScalingTarget) GetAverageCpu ¶

GetAverageCpu returns the AverageCpu field value if set, zero value otherwise.

func (*DeploymentScalingTarget) GetAverageCpuOk ¶

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

func (*DeploymentScalingTarget) GetAverageMem ¶

GetAverageMem returns the AverageMem field value if set, zero value otherwise.

func (*DeploymentScalingTarget) GetAverageMemOk ¶

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

func (*DeploymentScalingTarget) GetRequestsPerSecond ¶

GetRequestsPerSecond returns the RequestsPerSecond field value if set, zero value otherwise.

func (*DeploymentScalingTarget) GetRequestsPerSecondOk ¶

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

func (*DeploymentScalingTarget) HasAverageCpu ¶

func (o *DeploymentScalingTarget) HasAverageCpu() bool

HasAverageCpu returns a boolean if a field has been set.

func (*DeploymentScalingTarget) HasAverageMem ¶

func (o *DeploymentScalingTarget) HasAverageMem() bool

HasAverageMem returns a boolean if a field has been set.

func (*DeploymentScalingTarget) HasRequestsPerSecond ¶

func (o *DeploymentScalingTarget) HasRequestsPerSecond() bool

HasRequestsPerSecond returns a boolean if a field has been set.

func (DeploymentScalingTarget) MarshalJSON ¶

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

func (*DeploymentScalingTarget) SetAverageCpu ¶

SetAverageCpu gets a reference to the given DeploymentScalingTargetAverageCPU and assigns it to the AverageCpu field.

func (*DeploymentScalingTarget) SetAverageMem ¶

SetAverageMem gets a reference to the given DeploymentScalingTargetAverageMem and assigns it to the AverageMem field.

func (*DeploymentScalingTarget) SetRequestsPerSecond ¶

SetRequestsPerSecond gets a reference to the given DeploymentScalingTargetRequestsPerSecond and assigns it to the RequestsPerSecond field.

type DeploymentScalingTargetAverageCPU ¶

type DeploymentScalingTargetAverageCPU struct {
	Value *int64 `json:"value,omitempty"`
}

DeploymentScalingTargetAverageCPU struct for DeploymentScalingTargetAverageCPU

func NewDeploymentScalingTargetAverageCPU ¶

func NewDeploymentScalingTargetAverageCPU() *DeploymentScalingTargetAverageCPU

NewDeploymentScalingTargetAverageCPU instantiates a new DeploymentScalingTargetAverageCPU 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 NewDeploymentScalingTargetAverageCPUWithDefaults ¶

func NewDeploymentScalingTargetAverageCPUWithDefaults() *DeploymentScalingTargetAverageCPU

NewDeploymentScalingTargetAverageCPUWithDefaults instantiates a new DeploymentScalingTargetAverageCPU 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 (*DeploymentScalingTargetAverageCPU) GetValue ¶

GetValue returns the Value field value if set, zero value otherwise.

func (*DeploymentScalingTargetAverageCPU) GetValueOk ¶

func (o *DeploymentScalingTargetAverageCPU) GetValueOk() (*int64, bool)

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

func (*DeploymentScalingTargetAverageCPU) HasValue ¶

HasValue returns a boolean if a field has been set.

func (DeploymentScalingTargetAverageCPU) MarshalJSON ¶

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

func (*DeploymentScalingTargetAverageCPU) SetValue ¶

SetValue gets a reference to the given int64 and assigns it to the Value field.

type DeploymentScalingTargetAverageMem ¶

type DeploymentScalingTargetAverageMem struct {
	Value *int64 `json:"value,omitempty"`
}

DeploymentScalingTargetAverageMem struct for DeploymentScalingTargetAverageMem

func NewDeploymentScalingTargetAverageMem ¶

func NewDeploymentScalingTargetAverageMem() *DeploymentScalingTargetAverageMem

NewDeploymentScalingTargetAverageMem instantiates a new DeploymentScalingTargetAverageMem 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 NewDeploymentScalingTargetAverageMemWithDefaults ¶

func NewDeploymentScalingTargetAverageMemWithDefaults() *DeploymentScalingTargetAverageMem

NewDeploymentScalingTargetAverageMemWithDefaults instantiates a new DeploymentScalingTargetAverageMem 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 (*DeploymentScalingTargetAverageMem) GetValue ¶

GetValue returns the Value field value if set, zero value otherwise.

func (*DeploymentScalingTargetAverageMem) GetValueOk ¶

func (o *DeploymentScalingTargetAverageMem) GetValueOk() (*int64, bool)

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

func (*DeploymentScalingTargetAverageMem) HasValue ¶

HasValue returns a boolean if a field has been set.

func (DeploymentScalingTargetAverageMem) MarshalJSON ¶

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

func (*DeploymentScalingTargetAverageMem) SetValue ¶

SetValue gets a reference to the given int64 and assigns it to the Value field.

type DeploymentScalingTargetRequestsPerSecond ¶

type DeploymentScalingTargetRequestsPerSecond struct {
	Value *int64 `json:"value,omitempty"`
}

DeploymentScalingTargetRequestsPerSecond struct for DeploymentScalingTargetRequestsPerSecond

func NewDeploymentScalingTargetRequestsPerSecond ¶

func NewDeploymentScalingTargetRequestsPerSecond() *DeploymentScalingTargetRequestsPerSecond

NewDeploymentScalingTargetRequestsPerSecond instantiates a new DeploymentScalingTargetRequestsPerSecond 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 NewDeploymentScalingTargetRequestsPerSecondWithDefaults ¶

func NewDeploymentScalingTargetRequestsPerSecondWithDefaults() *DeploymentScalingTargetRequestsPerSecond

NewDeploymentScalingTargetRequestsPerSecondWithDefaults instantiates a new DeploymentScalingTargetRequestsPerSecond 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 (*DeploymentScalingTargetRequestsPerSecond) GetValue ¶

GetValue returns the Value field value if set, zero value otherwise.

func (*DeploymentScalingTargetRequestsPerSecond) GetValueOk ¶

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

func (*DeploymentScalingTargetRequestsPerSecond) HasValue ¶

HasValue returns a boolean if a field has been set.

func (DeploymentScalingTargetRequestsPerSecond) MarshalJSON ¶

func (*DeploymentScalingTargetRequestsPerSecond) SetValue ¶

SetValue gets a reference to the given int64 and assigns it to the Value field.

type DeploymentStatus ¶

type DeploymentStatus string

DeploymentStatus the model 'DeploymentStatus'

const (
	DEPLOYMENTSTATUS_PENDING      DeploymentStatus = "PENDING"
	DEPLOYMENTSTATUS_PROVISIONING DeploymentStatus = "PROVISIONING"
	DEPLOYMENTSTATUS_SCHEDULED    DeploymentStatus = "SCHEDULED"
	DEPLOYMENTSTATUS_CANCELING    DeploymentStatus = "CANCELING"
	DEPLOYMENTSTATUS_CANCELED     DeploymentStatus = "CANCELED"
	DEPLOYMENTSTATUS_ALLOCATING   DeploymentStatus = "ALLOCATING"
	DEPLOYMENTSTATUS_STARTING     DeploymentStatus = "STARTING"
	DEPLOYMENTSTATUS_HEALTHY      DeploymentStatus = "HEALTHY"
	DEPLOYMENTSTATUS_DEGRADED     DeploymentStatus = "DEGRADED"
	DEPLOYMENTSTATUS_UNHEALTHY    DeploymentStatus = "UNHEALTHY"
	DEPLOYMENTSTATUS_STOPPING     DeploymentStatus = "STOPPING"
	DEPLOYMENTSTATUS_STOPPED      DeploymentStatus = "STOPPED"
	DEPLOYMENTSTATUS_ERRORING     DeploymentStatus = "ERRORING"
	DEPLOYMENTSTATUS_ERROR        DeploymentStatus = "ERROR"
	DEPLOYMENTSTATUS_STASHED      DeploymentStatus = "STASHED"
)

List of Deployment.Status

func NewDeploymentStatusFromValue ¶

func NewDeploymentStatusFromValue(v string) (*DeploymentStatus, error)

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

func (DeploymentStatus) IsValid ¶

func (v DeploymentStatus) IsValid() bool

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

func (DeploymentStatus) Ptr ¶

Ptr returns reference to Deployment.Status value

func (*DeploymentStatus) UnmarshalJSON ¶

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

type DeploymentsApi ¶

type DeploymentsApi interface {

	/*
		CancelDeployment Cancel Deployment

		Deployment cancellation is allowed for the following status:
	 - pending
	 - provisioning
	 - scheduled

		@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
		@param id The id of the deployment to cancel.
		@return ApiCancelDeploymentRequest
	*/
	CancelDeployment(ctx context.Context, id string) ApiCancelDeploymentRequest

	// CancelDeploymentExecute executes the request
	//  @return map[string]interface{}
	CancelDeploymentExecute(r ApiCancelDeploymentRequest) (map[string]interface{}, *http.Response, error)

	/*
		GetDeployment Get Deployment

		@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
		@param id The id of the deployment
		@return ApiGetDeploymentRequest
	*/
	GetDeployment(ctx context.Context, id string) ApiGetDeploymentRequest

	// GetDeploymentExecute executes the request
	//  @return GetDeploymentReply
	GetDeploymentExecute(r ApiGetDeploymentRequest) (*GetDeploymentReply, *http.Response, error)

	/*
		ListDeploymentEvents List Deployment events

		@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
		@return ApiListDeploymentEventsRequest
	*/
	ListDeploymentEvents(ctx context.Context) ApiListDeploymentEventsRequest

	// ListDeploymentEventsExecute executes the request
	//  @return ListDeploymentEventsReply
	ListDeploymentEventsExecute(r ApiListDeploymentEventsRequest) (*ListDeploymentEventsReply, *http.Response, error)

	/*
		ListDeployments List Deployments

		@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
		@return ApiListDeploymentsRequest
	*/
	ListDeployments(ctx context.Context) ApiListDeploymentsRequest

	// ListDeploymentsExecute executes the request
	//  @return ListDeploymentsReply
	ListDeploymentsExecute(r ApiListDeploymentsRequest) (*ListDeploymentsReply, *http.Response, error)
}

type DeploymentsApiService ¶

type DeploymentsApiService service

DeploymentsApiService DeploymentsApi service

func (*DeploymentsApiService) CancelDeployment ¶

CancelDeployment Cancel Deployment

Deployment cancellation is allowed for the following status:

  • pending

  • provisioning

  • scheduled

    @param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background(). @param id The id of the deployment to cancel. @return ApiCancelDeploymentRequest

func (*DeploymentsApiService) CancelDeploymentExecute ¶

func (a *DeploymentsApiService) CancelDeploymentExecute(r ApiCancelDeploymentRequest) (map[string]interface{}, *http.Response, error)

Execute executes the request

@return map[string]interface{}

func (*DeploymentsApiService) GetDeployment ¶

GetDeployment Get Deployment

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param id The id of the deployment
@return ApiGetDeploymentRequest

func (*DeploymentsApiService) GetDeploymentExecute ¶

Execute executes the request

@return GetDeploymentReply

func (*DeploymentsApiService) ListDeploymentEvents ¶

ListDeploymentEvents List Deployment events

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@return ApiListDeploymentEventsRequest

func (*DeploymentsApiService) ListDeploymentEventsExecute ¶

Execute executes the request

@return ListDeploymentEventsReply

func (*DeploymentsApiService) ListDeployments ¶

ListDeployments List Deployments

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@return ApiListDeploymentsRequest

func (*DeploymentsApiService) ListDeploymentsExecute ¶

Execute executes the request

@return ListDeploymentsReply

type DesiredDeployment ¶

type DesiredDeployment struct {
	Groups []DesiredDeploymentGroup `json:"groups,omitempty"`
}

DesiredDeployment struct for DesiredDeployment

func NewDesiredDeployment ¶

func NewDesiredDeployment() *DesiredDeployment

NewDesiredDeployment instantiates a new DesiredDeployment 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 NewDesiredDeploymentWithDefaults ¶

func NewDesiredDeploymentWithDefaults() *DesiredDeployment

NewDesiredDeploymentWithDefaults instantiates a new DesiredDeployment 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 (*DesiredDeployment) GetGroups ¶

func (o *DesiredDeployment) GetGroups() []DesiredDeploymentGroup

GetGroups returns the Groups field value if set, zero value otherwise.

func (*DesiredDeployment) GetGroupsOk ¶

func (o *DesiredDeployment) GetGroupsOk() ([]DesiredDeploymentGroup, bool)

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

func (*DesiredDeployment) HasGroups ¶

func (o *DesiredDeployment) HasGroups() bool

HasGroups returns a boolean if a field has been set.

func (DesiredDeployment) MarshalJSON ¶

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

func (*DesiredDeployment) SetGroups ¶

func (o *DesiredDeployment) SetGroups(v []DesiredDeploymentGroup)

SetGroups gets a reference to the given []DesiredDeploymentGroup and assigns it to the Groups field.

type DesiredDeploymentGroup ¶

type DesiredDeploymentGroup struct {
	Name          *string  `json:"name,omitempty"`
	DeploymentIds []string `json:"deployment_ids,omitempty"`
}

DesiredDeploymentGroup struct for DesiredDeploymentGroup

func NewDesiredDeploymentGroup ¶

func NewDesiredDeploymentGroup() *DesiredDeploymentGroup

NewDesiredDeploymentGroup instantiates a new DesiredDeploymentGroup 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 NewDesiredDeploymentGroupWithDefaults ¶

func NewDesiredDeploymentGroupWithDefaults() *DesiredDeploymentGroup

NewDesiredDeploymentGroupWithDefaults instantiates a new DesiredDeploymentGroup 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 (*DesiredDeploymentGroup) GetDeploymentIds ¶

func (o *DesiredDeploymentGroup) GetDeploymentIds() []string

GetDeploymentIds returns the DeploymentIds field value if set, zero value otherwise.

func (*DesiredDeploymentGroup) GetDeploymentIdsOk ¶

func (o *DesiredDeploymentGroup) GetDeploymentIdsOk() ([]string, bool)

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

func (*DesiredDeploymentGroup) GetName ¶

func (o *DesiredDeploymentGroup) GetName() string

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

func (*DesiredDeploymentGroup) GetNameOk ¶

func (o *DesiredDeploymentGroup) 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 (*DesiredDeploymentGroup) HasDeploymentIds ¶

func (o *DesiredDeploymentGroup) HasDeploymentIds() bool

HasDeploymentIds returns a boolean if a field has been set.

func (*DesiredDeploymentGroup) HasName ¶

func (o *DesiredDeploymentGroup) HasName() bool

HasName returns a boolean if a field has been set.

func (DesiredDeploymentGroup) MarshalJSON ¶

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

func (*DesiredDeploymentGroup) SetDeploymentIds ¶

func (o *DesiredDeploymentGroup) SetDeploymentIds(v []string)

SetDeploymentIds gets a reference to the given []string and assigns it to the DeploymentIds field.

func (*DesiredDeploymentGroup) SetName ¶

func (o *DesiredDeploymentGroup) SetName(v string)

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

type DigitalOceanRegistryConfiguration ¶

type DigitalOceanRegistryConfiguration struct {
	Username *string `json:"username,omitempty"`
	Password *string `json:"password,omitempty"`
}

DigitalOceanRegistryConfiguration struct for DigitalOceanRegistryConfiguration

func NewDigitalOceanRegistryConfiguration ¶

func NewDigitalOceanRegistryConfiguration() *DigitalOceanRegistryConfiguration

NewDigitalOceanRegistryConfiguration instantiates a new DigitalOceanRegistryConfiguration 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 NewDigitalOceanRegistryConfigurationWithDefaults ¶

func NewDigitalOceanRegistryConfigurationWithDefaults() *DigitalOceanRegistryConfiguration

NewDigitalOceanRegistryConfigurationWithDefaults instantiates a new DigitalOceanRegistryConfiguration 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 (*DigitalOceanRegistryConfiguration) GetPassword ¶

func (o *DigitalOceanRegistryConfiguration) GetPassword() string

GetPassword returns the Password field value if set, zero value otherwise.

func (*DigitalOceanRegistryConfiguration) GetPasswordOk ¶

func (o *DigitalOceanRegistryConfiguration) GetPasswordOk() (*string, bool)

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

func (*DigitalOceanRegistryConfiguration) GetUsername ¶

func (o *DigitalOceanRegistryConfiguration) GetUsername() string

GetUsername returns the Username field value if set, zero value otherwise.

func (*DigitalOceanRegistryConfiguration) GetUsernameOk ¶

func (o *DigitalOceanRegistryConfiguration) GetUsernameOk() (*string, bool)

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

func (*DigitalOceanRegistryConfiguration) HasPassword ¶

func (o *DigitalOceanRegistryConfiguration) HasPassword() bool

HasPassword returns a boolean if a field has been set.

func (*DigitalOceanRegistryConfiguration) HasUsername ¶

func (o *DigitalOceanRegistryConfiguration) HasUsername() bool

HasUsername returns a boolean if a field has been set.

func (DigitalOceanRegistryConfiguration) MarshalJSON ¶

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

func (*DigitalOceanRegistryConfiguration) SetPassword ¶

func (o *DigitalOceanRegistryConfiguration) SetPassword(v string)

SetPassword gets a reference to the given string and assigns it to the Password field.

func (*DigitalOceanRegistryConfiguration) SetUsername ¶

func (o *DigitalOceanRegistryConfiguration) SetUsername(v string)

SetUsername gets a reference to the given string and assigns it to the Username field.

type DiscourseAuthReply ¶

type DiscourseAuthReply struct {
	Sso *string `json:"sso,omitempty"`
	Sig *string `json:"sig,omitempty"`
}

DiscourseAuthReply struct for DiscourseAuthReply

func NewDiscourseAuthReply ¶

func NewDiscourseAuthReply() *DiscourseAuthReply

NewDiscourseAuthReply instantiates a new DiscourseAuthReply 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 NewDiscourseAuthReplyWithDefaults ¶

func NewDiscourseAuthReplyWithDefaults() *DiscourseAuthReply

NewDiscourseAuthReplyWithDefaults instantiates a new DiscourseAuthReply 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 (*DiscourseAuthReply) GetSig ¶

func (o *DiscourseAuthReply) GetSig() string

GetSig returns the Sig field value if set, zero value otherwise.

func (*DiscourseAuthReply) GetSigOk ¶

func (o *DiscourseAuthReply) GetSigOk() (*string, bool)

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

func (*DiscourseAuthReply) GetSso ¶

func (o *DiscourseAuthReply) GetSso() string

GetSso returns the Sso field value if set, zero value otherwise.

func (*DiscourseAuthReply) GetSsoOk ¶

func (o *DiscourseAuthReply) GetSsoOk() (*string, bool)

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

func (*DiscourseAuthReply) HasSig ¶

func (o *DiscourseAuthReply) HasSig() bool

HasSig returns a boolean if a field has been set.

func (*DiscourseAuthReply) HasSso ¶

func (o *DiscourseAuthReply) HasSso() bool

HasSso returns a boolean if a field has been set.

func (DiscourseAuthReply) MarshalJSON ¶

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

func (*DiscourseAuthReply) SetSig ¶

func (o *DiscourseAuthReply) SetSig(v string)

SetSig gets a reference to the given string and assigns it to the Sig field.

func (*DiscourseAuthReply) SetSso ¶

func (o *DiscourseAuthReply) SetSso(v string)

SetSso gets a reference to the given string and assigns it to the Sso field.

type DiscourseAuthRequest ¶

type DiscourseAuthRequest struct {
	Payload *string `json:"payload,omitempty"`
	Sig     *string `json:"sig,omitempty"`
}

DiscourseAuthRequest struct for DiscourseAuthRequest

func NewDiscourseAuthRequest ¶

func NewDiscourseAuthRequest() *DiscourseAuthRequest

NewDiscourseAuthRequest instantiates a new DiscourseAuthRequest 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 NewDiscourseAuthRequestWithDefaults ¶

func NewDiscourseAuthRequestWithDefaults() *DiscourseAuthRequest

NewDiscourseAuthRequestWithDefaults instantiates a new DiscourseAuthRequest 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 (*DiscourseAuthRequest) GetPayload ¶

func (o *DiscourseAuthRequest) GetPayload() string

GetPayload returns the Payload field value if set, zero value otherwise.

func (*DiscourseAuthRequest) GetPayloadOk ¶

func (o *DiscourseAuthRequest) GetPayloadOk() (*string, bool)

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

func (*DiscourseAuthRequest) GetSig ¶

func (o *DiscourseAuthRequest) GetSig() string

GetSig returns the Sig field value if set, zero value otherwise.

func (*DiscourseAuthRequest) GetSigOk ¶

func (o *DiscourseAuthRequest) GetSigOk() (*string, bool)

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

func (*DiscourseAuthRequest) HasPayload ¶

func (o *DiscourseAuthRequest) HasPayload() bool

HasPayload returns a boolean if a field has been set.

func (*DiscourseAuthRequest) HasSig ¶

func (o *DiscourseAuthRequest) HasSig() bool

HasSig returns a boolean if a field has been set.

func (DiscourseAuthRequest) MarshalJSON ¶

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

func (*DiscourseAuthRequest) SetPayload ¶

func (o *DiscourseAuthRequest) SetPayload(v string)

SetPayload gets a reference to the given string and assigns it to the Payload field.

func (*DiscourseAuthRequest) SetSig ¶

func (o *DiscourseAuthRequest) SetSig(v string)

SetSig gets a reference to the given string and assigns it to the Sig field.

type DockerBuilder ¶

type DockerBuilder struct {
	Dockerfile *string  `json:"dockerfile,omitempty"`
	Entrypoint []string `json:"entrypoint,omitempty"`
	Command    *string  `json:"command,omitempty"`
	Args       []string `json:"args,omitempty"`
	Target     *string  `json:"target,omitempty"`
	Privileged *bool    `json:"privileged,omitempty"`
}

DockerBuilder struct for DockerBuilder

func NewDockerBuilder ¶

func NewDockerBuilder() *DockerBuilder

NewDockerBuilder instantiates a new DockerBuilder 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 NewDockerBuilderWithDefaults ¶

func NewDockerBuilderWithDefaults() *DockerBuilder

NewDockerBuilderWithDefaults instantiates a new DockerBuilder 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 (*DockerBuilder) GetArgs ¶

func (o *DockerBuilder) GetArgs() []string

GetArgs returns the Args field value if set, zero value otherwise.

func (*DockerBuilder) GetArgsOk ¶

func (o *DockerBuilder) GetArgsOk() ([]string, bool)

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

func (*DockerBuilder) GetCommand ¶

func (o *DockerBuilder) GetCommand() string

GetCommand returns the Command field value if set, zero value otherwise.

func (*DockerBuilder) GetCommandOk ¶

func (o *DockerBuilder) GetCommandOk() (*string, bool)

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

func (*DockerBuilder) GetDockerfile ¶

func (o *DockerBuilder) GetDockerfile() string

GetDockerfile returns the Dockerfile field value if set, zero value otherwise.

func (*DockerBuilder) GetDockerfileOk ¶

func (o *DockerBuilder) GetDockerfileOk() (*string, bool)

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

func (*DockerBuilder) GetEntrypoint ¶

func (o *DockerBuilder) GetEntrypoint() []string

GetEntrypoint returns the Entrypoint field value if set, zero value otherwise.

func (*DockerBuilder) GetEntrypointOk ¶

func (o *DockerBuilder) GetEntrypointOk() ([]string, bool)

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

func (*DockerBuilder) GetPrivileged ¶

func (o *DockerBuilder) GetPrivileged() bool

GetPrivileged returns the Privileged field value if set, zero value otherwise.

func (*DockerBuilder) GetPrivilegedOk ¶

func (o *DockerBuilder) GetPrivilegedOk() (*bool, bool)

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

func (*DockerBuilder) GetTarget ¶

func (o *DockerBuilder) GetTarget() string

GetTarget returns the Target field value if set, zero value otherwise.

func (*DockerBuilder) GetTargetOk ¶

func (o *DockerBuilder) GetTargetOk() (*string, bool)

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

func (*DockerBuilder) HasArgs ¶

func (o *DockerBuilder) HasArgs() bool

HasArgs returns a boolean if a field has been set.

func (*DockerBuilder) HasCommand ¶

func (o *DockerBuilder) HasCommand() bool

HasCommand returns a boolean if a field has been set.

func (*DockerBuilder) HasDockerfile ¶

func (o *DockerBuilder) HasDockerfile() bool

HasDockerfile returns a boolean if a field has been set.

func (*DockerBuilder) HasEntrypoint ¶

func (o *DockerBuilder) HasEntrypoint() bool

HasEntrypoint returns a boolean if a field has been set.

func (*DockerBuilder) HasPrivileged ¶

func (o *DockerBuilder) HasPrivileged() bool

HasPrivileged returns a boolean if a field has been set.

func (*DockerBuilder) HasTarget ¶

func (o *DockerBuilder) HasTarget() bool

HasTarget returns a boolean if a field has been set.

func (DockerBuilder) MarshalJSON ¶

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

func (*DockerBuilder) SetArgs ¶

func (o *DockerBuilder) SetArgs(v []string)

SetArgs gets a reference to the given []string and assigns it to the Args field.

func (*DockerBuilder) SetCommand ¶

func (o *DockerBuilder) SetCommand(v string)

SetCommand gets a reference to the given string and assigns it to the Command field.

func (*DockerBuilder) SetDockerfile ¶

func (o *DockerBuilder) SetDockerfile(v string)

SetDockerfile gets a reference to the given string and assigns it to the Dockerfile field.

func (*DockerBuilder) SetEntrypoint ¶

func (o *DockerBuilder) SetEntrypoint(v []string)

SetEntrypoint gets a reference to the given []string and assigns it to the Entrypoint field.

func (*DockerBuilder) SetPrivileged ¶

func (o *DockerBuilder) SetPrivileged(v bool)

SetPrivileged gets a reference to the given bool and assigns it to the Privileged field.

func (*DockerBuilder) SetTarget ¶

func (o *DockerBuilder) SetTarget(v string)

SetTarget gets a reference to the given string and assigns it to the Target field.

type DockerHelperApi ¶

type DockerHelperApi interface {

	/*
		VerifyDockerImage Verify if a docker image is reachable

		@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
		@return ApiVerifyDockerImageRequest
	*/
	VerifyDockerImage(ctx context.Context) ApiVerifyDockerImageRequest

	// VerifyDockerImageExecute executes the request
	//  @return VerifyDockerImageReply
	VerifyDockerImageExecute(r ApiVerifyDockerImageRequest) (*VerifyDockerImageReply, *http.Response, error)
}

type DockerHelperApiService ¶

type DockerHelperApiService service

DockerHelperApiService DockerHelperApi service

func (*DockerHelperApiService) VerifyDockerImage ¶

VerifyDockerImage Verify if a docker image is reachable

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@return ApiVerifyDockerImageRequest

func (*DockerHelperApiService) VerifyDockerImageExecute ¶

Execute executes the request

@return VerifyDockerImageReply

type DockerHubRegistryConfiguration ¶

type DockerHubRegistryConfiguration struct {
	Username *string `json:"username,omitempty"`
	Password *string `json:"password,omitempty"`
}

DockerHubRegistryConfiguration struct for DockerHubRegistryConfiguration

func NewDockerHubRegistryConfiguration ¶

func NewDockerHubRegistryConfiguration() *DockerHubRegistryConfiguration

NewDockerHubRegistryConfiguration instantiates a new DockerHubRegistryConfiguration 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 NewDockerHubRegistryConfigurationWithDefaults ¶

func NewDockerHubRegistryConfigurationWithDefaults() *DockerHubRegistryConfiguration

NewDockerHubRegistryConfigurationWithDefaults instantiates a new DockerHubRegistryConfiguration 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 (*DockerHubRegistryConfiguration) GetPassword ¶

func (o *DockerHubRegistryConfiguration) GetPassword() string

GetPassword returns the Password field value if set, zero value otherwise.

func (*DockerHubRegistryConfiguration) GetPasswordOk ¶

func (o *DockerHubRegistryConfiguration) GetPasswordOk() (*string, bool)

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

func (*DockerHubRegistryConfiguration) GetUsername ¶

func (o *DockerHubRegistryConfiguration) GetUsername() string

GetUsername returns the Username field value if set, zero value otherwise.

func (*DockerHubRegistryConfiguration) GetUsernameOk ¶

func (o *DockerHubRegistryConfiguration) GetUsernameOk() (*string, bool)

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

func (*DockerHubRegistryConfiguration) HasPassword ¶

func (o *DockerHubRegistryConfiguration) HasPassword() bool

HasPassword returns a boolean if a field has been set.

func (*DockerHubRegistryConfiguration) HasUsername ¶

func (o *DockerHubRegistryConfiguration) HasUsername() bool

HasUsername returns a boolean if a field has been set.

func (DockerHubRegistryConfiguration) MarshalJSON ¶

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

func (*DockerHubRegistryConfiguration) SetPassword ¶

func (o *DockerHubRegistryConfiguration) SetPassword(v string)

SetPassword gets a reference to the given string and assigns it to the Password field.

func (*DockerHubRegistryConfiguration) SetUsername ¶

func (o *DockerHubRegistryConfiguration) SetUsername(v string)

SetUsername gets a reference to the given string and assigns it to the Username field.

type DockerSource ¶

type DockerSource struct {
	Image               *string  `json:"image,omitempty"`
	Command             *string  `json:"command,omitempty"`
	Args                []string `json:"args,omitempty"`
	ImageRegistrySecret *string  `json:"image_registry_secret,omitempty"`
	Entrypoint          []string `json:"entrypoint,omitempty"`
	Privileged          *bool    `json:"privileged,omitempty"`
}

DockerSource struct for DockerSource

func NewDockerSource ¶

func NewDockerSource() *DockerSource

NewDockerSource instantiates a new DockerSource 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 NewDockerSourceWithDefaults ¶

func NewDockerSourceWithDefaults() *DockerSource

NewDockerSourceWithDefaults instantiates a new DockerSource 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 (*DockerSource) GetArgs ¶

func (o *DockerSource) GetArgs() []string

GetArgs returns the Args field value if set, zero value otherwise.

func (*DockerSource) GetArgsOk ¶

func (o *DockerSource) GetArgsOk() ([]string, bool)

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

func (*DockerSource) GetCommand ¶

func (o *DockerSource) GetCommand() string

GetCommand returns the Command field value if set, zero value otherwise.

func (*DockerSource) GetCommandOk ¶

func (o *DockerSource) GetCommandOk() (*string, bool)

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

func (*DockerSource) GetEntrypoint ¶

func (o *DockerSource) GetEntrypoint() []string

GetEntrypoint returns the Entrypoint field value if set, zero value otherwise.

func (*DockerSource) GetEntrypointOk ¶

func (o *DockerSource) GetEntrypointOk() ([]string, bool)

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

func (*DockerSource) GetImage ¶

func (o *DockerSource) GetImage() string

GetImage returns the Image field value if set, zero value otherwise.

func (*DockerSource) GetImageOk ¶

func (o *DockerSource) GetImageOk() (*string, bool)

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

func (*DockerSource) GetImageRegistrySecret ¶

func (o *DockerSource) GetImageRegistrySecret() string

GetImageRegistrySecret returns the ImageRegistrySecret field value if set, zero value otherwise.

func (*DockerSource) GetImageRegistrySecretOk ¶

func (o *DockerSource) GetImageRegistrySecretOk() (*string, bool)

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

func (*DockerSource) GetPrivileged ¶

func (o *DockerSource) GetPrivileged() bool

GetPrivileged returns the Privileged field value if set, zero value otherwise.

func (*DockerSource) GetPrivilegedOk ¶

func (o *DockerSource) GetPrivilegedOk() (*bool, bool)

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

func (*DockerSource) HasArgs ¶

func (o *DockerSource) HasArgs() bool

HasArgs returns a boolean if a field has been set.

func (*DockerSource) HasCommand ¶

func (o *DockerSource) HasCommand() bool

HasCommand returns a boolean if a field has been set.

func (*DockerSource) HasEntrypoint ¶

func (o *DockerSource) HasEntrypoint() bool

HasEntrypoint returns a boolean if a field has been set.

func (*DockerSource) HasImage ¶

func (o *DockerSource) HasImage() bool

HasImage returns a boolean if a field has been set.

func (*DockerSource) HasImageRegistrySecret ¶

func (o *DockerSource) HasImageRegistrySecret() bool

HasImageRegistrySecret returns a boolean if a field has been set.

func (*DockerSource) HasPrivileged ¶

func (o *DockerSource) HasPrivileged() bool

HasPrivileged returns a boolean if a field has been set.

func (DockerSource) MarshalJSON ¶

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

func (*DockerSource) SetArgs ¶

func (o *DockerSource) SetArgs(v []string)

SetArgs gets a reference to the given []string and assigns it to the Args field.

func (*DockerSource) SetCommand ¶

func (o *DockerSource) SetCommand(v string)

SetCommand gets a reference to the given string and assigns it to the Command field.

func (*DockerSource) SetEntrypoint ¶

func (o *DockerSource) SetEntrypoint(v []string)

SetEntrypoint gets a reference to the given []string and assigns it to the Entrypoint field.

func (*DockerSource) SetImage ¶

func (o *DockerSource) SetImage(v string)

SetImage gets a reference to the given string and assigns it to the Image field.

func (*DockerSource) SetImageRegistrySecret ¶

func (o *DockerSource) SetImageRegistrySecret(v string)

SetImageRegistrySecret gets a reference to the given string and assigns it to the ImageRegistrySecret field.

func (*DockerSource) SetPrivileged ¶

func (o *DockerSource) SetPrivileged(v bool)

SetPrivileged gets a reference to the given bool and assigns it to the Privileged field.

type Domain ¶

type Domain struct {
	Id              *string       `json:"id,omitempty"`
	OrganizationId  *string       `json:"organization_id,omitempty"`
	Name            *string       `json:"name,omitempty"`
	CreatedAt       *time.Time    `json:"created_at,omitempty"`
	UpdatedAt       *time.Time    `json:"updated_at,omitempty"`
	Status          *DomainStatus `json:"status,omitempty"`
	Type            *DomainType   `json:"type,omitempty"`
	AppId           *string       `json:"app_id,omitempty"`
	DeploymentGroup *string       `json:"deployment_group,omitempty"`
	VerifiedAt      *time.Time    `json:"verified_at,omitempty"`
	IntendedCname   *string       `json:"intended_cname,omitempty"`
	Messages        []string      `json:"messages,omitempty"`
	Version         *string       `json:"version,omitempty"`
}

Domain struct for Domain

func NewDomain ¶

func NewDomain() *Domain

NewDomain instantiates a new Domain 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 NewDomainWithDefaults ¶

func NewDomainWithDefaults() *Domain

NewDomainWithDefaults instantiates a new Domain 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 (*Domain) GetAppId ¶

func (o *Domain) GetAppId() string

GetAppId returns the AppId field value if set, zero value otherwise.

func (*Domain) GetAppIdOk ¶

func (o *Domain) GetAppIdOk() (*string, bool)

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

func (*Domain) GetCreatedAt ¶

func (o *Domain) GetCreatedAt() time.Time

GetCreatedAt returns the CreatedAt field value if set, zero value otherwise.

func (*Domain) GetCreatedAtOk ¶

func (o *Domain) GetCreatedAtOk() (*time.Time, bool)

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

func (*Domain) GetDeploymentGroup ¶

func (o *Domain) GetDeploymentGroup() string

GetDeploymentGroup returns the DeploymentGroup field value if set, zero value otherwise.

func (*Domain) GetDeploymentGroupOk ¶

func (o *Domain) GetDeploymentGroupOk() (*string, bool)

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

func (*Domain) GetId ¶

func (o *Domain) GetId() string

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

func (*Domain) GetIdOk ¶

func (o *Domain) 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 (*Domain) GetIntendedCname ¶

func (o *Domain) GetIntendedCname() string

GetIntendedCname returns the IntendedCname field value if set, zero value otherwise.

func (*Domain) GetIntendedCnameOk ¶

func (o *Domain) GetIntendedCnameOk() (*string, bool)

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

func (*Domain) GetMessages ¶

func (o *Domain) GetMessages() []string

GetMessages returns the Messages field value if set, zero value otherwise.

func (*Domain) GetMessagesOk ¶

func (o *Domain) GetMessagesOk() ([]string, bool)

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

func (*Domain) GetName ¶

func (o *Domain) GetName() string

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

func (*Domain) GetNameOk ¶

func (o *Domain) 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 (*Domain) GetOrganizationId ¶

func (o *Domain) GetOrganizationId() string

GetOrganizationId returns the OrganizationId field value if set, zero value otherwise.

func (*Domain) GetOrganizationIdOk ¶

func (o *Domain) GetOrganizationIdOk() (*string, bool)

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

func (*Domain) GetStatus ¶

func (o *Domain) GetStatus() DomainStatus

GetStatus returns the Status field value if set, zero value otherwise.

func (*Domain) GetStatusOk ¶

func (o *Domain) GetStatusOk() (*DomainStatus, 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 (*Domain) GetType ¶

func (o *Domain) GetType() DomainType

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

func (*Domain) GetTypeOk ¶

func (o *Domain) GetTypeOk() (*DomainType, 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 (*Domain) GetUpdatedAt ¶

func (o *Domain) GetUpdatedAt() time.Time

GetUpdatedAt returns the UpdatedAt field value if set, zero value otherwise.

func (*Domain) GetUpdatedAtOk ¶

func (o *Domain) GetUpdatedAtOk() (*time.Time, bool)

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

func (*Domain) GetVerifiedAt ¶

func (o *Domain) GetVerifiedAt() time.Time

GetVerifiedAt returns the VerifiedAt field value if set, zero value otherwise.

func (*Domain) GetVerifiedAtOk ¶

func (o *Domain) GetVerifiedAtOk() (*time.Time, bool)

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

func (*Domain) GetVersion ¶

func (o *Domain) GetVersion() string

GetVersion returns the Version field value if set, zero value otherwise.

func (*Domain) GetVersionOk ¶

func (o *Domain) GetVersionOk() (*string, bool)

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

func (*Domain) HasAppId ¶

func (o *Domain) HasAppId() bool

HasAppId returns a boolean if a field has been set.

func (*Domain) HasCreatedAt ¶

func (o *Domain) HasCreatedAt() bool

HasCreatedAt returns a boolean if a field has been set.

func (*Domain) HasDeploymentGroup ¶

func (o *Domain) HasDeploymentGroup() bool

HasDeploymentGroup returns a boolean if a field has been set.

func (*Domain) HasId ¶

func (o *Domain) HasId() bool

HasId returns a boolean if a field has been set.

func (*Domain) HasIntendedCname ¶

func (o *Domain) HasIntendedCname() bool

HasIntendedCname returns a boolean if a field has been set.

func (*Domain) HasMessages ¶

func (o *Domain) HasMessages() bool

HasMessages returns a boolean if a field has been set.

func (*Domain) HasName ¶

func (o *Domain) HasName() bool

HasName returns a boolean if a field has been set.

func (*Domain) HasOrganizationId ¶

func (o *Domain) HasOrganizationId() bool

HasOrganizationId returns a boolean if a field has been set.

func (*Domain) HasStatus ¶

func (o *Domain) HasStatus() bool

HasStatus returns a boolean if a field has been set.

func (*Domain) HasType ¶

func (o *Domain) HasType() bool

HasType returns a boolean if a field has been set.

func (*Domain) HasUpdatedAt ¶

func (o *Domain) HasUpdatedAt() bool

HasUpdatedAt returns a boolean if a field has been set.

func (*Domain) HasVerifiedAt ¶

func (o *Domain) HasVerifiedAt() bool

HasVerifiedAt returns a boolean if a field has been set.

func (*Domain) HasVersion ¶

func (o *Domain) HasVersion() bool

HasVersion returns a boolean if a field has been set.

func (Domain) MarshalJSON ¶

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

func (*Domain) SetAppId ¶

func (o *Domain) SetAppId(v string)

SetAppId gets a reference to the given string and assigns it to the AppId field.

func (*Domain) SetCreatedAt ¶

func (o *Domain) SetCreatedAt(v time.Time)

SetCreatedAt gets a reference to the given time.Time and assigns it to the CreatedAt field.

func (*Domain) SetDeploymentGroup ¶

func (o *Domain) SetDeploymentGroup(v string)

SetDeploymentGroup gets a reference to the given string and assigns it to the DeploymentGroup field.

func (*Domain) SetId ¶

func (o *Domain) SetId(v string)

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

func (*Domain) SetIntendedCname ¶

func (o *Domain) SetIntendedCname(v string)

SetIntendedCname gets a reference to the given string and assigns it to the IntendedCname field.

func (*Domain) SetMessages ¶

func (o *Domain) SetMessages(v []string)

SetMessages gets a reference to the given []string and assigns it to the Messages field.

func (*Domain) SetName ¶

func (o *Domain) SetName(v string)

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

func (*Domain) SetOrganizationId ¶

func (o *Domain) SetOrganizationId(v string)

SetOrganizationId gets a reference to the given string and assigns it to the OrganizationId field.

func (*Domain) SetStatus ¶

func (o *Domain) SetStatus(v DomainStatus)

SetStatus gets a reference to the given DomainStatus and assigns it to the Status field.

func (*Domain) SetType ¶

func (o *Domain) SetType(v DomainType)

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

func (*Domain) SetUpdatedAt ¶

func (o *Domain) SetUpdatedAt(v time.Time)

SetUpdatedAt gets a reference to the given time.Time and assigns it to the UpdatedAt field.

func (*Domain) SetVerifiedAt ¶

func (o *Domain) SetVerifiedAt(v time.Time)

SetVerifiedAt gets a reference to the given time.Time and assigns it to the VerifiedAt field.

func (*Domain) SetVersion ¶

func (o *Domain) SetVersion(v string)

SetVersion gets a reference to the given string and assigns it to the Version field.

type DomainStatus ¶

type DomainStatus string

DomainStatus the model 'DomainStatus'

const (
	DOMAINSTATUS_PENDING  DomainStatus = "PENDING"
	DOMAINSTATUS_ACTIVE   DomainStatus = "ACTIVE"
	DOMAINSTATUS_ERROR    DomainStatus = "ERROR"
	DOMAINSTATUS_DELETING DomainStatus = "DELETING"
	DOMAINSTATUS_DELETED  DomainStatus = "DELETED"
)

List of Domain.Status

func NewDomainStatusFromValue ¶

func NewDomainStatusFromValue(v string) (*DomainStatus, error)

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

func (DomainStatus) IsValid ¶

func (v DomainStatus) IsValid() bool

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

func (DomainStatus) Ptr ¶

func (v DomainStatus) Ptr() *DomainStatus

Ptr returns reference to Domain.Status value

func (*DomainStatus) UnmarshalJSON ¶

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

type DomainType ¶

type DomainType string

DomainType the model 'DomainType'

const (
	DOMAINTYPE_AUTOASSIGNED DomainType = "AUTOASSIGNED"
	DOMAINTYPE_CUSTOM       DomainType = "CUSTOM"
)

List of Domain.Type

func NewDomainTypeFromValue ¶

func NewDomainTypeFromValue(v string) (*DomainType, error)

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

func (DomainType) IsValid ¶

func (v DomainType) IsValid() bool

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

func (DomainType) Ptr ¶

func (v DomainType) Ptr() *DomainType

Ptr returns reference to Domain.Type value

func (*DomainType) UnmarshalJSON ¶

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

type DomainsApi ¶

type DomainsApi interface {

	/*
		CreateDomain Method for CreateDomain

		@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
		@return ApiCreateDomainRequest
	*/
	CreateDomain(ctx context.Context) ApiCreateDomainRequest

	// CreateDomainExecute executes the request
	//  @return CreateDomainReply
	CreateDomainExecute(r ApiCreateDomainRequest) (*CreateDomainReply, *http.Response, error)

	/*
		DeleteDomain Method for DeleteDomain

		@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
		@param id
		@return ApiDeleteDomainRequest
	*/
	DeleteDomain(ctx context.Context, id string) ApiDeleteDomainRequest

	// DeleteDomainExecute executes the request
	//  @return map[string]interface{}
	DeleteDomainExecute(r ApiDeleteDomainRequest) (map[string]interface{}, *http.Response, error)

	/*
		GetDomain Method for GetDomain

		@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
		@param id
		@return ApiGetDomainRequest
	*/
	GetDomain(ctx context.Context, id string) ApiGetDomainRequest

	// GetDomainExecute executes the request
	//  @return GetDomainReply
	GetDomainExecute(r ApiGetDomainRequest) (*GetDomainReply, *http.Response, error)

	/*
		ListDomains Method for ListDomains

		@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
		@return ApiListDomainsRequest
	*/
	ListDomains(ctx context.Context) ApiListDomainsRequest

	// ListDomainsExecute executes the request
	//  @return ListDomainsReply
	ListDomainsExecute(r ApiListDomainsRequest) (*ListDomainsReply, *http.Response, error)

	/*
		RefreshDomainStatus Method for RefreshDomainStatus

		@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
		@param id
		@return ApiRefreshDomainStatusRequest
	*/
	RefreshDomainStatus(ctx context.Context, id string) ApiRefreshDomainStatusRequest

	// RefreshDomainStatusExecute executes the request
	//  @return map[string]interface{}
	RefreshDomainStatusExecute(r ApiRefreshDomainStatusRequest) (map[string]interface{}, *http.Response, error)

	/*
		UpdateDomain Method for UpdateDomain

		@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
		@param id
		@return ApiUpdateDomainRequest
	*/
	UpdateDomain(ctx context.Context, id string) ApiUpdateDomainRequest

	// UpdateDomainExecute executes the request
	//  @return UpdateDomainReply
	UpdateDomainExecute(r ApiUpdateDomainRequest) (*UpdateDomainReply, *http.Response, error)
}

type DomainsApiService ¶

type DomainsApiService service

DomainsApiService DomainsApi service

func (*DomainsApiService) CreateDomain ¶

CreateDomain Method for CreateDomain

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@return ApiCreateDomainRequest

func (*DomainsApiService) CreateDomainExecute ¶

Execute executes the request

@return CreateDomainReply

func (*DomainsApiService) DeleteDomain ¶

DeleteDomain Method for DeleteDomain

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param id
@return ApiDeleteDomainRequest

func (*DomainsApiService) DeleteDomainExecute ¶

func (a *DomainsApiService) DeleteDomainExecute(r ApiDeleteDomainRequest) (map[string]interface{}, *http.Response, error)

Execute executes the request

@return map[string]interface{}

func (*DomainsApiService) GetDomain ¶

GetDomain Method for GetDomain

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param id
@return ApiGetDomainRequest

func (*DomainsApiService) GetDomainExecute ¶

Execute executes the request

@return GetDomainReply

func (*DomainsApiService) ListDomains ¶

ListDomains Method for ListDomains

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@return ApiListDomainsRequest

func (*DomainsApiService) ListDomainsExecute ¶

Execute executes the request

@return ListDomainsReply

func (*DomainsApiService) RefreshDomainStatus ¶

func (a *DomainsApiService) RefreshDomainStatus(ctx context.Context, id string) ApiRefreshDomainStatusRequest

RefreshDomainStatus Method for RefreshDomainStatus

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param id
@return ApiRefreshDomainStatusRequest

func (*DomainsApiService) RefreshDomainStatusExecute ¶

func (a *DomainsApiService) RefreshDomainStatusExecute(r ApiRefreshDomainStatusRequest) (map[string]interface{}, *http.Response, error)

Execute executes the request

@return map[string]interface{}

func (*DomainsApiService) UpdateDomain ¶

UpdateDomain Method for UpdateDomain

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param id
@return ApiUpdateDomainRequest

func (*DomainsApiService) UpdateDomainExecute ¶

Execute executes the request

@return UpdateDomainReply

type DomainsSummary ¶

type DomainsSummary struct {
	Total    *string            `json:"total,omitempty"`
	ByStatus *map[string]string `json:"by_status,omitempty"`
}

DomainsSummary struct for DomainsSummary

func NewDomainsSummary ¶

func NewDomainsSummary() *DomainsSummary

NewDomainsSummary instantiates a new DomainsSummary 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 NewDomainsSummaryWithDefaults ¶

func NewDomainsSummaryWithDefaults() *DomainsSummary

NewDomainsSummaryWithDefaults instantiates a new DomainsSummary 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 (*DomainsSummary) GetByStatus ¶

func (o *DomainsSummary) GetByStatus() map[string]string

GetByStatus returns the ByStatus field value if set, zero value otherwise.

func (*DomainsSummary) GetByStatusOk ¶

func (o *DomainsSummary) GetByStatusOk() (*map[string]string, bool)

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

func (*DomainsSummary) GetTotal ¶

func (o *DomainsSummary) GetTotal() string

GetTotal returns the Total field value if set, zero value otherwise.

func (*DomainsSummary) GetTotalOk ¶

func (o *DomainsSummary) GetTotalOk() (*string, bool)

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

func (*DomainsSummary) HasByStatus ¶

func (o *DomainsSummary) HasByStatus() bool

HasByStatus returns a boolean if a field has been set.

func (*DomainsSummary) HasTotal ¶

func (o *DomainsSummary) HasTotal() bool

HasTotal returns a boolean if a field has been set.

func (DomainsSummary) MarshalJSON ¶

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

func (*DomainsSummary) SetByStatus ¶

func (o *DomainsSummary) SetByStatus(v map[string]string)

SetByStatus gets a reference to the given map[string]string and assigns it to the ByStatus field.

func (*DomainsSummary) SetTotal ¶

func (o *DomainsSummary) SetTotal(v string)

SetTotal gets a reference to the given string and assigns it to the Total field.

type Env ¶

type Env struct {
	Key    *string `json:"key,omitempty"`
	Value  *string `json:"value,omitempty"`
	Secret *string `json:"secret,omitempty"`
}

Env struct for Env

func NewEnv ¶

func NewEnv() *Env

NewEnv instantiates a new Env 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 NewEnvWithDefaults ¶

func NewEnvWithDefaults() *Env

NewEnvWithDefaults instantiates a new Env 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 (*Env) GetKey ¶

func (o *Env) GetKey() string

GetKey returns the Key field value if set, zero value otherwise.

func (*Env) GetKeyOk ¶

func (o *Env) 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 (*Env) GetSecret ¶

func (o *Env) GetSecret() string

GetSecret returns the Secret field value if set, zero value otherwise.

func (*Env) GetSecretOk ¶

func (o *Env) GetSecretOk() (*string, bool)

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

func (*Env) GetValue ¶

func (o *Env) GetValue() string

GetValue returns the Value field value if set, zero value otherwise.

func (*Env) GetValueOk ¶

func (o *Env) GetValueOk() (*string, bool)

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

func (*Env) HasKey ¶

func (o *Env) HasKey() bool

HasKey returns a boolean if a field has been set.

func (*Env) HasSecret ¶

func (o *Env) HasSecret() bool

HasSecret returns a boolean if a field has been set.

func (*Env) HasValue ¶

func (o *Env) HasValue() bool

HasValue returns a boolean if a field has been set.

func (Env) MarshalJSON ¶

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

func (*Env) SetKey ¶

func (o *Env) SetKey(v string)

SetKey gets a reference to the given string and assigns it to the Key field.

func (*Env) SetSecret ¶

func (o *Env) SetSecret(v string)

SetSecret gets a reference to the given string and assigns it to the Secret field.

func (*Env) SetValue ¶

func (o *Env) SetValue(v string)

SetValue gets a reference to the given string and assigns it to the Value field.

type Error ¶

type Error struct {
	Status  *int32  `json:"status,omitempty"`
	Code    *string `json:"code,omitempty"`
	Message *string `json:"message,omitempty"`
}

Error struct for Error

func NewError ¶

func NewError() *Error

NewError instantiates a new Error 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 NewErrorWithDefaults ¶

func NewErrorWithDefaults() *Error

NewErrorWithDefaults instantiates a new Error 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 (*Error) GetCode ¶

func (o *Error) GetCode() string

GetCode returns the Code field value if set, zero value otherwise.

func (*Error) GetCodeOk ¶

func (o *Error) GetCodeOk() (*string, 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 (*Error) GetMessage ¶

func (o *Error) GetMessage() string

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

func (*Error) GetMessageOk ¶

func (o *Error) 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 (*Error) GetStatus ¶

func (o *Error) GetStatus() int32

GetStatus returns the Status field value if set, zero value otherwise.

func (*Error) GetStatusOk ¶

func (o *Error) GetStatusOk() (*int32, 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 (*Error) HasCode ¶

func (o *Error) HasCode() bool

HasCode returns a boolean if a field has been set.

func (*Error) HasMessage ¶

func (o *Error) HasMessage() bool

HasMessage returns a boolean if a field has been set.

func (*Error) HasStatus ¶

func (o *Error) HasStatus() bool

HasStatus returns a boolean if a field has been set.

func (Error) MarshalJSON ¶

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

func (*Error) SetCode ¶

func (o *Error) SetCode(v string)

SetCode gets a reference to the given string and assigns it to the Code field.

func (*Error) SetMessage ¶

func (o *Error) SetMessage(v string)

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

func (*Error) SetStatus ¶

func (o *Error) SetStatus(v int32)

SetStatus gets a reference to the given int32 and assigns it to the Status field.

type ErrorField ¶

type ErrorField struct {
	Field       *string `json:"field,omitempty"`
	Description *string `json:"description,omitempty"`
}

ErrorField struct for ErrorField

func NewErrorField ¶

func NewErrorField() *ErrorField

NewErrorField instantiates a new ErrorField 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 NewErrorFieldWithDefaults ¶

func NewErrorFieldWithDefaults() *ErrorField

NewErrorFieldWithDefaults instantiates a new ErrorField 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 (*ErrorField) GetDescription ¶

func (o *ErrorField) GetDescription() string

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

func (*ErrorField) GetDescriptionOk ¶

func (o *ErrorField) 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 (*ErrorField) GetField ¶

func (o *ErrorField) GetField() string

GetField returns the Field field value if set, zero value otherwise.

func (*ErrorField) GetFieldOk ¶

func (o *ErrorField) GetFieldOk() (*string, bool)

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

func (*ErrorField) HasDescription ¶

func (o *ErrorField) HasDescription() bool

HasDescription returns a boolean if a field has been set.

func (*ErrorField) HasField ¶

func (o *ErrorField) HasField() bool

HasField returns a boolean if a field has been set.

func (ErrorField) MarshalJSON ¶

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

func (*ErrorField) SetDescription ¶

func (o *ErrorField) SetDescription(v string)

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

func (*ErrorField) SetField ¶

func (o *ErrorField) SetField(v string)

SetField gets a reference to the given string and assigns it to the Field field.

type ErrorWithFields ¶

type ErrorWithFields struct {
	Status  *int32       `json:"status,omitempty"`
	Code    *string      `json:"code,omitempty"`
	Message *string      `json:"message,omitempty"`
	Fields  []ErrorField `json:"fields,omitempty"`
}

ErrorWithFields struct for ErrorWithFields

func NewErrorWithFields ¶

func NewErrorWithFields() *ErrorWithFields

NewErrorWithFields instantiates a new ErrorWithFields 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 NewErrorWithFieldsWithDefaults ¶

func NewErrorWithFieldsWithDefaults() *ErrorWithFields

NewErrorWithFieldsWithDefaults instantiates a new ErrorWithFields 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 (*ErrorWithFields) GetCode ¶

func (o *ErrorWithFields) GetCode() string

GetCode returns the Code field value if set, zero value otherwise.

func (*ErrorWithFields) GetCodeOk ¶

func (o *ErrorWithFields) GetCodeOk() (*string, 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 (*ErrorWithFields) GetFields ¶

func (o *ErrorWithFields) GetFields() []ErrorField

GetFields returns the Fields field value if set, zero value otherwise.

func (*ErrorWithFields) GetFieldsOk ¶

func (o *ErrorWithFields) GetFieldsOk() ([]ErrorField, bool)

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

func (*ErrorWithFields) GetMessage ¶

func (o *ErrorWithFields) GetMessage() string

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

func (*ErrorWithFields) GetMessageOk ¶

func (o *ErrorWithFields) 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 (*ErrorWithFields) GetStatus ¶

func (o *ErrorWithFields) GetStatus() int32

GetStatus returns the Status field value if set, zero value otherwise.

func (*ErrorWithFields) GetStatusOk ¶

func (o *ErrorWithFields) GetStatusOk() (*int32, 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 (*ErrorWithFields) HasCode ¶

func (o *ErrorWithFields) HasCode() bool

HasCode returns a boolean if a field has been set.

func (*ErrorWithFields) HasFields ¶

func (o *ErrorWithFields) HasFields() bool

HasFields returns a boolean if a field has been set.

func (*ErrorWithFields) HasMessage ¶

func (o *ErrorWithFields) HasMessage() bool

HasMessage returns a boolean if a field has been set.

func (*ErrorWithFields) HasStatus ¶

func (o *ErrorWithFields) HasStatus() bool

HasStatus returns a boolean if a field has been set.

func (ErrorWithFields) MarshalJSON ¶

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

func (*ErrorWithFields) SetCode ¶

func (o *ErrorWithFields) SetCode(v string)

SetCode gets a reference to the given string and assigns it to the Code field.

func (*ErrorWithFields) SetFields ¶

func (o *ErrorWithFields) SetFields(v []ErrorField)

SetFields gets a reference to the given []ErrorField and assigns it to the Fields field.

func (*ErrorWithFields) SetMessage ¶

func (o *ErrorWithFields) SetMessage(v string)

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

func (*ErrorWithFields) SetStatus ¶

func (o *ErrorWithFields) SetStatus(v int32)

SetStatus gets a reference to the given int32 and assigns it to the Status field.

type ExecCommandIO ¶

type ExecCommandIO struct {
	// Data is base64 encoded
	Data *string `json:"data,omitempty"`
	// Indicate last data frame
	Close *bool `json:"close,omitempty"`
}

ExecCommandIO struct for ExecCommandIO

func NewExecCommandIO ¶

func NewExecCommandIO() *ExecCommandIO

NewExecCommandIO instantiates a new ExecCommandIO 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 NewExecCommandIOWithDefaults ¶

func NewExecCommandIOWithDefaults() *ExecCommandIO

NewExecCommandIOWithDefaults instantiates a new ExecCommandIO 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 (*ExecCommandIO) GetClose ¶

func (o *ExecCommandIO) GetClose() bool

GetClose returns the Close field value if set, zero value otherwise.

func (*ExecCommandIO) GetCloseOk ¶

func (o *ExecCommandIO) GetCloseOk() (*bool, bool)

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

func (*ExecCommandIO) GetData ¶

func (o *ExecCommandIO) GetData() string

GetData returns the Data field value if set, zero value otherwise.

func (*ExecCommandIO) GetDataOk ¶

func (o *ExecCommandIO) GetDataOk() (*string, bool)

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

func (*ExecCommandIO) HasClose ¶

func (o *ExecCommandIO) HasClose() bool

HasClose returns a boolean if a field has been set.

func (*ExecCommandIO) HasData ¶

func (o *ExecCommandIO) HasData() bool

HasData returns a boolean if a field has been set.

func (ExecCommandIO) MarshalJSON ¶

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

func (*ExecCommandIO) SetClose ¶

func (o *ExecCommandIO) SetClose(v bool)

SetClose gets a reference to the given bool and assigns it to the Close field.

func (*ExecCommandIO) SetData ¶

func (o *ExecCommandIO) SetData(v string)

SetData gets a reference to the given string and assigns it to the Data field.

type ExecCommandReply ¶

type ExecCommandReply struct {
	Stdout   *ExecCommandIO `json:"stdout,omitempty"`
	Stderr   *ExecCommandIO `json:"stderr,omitempty"`
	Exited   *bool          `json:"exited,omitempty"`
	ExitCode *int32         `json:"exit_code,omitempty"`
}

ExecCommandReply struct for ExecCommandReply

func NewExecCommandReply ¶

func NewExecCommandReply() *ExecCommandReply

NewExecCommandReply instantiates a new ExecCommandReply 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 NewExecCommandReplyWithDefaults ¶

func NewExecCommandReplyWithDefaults() *ExecCommandReply

NewExecCommandReplyWithDefaults instantiates a new ExecCommandReply 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 (*ExecCommandReply) GetExitCode ¶

func (o *ExecCommandReply) GetExitCode() int32

GetExitCode returns the ExitCode field value if set, zero value otherwise.

func (*ExecCommandReply) GetExitCodeOk ¶

func (o *ExecCommandReply) GetExitCodeOk() (*int32, bool)

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

func (*ExecCommandReply) GetExited ¶

func (o *ExecCommandReply) GetExited() bool

GetExited returns the Exited field value if set, zero value otherwise.

func (*ExecCommandReply) GetExitedOk ¶

func (o *ExecCommandReply) GetExitedOk() (*bool, bool)

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

func (*ExecCommandReply) GetStderr ¶

func (o *ExecCommandReply) GetStderr() ExecCommandIO

GetStderr returns the Stderr field value if set, zero value otherwise.

func (*ExecCommandReply) GetStderrOk ¶

func (o *ExecCommandReply) GetStderrOk() (*ExecCommandIO, bool)

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

func (*ExecCommandReply) GetStdout ¶

func (o *ExecCommandReply) GetStdout() ExecCommandIO

GetStdout returns the Stdout field value if set, zero value otherwise.

func (*ExecCommandReply) GetStdoutOk ¶

func (o *ExecCommandReply) GetStdoutOk() (*ExecCommandIO, bool)

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

func (*ExecCommandReply) HasExitCode ¶

func (o *ExecCommandReply) HasExitCode() bool

HasExitCode returns a boolean if a field has been set.

func (*ExecCommandReply) HasExited ¶

func (o *ExecCommandReply) HasExited() bool

HasExited returns a boolean if a field has been set.

func (*ExecCommandReply) HasStderr ¶

func (o *ExecCommandReply) HasStderr() bool

HasStderr returns a boolean if a field has been set.

func (*ExecCommandReply) HasStdout ¶

func (o *ExecCommandReply) HasStdout() bool

HasStdout returns a boolean if a field has been set.

func (ExecCommandReply) MarshalJSON ¶

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

func (*ExecCommandReply) SetExitCode ¶

func (o *ExecCommandReply) SetExitCode(v int32)

SetExitCode gets a reference to the given int32 and assigns it to the ExitCode field.

func (*ExecCommandReply) SetExited ¶

func (o *ExecCommandReply) SetExited(v bool)

SetExited gets a reference to the given bool and assigns it to the Exited field.

func (*ExecCommandReply) SetStderr ¶

func (o *ExecCommandReply) SetStderr(v ExecCommandIO)

SetStderr gets a reference to the given ExecCommandIO and assigns it to the Stderr field.

func (*ExecCommandReply) SetStdout ¶

func (o *ExecCommandReply) SetStdout(v ExecCommandIO)

SetStdout gets a reference to the given ExecCommandIO and assigns it to the Stdout field.

type ExecCommandRequestBody ¶

type ExecCommandRequestBody struct {
	// Command to exec. Mandatory in the first frame sent
	Command []string                        `json:"command,omitempty"`
	TtySize *ExecCommandRequestTerminalSize `json:"tty_size,omitempty"`
	Stdin   *ExecCommandIO                  `json:"stdin,omitempty"`
	// Disable TTY. It's enough to specify it in the first frame
	DisableTty *bool `json:"disableTty,omitempty"`
}

ExecCommandRequestBody struct for ExecCommandRequestBody

func NewExecCommandRequestBody ¶

func NewExecCommandRequestBody() *ExecCommandRequestBody

NewExecCommandRequestBody instantiates a new ExecCommandRequestBody 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 NewExecCommandRequestBodyWithDefaults ¶

func NewExecCommandRequestBodyWithDefaults() *ExecCommandRequestBody

NewExecCommandRequestBodyWithDefaults instantiates a new ExecCommandRequestBody 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 (*ExecCommandRequestBody) GetCommand ¶

func (o *ExecCommandRequestBody) GetCommand() []string

GetCommand returns the Command field value if set, zero value otherwise.

func (*ExecCommandRequestBody) GetCommandOk ¶

func (o *ExecCommandRequestBody) GetCommandOk() ([]string, bool)

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

func (*ExecCommandRequestBody) GetDisableTty ¶

func (o *ExecCommandRequestBody) GetDisableTty() bool

GetDisableTty returns the DisableTty field value if set, zero value otherwise.

func (*ExecCommandRequestBody) GetDisableTtyOk ¶

func (o *ExecCommandRequestBody) GetDisableTtyOk() (*bool, bool)

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

func (*ExecCommandRequestBody) GetStdin ¶

func (o *ExecCommandRequestBody) GetStdin() ExecCommandIO

GetStdin returns the Stdin field value if set, zero value otherwise.

func (*ExecCommandRequestBody) GetStdinOk ¶

func (o *ExecCommandRequestBody) GetStdinOk() (*ExecCommandIO, bool)

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

func (*ExecCommandRequestBody) GetTtySize ¶

GetTtySize returns the TtySize field value if set, zero value otherwise.

func (*ExecCommandRequestBody) GetTtySizeOk ¶

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

func (*ExecCommandRequestBody) HasCommand ¶

func (o *ExecCommandRequestBody) HasCommand() bool

HasCommand returns a boolean if a field has been set.

func (*ExecCommandRequestBody) HasDisableTty ¶

func (o *ExecCommandRequestBody) HasDisableTty() bool

HasDisableTty returns a boolean if a field has been set.

func (*ExecCommandRequestBody) HasStdin ¶

func (o *ExecCommandRequestBody) HasStdin() bool

HasStdin returns a boolean if a field has been set.

func (*ExecCommandRequestBody) HasTtySize ¶

func (o *ExecCommandRequestBody) HasTtySize() bool

HasTtySize returns a boolean if a field has been set.

func (ExecCommandRequestBody) MarshalJSON ¶

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

func (*ExecCommandRequestBody) SetCommand ¶

func (o *ExecCommandRequestBody) SetCommand(v []string)

SetCommand gets a reference to the given []string and assigns it to the Command field.

func (*ExecCommandRequestBody) SetDisableTty ¶

func (o *ExecCommandRequestBody) SetDisableTty(v bool)

SetDisableTty gets a reference to the given bool and assigns it to the DisableTty field.

func (*ExecCommandRequestBody) SetStdin ¶

func (o *ExecCommandRequestBody) SetStdin(v ExecCommandIO)

SetStdin gets a reference to the given ExecCommandIO and assigns it to the Stdin field.

func (*ExecCommandRequestBody) SetTtySize ¶

SetTtySize gets a reference to the given ExecCommandRequestTerminalSize and assigns it to the TtySize field.

type ExecCommandRequestIdType ¶

type ExecCommandRequestIdType string

ExecCommandRequestIdType the model 'ExecCommandRequestIdType'

const (
	EXECCOMMANDREQUESTIDTYPE_INVALID     ExecCommandRequestIdType = "INVALID"
	EXECCOMMANDREQUESTIDTYPE_INSTANCE_ID ExecCommandRequestIdType = "INSTANCE_ID"
	EXECCOMMANDREQUESTIDTYPE_SERVICE_ID  ExecCommandRequestIdType = "SERVICE_ID"
)

List of ExecCommandRequest.IdType

func NewExecCommandRequestIdTypeFromValue ¶

func NewExecCommandRequestIdTypeFromValue(v string) (*ExecCommandRequestIdType, error)

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

func (ExecCommandRequestIdType) IsValid ¶

func (v ExecCommandRequestIdType) IsValid() bool

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

func (ExecCommandRequestIdType) Ptr ¶

Ptr returns reference to ExecCommandRequest.IdType value

func (*ExecCommandRequestIdType) UnmarshalJSON ¶

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

type ExecCommandRequestTerminalSize ¶

type ExecCommandRequestTerminalSize struct {
	Height *int32 `json:"height,omitempty"`
	Width  *int32 `json:"width,omitempty"`
}

ExecCommandRequestTerminalSize struct for ExecCommandRequestTerminalSize

func NewExecCommandRequestTerminalSize ¶

func NewExecCommandRequestTerminalSize() *ExecCommandRequestTerminalSize

NewExecCommandRequestTerminalSize instantiates a new ExecCommandRequestTerminalSize 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 NewExecCommandRequestTerminalSizeWithDefaults ¶

func NewExecCommandRequestTerminalSizeWithDefaults() *ExecCommandRequestTerminalSize

NewExecCommandRequestTerminalSizeWithDefaults instantiates a new ExecCommandRequestTerminalSize 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 (*ExecCommandRequestTerminalSize) GetHeight ¶

func (o *ExecCommandRequestTerminalSize) GetHeight() int32

GetHeight returns the Height field value if set, zero value otherwise.

func (*ExecCommandRequestTerminalSize) GetHeightOk ¶

func (o *ExecCommandRequestTerminalSize) GetHeightOk() (*int32, bool)

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

func (*ExecCommandRequestTerminalSize) GetWidth ¶

func (o *ExecCommandRequestTerminalSize) GetWidth() int32

GetWidth returns the Width field value if set, zero value otherwise.

func (*ExecCommandRequestTerminalSize) GetWidthOk ¶

func (o *ExecCommandRequestTerminalSize) GetWidthOk() (*int32, bool)

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

func (*ExecCommandRequestTerminalSize) HasHeight ¶

func (o *ExecCommandRequestTerminalSize) HasHeight() bool

HasHeight returns a boolean if a field has been set.

func (*ExecCommandRequestTerminalSize) HasWidth ¶

func (o *ExecCommandRequestTerminalSize) HasWidth() bool

HasWidth returns a boolean if a field has been set.

func (ExecCommandRequestTerminalSize) MarshalJSON ¶

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

func (*ExecCommandRequestTerminalSize) SetHeight ¶

func (o *ExecCommandRequestTerminalSize) SetHeight(v int32)

SetHeight gets a reference to the given int32 and assigns it to the Height field.

func (*ExecCommandRequestTerminalSize) SetWidth ¶

func (o *ExecCommandRequestTerminalSize) SetWidth(v int32)

SetWidth gets a reference to the given int32 and assigns it to the Width field.

type GCPContainerRegistryConfiguration ¶

type GCPContainerRegistryConfiguration struct {
	KeyfileContent *string `json:"keyfile_content,omitempty"`
	Url            *string `json:"url,omitempty"`
}

GCPContainerRegistryConfiguration struct for GCPContainerRegistryConfiguration

func NewGCPContainerRegistryConfiguration ¶

func NewGCPContainerRegistryConfiguration() *GCPContainerRegistryConfiguration

NewGCPContainerRegistryConfiguration instantiates a new GCPContainerRegistryConfiguration 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 NewGCPContainerRegistryConfigurationWithDefaults ¶

func NewGCPContainerRegistryConfigurationWithDefaults() *GCPContainerRegistryConfiguration

NewGCPContainerRegistryConfigurationWithDefaults instantiates a new GCPContainerRegistryConfiguration 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 (*GCPContainerRegistryConfiguration) GetKeyfileContent ¶

func (o *GCPContainerRegistryConfiguration) GetKeyfileContent() string

GetKeyfileContent returns the KeyfileContent field value if set, zero value otherwise.

func (*GCPContainerRegistryConfiguration) GetKeyfileContentOk ¶

func (o *GCPContainerRegistryConfiguration) GetKeyfileContentOk() (*string, bool)

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

func (*GCPContainerRegistryConfiguration) GetUrl ¶

GetUrl returns the Url field value if set, zero value otherwise.

func (*GCPContainerRegistryConfiguration) GetUrlOk ¶

func (o *GCPContainerRegistryConfiguration) 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 (*GCPContainerRegistryConfiguration) HasKeyfileContent ¶

func (o *GCPContainerRegistryConfiguration) HasKeyfileContent() bool

HasKeyfileContent returns a boolean if a field has been set.

func (*GCPContainerRegistryConfiguration) HasUrl ¶

HasUrl returns a boolean if a field has been set.

func (GCPContainerRegistryConfiguration) MarshalJSON ¶

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

func (*GCPContainerRegistryConfiguration) SetKeyfileContent ¶

func (o *GCPContainerRegistryConfiguration) SetKeyfileContent(v string)

SetKeyfileContent gets a reference to the given string and assigns it to the KeyfileContent field.

func (*GCPContainerRegistryConfiguration) SetUrl ¶

SetUrl gets a reference to the given string and assigns it to the Url field.

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 GetAppReply ¶

type GetAppReply struct {
	App *App `json:"app,omitempty"`
}

GetAppReply struct for GetAppReply

func NewGetAppReply ¶

func NewGetAppReply() *GetAppReply

NewGetAppReply instantiates a new GetAppReply 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 NewGetAppReplyWithDefaults ¶

func NewGetAppReplyWithDefaults() *GetAppReply

NewGetAppReplyWithDefaults instantiates a new GetAppReply 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 (*GetAppReply) GetApp ¶

func (o *GetAppReply) GetApp() App

GetApp returns the App field value if set, zero value otherwise.

func (*GetAppReply) GetAppOk ¶

func (o *GetAppReply) GetAppOk() (*App, bool)

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

func (*GetAppReply) HasApp ¶

func (o *GetAppReply) HasApp() bool

HasApp returns a boolean if a field has been set.

func (GetAppReply) MarshalJSON ¶

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

func (*GetAppReply) SetApp ¶

func (o *GetAppReply) SetApp(v App)

SetApp gets a reference to the given App and assigns it to the App field.

type GetCatalogInstanceReply ¶

type GetCatalogInstanceReply struct {
	Instance *CatalogInstance `json:"instance,omitempty"`
}

GetCatalogInstanceReply struct for GetCatalogInstanceReply

func NewGetCatalogInstanceReply ¶

func NewGetCatalogInstanceReply() *GetCatalogInstanceReply

NewGetCatalogInstanceReply instantiates a new GetCatalogInstanceReply 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 NewGetCatalogInstanceReplyWithDefaults ¶

func NewGetCatalogInstanceReplyWithDefaults() *GetCatalogInstanceReply

NewGetCatalogInstanceReplyWithDefaults instantiates a new GetCatalogInstanceReply 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 (*GetCatalogInstanceReply) GetInstance ¶

func (o *GetCatalogInstanceReply) GetInstance() CatalogInstance

GetInstance returns the Instance field value if set, zero value otherwise.

func (*GetCatalogInstanceReply) GetInstanceOk ¶

func (o *GetCatalogInstanceReply) GetInstanceOk() (*CatalogInstance, bool)

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

func (*GetCatalogInstanceReply) HasInstance ¶

func (o *GetCatalogInstanceReply) HasInstance() bool

HasInstance returns a boolean if a field has been set.

func (GetCatalogInstanceReply) MarshalJSON ¶

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

func (*GetCatalogInstanceReply) SetInstance ¶

func (o *GetCatalogInstanceReply) SetInstance(v CatalogInstance)

SetInstance gets a reference to the given CatalogInstance and assigns it to the Instance field.

type GetCredentialReply ¶

type GetCredentialReply struct {
	Credential *Credential `json:"credential,omitempty"`
}

GetCredentialReply struct for GetCredentialReply

func NewGetCredentialReply ¶

func NewGetCredentialReply() *GetCredentialReply

NewGetCredentialReply instantiates a new GetCredentialReply 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 NewGetCredentialReplyWithDefaults ¶

func NewGetCredentialReplyWithDefaults() *GetCredentialReply

NewGetCredentialReplyWithDefaults instantiates a new GetCredentialReply 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 (*GetCredentialReply) GetCredential ¶

func (o *GetCredentialReply) GetCredential() Credential

GetCredential returns the Credential field value if set, zero value otherwise.

func (*GetCredentialReply) GetCredentialOk ¶

func (o *GetCredentialReply) GetCredentialOk() (*Credential, bool)

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

func (*GetCredentialReply) HasCredential ¶

func (o *GetCredentialReply) HasCredential() bool

HasCredential returns a boolean if a field has been set.

func (GetCredentialReply) MarshalJSON ¶

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

func (*GetCredentialReply) SetCredential ¶

func (o *GetCredentialReply) SetCredential(v Credential)

SetCredential gets a reference to the given Credential and assigns it to the Credential field.

type GetDeploymentReply ¶

type GetDeploymentReply struct {
	Deployment *Deployment `json:"deployment,omitempty"`
}

GetDeploymentReply struct for GetDeploymentReply

func NewGetDeploymentReply ¶

func NewGetDeploymentReply() *GetDeploymentReply

NewGetDeploymentReply instantiates a new GetDeploymentReply 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 NewGetDeploymentReplyWithDefaults ¶

func NewGetDeploymentReplyWithDefaults() *GetDeploymentReply

NewGetDeploymentReplyWithDefaults instantiates a new GetDeploymentReply 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 (*GetDeploymentReply) GetDeployment ¶

func (o *GetDeploymentReply) GetDeployment() Deployment

GetDeployment returns the Deployment field value if set, zero value otherwise.

func (*GetDeploymentReply) GetDeploymentOk ¶

func (o *GetDeploymentReply) GetDeploymentOk() (*Deployment, bool)

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

func (*GetDeploymentReply) HasDeployment ¶

func (o *GetDeploymentReply) HasDeployment() bool

HasDeployment returns a boolean if a field has been set.

func (GetDeploymentReply) MarshalJSON ¶

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

func (*GetDeploymentReply) SetDeployment ¶

func (o *GetDeploymentReply) SetDeployment(v Deployment)

SetDeployment gets a reference to the given Deployment and assigns it to the Deployment field.

type GetDomainReply ¶

type GetDomainReply struct {
	Domain *Domain `json:"domain,omitempty"`
}

GetDomainReply struct for GetDomainReply

func NewGetDomainReply ¶

func NewGetDomainReply() *GetDomainReply

NewGetDomainReply instantiates a new GetDomainReply 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 NewGetDomainReplyWithDefaults ¶

func NewGetDomainReplyWithDefaults() *GetDomainReply

NewGetDomainReplyWithDefaults instantiates a new GetDomainReply 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 (*GetDomainReply) GetDomain ¶

func (o *GetDomainReply) GetDomain() Domain

GetDomain returns the Domain field value if set, zero value otherwise.

func (*GetDomainReply) GetDomainOk ¶

func (o *GetDomainReply) GetDomainOk() (*Domain, bool)

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

func (*GetDomainReply) HasDomain ¶

func (o *GetDomainReply) HasDomain() bool

HasDomain returns a boolean if a field has been set.

func (GetDomainReply) MarshalJSON ¶

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

func (*GetDomainReply) SetDomain ¶

func (o *GetDomainReply) SetDomain(v Domain)

SetDomain gets a reference to the given Domain and assigns it to the Domain field.

type GetGithubInstallationReply ¶

type GetGithubInstallationReply struct {
	InstallationId      *string                            `json:"installation_id,omitempty"`
	InstallationUrl     *string                            `json:"installation_url,omitempty"`
	Name                *string                            `json:"name,omitempty"`
	AvatarUrl           *string                            `json:"avatar_url,omitempty"`
	Status              *KgitproxyGithubInstallationStatus `json:"status,omitempty"`
	InstalledAt         *time.Time                         `json:"installed_at,omitempty"`
	SuspendedAt         *time.Time                         `json:"suspended_at,omitempty"`
	IndexingStatus      *KgitproxyIndexingStatus           `json:"indexing_status,omitempty"`
	IndexedRepositories *int64                             `json:"indexed_repositories,omitempty"`
	TotalRepositories   *int64                             `json:"total_repositories,omitempty"`
}

GetGithubInstallationReply struct for GetGithubInstallationReply

func NewGetGithubInstallationReply ¶

func NewGetGithubInstallationReply() *GetGithubInstallationReply

NewGetGithubInstallationReply instantiates a new GetGithubInstallationReply 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 NewGetGithubInstallationReplyWithDefaults ¶

func NewGetGithubInstallationReplyWithDefaults() *GetGithubInstallationReply

NewGetGithubInstallationReplyWithDefaults instantiates a new GetGithubInstallationReply 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 (*GetGithubInstallationReply) GetAvatarUrl ¶

func (o *GetGithubInstallationReply) GetAvatarUrl() string

GetAvatarUrl returns the AvatarUrl field value if set, zero value otherwise.

func (*GetGithubInstallationReply) GetAvatarUrlOk ¶

func (o *GetGithubInstallationReply) GetAvatarUrlOk() (*string, bool)

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

func (*GetGithubInstallationReply) GetIndexedRepositories ¶

func (o *GetGithubInstallationReply) GetIndexedRepositories() int64

GetIndexedRepositories returns the IndexedRepositories field value if set, zero value otherwise.

func (*GetGithubInstallationReply) GetIndexedRepositoriesOk ¶

func (o *GetGithubInstallationReply) GetIndexedRepositoriesOk() (*int64, bool)

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

func (*GetGithubInstallationReply) GetIndexingStatus ¶

func (o *GetGithubInstallationReply) GetIndexingStatus() KgitproxyIndexingStatus

GetIndexingStatus returns the IndexingStatus field value if set, zero value otherwise.

func (*GetGithubInstallationReply) GetIndexingStatusOk ¶

func (o *GetGithubInstallationReply) GetIndexingStatusOk() (*KgitproxyIndexingStatus, bool)

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

func (*GetGithubInstallationReply) GetInstallationId ¶

func (o *GetGithubInstallationReply) GetInstallationId() string

GetInstallationId returns the InstallationId field value if set, zero value otherwise.

func (*GetGithubInstallationReply) GetInstallationIdOk ¶

func (o *GetGithubInstallationReply) GetInstallationIdOk() (*string, bool)

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

func (*GetGithubInstallationReply) GetInstallationUrl ¶

func (o *GetGithubInstallationReply) GetInstallationUrl() string

GetInstallationUrl returns the InstallationUrl field value if set, zero value otherwise.

func (*GetGithubInstallationReply) GetInstallationUrlOk ¶

func (o *GetGithubInstallationReply) GetInstallationUrlOk() (*string, bool)

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

func (*GetGithubInstallationReply) GetInstalledAt ¶

func (o *GetGithubInstallationReply) GetInstalledAt() time.Time

GetInstalledAt returns the InstalledAt field value if set, zero value otherwise.

func (*GetGithubInstallationReply) GetInstalledAtOk ¶

func (o *GetGithubInstallationReply) GetInstalledAtOk() (*time.Time, bool)

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

func (*GetGithubInstallationReply) GetName ¶

func (o *GetGithubInstallationReply) GetName() string

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

func (*GetGithubInstallationReply) GetNameOk ¶

func (o *GetGithubInstallationReply) 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 (*GetGithubInstallationReply) GetStatus ¶

GetStatus returns the Status field value if set, zero value otherwise.

func (*GetGithubInstallationReply) GetStatusOk ¶

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 (*GetGithubInstallationReply) GetSuspendedAt ¶

func (o *GetGithubInstallationReply) GetSuspendedAt() time.Time

GetSuspendedAt returns the SuspendedAt field value if set, zero value otherwise.

func (*GetGithubInstallationReply) GetSuspendedAtOk ¶

func (o *GetGithubInstallationReply) GetSuspendedAtOk() (*time.Time, bool)

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

func (*GetGithubInstallationReply) GetTotalRepositories ¶

func (o *GetGithubInstallationReply) GetTotalRepositories() int64

GetTotalRepositories returns the TotalRepositories field value if set, zero value otherwise.

func (*GetGithubInstallationReply) GetTotalRepositoriesOk ¶

func (o *GetGithubInstallationReply) GetTotalRepositoriesOk() (*int64, bool)

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

func (*GetGithubInstallationReply) HasAvatarUrl ¶

func (o *GetGithubInstallationReply) HasAvatarUrl() bool

HasAvatarUrl returns a boolean if a field has been set.

func (*GetGithubInstallationReply) HasIndexedRepositories ¶

func (o *GetGithubInstallationReply) HasIndexedRepositories() bool

HasIndexedRepositories returns a boolean if a field has been set.

func (*GetGithubInstallationReply) HasIndexingStatus ¶

func (o *GetGithubInstallationReply) HasIndexingStatus() bool

HasIndexingStatus returns a boolean if a field has been set.

func (*GetGithubInstallationReply) HasInstallationId ¶

func (o *GetGithubInstallationReply) HasInstallationId() bool

HasInstallationId returns a boolean if a field has been set.

func (*GetGithubInstallationReply) HasInstallationUrl ¶

func (o *GetGithubInstallationReply) HasInstallationUrl() bool

HasInstallationUrl returns a boolean if a field has been set.

func (*GetGithubInstallationReply) HasInstalledAt ¶

func (o *GetGithubInstallationReply) HasInstalledAt() bool

HasInstalledAt returns a boolean if a field has been set.

func (*GetGithubInstallationReply) HasName ¶

func (o *GetGithubInstallationReply) HasName() bool

HasName returns a boolean if a field has been set.

func (*GetGithubInstallationReply) HasStatus ¶

func (o *GetGithubInstallationReply) HasStatus() bool

HasStatus returns a boolean if a field has been set.

func (*GetGithubInstallationReply) HasSuspendedAt ¶

func (o *GetGithubInstallationReply) HasSuspendedAt() bool

HasSuspendedAt returns a boolean if a field has been set.

func (*GetGithubInstallationReply) HasTotalRepositories ¶

func (o *GetGithubInstallationReply) HasTotalRepositories() bool

HasTotalRepositories returns a boolean if a field has been set.

func (GetGithubInstallationReply) MarshalJSON ¶

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

func (*GetGithubInstallationReply) SetAvatarUrl ¶

func (o *GetGithubInstallationReply) SetAvatarUrl(v string)

SetAvatarUrl gets a reference to the given string and assigns it to the AvatarUrl field.

func (*GetGithubInstallationReply) SetIndexedRepositories ¶

func (o *GetGithubInstallationReply) SetIndexedRepositories(v int64)

SetIndexedRepositories gets a reference to the given int64 and assigns it to the IndexedRepositories field.

func (*GetGithubInstallationReply) SetIndexingStatus ¶

func (o *GetGithubInstallationReply) SetIndexingStatus(v KgitproxyIndexingStatus)

SetIndexingStatus gets a reference to the given KgitproxyIndexingStatus and assigns it to the IndexingStatus field.

func (*GetGithubInstallationReply) SetInstallationId ¶

func (o *GetGithubInstallationReply) SetInstallationId(v string)

SetInstallationId gets a reference to the given string and assigns it to the InstallationId field.

func (*GetGithubInstallationReply) SetInstallationUrl ¶

func (o *GetGithubInstallationReply) SetInstallationUrl(v string)

SetInstallationUrl gets a reference to the given string and assigns it to the InstallationUrl field.

func (*GetGithubInstallationReply) SetInstalledAt ¶

func (o *GetGithubInstallationReply) SetInstalledAt(v time.Time)

SetInstalledAt gets a reference to the given time.Time and assigns it to the InstalledAt field.

func (*GetGithubInstallationReply) SetName ¶

func (o *GetGithubInstallationReply) SetName(v string)

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

func (*GetGithubInstallationReply) SetStatus ¶

SetStatus gets a reference to the given KgitproxyGithubInstallationStatus and assigns it to the Status field.

func (*GetGithubInstallationReply) SetSuspendedAt ¶

func (o *GetGithubInstallationReply) SetSuspendedAt(v time.Time)

SetSuspendedAt gets a reference to the given time.Time and assigns it to the SuspendedAt field.

func (*GetGithubInstallationReply) SetTotalRepositories ¶

func (o *GetGithubInstallationReply) SetTotalRepositories(v int64)

SetTotalRepositories gets a reference to the given int64 and assigns it to the TotalRepositories field.

type GetInstanceReply ¶

type GetInstanceReply struct {
	Instance *Instance `json:"instance,omitempty"`
}

GetInstanceReply struct for GetInstanceReply

func NewGetInstanceReply ¶

func NewGetInstanceReply() *GetInstanceReply

NewGetInstanceReply instantiates a new GetInstanceReply 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 NewGetInstanceReplyWithDefaults ¶

func NewGetInstanceReplyWithDefaults() *GetInstanceReply

NewGetInstanceReplyWithDefaults instantiates a new GetInstanceReply 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 (*GetInstanceReply) GetInstance ¶

func (o *GetInstanceReply) GetInstance() Instance

GetInstance returns the Instance field value if set, zero value otherwise.

func (*GetInstanceReply) GetInstanceOk ¶

func (o *GetInstanceReply) GetInstanceOk() (*Instance, bool)

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

func (*GetInstanceReply) HasInstance ¶

func (o *GetInstanceReply) HasInstance() bool

HasInstance returns a boolean if a field has been set.

func (GetInstanceReply) MarshalJSON ¶

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

func (*GetInstanceReply) SetInstance ¶

func (o *GetInstanceReply) SetInstance(v Instance)

SetInstance gets a reference to the given Instance and assigns it to the Instance field.

type GetMetricsReply ¶

type GetMetricsReply struct {
	Metrics []GetMetricsReplyMetric `json:"metrics,omitempty"`
}

GetMetricsReply struct for GetMetricsReply

func NewGetMetricsReply ¶

func NewGetMetricsReply() *GetMetricsReply

NewGetMetricsReply instantiates a new GetMetricsReply 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 NewGetMetricsReplyWithDefaults ¶

func NewGetMetricsReplyWithDefaults() *GetMetricsReply

NewGetMetricsReplyWithDefaults instantiates a new GetMetricsReply 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 (*GetMetricsReply) GetMetrics ¶

func (o *GetMetricsReply) GetMetrics() []GetMetricsReplyMetric

GetMetrics returns the Metrics field value if set, zero value otherwise.

func (*GetMetricsReply) GetMetricsOk ¶

func (o *GetMetricsReply) GetMetricsOk() ([]GetMetricsReplyMetric, bool)

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

func (*GetMetricsReply) HasMetrics ¶

func (o *GetMetricsReply) HasMetrics() bool

HasMetrics returns a boolean if a field has been set.

func (GetMetricsReply) MarshalJSON ¶

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

func (*GetMetricsReply) SetMetrics ¶

func (o *GetMetricsReply) SetMetrics(v []GetMetricsReplyMetric)

SetMetrics gets a reference to the given []GetMetricsReplyMetric and assigns it to the Metrics field.

type GetMetricsReplyMetric ¶

type GetMetricsReplyMetric struct {
	Labels  *map[string]string `json:"labels,omitempty"`
	Samples []Sample           `json:"samples,omitempty"`
}

GetMetricsReplyMetric struct for GetMetricsReplyMetric

func NewGetMetricsReplyMetric ¶

func NewGetMetricsReplyMetric() *GetMetricsReplyMetric

NewGetMetricsReplyMetric instantiates a new GetMetricsReplyMetric 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 NewGetMetricsReplyMetricWithDefaults ¶

func NewGetMetricsReplyMetricWithDefaults() *GetMetricsReplyMetric

NewGetMetricsReplyMetricWithDefaults instantiates a new GetMetricsReplyMetric 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 (*GetMetricsReplyMetric) GetLabels ¶

func (o *GetMetricsReplyMetric) GetLabels() map[string]string

GetLabels returns the Labels field value if set, zero value otherwise.

func (*GetMetricsReplyMetric) GetLabelsOk ¶

func (o *GetMetricsReplyMetric) GetLabelsOk() (*map[string]string, bool)

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

func (*GetMetricsReplyMetric) GetSamples ¶

func (o *GetMetricsReplyMetric) GetSamples() []Sample

GetSamples returns the Samples field value if set, zero value otherwise.

func (*GetMetricsReplyMetric) GetSamplesOk ¶

func (o *GetMetricsReplyMetric) GetSamplesOk() ([]Sample, bool)

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

func (*GetMetricsReplyMetric) HasLabels ¶

func (o *GetMetricsReplyMetric) HasLabels() bool

HasLabels returns a boolean if a field has been set.

func (*GetMetricsReplyMetric) HasSamples ¶

func (o *GetMetricsReplyMetric) HasSamples() bool

HasSamples returns a boolean if a field has been set.

func (GetMetricsReplyMetric) MarshalJSON ¶

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

func (*GetMetricsReplyMetric) SetLabels ¶

func (o *GetMetricsReplyMetric) SetLabels(v map[string]string)

SetLabels gets a reference to the given map[string]string and assigns it to the Labels field.

func (*GetMetricsReplyMetric) SetSamples ¶

func (o *GetMetricsReplyMetric) SetSamples(v []Sample)

SetSamples gets a reference to the given []Sample and assigns it to the Samples field.

type GetOAuthOptionsReply ¶

type GetOAuthOptionsReply struct {
	OauthProviders []OAuthProvider `json:"oauth_providers,omitempty"`
}

GetOAuthOptionsReply A list of providers which you can use for single sign-on.

func NewGetOAuthOptionsReply ¶

func NewGetOAuthOptionsReply() *GetOAuthOptionsReply

NewGetOAuthOptionsReply instantiates a new GetOAuthOptionsReply 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 NewGetOAuthOptionsReplyWithDefaults ¶

func NewGetOAuthOptionsReplyWithDefaults() *GetOAuthOptionsReply

NewGetOAuthOptionsReplyWithDefaults instantiates a new GetOAuthOptionsReply 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 (*GetOAuthOptionsReply) GetOauthProviders ¶

func (o *GetOAuthOptionsReply) GetOauthProviders() []OAuthProvider

GetOauthProviders returns the OauthProviders field value if set, zero value otherwise.

func (*GetOAuthOptionsReply) GetOauthProvidersOk ¶

func (o *GetOAuthOptionsReply) GetOauthProvidersOk() ([]OAuthProvider, bool)

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

func (*GetOAuthOptionsReply) HasOauthProviders ¶

func (o *GetOAuthOptionsReply) HasOauthProviders() bool

HasOauthProviders returns a boolean if a field has been set.

func (GetOAuthOptionsReply) MarshalJSON ¶

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

func (*GetOAuthOptionsReply) SetOauthProviders ¶

func (o *GetOAuthOptionsReply) SetOauthProviders(v []OAuthProvider)

SetOauthProviders gets a reference to the given []OAuthProvider and assigns it to the OauthProviders field.

type GetOrganizationInvitationReply ¶

type GetOrganizationInvitationReply struct {
	Invitation *OrganizationInvitation `json:"invitation,omitempty"`
}

GetOrganizationInvitationReply struct for GetOrganizationInvitationReply

func NewGetOrganizationInvitationReply ¶

func NewGetOrganizationInvitationReply() *GetOrganizationInvitationReply

NewGetOrganizationInvitationReply instantiates a new GetOrganizationInvitationReply 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 NewGetOrganizationInvitationReplyWithDefaults ¶

func NewGetOrganizationInvitationReplyWithDefaults() *GetOrganizationInvitationReply

NewGetOrganizationInvitationReplyWithDefaults instantiates a new GetOrganizationInvitationReply 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 (*GetOrganizationInvitationReply) GetInvitation ¶

GetInvitation returns the Invitation field value if set, zero value otherwise.

func (*GetOrganizationInvitationReply) GetInvitationOk ¶

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

func (*GetOrganizationInvitationReply) HasInvitation ¶

func (o *GetOrganizationInvitationReply) HasInvitation() bool

HasInvitation returns a boolean if a field has been set.

func (GetOrganizationInvitationReply) MarshalJSON ¶

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

func (*GetOrganizationInvitationReply) SetInvitation ¶

SetInvitation gets a reference to the given OrganizationInvitation and assigns it to the Invitation field.

type GetOrganizationReply ¶

type GetOrganizationReply struct {
	Organization *Organization `json:"organization,omitempty"`
}

GetOrganizationReply struct for GetOrganizationReply

func NewGetOrganizationReply ¶

func NewGetOrganizationReply() *GetOrganizationReply

NewGetOrganizationReply instantiates a new GetOrganizationReply 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 NewGetOrganizationReplyWithDefaults ¶

func NewGetOrganizationReplyWithDefaults() *GetOrganizationReply

NewGetOrganizationReplyWithDefaults instantiates a new GetOrganizationReply 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 (*GetOrganizationReply) GetOrganization ¶

func (o *GetOrganizationReply) GetOrganization() Organization

GetOrganization returns the Organization field value if set, zero value otherwise.

func (*GetOrganizationReply) GetOrganizationOk ¶

func (o *GetOrganizationReply) GetOrganizationOk() (*Organization, bool)

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

func (*GetOrganizationReply) HasOrganization ¶

func (o *GetOrganizationReply) HasOrganization() bool

HasOrganization returns a boolean if a field has been set.

func (GetOrganizationReply) MarshalJSON ¶

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

func (*GetOrganizationReply) SetOrganization ¶

func (o *GetOrganizationReply) SetOrganization(v Organization)

SetOrganization gets a reference to the given Organization and assigns it to the Organization field.

type GetOrganizationSummaryReply ¶

type GetOrganizationSummaryReply struct {
	Summary *OrganizationSummary `json:"summary,omitempty"`
}

GetOrganizationSummaryReply struct for GetOrganizationSummaryReply

func NewGetOrganizationSummaryReply ¶

func NewGetOrganizationSummaryReply() *GetOrganizationSummaryReply

NewGetOrganizationSummaryReply instantiates a new GetOrganizationSummaryReply 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 NewGetOrganizationSummaryReplyWithDefaults ¶

func NewGetOrganizationSummaryReplyWithDefaults() *GetOrganizationSummaryReply

NewGetOrganizationSummaryReplyWithDefaults instantiates a new GetOrganizationSummaryReply 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 (*GetOrganizationSummaryReply) GetSummary ¶

GetSummary returns the Summary field value if set, zero value otherwise.

func (*GetOrganizationSummaryReply) GetSummaryOk ¶

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

func (*GetOrganizationSummaryReply) HasSummary ¶

func (o *GetOrganizationSummaryReply) HasSummary() bool

HasSummary returns a boolean if a field has been set.

func (GetOrganizationSummaryReply) MarshalJSON ¶

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

func (*GetOrganizationSummaryReply) SetSummary ¶

SetSummary gets a reference to the given OrganizationSummary and assigns it to the Summary field.

type GetOrganizationUsageDetailsReply ¶

type GetOrganizationUsageDetailsReply struct {
	UsageDetails []UsageDetails `json:"usage_details,omitempty"`
	Limit        *int64         `json:"limit,omitempty"`
	Offset       *int64         `json:"offset,omitempty"`
	Count        *int64         `json:"count,omitempty"`
	Order        *string        `json:"order,omitempty"`
}

GetOrganizationUsageDetailsReply struct for GetOrganizationUsageDetailsReply

func NewGetOrganizationUsageDetailsReply ¶

func NewGetOrganizationUsageDetailsReply() *GetOrganizationUsageDetailsReply

NewGetOrganizationUsageDetailsReply instantiates a new GetOrganizationUsageDetailsReply 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 NewGetOrganizationUsageDetailsReplyWithDefaults ¶

func NewGetOrganizationUsageDetailsReplyWithDefaults() *GetOrganizationUsageDetailsReply

NewGetOrganizationUsageDetailsReplyWithDefaults instantiates a new GetOrganizationUsageDetailsReply 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 (*GetOrganizationUsageDetailsReply) GetCount ¶

GetCount returns the Count field value if set, zero value otherwise.

func (*GetOrganizationUsageDetailsReply) GetCountOk ¶

func (o *GetOrganizationUsageDetailsReply) GetCountOk() (*int64, bool)

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

func (*GetOrganizationUsageDetailsReply) GetLimit ¶

GetLimit returns the Limit field value if set, zero value otherwise.

func (*GetOrganizationUsageDetailsReply) GetLimitOk ¶

func (o *GetOrganizationUsageDetailsReply) GetLimitOk() (*int64, bool)

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

func (*GetOrganizationUsageDetailsReply) GetOffset ¶

func (o *GetOrganizationUsageDetailsReply) GetOffset() int64

GetOffset returns the Offset field value if set, zero value otherwise.

func (*GetOrganizationUsageDetailsReply) GetOffsetOk ¶

func (o *GetOrganizationUsageDetailsReply) GetOffsetOk() (*int64, bool)

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

func (*GetOrganizationUsageDetailsReply) GetOrder ¶

GetOrder returns the Order field value if set, zero value otherwise.

func (*GetOrganizationUsageDetailsReply) GetOrderOk ¶

func (o *GetOrganizationUsageDetailsReply) GetOrderOk() (*string, bool)

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

func (*GetOrganizationUsageDetailsReply) GetUsageDetails ¶

func (o *GetOrganizationUsageDetailsReply) GetUsageDetails() []UsageDetails

GetUsageDetails returns the UsageDetails field value if set, zero value otherwise.

func (*GetOrganizationUsageDetailsReply) GetUsageDetailsOk ¶

func (o *GetOrganizationUsageDetailsReply) GetUsageDetailsOk() ([]UsageDetails, bool)

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

func (*GetOrganizationUsageDetailsReply) HasCount ¶

func (o *GetOrganizationUsageDetailsReply) HasCount() bool

HasCount returns a boolean if a field has been set.

func (*GetOrganizationUsageDetailsReply) HasLimit ¶

func (o *GetOrganizationUsageDetailsReply) HasLimit() bool

HasLimit returns a boolean if a field has been set.

func (*GetOrganizationUsageDetailsReply) HasOffset ¶

func (o *GetOrganizationUsageDetailsReply) HasOffset() bool

HasOffset returns a boolean if a field has been set.

func (*GetOrganizationUsageDetailsReply) HasOrder ¶

func (o *GetOrganizationUsageDetailsReply) HasOrder() bool

HasOrder returns a boolean if a field has been set.

func (*GetOrganizationUsageDetailsReply) HasUsageDetails ¶

func (o *GetOrganizationUsageDetailsReply) HasUsageDetails() bool

HasUsageDetails returns a boolean if a field has been set.

func (GetOrganizationUsageDetailsReply) MarshalJSON ¶

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

func (*GetOrganizationUsageDetailsReply) SetCount ¶

func (o *GetOrganizationUsageDetailsReply) SetCount(v int64)

SetCount gets a reference to the given int64 and assigns it to the Count field.

func (*GetOrganizationUsageDetailsReply) SetLimit ¶

func (o *GetOrganizationUsageDetailsReply) SetLimit(v int64)

SetLimit gets a reference to the given int64 and assigns it to the Limit field.

func (*GetOrganizationUsageDetailsReply) SetOffset ¶

func (o *GetOrganizationUsageDetailsReply) SetOffset(v int64)

SetOffset gets a reference to the given int64 and assigns it to the Offset field.

func (*GetOrganizationUsageDetailsReply) SetOrder ¶

SetOrder gets a reference to the given string and assigns it to the Order field.

func (*GetOrganizationUsageDetailsReply) SetUsageDetails ¶

func (o *GetOrganizationUsageDetailsReply) SetUsageDetails(v []UsageDetails)

SetUsageDetails gets a reference to the given []UsageDetails and assigns it to the UsageDetails field.

type GetOrganizationUsageReply ¶

type GetOrganizationUsageReply struct {
	Usage *Usage `json:"usage,omitempty"`
}

GetOrganizationUsageReply struct for GetOrganizationUsageReply

func NewGetOrganizationUsageReply ¶

func NewGetOrganizationUsageReply() *GetOrganizationUsageReply

NewGetOrganizationUsageReply instantiates a new GetOrganizationUsageReply 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 NewGetOrganizationUsageReplyWithDefaults ¶

func NewGetOrganizationUsageReplyWithDefaults() *GetOrganizationUsageReply

NewGetOrganizationUsageReplyWithDefaults instantiates a new GetOrganizationUsageReply 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 (*GetOrganizationUsageReply) GetUsage ¶

func (o *GetOrganizationUsageReply) GetUsage() Usage

GetUsage returns the Usage field value if set, zero value otherwise.

func (*GetOrganizationUsageReply) GetUsageOk ¶

func (o *GetOrganizationUsageReply) GetUsageOk() (*Usage, bool)

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

func (*GetOrganizationUsageReply) HasUsage ¶

func (o *GetOrganizationUsageReply) HasUsage() bool

HasUsage returns a boolean if a field has been set.

func (GetOrganizationUsageReply) MarshalJSON ¶

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

func (*GetOrganizationUsageReply) SetUsage ¶

func (o *GetOrganizationUsageReply) SetUsage(v Usage)

SetUsage gets a reference to the given Usage and assigns it to the Usage field.

type GetPaymentMethodReply ¶

type GetPaymentMethodReply struct {
	PaymentMethod *PaymentMethod `json:"payment_method,omitempty"`
}

GetPaymentMethodReply struct for GetPaymentMethodReply

func NewGetPaymentMethodReply ¶

func NewGetPaymentMethodReply() *GetPaymentMethodReply

NewGetPaymentMethodReply instantiates a new GetPaymentMethodReply 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 NewGetPaymentMethodReplyWithDefaults ¶

func NewGetPaymentMethodReplyWithDefaults() *GetPaymentMethodReply

NewGetPaymentMethodReplyWithDefaults instantiates a new GetPaymentMethodReply 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 (*GetPaymentMethodReply) GetPaymentMethod ¶

func (o *GetPaymentMethodReply) GetPaymentMethod() PaymentMethod

GetPaymentMethod returns the PaymentMethod field value if set, zero value otherwise.

func (*GetPaymentMethodReply) GetPaymentMethodOk ¶

func (o *GetPaymentMethodReply) GetPaymentMethodOk() (*PaymentMethod, bool)

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

func (*GetPaymentMethodReply) HasPaymentMethod ¶

func (o *GetPaymentMethodReply) HasPaymentMethod() bool

HasPaymentMethod returns a boolean if a field has been set.

func (GetPaymentMethodReply) MarshalJSON ¶

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

func (*GetPaymentMethodReply) SetPaymentMethod ¶

func (o *GetPaymentMethodReply) SetPaymentMethod(v PaymentMethod)

SetPaymentMethod gets a reference to the given PaymentMethod and assigns it to the PaymentMethod field.

type GetQuotasReply ¶

type GetQuotasReply struct {
	Quotas *Quotas `json:"quotas,omitempty"`
}

GetQuotasReply struct for GetQuotasReply

func NewGetQuotasReply ¶

func NewGetQuotasReply() *GetQuotasReply

NewGetQuotasReply instantiates a new GetQuotasReply 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 NewGetQuotasReplyWithDefaults ¶

func NewGetQuotasReplyWithDefaults() *GetQuotasReply

NewGetQuotasReplyWithDefaults instantiates a new GetQuotasReply 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 (*GetQuotasReply) GetQuotas ¶

func (o *GetQuotasReply) GetQuotas() Quotas

GetQuotas returns the Quotas field value if set, zero value otherwise.

func (*GetQuotasReply) GetQuotasOk ¶

func (o *GetQuotasReply) GetQuotasOk() (*Quotas, bool)

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

func (*GetQuotasReply) HasQuotas ¶

func (o *GetQuotasReply) HasQuotas() bool

HasQuotas returns a boolean if a field has been set.

func (GetQuotasReply) MarshalJSON ¶

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

func (*GetQuotasReply) SetQuotas ¶

func (o *GetQuotasReply) SetQuotas(v Quotas)

SetQuotas gets a reference to the given Quotas and assigns it to the Quotas field.

type GetRegionReply ¶

type GetRegionReply struct {
	Region *Region `json:"region,omitempty"`
}

GetRegionReply struct for GetRegionReply

func NewGetRegionReply ¶

func NewGetRegionReply() *GetRegionReply

NewGetRegionReply instantiates a new GetRegionReply 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 NewGetRegionReplyWithDefaults ¶

func NewGetRegionReplyWithDefaults() *GetRegionReply

NewGetRegionReplyWithDefaults instantiates a new GetRegionReply 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 (*GetRegionReply) GetRegion ¶

func (o *GetRegionReply) GetRegion() Region

GetRegion returns the Region field value if set, zero value otherwise.

func (*GetRegionReply) GetRegionOk ¶

func (o *GetRegionReply) GetRegionOk() (*Region, bool)

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

func (*GetRegionReply) HasRegion ¶

func (o *GetRegionReply) HasRegion() bool

HasRegion returns a boolean if a field has been set.

func (GetRegionReply) MarshalJSON ¶

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

func (*GetRegionReply) SetRegion ¶

func (o *GetRegionReply) SetRegion(v Region)

SetRegion gets a reference to the given Region and assigns it to the Region field.

type GetRegionalDeploymentReply ¶

type GetRegionalDeploymentReply struct {
	RegionalDeployment *RegionalDeployment `json:"regional_deployment,omitempty"`
}

GetRegionalDeploymentReply struct for GetRegionalDeploymentReply

func NewGetRegionalDeploymentReply ¶

func NewGetRegionalDeploymentReply() *GetRegionalDeploymentReply

NewGetRegionalDeploymentReply instantiates a new GetRegionalDeploymentReply 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 NewGetRegionalDeploymentReplyWithDefaults ¶

func NewGetRegionalDeploymentReplyWithDefaults() *GetRegionalDeploymentReply

NewGetRegionalDeploymentReplyWithDefaults instantiates a new GetRegionalDeploymentReply 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 (*GetRegionalDeploymentReply) GetRegionalDeployment ¶

func (o *GetRegionalDeploymentReply) GetRegionalDeployment() RegionalDeployment

GetRegionalDeployment returns the RegionalDeployment field value if set, zero value otherwise.

func (*GetRegionalDeploymentReply) GetRegionalDeploymentOk ¶

func (o *GetRegionalDeploymentReply) GetRegionalDeploymentOk() (*RegionalDeployment, bool)

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

func (*GetRegionalDeploymentReply) HasRegionalDeployment ¶

func (o *GetRegionalDeploymentReply) HasRegionalDeployment() bool

HasRegionalDeployment returns a boolean if a field has been set.

func (GetRegionalDeploymentReply) MarshalJSON ¶

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

func (*GetRegionalDeploymentReply) SetRegionalDeployment ¶

func (o *GetRegionalDeploymentReply) SetRegionalDeployment(v RegionalDeployment)

SetRegionalDeployment gets a reference to the given RegionalDeployment and assigns it to the RegionalDeployment field.

type GetSecretReply ¶

type GetSecretReply struct {
	Secret *Secret `json:"secret,omitempty"`
}

GetSecretReply struct for GetSecretReply

func NewGetSecretReply ¶

func NewGetSecretReply() *GetSecretReply

NewGetSecretReply instantiates a new GetSecretReply 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 NewGetSecretReplyWithDefaults ¶

func NewGetSecretReplyWithDefaults() *GetSecretReply

NewGetSecretReplyWithDefaults instantiates a new GetSecretReply 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 (*GetSecretReply) GetSecret ¶

func (o *GetSecretReply) GetSecret() Secret

GetSecret returns the Secret field value if set, zero value otherwise.

func (*GetSecretReply) GetSecretOk ¶

func (o *GetSecretReply) GetSecretOk() (*Secret, bool)

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

func (*GetSecretReply) HasSecret ¶

func (o *GetSecretReply) HasSecret() bool

HasSecret returns a boolean if a field has been set.

func (GetSecretReply) MarshalJSON ¶

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

func (*GetSecretReply) SetSecret ¶

func (o *GetSecretReply) SetSecret(v Secret)

SetSecret gets a reference to the given Secret and assigns it to the Secret field.

type GetServiceReply ¶

type GetServiceReply struct {
	Service *Service `json:"service,omitempty"`
}

GetServiceReply struct for GetServiceReply

func NewGetServiceReply ¶

func NewGetServiceReply() *GetServiceReply

NewGetServiceReply instantiates a new GetServiceReply 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 NewGetServiceReplyWithDefaults ¶

func NewGetServiceReplyWithDefaults() *GetServiceReply

NewGetServiceReplyWithDefaults instantiates a new GetServiceReply 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 (*GetServiceReply) GetService ¶

func (o *GetServiceReply) GetService() Service

GetService returns the Service field value if set, zero value otherwise.

func (*GetServiceReply) GetServiceOk ¶

func (o *GetServiceReply) GetServiceOk() (*Service, bool)

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

func (*GetServiceReply) HasService ¶

func (o *GetServiceReply) HasService() bool

HasService returns a boolean if a field has been set.

func (GetServiceReply) MarshalJSON ¶

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

func (*GetServiceReply) SetService ¶

func (o *GetServiceReply) SetService(v Service)

SetService gets a reference to the given Service and assigns it to the Service field.

type GetSubscriptionReply ¶

type GetSubscriptionReply struct {
	Subscription *Subscription `json:"subscription,omitempty"`
}

GetSubscriptionReply struct for GetSubscriptionReply

func NewGetSubscriptionReply ¶

func NewGetSubscriptionReply() *GetSubscriptionReply

NewGetSubscriptionReply instantiates a new GetSubscriptionReply 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 NewGetSubscriptionReplyWithDefaults ¶

func NewGetSubscriptionReplyWithDefaults() *GetSubscriptionReply

NewGetSubscriptionReplyWithDefaults instantiates a new GetSubscriptionReply 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 (*GetSubscriptionReply) GetSubscription ¶

func (o *GetSubscriptionReply) GetSubscription() Subscription

GetSubscription returns the Subscription field value if set, zero value otherwise.

func (*GetSubscriptionReply) GetSubscriptionOk ¶

func (o *GetSubscriptionReply) GetSubscriptionOk() (*Subscription, bool)

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

func (*GetSubscriptionReply) HasSubscription ¶

func (o *GetSubscriptionReply) HasSubscription() bool

HasSubscription returns a boolean if a field has been set.

func (GetSubscriptionReply) MarshalJSON ¶

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

func (*GetSubscriptionReply) SetSubscription ¶

func (o *GetSubscriptionReply) SetSubscription(v Subscription)

SetSubscription gets a reference to the given Subscription and assigns it to the Subscription field.

type GetUserOrganizationInvitationReply ¶

type GetUserOrganizationInvitationReply struct {
	Invitation *OrganizationInvitation `json:"invitation,omitempty"`
}

GetUserOrganizationInvitationReply struct for GetUserOrganizationInvitationReply

func NewGetUserOrganizationInvitationReply ¶

func NewGetUserOrganizationInvitationReply() *GetUserOrganizationInvitationReply

NewGetUserOrganizationInvitationReply instantiates a new GetUserOrganizationInvitationReply 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 NewGetUserOrganizationInvitationReplyWithDefaults ¶

func NewGetUserOrganizationInvitationReplyWithDefaults() *GetUserOrganizationInvitationReply

NewGetUserOrganizationInvitationReplyWithDefaults instantiates a new GetUserOrganizationInvitationReply 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 (*GetUserOrganizationInvitationReply) GetInvitation ¶

GetInvitation returns the Invitation field value if set, zero value otherwise.

func (*GetUserOrganizationInvitationReply) GetInvitationOk ¶

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

func (*GetUserOrganizationInvitationReply) HasInvitation ¶

func (o *GetUserOrganizationInvitationReply) HasInvitation() bool

HasInvitation returns a boolean if a field has been set.

func (GetUserOrganizationInvitationReply) MarshalJSON ¶

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

func (*GetUserOrganizationInvitationReply) SetInvitation ¶

SetInvitation gets a reference to the given OrganizationInvitation and assigns it to the Invitation field.

type GitDeploymentMetadata ¶

type GitDeploymentMetadata struct {
	LastProvisionedDeploymentId *string `json:"last_provisioned_deployment_id,omitempty"`
}

GitDeploymentMetadata struct for GitDeploymentMetadata

func NewGitDeploymentMetadata ¶

func NewGitDeploymentMetadata() *GitDeploymentMetadata

NewGitDeploymentMetadata instantiates a new GitDeploymentMetadata 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 NewGitDeploymentMetadataWithDefaults ¶

func NewGitDeploymentMetadataWithDefaults() *GitDeploymentMetadata

NewGitDeploymentMetadataWithDefaults instantiates a new GitDeploymentMetadata 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 (*GitDeploymentMetadata) GetLastProvisionedDeploymentId ¶

func (o *GitDeploymentMetadata) GetLastProvisionedDeploymentId() string

GetLastProvisionedDeploymentId returns the LastProvisionedDeploymentId field value if set, zero value otherwise.

func (*GitDeploymentMetadata) GetLastProvisionedDeploymentIdOk ¶

func (o *GitDeploymentMetadata) GetLastProvisionedDeploymentIdOk() (*string, bool)

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

func (*GitDeploymentMetadata) HasLastProvisionedDeploymentId ¶

func (o *GitDeploymentMetadata) HasLastProvisionedDeploymentId() bool

HasLastProvisionedDeploymentId returns a boolean if a field has been set.

func (GitDeploymentMetadata) MarshalJSON ¶

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

func (*GitDeploymentMetadata) SetLastProvisionedDeploymentId ¶

func (o *GitDeploymentMetadata) SetLastProvisionedDeploymentId(v string)

SetLastProvisionedDeploymentId gets a reference to the given string and assigns it to the LastProvisionedDeploymentId field.

type GitHubRegistryConfiguration ¶

type GitHubRegistryConfiguration struct {
	Username *string `json:"username,omitempty"`
	Password *string `json:"password,omitempty"`
}

GitHubRegistryConfiguration struct for GitHubRegistryConfiguration

func NewGitHubRegistryConfiguration ¶

func NewGitHubRegistryConfiguration() *GitHubRegistryConfiguration

NewGitHubRegistryConfiguration instantiates a new GitHubRegistryConfiguration 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 NewGitHubRegistryConfigurationWithDefaults ¶

func NewGitHubRegistryConfigurationWithDefaults() *GitHubRegistryConfiguration

NewGitHubRegistryConfigurationWithDefaults instantiates a new GitHubRegistryConfiguration 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 (*GitHubRegistryConfiguration) GetPassword ¶

func (o *GitHubRegistryConfiguration) GetPassword() string

GetPassword returns the Password field value if set, zero value otherwise.

func (*GitHubRegistryConfiguration) GetPasswordOk ¶

func (o *GitHubRegistryConfiguration) GetPasswordOk() (*string, bool)

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

func (*GitHubRegistryConfiguration) GetUsername ¶

func (o *GitHubRegistryConfiguration) GetUsername() string

GetUsername returns the Username field value if set, zero value otherwise.

func (*GitHubRegistryConfiguration) GetUsernameOk ¶

func (o *GitHubRegistryConfiguration) GetUsernameOk() (*string, bool)

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

func (*GitHubRegistryConfiguration) HasPassword ¶

func (o *GitHubRegistryConfiguration) HasPassword() bool

HasPassword returns a boolean if a field has been set.

func (*GitHubRegistryConfiguration) HasUsername ¶

func (o *GitHubRegistryConfiguration) HasUsername() bool

HasUsername returns a boolean if a field has been set.

func (GitHubRegistryConfiguration) MarshalJSON ¶

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

func (*GitHubRegistryConfiguration) SetPassword ¶

func (o *GitHubRegistryConfiguration) SetPassword(v string)

SetPassword gets a reference to the given string and assigns it to the Password field.

func (*GitHubRegistryConfiguration) SetUsername ¶

func (o *GitHubRegistryConfiguration) SetUsername(v string)

SetUsername gets a reference to the given string and assigns it to the Username field.

type GitLabRegistryConfiguration ¶

type GitLabRegistryConfiguration struct {
	Username *string `json:"username,omitempty"`
	Password *string `json:"password,omitempty"`
}

GitLabRegistryConfiguration struct for GitLabRegistryConfiguration

func NewGitLabRegistryConfiguration ¶

func NewGitLabRegistryConfiguration() *GitLabRegistryConfiguration

NewGitLabRegistryConfiguration instantiates a new GitLabRegistryConfiguration 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 NewGitLabRegistryConfigurationWithDefaults ¶

func NewGitLabRegistryConfigurationWithDefaults() *GitLabRegistryConfiguration

NewGitLabRegistryConfigurationWithDefaults instantiates a new GitLabRegistryConfiguration 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 (*GitLabRegistryConfiguration) GetPassword ¶

func (o *GitLabRegistryConfiguration) GetPassword() string

GetPassword returns the Password field value if set, zero value otherwise.

func (*GitLabRegistryConfiguration) GetPasswordOk ¶

func (o *GitLabRegistryConfiguration) GetPasswordOk() (*string, bool)

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

func (*GitLabRegistryConfiguration) GetUsername ¶

func (o *GitLabRegistryConfiguration) GetUsername() string

GetUsername returns the Username field value if set, zero value otherwise.

func (*GitLabRegistryConfiguration) GetUsernameOk ¶

func (o *GitLabRegistryConfiguration) GetUsernameOk() (*string, bool)

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

func (*GitLabRegistryConfiguration) HasPassword ¶

func (o *GitLabRegistryConfiguration) HasPassword() bool

HasPassword returns a boolean if a field has been set.

func (*GitLabRegistryConfiguration) HasUsername ¶

func (o *GitLabRegistryConfiguration) HasUsername() bool

HasUsername returns a boolean if a field has been set.

func (GitLabRegistryConfiguration) MarshalJSON ¶

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

func (*GitLabRegistryConfiguration) SetPassword ¶

func (o *GitLabRegistryConfiguration) SetPassword(v string)

SetPassword gets a reference to the given string and assigns it to the Password field.

func (*GitLabRegistryConfiguration) SetUsername ¶

func (o *GitLabRegistryConfiguration) SetUsername(v string)

SetUsername gets a reference to the given string and assigns it to the Username field.

type GitSource ¶

type GitSource struct {
	// A url to a git repository (contains the provider as well) .e.g: github.com/koyeb/test.
	Repository     *string           `json:"repository,omitempty"`
	Branch         *string           `json:"branch,omitempty"`
	Tag            *string           `json:"tag,omitempty"`
	Sha            *string           `json:"sha,omitempty"`
	BuildCommand   *string           `json:"build_command,omitempty"`
	RunCommand     *string           `json:"run_command,omitempty"`
	NoDeployOnPush *bool             `json:"no_deploy_on_push,omitempty"`
	Workdir        *string           `json:"workdir,omitempty"`
	Buildpack      *BuildpackBuilder `json:"buildpack,omitempty"`
	Docker         *DockerBuilder    `json:"docker,omitempty"`
}

GitSource struct for GitSource

func NewGitSource ¶

func NewGitSource() *GitSource

NewGitSource instantiates a new GitSource 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 NewGitSourceWithDefaults ¶

func NewGitSourceWithDefaults() *GitSource

NewGitSourceWithDefaults instantiates a new GitSource 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 (*GitSource) GetBranch ¶

func (o *GitSource) GetBranch() string

GetBranch returns the Branch field value if set, zero value otherwise.

func (*GitSource) GetBranchOk ¶

func (o *GitSource) GetBranchOk() (*string, bool)

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

func (*GitSource) GetBuildCommand ¶

func (o *GitSource) GetBuildCommand() string

GetBuildCommand returns the BuildCommand field value if set, zero value otherwise.

func (*GitSource) GetBuildCommandOk ¶

func (o *GitSource) GetBuildCommandOk() (*string, bool)

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

func (*GitSource) GetBuildpack ¶

func (o *GitSource) GetBuildpack() BuildpackBuilder

GetBuildpack returns the Buildpack field value if set, zero value otherwise.

func (*GitSource) GetBuildpackOk ¶

func (o *GitSource) GetBuildpackOk() (*BuildpackBuilder, bool)

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

func (*GitSource) GetDocker ¶

func (o *GitSource) GetDocker() DockerBuilder

GetDocker returns the Docker field value if set, zero value otherwise.

func (*GitSource) GetDockerOk ¶

func (o *GitSource) GetDockerOk() (*DockerBuilder, bool)

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

func (*GitSource) GetNoDeployOnPush ¶

func (o *GitSource) GetNoDeployOnPush() bool

GetNoDeployOnPush returns the NoDeployOnPush field value if set, zero value otherwise.

func (*GitSource) GetNoDeployOnPushOk ¶

func (o *GitSource) GetNoDeployOnPushOk() (*bool, bool)

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

func (*GitSource) GetRepository ¶

func (o *GitSource) GetRepository() string

GetRepository returns the Repository field value if set, zero value otherwise.

func (*GitSource) GetRepositoryOk ¶

func (o *GitSource) GetRepositoryOk() (*string, bool)

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

func (*GitSource) GetRunCommand ¶

func (o *GitSource) GetRunCommand() string

GetRunCommand returns the RunCommand field value if set, zero value otherwise.

func (*GitSource) GetRunCommandOk ¶

func (o *GitSource) GetRunCommandOk() (*string, bool)

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

func (*GitSource) GetSha ¶

func (o *GitSource) GetSha() string

GetSha returns the Sha field value if set, zero value otherwise.

func (*GitSource) GetShaOk ¶

func (o *GitSource) GetShaOk() (*string, bool)

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

func (*GitSource) GetTag ¶

func (o *GitSource) GetTag() string

GetTag returns the Tag field value if set, zero value otherwise.

func (*GitSource) GetTagOk ¶

func (o *GitSource) GetTagOk() (*string, bool)

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

func (*GitSource) GetWorkdir ¶

func (o *GitSource) GetWorkdir() string

GetWorkdir returns the Workdir field value if set, zero value otherwise.

func (*GitSource) GetWorkdirOk ¶

func (o *GitSource) GetWorkdirOk() (*string, bool)

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

func (*GitSource) HasBranch ¶

func (o *GitSource) HasBranch() bool

HasBranch returns a boolean if a field has been set.

func (*GitSource) HasBuildCommand ¶

func (o *GitSource) HasBuildCommand() bool

HasBuildCommand returns a boolean if a field has been set.

func (*GitSource) HasBuildpack ¶

func (o *GitSource) HasBuildpack() bool

HasBuildpack returns a boolean if a field has been set.

func (*GitSource) HasDocker ¶

func (o *GitSource) HasDocker() bool

HasDocker returns a boolean if a field has been set.

func (*GitSource) HasNoDeployOnPush ¶

func (o *GitSource) HasNoDeployOnPush() bool

HasNoDeployOnPush returns a boolean if a field has been set.

func (*GitSource) HasRepository ¶

func (o *GitSource) HasRepository() bool

HasRepository returns a boolean if a field has been set.

func (*GitSource) HasRunCommand ¶

func (o *GitSource) HasRunCommand() bool

HasRunCommand returns a boolean if a field has been set.

func (*GitSource) HasSha ¶

func (o *GitSource) HasSha() bool

HasSha returns a boolean if a field has been set.

func (*GitSource) HasTag ¶

func (o *GitSource) HasTag() bool

HasTag returns a boolean if a field has been set.

func (*GitSource) HasWorkdir ¶

func (o *GitSource) HasWorkdir() bool

HasWorkdir returns a boolean if a field has been set.

func (GitSource) MarshalJSON ¶

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

func (*GitSource) SetBranch ¶

func (o *GitSource) SetBranch(v string)

SetBranch gets a reference to the given string and assigns it to the Branch field.

func (*GitSource) SetBuildCommand ¶

func (o *GitSource) SetBuildCommand(v string)

SetBuildCommand gets a reference to the given string and assigns it to the BuildCommand field.

func (*GitSource) SetBuildpack ¶

func (o *GitSource) SetBuildpack(v BuildpackBuilder)

SetBuildpack gets a reference to the given BuildpackBuilder and assigns it to the Buildpack field.

func (*GitSource) SetDocker ¶

func (o *GitSource) SetDocker(v DockerBuilder)

SetDocker gets a reference to the given DockerBuilder and assigns it to the Docker field.

func (*GitSource) SetNoDeployOnPush ¶

func (o *GitSource) SetNoDeployOnPush(v bool)

SetNoDeployOnPush gets a reference to the given bool and assigns it to the NoDeployOnPush field.

func (*GitSource) SetRepository ¶

func (o *GitSource) SetRepository(v string)

SetRepository gets a reference to the given string and assigns it to the Repository field.

func (*GitSource) SetRunCommand ¶

func (o *GitSource) SetRunCommand(v string)

SetRunCommand gets a reference to the given string and assigns it to the RunCommand field.

func (*GitSource) SetSha ¶

func (o *GitSource) SetSha(v string)

SetSha gets a reference to the given string and assigns it to the Sha field.

func (*GitSource) SetTag ¶

func (o *GitSource) SetTag(v string)

SetTag gets a reference to the given string and assigns it to the Tag field.

func (*GitSource) SetWorkdir ¶

func (o *GitSource) SetWorkdir(v string)

SetWorkdir gets a reference to the given string and assigns it to the Workdir field.

type GithubInstallationCallbackRequest ¶

type GithubInstallationCallbackRequest struct {
	InstallationId *string `json:"installation_id,omitempty"`
	SetupAction    *string `json:"setup_action,omitempty"`
	State          *string `json:"state,omitempty"`
}

GithubInstallationCallbackRequest struct for GithubInstallationCallbackRequest

func NewGithubInstallationCallbackRequest ¶

func NewGithubInstallationCallbackRequest() *GithubInstallationCallbackRequest

NewGithubInstallationCallbackRequest instantiates a new GithubInstallationCallbackRequest 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 NewGithubInstallationCallbackRequestWithDefaults ¶

func NewGithubInstallationCallbackRequestWithDefaults() *GithubInstallationCallbackRequest

NewGithubInstallationCallbackRequestWithDefaults instantiates a new GithubInstallationCallbackRequest 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 (*GithubInstallationCallbackRequest) GetInstallationId ¶

func (o *GithubInstallationCallbackRequest) GetInstallationId() string

GetInstallationId returns the InstallationId field value if set, zero value otherwise.

func (*GithubInstallationCallbackRequest) GetInstallationIdOk ¶

func (o *GithubInstallationCallbackRequest) GetInstallationIdOk() (*string, bool)

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

func (*GithubInstallationCallbackRequest) GetSetupAction ¶

func (o *GithubInstallationCallbackRequest) GetSetupAction() string

GetSetupAction returns the SetupAction field value if set, zero value otherwise.

func (*GithubInstallationCallbackRequest) GetSetupActionOk ¶

func (o *GithubInstallationCallbackRequest) GetSetupActionOk() (*string, bool)

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

func (*GithubInstallationCallbackRequest) GetState ¶

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

func (*GithubInstallationCallbackRequest) GetStateOk ¶

func (o *GithubInstallationCallbackRequest) GetStateOk() (*string, 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 (*GithubInstallationCallbackRequest) HasInstallationId ¶

func (o *GithubInstallationCallbackRequest) HasInstallationId() bool

HasInstallationId returns a boolean if a field has been set.

func (*GithubInstallationCallbackRequest) HasSetupAction ¶

func (o *GithubInstallationCallbackRequest) HasSetupAction() bool

HasSetupAction returns a boolean if a field has been set.

func (*GithubInstallationCallbackRequest) HasState ¶

HasState returns a boolean if a field has been set.

func (GithubInstallationCallbackRequest) MarshalJSON ¶

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

func (*GithubInstallationCallbackRequest) SetInstallationId ¶

func (o *GithubInstallationCallbackRequest) SetInstallationId(v string)

SetInstallationId gets a reference to the given string and assigns it to the InstallationId field.

func (*GithubInstallationCallbackRequest) SetSetupAction ¶

func (o *GithubInstallationCallbackRequest) SetSetupAction(v string)

SetSetupAction gets a reference to the given string and assigns it to the SetupAction field.

func (*GithubInstallationCallbackRequest) SetState ¶

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

type GithubInstallationReply ¶

type GithubInstallationReply struct {
	AppName *string `json:"app_name,omitempty"`
	AppId   *string `json:"app_id,omitempty"`
	Url     *string `json:"url,omitempty"`
	State   *string `json:"state,omitempty"`
}

GithubInstallationReply struct for GithubInstallationReply

func NewGithubInstallationReply ¶

func NewGithubInstallationReply() *GithubInstallationReply

NewGithubInstallationReply instantiates a new GithubInstallationReply 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 NewGithubInstallationReplyWithDefaults ¶

func NewGithubInstallationReplyWithDefaults() *GithubInstallationReply

NewGithubInstallationReplyWithDefaults instantiates a new GithubInstallationReply 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 (*GithubInstallationReply) GetAppId ¶

func (o *GithubInstallationReply) GetAppId() string

GetAppId returns the AppId field value if set, zero value otherwise.

func (*GithubInstallationReply) GetAppIdOk ¶

func (o *GithubInstallationReply) GetAppIdOk() (*string, bool)

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

func (*GithubInstallationReply) GetAppName ¶

func (o *GithubInstallationReply) GetAppName() string

GetAppName returns the AppName field value if set, zero value otherwise.

func (*GithubInstallationReply) GetAppNameOk ¶

func (o *GithubInstallationReply) GetAppNameOk() (*string, bool)

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

func (*GithubInstallationReply) GetState ¶

func (o *GithubInstallationReply) GetState() string

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

func (*GithubInstallationReply) GetStateOk ¶

func (o *GithubInstallationReply) GetStateOk() (*string, 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 (*GithubInstallationReply) GetUrl ¶

func (o *GithubInstallationReply) GetUrl() string

GetUrl returns the Url field value if set, zero value otherwise.

func (*GithubInstallationReply) GetUrlOk ¶

func (o *GithubInstallationReply) 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 (*GithubInstallationReply) HasAppId ¶

func (o *GithubInstallationReply) HasAppId() bool

HasAppId returns a boolean if a field has been set.

func (*GithubInstallationReply) HasAppName ¶

func (o *GithubInstallationReply) HasAppName() bool

HasAppName returns a boolean if a field has been set.

func (*GithubInstallationReply) HasState ¶

func (o *GithubInstallationReply) HasState() bool

HasState returns a boolean if a field has been set.

func (*GithubInstallationReply) HasUrl ¶

func (o *GithubInstallationReply) HasUrl() bool

HasUrl returns a boolean if a field has been set.

func (GithubInstallationReply) MarshalJSON ¶

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

func (*GithubInstallationReply) SetAppId ¶

func (o *GithubInstallationReply) SetAppId(v string)

SetAppId gets a reference to the given string and assigns it to the AppId field.

func (*GithubInstallationReply) SetAppName ¶

func (o *GithubInstallationReply) SetAppName(v string)

SetAppName gets a reference to the given string and assigns it to the AppName field.

func (*GithubInstallationReply) SetState ¶

func (o *GithubInstallationReply) SetState(v string)

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

func (*GithubInstallationReply) SetUrl ¶

func (o *GithubInstallationReply) SetUrl(v string)

SetUrl gets a reference to the given string and assigns it to the Url field.

type GithubInstallationRequest ¶

type GithubInstallationRequest struct {
	Metadata *string `json:"metadata,omitempty"`
}

GithubInstallationRequest struct for GithubInstallationRequest

func NewGithubInstallationRequest ¶

func NewGithubInstallationRequest() *GithubInstallationRequest

NewGithubInstallationRequest instantiates a new GithubInstallationRequest 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 NewGithubInstallationRequestWithDefaults ¶

func NewGithubInstallationRequestWithDefaults() *GithubInstallationRequest

NewGithubInstallationRequestWithDefaults instantiates a new GithubInstallationRequest 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 (*GithubInstallationRequest) GetMetadata ¶

func (o *GithubInstallationRequest) GetMetadata() string

GetMetadata returns the Metadata field value if set, zero value otherwise.

func (*GithubInstallationRequest) GetMetadataOk ¶

func (o *GithubInstallationRequest) GetMetadataOk() (*string, bool)

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

func (*GithubInstallationRequest) HasMetadata ¶

func (o *GithubInstallationRequest) HasMetadata() bool

HasMetadata returns a boolean if a field has been set.

func (GithubInstallationRequest) MarshalJSON ¶

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

func (*GithubInstallationRequest) SetMetadata ¶

func (o *GithubInstallationRequest) SetMetadata(v string)

SetMetadata gets a reference to the given string and assigns it to the Metadata field.

type GoogleProtobufAny ¶

type GoogleProtobufAny struct {
	Type *string `json:"@type,omitempty"`
}

GoogleProtobufAny struct for GoogleProtobufAny

func NewGoogleProtobufAny ¶

func NewGoogleProtobufAny() *GoogleProtobufAny

NewGoogleProtobufAny instantiates a new GoogleProtobufAny 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 NewGoogleProtobufAnyWithDefaults ¶

func NewGoogleProtobufAnyWithDefaults() *GoogleProtobufAny

NewGoogleProtobufAnyWithDefaults instantiates a new GoogleProtobufAny 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 (*GoogleProtobufAny) GetType ¶

func (o *GoogleProtobufAny) GetType() string

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

func (*GoogleProtobufAny) GetTypeOk ¶

func (o *GoogleProtobufAny) 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 (*GoogleProtobufAny) HasType ¶

func (o *GoogleProtobufAny) HasType() bool

HasType returns a boolean if a field has been set.

func (GoogleProtobufAny) MarshalJSON ¶

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

func (*GoogleProtobufAny) SetType ¶

func (o *GoogleProtobufAny) SetType(v string)

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

type GoogleProtobufNullValue ¶

type GoogleProtobufNullValue string

GoogleProtobufNullValue `NullValue` is a singleton enumeration to represent the null value for the `Value` type union. The JSON representation for `NullValue` is JSON `null`. - NULL_VALUE: Null value.

const (
	GOOGLEPROTOBUFNULLVALUE_NULL_VALUE GoogleProtobufNullValue = "NULL_VALUE"
)

List of google.protobuf.NullValue

func NewGoogleProtobufNullValueFromValue ¶

func NewGoogleProtobufNullValueFromValue(v string) (*GoogleProtobufNullValue, error)

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

func (GoogleProtobufNullValue) IsValid ¶

func (v GoogleProtobufNullValue) IsValid() bool

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

func (GoogleProtobufNullValue) Ptr ¶

Ptr returns reference to google.protobuf.NullValue value

func (*GoogleProtobufNullValue) UnmarshalJSON ¶

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

type GoogleRpcStatus ¶

type GoogleRpcStatus struct {
	Code    *int32              `json:"code,omitempty"`
	Message *string             `json:"message,omitempty"`
	Details []GoogleProtobufAny `json:"details,omitempty"`
}

GoogleRpcStatus struct for GoogleRpcStatus

func NewGoogleRpcStatus ¶

func NewGoogleRpcStatus() *GoogleRpcStatus

NewGoogleRpcStatus instantiates a new GoogleRpcStatus 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 NewGoogleRpcStatusWithDefaults ¶

func NewGoogleRpcStatusWithDefaults() *GoogleRpcStatus

NewGoogleRpcStatusWithDefaults instantiates a new GoogleRpcStatus 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 (*GoogleRpcStatus) GetCode ¶

func (o *GoogleRpcStatus) GetCode() int32

GetCode returns the Code field value if set, zero value otherwise.

func (*GoogleRpcStatus) GetCodeOk ¶

func (o *GoogleRpcStatus) 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 (*GoogleRpcStatus) GetDetails ¶

func (o *GoogleRpcStatus) GetDetails() []GoogleProtobufAny

GetDetails returns the Details field value if set, zero value otherwise.

func (*GoogleRpcStatus) GetDetailsOk ¶

func (o *GoogleRpcStatus) GetDetailsOk() ([]GoogleProtobufAny, 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 (*GoogleRpcStatus) GetMessage ¶

func (o *GoogleRpcStatus) GetMessage() string

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

func (*GoogleRpcStatus) GetMessageOk ¶

func (o *GoogleRpcStatus) 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 (*GoogleRpcStatus) HasCode ¶

func (o *GoogleRpcStatus) HasCode() bool

HasCode returns a boolean if a field has been set.

func (*GoogleRpcStatus) HasDetails ¶

func (o *GoogleRpcStatus) HasDetails() bool

HasDetails returns a boolean if a field has been set.

func (*GoogleRpcStatus) HasMessage ¶

func (o *GoogleRpcStatus) HasMessage() bool

HasMessage returns a boolean if a field has been set.

func (GoogleRpcStatus) MarshalJSON ¶

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

func (*GoogleRpcStatus) SetCode ¶

func (o *GoogleRpcStatus) SetCode(v int32)

SetCode gets a reference to the given int32 and assigns it to the Code field.

func (*GoogleRpcStatus) SetDetails ¶

func (o *GoogleRpcStatus) SetDetails(v []GoogleProtobufAny)

SetDetails gets a reference to the given []GoogleProtobufAny and assigns it to the Details field.

func (*GoogleRpcStatus) SetMessage ¶

func (o *GoogleRpcStatus) SetMessage(v string)

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

type HTTPHeader ¶

type HTTPHeader struct {
	Key   *string `json:"key,omitempty"`
	Value *string `json:"value,omitempty"`
}

HTTPHeader struct for HTTPHeader

func NewHTTPHeader ¶

func NewHTTPHeader() *HTTPHeader

NewHTTPHeader instantiates a new HTTPHeader 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 NewHTTPHeaderWithDefaults ¶

func NewHTTPHeaderWithDefaults() *HTTPHeader

NewHTTPHeaderWithDefaults instantiates a new HTTPHeader 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 (*HTTPHeader) GetKey ¶

func (o *HTTPHeader) GetKey() string

GetKey returns the Key field value if set, zero value otherwise.

func (*HTTPHeader) GetKeyOk ¶

func (o *HTTPHeader) 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 (*HTTPHeader) GetValue ¶

func (o *HTTPHeader) GetValue() string

GetValue returns the Value field value if set, zero value otherwise.

func (*HTTPHeader) GetValueOk ¶

func (o *HTTPHeader) GetValueOk() (*string, bool)

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

func (*HTTPHeader) HasKey ¶

func (o *HTTPHeader) HasKey() bool

HasKey returns a boolean if a field has been set.

func (*HTTPHeader) HasValue ¶

func (o *HTTPHeader) HasValue() bool

HasValue returns a boolean if a field has been set.

func (HTTPHeader) MarshalJSON ¶

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

func (*HTTPHeader) SetKey ¶

func (o *HTTPHeader) SetKey(v string)

SetKey gets a reference to the given string and assigns it to the Key field.

func (*HTTPHeader) SetValue ¶

func (o *HTTPHeader) SetValue(v string)

SetValue gets a reference to the given string and assigns it to the Value field.

type HTTPHealthCheck ¶

type HTTPHealthCheck struct {
	Port    *int64       `json:"port,omitempty"`
	Path    *string      `json:"path,omitempty"`
	Method  *string      `json:"method,omitempty"`
	Headers []HTTPHeader `json:"headers,omitempty"`
}

HTTPHealthCheck struct for HTTPHealthCheck

func NewHTTPHealthCheck ¶

func NewHTTPHealthCheck() *HTTPHealthCheck

NewHTTPHealthCheck instantiates a new HTTPHealthCheck 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 NewHTTPHealthCheckWithDefaults ¶

func NewHTTPHealthCheckWithDefaults() *HTTPHealthCheck

NewHTTPHealthCheckWithDefaults instantiates a new HTTPHealthCheck 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 (*HTTPHealthCheck) GetHeaders ¶

func (o *HTTPHealthCheck) GetHeaders() []HTTPHeader

GetHeaders returns the Headers field value if set, zero value otherwise.

func (*HTTPHealthCheck) GetHeadersOk ¶

func (o *HTTPHealthCheck) GetHeadersOk() ([]HTTPHeader, bool)

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

func (*HTTPHealthCheck) GetMethod ¶

func (o *HTTPHealthCheck) GetMethod() string

GetMethod returns the Method field value if set, zero value otherwise.

func (*HTTPHealthCheck) GetMethodOk ¶

func (o *HTTPHealthCheck) GetMethodOk() (*string, bool)

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

func (*HTTPHealthCheck) GetPath ¶

func (o *HTTPHealthCheck) GetPath() string

GetPath returns the Path field value if set, zero value otherwise.

func (*HTTPHealthCheck) GetPathOk ¶

func (o *HTTPHealthCheck) GetPathOk() (*string, bool)

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

func (*HTTPHealthCheck) GetPort ¶

func (o *HTTPHealthCheck) GetPort() int64

GetPort returns the Port field value if set, zero value otherwise.

func (*HTTPHealthCheck) GetPortOk ¶

func (o *HTTPHealthCheck) GetPortOk() (*int64, 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 (*HTTPHealthCheck) HasHeaders ¶

func (o *HTTPHealthCheck) HasHeaders() bool

HasHeaders returns a boolean if a field has been set.

func (*HTTPHealthCheck) HasMethod ¶

func (o *HTTPHealthCheck) HasMethod() bool

HasMethod returns a boolean if a field has been set.

func (*HTTPHealthCheck) HasPath ¶

func (o *HTTPHealthCheck) HasPath() bool

HasPath returns a boolean if a field has been set.

func (*HTTPHealthCheck) HasPort ¶

func (o *HTTPHealthCheck) HasPort() bool

HasPort returns a boolean if a field has been set.

func (HTTPHealthCheck) MarshalJSON ¶

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

func (*HTTPHealthCheck) SetHeaders ¶

func (o *HTTPHealthCheck) SetHeaders(v []HTTPHeader)

SetHeaders gets a reference to the given []HTTPHeader and assigns it to the Headers field.

func (*HTTPHealthCheck) SetMethod ¶

func (o *HTTPHealthCheck) SetMethod(v string)

SetMethod gets a reference to the given string and assigns it to the Method field.

func (*HTTPHealthCheck) SetPath ¶

func (o *HTTPHealthCheck) SetPath(v string)

SetPath gets a reference to the given string and assigns it to the Path field.

func (*HTTPHealthCheck) SetPort ¶

func (o *HTTPHealthCheck) SetPort(v int64)

SetPort gets a reference to the given int64 and assigns it to the Port field.

type HasUnpaidInvoicesReply ¶

type HasUnpaidInvoicesReply struct {
	HasUnpaidInvoices *bool `json:"has_unpaid_invoices,omitempty"`
}

HasUnpaidInvoicesReply struct for HasUnpaidInvoicesReply

func NewHasUnpaidInvoicesReply ¶

func NewHasUnpaidInvoicesReply() *HasUnpaidInvoicesReply

NewHasUnpaidInvoicesReply instantiates a new HasUnpaidInvoicesReply 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 NewHasUnpaidInvoicesReplyWithDefaults ¶

func NewHasUnpaidInvoicesReplyWithDefaults() *HasUnpaidInvoicesReply

NewHasUnpaidInvoicesReplyWithDefaults instantiates a new HasUnpaidInvoicesReply 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 (*HasUnpaidInvoicesReply) GetHasUnpaidInvoices ¶

func (o *HasUnpaidInvoicesReply) GetHasUnpaidInvoices() bool

GetHasUnpaidInvoices returns the HasUnpaidInvoices field value if set, zero value otherwise.

func (*HasUnpaidInvoicesReply) GetHasUnpaidInvoicesOk ¶

func (o *HasUnpaidInvoicesReply) GetHasUnpaidInvoicesOk() (*bool, bool)

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

func (*HasUnpaidInvoicesReply) HasHasUnpaidInvoices ¶

func (o *HasUnpaidInvoicesReply) HasHasUnpaidInvoices() bool

HasHasUnpaidInvoices returns a boolean if a field has been set.

func (HasUnpaidInvoicesReply) MarshalJSON ¶

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

func (*HasUnpaidInvoicesReply) SetHasUnpaidInvoices ¶

func (o *HasUnpaidInvoicesReply) SetHasUnpaidInvoices(v bool)

SetHasUnpaidInvoices gets a reference to the given bool and assigns it to the HasUnpaidInvoices field.

type Instance ¶

type Instance struct {
	Id                   *string         `json:"id,omitempty"`
	CreatedAt            *time.Time      `json:"created_at,omitempty"`
	UpdatedAt            *time.Time      `json:"updated_at,omitempty"`
	OrganizationId       *string         `json:"organization_id,omitempty"`
	AppId                *string         `json:"app_id,omitempty"`
	ServiceId            *string         `json:"service_id,omitempty"`
	RegionalDeploymentId *string         `json:"regional_deployment_id,omitempty"`
	AllocationId         *string         `json:"allocation_id,omitempty"`
	Region               *string         `json:"region,omitempty"`
	Datacenter           *string         `json:"datacenter,omitempty"`
	Hypervisor           *string         `json:"hypervisor,omitempty"`
	Status               *InstanceStatus `json:"status,omitempty"`
	Messages             []string        `json:"messages,omitempty"`
	StartedAt            *time.Time      `json:"started_at,omitempty"`
	SucceededAt          *time.Time      `json:"succeeded_at,omitempty"`
	TerminatedAt         *time.Time      `json:"terminated_at,omitempty"`
	// WARNING: Please don't use the following attribute. Koyeb doesn't guarantee backwards compatible breaking change and reserve the right to completely drop it without notice. USE AT YOUR OWN RISK.
	XyzDeploymentId *string `json:"xyz_deployment_id,omitempty"`
}

Instance struct for Instance

func NewInstance ¶

func NewInstance() *Instance

NewInstance instantiates a new Instance 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 NewInstanceWithDefaults ¶

func NewInstanceWithDefaults() *Instance

NewInstanceWithDefaults instantiates a new Instance 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 (*Instance) GetAllocationId ¶

func (o *Instance) GetAllocationId() string

GetAllocationId returns the AllocationId field value if set, zero value otherwise.

func (*Instance) GetAllocationIdOk ¶

func (o *Instance) GetAllocationIdOk() (*string, bool)

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

func (*Instance) GetAppId ¶

func (o *Instance) GetAppId() string

GetAppId returns the AppId field value if set, zero value otherwise.

func (*Instance) GetAppIdOk ¶

func (o *Instance) GetAppIdOk() (*string, bool)

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

func (*Instance) GetCreatedAt ¶

func (o *Instance) GetCreatedAt() time.Time

GetCreatedAt returns the CreatedAt field value if set, zero value otherwise.

func (*Instance) GetCreatedAtOk ¶

func (o *Instance) GetCreatedAtOk() (*time.Time, bool)

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

func (*Instance) GetDatacenter ¶

func (o *Instance) GetDatacenter() string

GetDatacenter returns the Datacenter field value if set, zero value otherwise.

func (*Instance) GetDatacenterOk ¶

func (o *Instance) GetDatacenterOk() (*string, bool)

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

func (*Instance) GetHypervisor ¶

func (o *Instance) GetHypervisor() string

GetHypervisor returns the Hypervisor field value if set, zero value otherwise.

func (*Instance) GetHypervisorOk ¶

func (o *Instance) GetHypervisorOk() (*string, bool)

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

func (*Instance) GetId ¶

func (o *Instance) GetId() string

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

func (*Instance) GetIdOk ¶

func (o *Instance) 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 (*Instance) GetMessages ¶

func (o *Instance) GetMessages() []string

GetMessages returns the Messages field value if set, zero value otherwise.

func (*Instance) GetMessagesOk ¶

func (o *Instance) GetMessagesOk() ([]string, bool)

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

func (*Instance) GetOrganizationId ¶

func (o *Instance) GetOrganizationId() string

GetOrganizationId returns the OrganizationId field value if set, zero value otherwise.

func (*Instance) GetOrganizationIdOk ¶

func (o *Instance) GetOrganizationIdOk() (*string, bool)

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

func (*Instance) GetRegion ¶

func (o *Instance) GetRegion() string

GetRegion returns the Region field value if set, zero value otherwise.

func (*Instance) GetRegionOk ¶

func (o *Instance) GetRegionOk() (*string, bool)

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

func (*Instance) GetRegionalDeploymentId ¶

func (o *Instance) GetRegionalDeploymentId() string

GetRegionalDeploymentId returns the RegionalDeploymentId field value if set, zero value otherwise.

func (*Instance) GetRegionalDeploymentIdOk ¶

func (o *Instance) GetRegionalDeploymentIdOk() (*string, bool)

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

func (*Instance) GetServiceId ¶

func (o *Instance) GetServiceId() string

GetServiceId returns the ServiceId field value if set, zero value otherwise.

func (*Instance) GetServiceIdOk ¶

func (o *Instance) GetServiceIdOk() (*string, bool)

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

func (*Instance) GetStartedAt ¶

func (o *Instance) GetStartedAt() time.Time

GetStartedAt returns the StartedAt field value if set, zero value otherwise.

func (*Instance) GetStartedAtOk ¶

func (o *Instance) GetStartedAtOk() (*time.Time, bool)

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

func (*Instance) GetStatus ¶

func (o *Instance) GetStatus() InstanceStatus

GetStatus returns the Status field value if set, zero value otherwise.

func (*Instance) GetStatusOk ¶

func (o *Instance) GetStatusOk() (*InstanceStatus, 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 (*Instance) GetSucceededAt ¶

func (o *Instance) GetSucceededAt() time.Time

GetSucceededAt returns the SucceededAt field value if set, zero value otherwise.

func (*Instance) GetSucceededAtOk ¶

func (o *Instance) GetSucceededAtOk() (*time.Time, bool)

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

func (*Instance) GetTerminatedAt ¶

func (o *Instance) GetTerminatedAt() time.Time

GetTerminatedAt returns the TerminatedAt field value if set, zero value otherwise.

func (*Instance) GetTerminatedAtOk ¶

func (o *Instance) GetTerminatedAtOk() (*time.Time, bool)

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

func (*Instance) GetUpdatedAt ¶

func (o *Instance) GetUpdatedAt() time.Time

GetUpdatedAt returns the UpdatedAt field value if set, zero value otherwise.

func (*Instance) GetUpdatedAtOk ¶

func (o *Instance) GetUpdatedAtOk() (*time.Time, bool)

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

func (*Instance) GetXyzDeploymentId ¶

func (o *Instance) GetXyzDeploymentId() string

GetXyzDeploymentId returns the XyzDeploymentId field value if set, zero value otherwise.

func (*Instance) GetXyzDeploymentIdOk ¶

func (o *Instance) GetXyzDeploymentIdOk() (*string, bool)

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

func (*Instance) HasAllocationId ¶

func (o *Instance) HasAllocationId() bool

HasAllocationId returns a boolean if a field has been set.

func (*Instance) HasAppId ¶

func (o *Instance) HasAppId() bool

HasAppId returns a boolean if a field has been set.

func (*Instance) HasCreatedAt ¶

func (o *Instance) HasCreatedAt() bool

HasCreatedAt returns a boolean if a field has been set.

func (*Instance) HasDatacenter ¶

func (o *Instance) HasDatacenter() bool

HasDatacenter returns a boolean if a field has been set.

func (*Instance) HasHypervisor ¶

func (o *Instance) HasHypervisor() bool

HasHypervisor returns a boolean if a field has been set.

func (*Instance) HasId ¶

func (o *Instance) HasId() bool

HasId returns a boolean if a field has been set.

func (*Instance) HasMessages ¶

func (o *Instance) HasMessages() bool

HasMessages returns a boolean if a field has been set.

func (*Instance) HasOrganizationId ¶

func (o *Instance) HasOrganizationId() bool

HasOrganizationId returns a boolean if a field has been set.

func (*Instance) HasRegion ¶

func (o *Instance) HasRegion() bool

HasRegion returns a boolean if a field has been set.

func (*Instance) HasRegionalDeploymentId ¶

func (o *Instance) HasRegionalDeploymentId() bool

HasRegionalDeploymentId returns a boolean if a field has been set.

func (*Instance) HasServiceId ¶

func (o *Instance) HasServiceId() bool

HasServiceId returns a boolean if a field has been set.

func (*Instance) HasStartedAt ¶

func (o *Instance) HasStartedAt() bool

HasStartedAt returns a boolean if a field has been set.

func (*Instance) HasStatus ¶

func (o *Instance) HasStatus() bool

HasStatus returns a boolean if a field has been set.

func (*Instance) HasSucceededAt ¶

func (o *Instance) HasSucceededAt() bool

HasSucceededAt returns a boolean if a field has been set.

func (*Instance) HasTerminatedAt ¶

func (o *Instance) HasTerminatedAt() bool

HasTerminatedAt returns a boolean if a field has been set.

func (*Instance) HasUpdatedAt ¶

func (o *Instance) HasUpdatedAt() bool

HasUpdatedAt returns a boolean if a field has been set.

func (*Instance) HasXyzDeploymentId ¶

func (o *Instance) HasXyzDeploymentId() bool

HasXyzDeploymentId returns a boolean if a field has been set.

func (Instance) MarshalJSON ¶

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

func (*Instance) SetAllocationId ¶

func (o *Instance) SetAllocationId(v string)

SetAllocationId gets a reference to the given string and assigns it to the AllocationId field.

func (*Instance) SetAppId ¶

func (o *Instance) SetAppId(v string)

SetAppId gets a reference to the given string and assigns it to the AppId field.

func (*Instance) SetCreatedAt ¶

func (o *Instance) SetCreatedAt(v time.Time)

SetCreatedAt gets a reference to the given time.Time and assigns it to the CreatedAt field.

func (*Instance) SetDatacenter ¶

func (o *Instance) SetDatacenter(v string)

SetDatacenter gets a reference to the given string and assigns it to the Datacenter field.

func (*Instance) SetHypervisor ¶

func (o *Instance) SetHypervisor(v string)

SetHypervisor gets a reference to the given string and assigns it to the Hypervisor field.

func (*Instance) SetId ¶

func (o *Instance) SetId(v string)

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

func (*Instance) SetMessages ¶

func (o *Instance) SetMessages(v []string)

SetMessages gets a reference to the given []string and assigns it to the Messages field.

func (*Instance) SetOrganizationId ¶

func (o *Instance) SetOrganizationId(v string)

SetOrganizationId gets a reference to the given string and assigns it to the OrganizationId field.

func (*Instance) SetRegion ¶

func (o *Instance) SetRegion(v string)

SetRegion gets a reference to the given string and assigns it to the Region field.

func (*Instance) SetRegionalDeploymentId ¶

func (o *Instance) SetRegionalDeploymentId(v string)

SetRegionalDeploymentId gets a reference to the given string and assigns it to the RegionalDeploymentId field.

func (*Instance) SetServiceId ¶

func (o *Instance) SetServiceId(v string)

SetServiceId gets a reference to the given string and assigns it to the ServiceId field.

func (*Instance) SetStartedAt ¶

func (o *Instance) SetStartedAt(v time.Time)

SetStartedAt gets a reference to the given time.Time and assigns it to the StartedAt field.

func (*Instance) SetStatus ¶

func (o *Instance) SetStatus(v InstanceStatus)

SetStatus gets a reference to the given InstanceStatus and assigns it to the Status field.

func (*Instance) SetSucceededAt ¶

func (o *Instance) SetSucceededAt(v time.Time)

SetSucceededAt gets a reference to the given time.Time and assigns it to the SucceededAt field.

func (*Instance) SetTerminatedAt ¶

func (o *Instance) SetTerminatedAt(v time.Time)

SetTerminatedAt gets a reference to the given time.Time and assigns it to the TerminatedAt field.

func (*Instance) SetUpdatedAt ¶

func (o *Instance) SetUpdatedAt(v time.Time)

SetUpdatedAt gets a reference to the given time.Time and assigns it to the UpdatedAt field.

func (*Instance) SetXyzDeploymentId ¶

func (o *Instance) SetXyzDeploymentId(v string)

SetXyzDeploymentId gets a reference to the given string and assigns it to the XyzDeploymentId field.

type InstanceEvent ¶

type InstanceEvent struct {
	Id             *string                `json:"id,omitempty"`
	When           *time.Time             `json:"when,omitempty"`
	OrganizationId *string                `json:"organization_id,omitempty"`
	InstanceId     *string                `json:"instance_id,omitempty"`
	Type           *string                `json:"type,omitempty"`
	Message        *string                `json:"message,omitempty"`
	Metadata       map[string]interface{} `json:"metadata,omitempty"`
}

InstanceEvent struct for InstanceEvent

func NewInstanceEvent ¶

func NewInstanceEvent() *InstanceEvent

NewInstanceEvent instantiates a new InstanceEvent 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 NewInstanceEventWithDefaults ¶

func NewInstanceEventWithDefaults() *InstanceEvent

NewInstanceEventWithDefaults instantiates a new InstanceEvent 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 (*InstanceEvent) GetId ¶

func (o *InstanceEvent) GetId() string

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

func (*InstanceEvent) GetIdOk ¶

func (o *InstanceEvent) 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 (*InstanceEvent) GetInstanceId ¶

func (o *InstanceEvent) GetInstanceId() string

GetInstanceId returns the InstanceId field value if set, zero value otherwise.

func (*InstanceEvent) GetInstanceIdOk ¶

func (o *InstanceEvent) GetInstanceIdOk() (*string, bool)

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

func (*InstanceEvent) GetMessage ¶

func (o *InstanceEvent) GetMessage() string

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

func (*InstanceEvent) GetMessageOk ¶

func (o *InstanceEvent) 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 (*InstanceEvent) GetMetadata ¶

func (o *InstanceEvent) GetMetadata() map[string]interface{}

GetMetadata returns the Metadata field value if set, zero value otherwise.

func (*InstanceEvent) GetMetadataOk ¶

func (o *InstanceEvent) GetMetadataOk() (map[string]interface{}, bool)

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

func (*InstanceEvent) GetOrganizationId ¶

func (o *InstanceEvent) GetOrganizationId() string

GetOrganizationId returns the OrganizationId field value if set, zero value otherwise.

func (*InstanceEvent) GetOrganizationIdOk ¶

func (o *InstanceEvent) GetOrganizationIdOk() (*string, bool)

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

func (*InstanceEvent) GetType ¶

func (o *InstanceEvent) GetType() string

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

func (*InstanceEvent) GetTypeOk ¶

func (o *InstanceEvent) 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 (*InstanceEvent) GetWhen ¶

func (o *InstanceEvent) GetWhen() time.Time

GetWhen returns the When field value if set, zero value otherwise.

func (*InstanceEvent) GetWhenOk ¶

func (o *InstanceEvent) GetWhenOk() (*time.Time, bool)

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

func (*InstanceEvent) HasId ¶

func (o *InstanceEvent) HasId() bool

HasId returns a boolean if a field has been set.

func (*InstanceEvent) HasInstanceId ¶

func (o *InstanceEvent) HasInstanceId() bool

HasInstanceId returns a boolean if a field has been set.

func (*InstanceEvent) HasMessage ¶

func (o *InstanceEvent) HasMessage() bool

HasMessage returns a boolean if a field has been set.

func (*InstanceEvent) HasMetadata ¶

func (o *InstanceEvent) HasMetadata() bool

HasMetadata returns a boolean if a field has been set.

func (*InstanceEvent) HasOrganizationId ¶

func (o *InstanceEvent) HasOrganizationId() bool

HasOrganizationId returns a boolean if a field has been set.

func (*InstanceEvent) HasType ¶

func (o *InstanceEvent) HasType() bool

HasType returns a boolean if a field has been set.

func (*InstanceEvent) HasWhen ¶

func (o *InstanceEvent) HasWhen() bool

HasWhen returns a boolean if a field has been set.

func (InstanceEvent) MarshalJSON ¶

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

func (*InstanceEvent) SetId ¶

func (o *InstanceEvent) SetId(v string)

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

func (*InstanceEvent) SetInstanceId ¶

func (o *InstanceEvent) SetInstanceId(v string)

SetInstanceId gets a reference to the given string and assigns it to the InstanceId field.

func (*InstanceEvent) SetMessage ¶

func (o *InstanceEvent) SetMessage(v string)

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

func (*InstanceEvent) SetMetadata ¶

func (o *InstanceEvent) SetMetadata(v map[string]interface{})

SetMetadata gets a reference to the given map[string]interface{} and assigns it to the Metadata field.

func (*InstanceEvent) SetOrganizationId ¶

func (o *InstanceEvent) SetOrganizationId(v string)

SetOrganizationId gets a reference to the given string and assigns it to the OrganizationId field.

func (*InstanceEvent) SetType ¶

func (o *InstanceEvent) SetType(v string)

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

func (*InstanceEvent) SetWhen ¶

func (o *InstanceEvent) SetWhen(v time.Time)

SetWhen gets a reference to the given time.Time and assigns it to the When field.

type InstanceListItem ¶

type InstanceListItem struct {
	Id                   *string         `json:"id,omitempty"`
	CreatedAt            *time.Time      `json:"created_at,omitempty"`
	UpdatedAt            *time.Time      `json:"updated_at,omitempty"`
	OrganizationId       *string         `json:"organization_id,omitempty"`
	AppId                *string         `json:"app_id,omitempty"`
	ServiceId            *string         `json:"service_id,omitempty"`
	RegionalDeploymentId *string         `json:"regional_deployment_id,omitempty"`
	AllocationId         *string         `json:"allocation_id,omitempty"`
	Region               *string         `json:"region,omitempty"`
	Datacenter           *string         `json:"datacenter,omitempty"`
	Status               *InstanceStatus `json:"status,omitempty"`
	Messages             []string        `json:"messages,omitempty"`
	// WARNING: Please don't use the following attribute. Koyeb doesn't guarantee backwards compatible breaking change and reserve the right to completely drop it without notice. USE AT YOUR OWN RISK.
	XyzDeploymentId *string `json:"xyz_deployment_id,omitempty"`
}

InstanceListItem struct for InstanceListItem

func NewInstanceListItem ¶

func NewInstanceListItem() *InstanceListItem

NewInstanceListItem instantiates a new InstanceListItem 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 NewInstanceListItemWithDefaults ¶

func NewInstanceListItemWithDefaults() *InstanceListItem

NewInstanceListItemWithDefaults instantiates a new InstanceListItem 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 (*InstanceListItem) GetAllocationId ¶

func (o *InstanceListItem) GetAllocationId() string

GetAllocationId returns the AllocationId field value if set, zero value otherwise.

func (*InstanceListItem) GetAllocationIdOk ¶

func (o *InstanceListItem) GetAllocationIdOk() (*string, bool)

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

func (*InstanceListItem) GetAppId ¶

func (o *InstanceListItem) GetAppId() string

GetAppId returns the AppId field value if set, zero value otherwise.

func (*InstanceListItem) GetAppIdOk ¶

func (o *InstanceListItem) GetAppIdOk() (*string, bool)

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

func (*InstanceListItem) GetCreatedAt ¶

func (o *InstanceListItem) GetCreatedAt() time.Time

GetCreatedAt returns the CreatedAt field value if set, zero value otherwise.

func (*InstanceListItem) GetCreatedAtOk ¶

func (o *InstanceListItem) GetCreatedAtOk() (*time.Time, bool)

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

func (*InstanceListItem) GetDatacenter ¶

func (o *InstanceListItem) GetDatacenter() string

GetDatacenter returns the Datacenter field value if set, zero value otherwise.

func (*InstanceListItem) GetDatacenterOk ¶

func (o *InstanceListItem) GetDatacenterOk() (*string, bool)

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

func (*InstanceListItem) GetId ¶

func (o *InstanceListItem) GetId() string

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

func (*InstanceListItem) GetIdOk ¶

func (o *InstanceListItem) 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 (*InstanceListItem) GetMessages ¶

func (o *InstanceListItem) GetMessages() []string

GetMessages returns the Messages field value if set, zero value otherwise.

func (*InstanceListItem) GetMessagesOk ¶

func (o *InstanceListItem) GetMessagesOk() ([]string, bool)

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

func (*InstanceListItem) GetOrganizationId ¶

func (o *InstanceListItem) GetOrganizationId() string

GetOrganizationId returns the OrganizationId field value if set, zero value otherwise.

func (*InstanceListItem) GetOrganizationIdOk ¶

func (o *InstanceListItem) GetOrganizationIdOk() (*string, bool)

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

func (*InstanceListItem) GetRegion ¶

func (o *InstanceListItem) GetRegion() string

GetRegion returns the Region field value if set, zero value otherwise.

func (*InstanceListItem) GetRegionOk ¶

func (o *InstanceListItem) GetRegionOk() (*string, bool)

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

func (*InstanceListItem) GetRegionalDeploymentId ¶

func (o *InstanceListItem) GetRegionalDeploymentId() string

GetRegionalDeploymentId returns the RegionalDeploymentId field value if set, zero value otherwise.

func (*InstanceListItem) GetRegionalDeploymentIdOk ¶

func (o *InstanceListItem) GetRegionalDeploymentIdOk() (*string, bool)

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

func (*InstanceListItem) GetServiceId ¶

func (o *InstanceListItem) GetServiceId() string

GetServiceId returns the ServiceId field value if set, zero value otherwise.

func (*InstanceListItem) GetServiceIdOk ¶

func (o *InstanceListItem) GetServiceIdOk() (*string, bool)

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

func (*InstanceListItem) GetStatus ¶

func (o *InstanceListItem) GetStatus() InstanceStatus

GetStatus returns the Status field value if set, zero value otherwise.

func (*InstanceListItem) GetStatusOk ¶

func (o *InstanceListItem) GetStatusOk() (*InstanceStatus, 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 (*InstanceListItem) GetUpdatedAt ¶

func (o *InstanceListItem) GetUpdatedAt() time.Time

GetUpdatedAt returns the UpdatedAt field value if set, zero value otherwise.

func (*InstanceListItem) GetUpdatedAtOk ¶

func (o *InstanceListItem) GetUpdatedAtOk() (*time.Time, bool)

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

func (*InstanceListItem) GetXyzDeploymentId ¶

func (o *InstanceListItem) GetXyzDeploymentId() string

GetXyzDeploymentId returns the XyzDeploymentId field value if set, zero value otherwise.

func (*InstanceListItem) GetXyzDeploymentIdOk ¶

func (o *InstanceListItem) GetXyzDeploymentIdOk() (*string, bool)

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

func (*InstanceListItem) HasAllocationId ¶

func (o *InstanceListItem) HasAllocationId() bool

HasAllocationId returns a boolean if a field has been set.

func (*InstanceListItem) HasAppId ¶

func (o *InstanceListItem) HasAppId() bool

HasAppId returns a boolean if a field has been set.

func (*InstanceListItem) HasCreatedAt ¶

func (o *InstanceListItem) HasCreatedAt() bool

HasCreatedAt returns a boolean if a field has been set.

func (*InstanceListItem) HasDatacenter ¶

func (o *InstanceListItem) HasDatacenter() bool

HasDatacenter returns a boolean if a field has been set.

func (*InstanceListItem) HasId ¶

func (o *InstanceListItem) HasId() bool

HasId returns a boolean if a field has been set.

func (*InstanceListItem) HasMessages ¶

func (o *InstanceListItem) HasMessages() bool

HasMessages returns a boolean if a field has been set.

func (*InstanceListItem) HasOrganizationId ¶

func (o *InstanceListItem) HasOrganizationId() bool

HasOrganizationId returns a boolean if a field has been set.

func (*InstanceListItem) HasRegion ¶

func (o *InstanceListItem) HasRegion() bool

HasRegion returns a boolean if a field has been set.

func (*InstanceListItem) HasRegionalDeploymentId ¶

func (o *InstanceListItem) HasRegionalDeploymentId() bool

HasRegionalDeploymentId returns a boolean if a field has been set.

func (*InstanceListItem) HasServiceId ¶

func (o *InstanceListItem) HasServiceId() bool

HasServiceId returns a boolean if a field has been set.

func (*InstanceListItem) HasStatus ¶

func (o *InstanceListItem) HasStatus() bool

HasStatus returns a boolean if a field has been set.

func (*InstanceListItem) HasUpdatedAt ¶

func (o *InstanceListItem) HasUpdatedAt() bool

HasUpdatedAt returns a boolean if a field has been set.

func (*InstanceListItem) HasXyzDeploymentId ¶

func (o *InstanceListItem) HasXyzDeploymentId() bool

HasXyzDeploymentId returns a boolean if a field has been set.

func (InstanceListItem) MarshalJSON ¶

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

func (*InstanceListItem) SetAllocationId ¶

func (o *InstanceListItem) SetAllocationId(v string)

SetAllocationId gets a reference to the given string and assigns it to the AllocationId field.

func (*InstanceListItem) SetAppId ¶

func (o *InstanceListItem) SetAppId(v string)

SetAppId gets a reference to the given string and assigns it to the AppId field.

func (*InstanceListItem) SetCreatedAt ¶

func (o *InstanceListItem) SetCreatedAt(v time.Time)

SetCreatedAt gets a reference to the given time.Time and assigns it to the CreatedAt field.

func (*InstanceListItem) SetDatacenter ¶

func (o *InstanceListItem) SetDatacenter(v string)

SetDatacenter gets a reference to the given string and assigns it to the Datacenter field.

func (*InstanceListItem) SetId ¶

func (o *InstanceListItem) SetId(v string)

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

func (*InstanceListItem) SetMessages ¶

func (o *InstanceListItem) SetMessages(v []string)

SetMessages gets a reference to the given []string and assigns it to the Messages field.

func (*InstanceListItem) SetOrganizationId ¶

func (o *InstanceListItem) SetOrganizationId(v string)

SetOrganizationId gets a reference to the given string and assigns it to the OrganizationId field.

func (*InstanceListItem) SetRegion ¶

func (o *InstanceListItem) SetRegion(v string)

SetRegion gets a reference to the given string and assigns it to the Region field.

func (*InstanceListItem) SetRegionalDeploymentId ¶

func (o *InstanceListItem) SetRegionalDeploymentId(v string)

SetRegionalDeploymentId gets a reference to the given string and assigns it to the RegionalDeploymentId field.

func (*InstanceListItem) SetServiceId ¶

func (o *InstanceListItem) SetServiceId(v string)

SetServiceId gets a reference to the given string and assigns it to the ServiceId field.

func (*InstanceListItem) SetStatus ¶

func (o *InstanceListItem) SetStatus(v InstanceStatus)

SetStatus gets a reference to the given InstanceStatus and assigns it to the Status field.

func (*InstanceListItem) SetUpdatedAt ¶

func (o *InstanceListItem) SetUpdatedAt(v time.Time)

SetUpdatedAt gets a reference to the given time.Time and assigns it to the UpdatedAt field.

func (*InstanceListItem) SetXyzDeploymentId ¶

func (o *InstanceListItem) SetXyzDeploymentId(v string)

SetXyzDeploymentId gets a reference to the given string and assigns it to the XyzDeploymentId field.

type InstanceStatus ¶

type InstanceStatus string

InstanceStatus the model 'InstanceStatus'

const (
	INSTANCESTATUS_ALLOCATING InstanceStatus = "ALLOCATING"
	INSTANCESTATUS_STARTING   InstanceStatus = "STARTING"
	INSTANCESTATUS_HEALTHY    InstanceStatus = "HEALTHY"
	INSTANCESTATUS_UNHEALTHY  InstanceStatus = "UNHEALTHY"
	INSTANCESTATUS_STOPPING   InstanceStatus = "STOPPING"
	INSTANCESTATUS_STOPPED    InstanceStatus = "STOPPED"
	INSTANCESTATUS_ERROR      InstanceStatus = "ERROR"
	INSTANCESTATUS_SLEEPING   InstanceStatus = "SLEEPING"
)

List of Instance.Status

func NewInstanceStatusFromValue ¶

func NewInstanceStatusFromValue(v string) (*InstanceStatus, error)

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

func (InstanceStatus) IsValid ¶

func (v InstanceStatus) IsValid() bool

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

func (InstanceStatus) Ptr ¶

func (v InstanceStatus) Ptr() *InstanceStatus

Ptr returns reference to Instance.Status value

func (*InstanceStatus) UnmarshalJSON ¶

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

type InstanceUsage ¶

type InstanceUsage struct {
	DurationSeconds *int64 `json:"duration_seconds,omitempty"`
}

InstanceUsage struct for InstanceUsage

func NewInstanceUsage ¶

func NewInstanceUsage() *InstanceUsage

NewInstanceUsage instantiates a new InstanceUsage 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 NewInstanceUsageWithDefaults ¶

func NewInstanceUsageWithDefaults() *InstanceUsage

NewInstanceUsageWithDefaults instantiates a new InstanceUsage 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 (*InstanceUsage) GetDurationSeconds ¶

func (o *InstanceUsage) GetDurationSeconds() int64

GetDurationSeconds returns the DurationSeconds field value if set, zero value otherwise.

func (*InstanceUsage) GetDurationSecondsOk ¶

func (o *InstanceUsage) GetDurationSecondsOk() (*int64, bool)

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

func (*InstanceUsage) HasDurationSeconds ¶

func (o *InstanceUsage) HasDurationSeconds() bool

HasDurationSeconds returns a boolean if a field has been set.

func (InstanceUsage) MarshalJSON ¶

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

func (*InstanceUsage) SetDurationSeconds ¶

func (o *InstanceUsage) SetDurationSeconds(v int64)

SetDurationSeconds gets a reference to the given int64 and assigns it to the DurationSeconds field.

type InstancesApi ¶

type InstancesApi interface {

	/*
		ExecCommand Exec Command

		This endpoint opens a websocket. Once open, all frames going through the websocket should be formatted in JSON. Input frames should match the format specified below. Output frames will match the response schema.

		@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
		@return ApiExecCommandRequest
	*/
	ExecCommand(ctx context.Context) ApiExecCommandRequest

	// ExecCommandExecute executes the request
	//  @return StreamResultOfExecCommandReply
	ExecCommandExecute(r ApiExecCommandRequest) (*StreamResultOfExecCommandReply, *http.Response, error)

	/*
		GetInstance Get Instance

		@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
		@param id The id of the instance
		@return ApiGetInstanceRequest
	*/
	GetInstance(ctx context.Context, id string) ApiGetInstanceRequest

	// GetInstanceExecute executes the request
	//  @return GetInstanceReply
	GetInstanceExecute(r ApiGetInstanceRequest) (*GetInstanceReply, *http.Response, error)

	/*
		ListInstanceEvents List Instance events

		@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
		@return ApiListInstanceEventsRequest
	*/
	ListInstanceEvents(ctx context.Context) ApiListInstanceEventsRequest

	// ListInstanceEventsExecute executes the request
	//  @return ListInstanceEventsReply
	ListInstanceEventsExecute(r ApiListInstanceEventsRequest) (*ListInstanceEventsReply, *http.Response, error)

	/*
		ListInstances List Instances

		@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
		@return ApiListInstancesRequest
	*/
	ListInstances(ctx context.Context) ApiListInstancesRequest

	// ListInstancesExecute executes the request
	//  @return ListInstancesReply
	ListInstancesExecute(r ApiListInstancesRequest) (*ListInstancesReply, *http.Response, error)
}

type InstancesApiService ¶

type InstancesApiService service

InstancesApiService InstancesApi service

func (*InstancesApiService) ExecCommand ¶

ExecCommand Exec Command

This endpoint opens a websocket. Once open, all frames going through the websocket should be formatted in JSON. Input frames should match the format specified below. Output frames will match the response schema.

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@return ApiExecCommandRequest

func (*InstancesApiService) ExecCommandExecute ¶

Execute executes the request

@return StreamResultOfExecCommandReply

func (*InstancesApiService) GetInstance ¶

GetInstance Get Instance

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param id The id of the instance
@return ApiGetInstanceRequest

func (*InstancesApiService) GetInstanceExecute ¶

Execute executes the request

@return GetInstanceReply

func (*InstancesApiService) ListInstanceEvents ¶

ListInstanceEvents List Instance events

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@return ApiListInstanceEventsRequest

func (*InstancesApiService) ListInstanceEventsExecute ¶

Execute executes the request

@return ListInstanceEventsReply

func (*InstancesApiService) ListInstances ¶

ListInstances List Instances

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@return ApiListInstancesRequest

func (*InstancesApiService) ListInstancesExecute ¶

Execute executes the request

@return ListInstancesReply

type InstancesSummary ¶

type InstancesSummary struct {
	Total  *string            `json:"total,omitempty"`
	ByType *map[string]string `json:"by_type,omitempty"`
}

InstancesSummary struct for InstancesSummary

func NewInstancesSummary ¶

func NewInstancesSummary() *InstancesSummary

NewInstancesSummary instantiates a new InstancesSummary 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 NewInstancesSummaryWithDefaults ¶

func NewInstancesSummaryWithDefaults() *InstancesSummary

NewInstancesSummaryWithDefaults instantiates a new InstancesSummary 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 (*InstancesSummary) GetByType ¶

func (o *InstancesSummary) GetByType() map[string]string

GetByType returns the ByType field value if set, zero value otherwise.

func (*InstancesSummary) GetByTypeOk ¶

func (o *InstancesSummary) GetByTypeOk() (*map[string]string, bool)

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

func (*InstancesSummary) GetTotal ¶

func (o *InstancesSummary) GetTotal() string

GetTotal returns the Total field value if set, zero value otherwise.

func (*InstancesSummary) GetTotalOk ¶

func (o *InstancesSummary) GetTotalOk() (*string, bool)

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

func (*InstancesSummary) HasByType ¶

func (o *InstancesSummary) HasByType() bool

HasByType returns a boolean if a field has been set.

func (*InstancesSummary) HasTotal ¶

func (o *InstancesSummary) HasTotal() bool

HasTotal returns a boolean if a field has been set.

func (InstancesSummary) MarshalJSON ¶

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

func (*InstancesSummary) SetByType ¶

func (o *InstancesSummary) SetByType(v map[string]string)

SetByType gets a reference to the given map[string]string and assigns it to the ByType field.

func (*InstancesSummary) SetTotal ¶

func (o *InstancesSummary) SetTotal(v string)

SetTotal gets a reference to the given string and assigns it to the Total field.

type InviteApi ¶

type InviteApi interface {

	/*
		CreateInvite Method for CreateInvite

		@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
		@return ApiCreateInviteRequest
	*/
	CreateInvite(ctx context.Context) ApiCreateInviteRequest

	// CreateInviteExecute executes the request
	//  @return map[string]interface{}
	CreateInviteExecute(r ApiCreateInviteRequest) (map[string]interface{}, *http.Response, error)
}

type InviteApiService ¶

type InviteApiService service

InviteApiService InviteApi service

func (*InviteApiService) CreateInvite ¶

CreateInvite Method for CreateInvite

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@return ApiCreateInviteRequest

func (*InviteApiService) CreateInviteExecute ¶

func (a *InviteApiService) CreateInviteExecute(r ApiCreateInviteRequest) (map[string]interface{}, *http.Response, error)

Execute executes the request

@return map[string]interface{}

type InviteUserRequest ¶

type InviteUserRequest struct {
	Email   *string `json:"email,omitempty"`
	Name    *string `json:"name,omitempty"`
	Message *string `json:"message,omitempty"`
}

InviteUserRequest struct for InviteUserRequest

func NewInviteUserRequest ¶

func NewInviteUserRequest() *InviteUserRequest

NewInviteUserRequest instantiates a new InviteUserRequest 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 NewInviteUserRequestWithDefaults ¶

func NewInviteUserRequestWithDefaults() *InviteUserRequest

NewInviteUserRequestWithDefaults instantiates a new InviteUserRequest 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 (*InviteUserRequest) GetEmail ¶

func (o *InviteUserRequest) GetEmail() string

GetEmail returns the Email field value if set, zero value otherwise.

func (*InviteUserRequest) GetEmailOk ¶

func (o *InviteUserRequest) GetEmailOk() (*string, bool)

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

func (*InviteUserRequest) GetMessage ¶

func (o *InviteUserRequest) GetMessage() string

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

func (*InviteUserRequest) GetMessageOk ¶

func (o *InviteUserRequest) 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 (*InviteUserRequest) GetName ¶

func (o *InviteUserRequest) GetName() string

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

func (*InviteUserRequest) GetNameOk ¶

func (o *InviteUserRequest) 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 (*InviteUserRequest) HasEmail ¶

func (o *InviteUserRequest) HasEmail() bool

HasEmail returns a boolean if a field has been set.

func (*InviteUserRequest) HasMessage ¶

func (o *InviteUserRequest) HasMessage() bool

HasMessage returns a boolean if a field has been set.

func (*InviteUserRequest) HasName ¶

func (o *InviteUserRequest) HasName() bool

HasName returns a boolean if a field has been set.

func (InviteUserRequest) MarshalJSON ¶

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

func (*InviteUserRequest) SetEmail ¶

func (o *InviteUserRequest) SetEmail(v string)

SetEmail gets a reference to the given string and assigns it to the Email field.

func (*InviteUserRequest) SetMessage ¶

func (o *InviteUserRequest) SetMessage(v string)

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

func (*InviteUserRequest) SetName ¶

func (o *InviteUserRequest) SetName(v string)

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

type KgitproxyBranch ¶

type KgitproxyBranch struct {
	Id             *string                      `json:"id,omitempty"`
	OrganizationId *string                      `json:"organization_id,omitempty"`
	RepositoryId   *string                      `json:"repository_id,omitempty"`
	Name           *string                      `json:"name,omitempty"`
	IsDefault      *bool                        `json:"is_default,omitempty"`
	IsProtected    *bool                        `json:"is_protected,omitempty"`
	Provider       *KgitproxyRepositoryProvider `json:"provider,omitempty"`
}

KgitproxyBranch struct for KgitproxyBranch

func NewKgitproxyBranch ¶

func NewKgitproxyBranch() *KgitproxyBranch

NewKgitproxyBranch instantiates a new KgitproxyBranch 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 NewKgitproxyBranchWithDefaults ¶

func NewKgitproxyBranchWithDefaults() *KgitproxyBranch

NewKgitproxyBranchWithDefaults instantiates a new KgitproxyBranch 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 (*KgitproxyBranch) GetId ¶

func (o *KgitproxyBranch) GetId() string

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

func (*KgitproxyBranch) GetIdOk ¶

func (o *KgitproxyBranch) 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 (*KgitproxyBranch) GetIsDefault ¶

func (o *KgitproxyBranch) GetIsDefault() bool

GetIsDefault returns the IsDefault field value if set, zero value otherwise.

func (*KgitproxyBranch) GetIsDefaultOk ¶

func (o *KgitproxyBranch) GetIsDefaultOk() (*bool, bool)

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

func (*KgitproxyBranch) GetIsProtected ¶

func (o *KgitproxyBranch) GetIsProtected() bool

GetIsProtected returns the IsProtected field value if set, zero value otherwise.

func (*KgitproxyBranch) GetIsProtectedOk ¶

func (o *KgitproxyBranch) GetIsProtectedOk() (*bool, bool)

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

func (*KgitproxyBranch) GetName ¶

func (o *KgitproxyBranch) GetName() string

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

func (*KgitproxyBranch) GetNameOk ¶

func (o *KgitproxyBranch) 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 (*KgitproxyBranch) GetOrganizationId ¶

func (o *KgitproxyBranch) GetOrganizationId() string

GetOrganizationId returns the OrganizationId field value if set, zero value otherwise.

func (*KgitproxyBranch) GetOrganizationIdOk ¶

func (o *KgitproxyBranch) GetOrganizationIdOk() (*string, bool)

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

func (*KgitproxyBranch) GetProvider ¶

GetProvider returns the Provider field value if set, zero value otherwise.

func (*KgitproxyBranch) GetProviderOk ¶

func (o *KgitproxyBranch) GetProviderOk() (*KgitproxyRepositoryProvider, bool)

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

func (*KgitproxyBranch) GetRepositoryId ¶

func (o *KgitproxyBranch) GetRepositoryId() string

GetRepositoryId returns the RepositoryId field value if set, zero value otherwise.

func (*KgitproxyBranch) GetRepositoryIdOk ¶

func (o *KgitproxyBranch) GetRepositoryIdOk() (*string, bool)

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

func (*KgitproxyBranch) HasId ¶

func (o *KgitproxyBranch) HasId() bool

HasId returns a boolean if a field has been set.

func (*KgitproxyBranch) HasIsDefault ¶

func (o *KgitproxyBranch) HasIsDefault() bool

HasIsDefault returns a boolean if a field has been set.

func (*KgitproxyBranch) HasIsProtected ¶

func (o *KgitproxyBranch) HasIsProtected() bool

HasIsProtected returns a boolean if a field has been set.

func (*KgitproxyBranch) HasName ¶

func (o *KgitproxyBranch) HasName() bool

HasName returns a boolean if a field has been set.

func (*KgitproxyBranch) HasOrganizationId ¶

func (o *KgitproxyBranch) HasOrganizationId() bool

HasOrganizationId returns a boolean if a field has been set.

func (*KgitproxyBranch) HasProvider ¶

func (o *KgitproxyBranch) HasProvider() bool

HasProvider returns a boolean if a field has been set.

func (*KgitproxyBranch) HasRepositoryId ¶

func (o *KgitproxyBranch) HasRepositoryId() bool

HasRepositoryId returns a boolean if a field has been set.

func (KgitproxyBranch) MarshalJSON ¶

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

func (*KgitproxyBranch) SetId ¶

func (o *KgitproxyBranch) SetId(v string)

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

func (*KgitproxyBranch) SetIsDefault ¶

func (o *KgitproxyBranch) SetIsDefault(v bool)

SetIsDefault gets a reference to the given bool and assigns it to the IsDefault field.

func (*KgitproxyBranch) SetIsProtected ¶

func (o *KgitproxyBranch) SetIsProtected(v bool)

SetIsProtected gets a reference to the given bool and assigns it to the IsProtected field.

func (*KgitproxyBranch) SetName ¶

func (o *KgitproxyBranch) SetName(v string)

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

func (*KgitproxyBranch) SetOrganizationId ¶

func (o *KgitproxyBranch) SetOrganizationId(v string)

SetOrganizationId gets a reference to the given string and assigns it to the OrganizationId field.

func (*KgitproxyBranch) SetProvider ¶

func (o *KgitproxyBranch) SetProvider(v KgitproxyRepositoryProvider)

SetProvider gets a reference to the given KgitproxyRepositoryProvider and assigns it to the Provider field.

func (*KgitproxyBranch) SetRepositoryId ¶

func (o *KgitproxyBranch) SetRepositoryId(v string)

SetRepositoryId gets a reference to the given string and assigns it to the RepositoryId field.

type KgitproxyGitHubRepository ¶

type KgitproxyGitHubRepository struct {
	GithubId *string `json:"github_id,omitempty"`
}

KgitproxyGitHubRepository struct for KgitproxyGitHubRepository

func NewKgitproxyGitHubRepository ¶

func NewKgitproxyGitHubRepository() *KgitproxyGitHubRepository

NewKgitproxyGitHubRepository instantiates a new KgitproxyGitHubRepository 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 NewKgitproxyGitHubRepositoryWithDefaults ¶

func NewKgitproxyGitHubRepositoryWithDefaults() *KgitproxyGitHubRepository

NewKgitproxyGitHubRepositoryWithDefaults instantiates a new KgitproxyGitHubRepository 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 (*KgitproxyGitHubRepository) GetGithubId ¶

func (o *KgitproxyGitHubRepository) GetGithubId() string

GetGithubId returns the GithubId field value if set, zero value otherwise.

func (*KgitproxyGitHubRepository) GetGithubIdOk ¶

func (o *KgitproxyGitHubRepository) GetGithubIdOk() (*string, bool)

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

func (*KgitproxyGitHubRepository) HasGithubId ¶

func (o *KgitproxyGitHubRepository) HasGithubId() bool

HasGithubId returns a boolean if a field has been set.

func (KgitproxyGitHubRepository) MarshalJSON ¶

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

func (*KgitproxyGitHubRepository) SetGithubId ¶

func (o *KgitproxyGitHubRepository) SetGithubId(v string)

SetGithubId gets a reference to the given string and assigns it to the GithubId field.

type KgitproxyGithubInstallationStatus ¶

type KgitproxyGithubInstallationStatus string

KgitproxyGithubInstallationStatus the model 'KgitproxyGithubInstallationStatus'

const (
	KGITPROXYGITHUBINSTALLATIONSTATUS_INVALID   KgitproxyGithubInstallationStatus = "INVALID"
	KGITPROXYGITHUBINSTALLATIONSTATUS_INSTALLED KgitproxyGithubInstallationStatus = "INSTALLED"
	KGITPROXYGITHUBINSTALLATIONSTATUS_SUSPENDED KgitproxyGithubInstallationStatus = "SUSPENDED"
	KGITPROXYGITHUBINSTALLATIONSTATUS_DELETED   KgitproxyGithubInstallationStatus = "DELETED"
)

List of kgitproxy.GithubInstallation.Status

func NewKgitproxyGithubInstallationStatusFromValue ¶

func NewKgitproxyGithubInstallationStatusFromValue(v string) (*KgitproxyGithubInstallationStatus, error)

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

func (KgitproxyGithubInstallationStatus) IsValid ¶

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

func (KgitproxyGithubInstallationStatus) Ptr ¶

Ptr returns reference to kgitproxy.GithubInstallation.Status value

func (*KgitproxyGithubInstallationStatus) UnmarshalJSON ¶

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

type KgitproxyIndexingStatus ¶

type KgitproxyIndexingStatus string

KgitproxyIndexingStatus the model 'KgitproxyIndexingStatus'

const (
	KGITPROXYINDEXINGSTATUS_INVALID_INDEXING_STATUS KgitproxyIndexingStatus = "INVALID_INDEXING_STATUS"
	KGITPROXYINDEXINGSTATUS_NOT_STARTED             KgitproxyIndexingStatus = "NOT_STARTED"
	KGITPROXYINDEXINGSTATUS_IN_PROGRESS             KgitproxyIndexingStatus = "IN_PROGRESS"
	KGITPROXYINDEXINGSTATUS_COMPLETED               KgitproxyIndexingStatus = "COMPLETED"
)

List of kgitproxy.IndexingStatus

func NewKgitproxyIndexingStatusFromValue ¶

func NewKgitproxyIndexingStatusFromValue(v string) (*KgitproxyIndexingStatus, error)

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

func (KgitproxyIndexingStatus) IsValid ¶

func (v KgitproxyIndexingStatus) IsValid() bool

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

func (KgitproxyIndexingStatus) Ptr ¶

Ptr returns reference to kgitproxy.IndexingStatus value

func (*KgitproxyIndexingStatus) UnmarshalJSON ¶

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

type KgitproxyListBranchesReply ¶

type KgitproxyListBranchesReply struct {
	// The collection of branches.
	Branches []KgitproxyBranch `json:"branches,omitempty"`
	// The limit in the request.
	Limit *int64 `json:"limit,omitempty"`
	// The offset in the request.
	Offset *int64 `json:"offset,omitempty"`
	// The total number of items.
	Count *int64 `json:"count,omitempty"`
}

KgitproxyListBranchesReply struct for KgitproxyListBranchesReply

func NewKgitproxyListBranchesReply ¶

func NewKgitproxyListBranchesReply() *KgitproxyListBranchesReply

NewKgitproxyListBranchesReply instantiates a new KgitproxyListBranchesReply 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 NewKgitproxyListBranchesReplyWithDefaults ¶

func NewKgitproxyListBranchesReplyWithDefaults() *KgitproxyListBranchesReply

NewKgitproxyListBranchesReplyWithDefaults instantiates a new KgitproxyListBranchesReply 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 (*KgitproxyListBranchesReply) GetBranches ¶

func (o *KgitproxyListBranchesReply) GetBranches() []KgitproxyBranch

GetBranches returns the Branches field value if set, zero value otherwise.

func (*KgitproxyListBranchesReply) GetBranchesOk ¶

func (o *KgitproxyListBranchesReply) GetBranchesOk() ([]KgitproxyBranch, bool)

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

func (*KgitproxyListBranchesReply) GetCount ¶

func (o *KgitproxyListBranchesReply) GetCount() int64

GetCount returns the Count field value if set, zero value otherwise.

func (*KgitproxyListBranchesReply) GetCountOk ¶

func (o *KgitproxyListBranchesReply) GetCountOk() (*int64, bool)

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

func (*KgitproxyListBranchesReply) GetLimit ¶

func (o *KgitproxyListBranchesReply) GetLimit() int64

GetLimit returns the Limit field value if set, zero value otherwise.

func (*KgitproxyListBranchesReply) GetLimitOk ¶

func (o *KgitproxyListBranchesReply) GetLimitOk() (*int64, bool)

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

func (*KgitproxyListBranchesReply) GetOffset ¶

func (o *KgitproxyListBranchesReply) GetOffset() int64

GetOffset returns the Offset field value if set, zero value otherwise.

func (*KgitproxyListBranchesReply) GetOffsetOk ¶

func (o *KgitproxyListBranchesReply) GetOffsetOk() (*int64, bool)

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

func (*KgitproxyListBranchesReply) HasBranches ¶

func (o *KgitproxyListBranchesReply) HasBranches() bool

HasBranches returns a boolean if a field has been set.

func (*KgitproxyListBranchesReply) HasCount ¶

func (o *KgitproxyListBranchesReply) HasCount() bool

HasCount returns a boolean if a field has been set.

func (*KgitproxyListBranchesReply) HasLimit ¶

func (o *KgitproxyListBranchesReply) HasLimit() bool

HasLimit returns a boolean if a field has been set.

func (*KgitproxyListBranchesReply) HasOffset ¶

func (o *KgitproxyListBranchesReply) HasOffset() bool

HasOffset returns a boolean if a field has been set.

func (KgitproxyListBranchesReply) MarshalJSON ¶

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

func (*KgitproxyListBranchesReply) SetBranches ¶

func (o *KgitproxyListBranchesReply) SetBranches(v []KgitproxyBranch)

SetBranches gets a reference to the given []KgitproxyBranch and assigns it to the Branches field.

func (*KgitproxyListBranchesReply) SetCount ¶

func (o *KgitproxyListBranchesReply) SetCount(v int64)

SetCount gets a reference to the given int64 and assigns it to the Count field.

func (*KgitproxyListBranchesReply) SetLimit ¶

func (o *KgitproxyListBranchesReply) SetLimit(v int64)

SetLimit gets a reference to the given int64 and assigns it to the Limit field.

func (*KgitproxyListBranchesReply) SetOffset ¶

func (o *KgitproxyListBranchesReply) SetOffset(v int64)

SetOffset gets a reference to the given int64 and assigns it to the Offset field.

type KgitproxyListRepositoriesReply ¶

type KgitproxyListRepositoriesReply struct {
	// The collection of repositories.
	Repositories []KgitproxyRepository `json:"repositories,omitempty"`
	// The limit in the request.
	Limit *int64 `json:"limit,omitempty"`
	// The offset in the request.
	Offset *int64 `json:"offset,omitempty"`
	// The total number of items.
	Count *int64 `json:"count,omitempty"`
}

KgitproxyListRepositoriesReply struct for KgitproxyListRepositoriesReply

func NewKgitproxyListRepositoriesReply ¶

func NewKgitproxyListRepositoriesReply() *KgitproxyListRepositoriesReply

NewKgitproxyListRepositoriesReply instantiates a new KgitproxyListRepositoriesReply 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 NewKgitproxyListRepositoriesReplyWithDefaults ¶

func NewKgitproxyListRepositoriesReplyWithDefaults() *KgitproxyListRepositoriesReply

NewKgitproxyListRepositoriesReplyWithDefaults instantiates a new KgitproxyListRepositoriesReply 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 (*KgitproxyListRepositoriesReply) GetCount ¶

func (o *KgitproxyListRepositoriesReply) GetCount() int64

GetCount returns the Count field value if set, zero value otherwise.

func (*KgitproxyListRepositoriesReply) GetCountOk ¶

func (o *KgitproxyListRepositoriesReply) GetCountOk() (*int64, bool)

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

func (*KgitproxyListRepositoriesReply) GetLimit ¶

func (o *KgitproxyListRepositoriesReply) GetLimit() int64

GetLimit returns the Limit field value if set, zero value otherwise.

func (*KgitproxyListRepositoriesReply) GetLimitOk ¶

func (o *KgitproxyListRepositoriesReply) GetLimitOk() (*int64, bool)

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

func (*KgitproxyListRepositoriesReply) GetOffset ¶

func (o *KgitproxyListRepositoriesReply) GetOffset() int64

GetOffset returns the Offset field value if set, zero value otherwise.

func (*KgitproxyListRepositoriesReply) GetOffsetOk ¶

func (o *KgitproxyListRepositoriesReply) GetOffsetOk() (*int64, bool)

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

func (*KgitproxyListRepositoriesReply) GetRepositories ¶

func (o *KgitproxyListRepositoriesReply) GetRepositories() []KgitproxyRepository

GetRepositories returns the Repositories field value if set, zero value otherwise.

func (*KgitproxyListRepositoriesReply) GetRepositoriesOk ¶

func (o *KgitproxyListRepositoriesReply) GetRepositoriesOk() ([]KgitproxyRepository, bool)

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

func (*KgitproxyListRepositoriesReply) HasCount ¶

func (o *KgitproxyListRepositoriesReply) HasCount() bool

HasCount returns a boolean if a field has been set.

func (*KgitproxyListRepositoriesReply) HasLimit ¶

func (o *KgitproxyListRepositoriesReply) HasLimit() bool

HasLimit returns a boolean if a field has been set.

func (*KgitproxyListRepositoriesReply) HasOffset ¶

func (o *KgitproxyListRepositoriesReply) HasOffset() bool

HasOffset returns a boolean if a field has been set.

func (*KgitproxyListRepositoriesReply) HasRepositories ¶

func (o *KgitproxyListRepositoriesReply) HasRepositories() bool

HasRepositories returns a boolean if a field has been set.

func (KgitproxyListRepositoriesReply) MarshalJSON ¶

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

func (*KgitproxyListRepositoriesReply) SetCount ¶

func (o *KgitproxyListRepositoriesReply) SetCount(v int64)

SetCount gets a reference to the given int64 and assigns it to the Count field.

func (*KgitproxyListRepositoriesReply) SetLimit ¶

func (o *KgitproxyListRepositoriesReply) SetLimit(v int64)

SetLimit gets a reference to the given int64 and assigns it to the Limit field.

func (*KgitproxyListRepositoriesReply) SetOffset ¶

func (o *KgitproxyListRepositoriesReply) SetOffset(v int64)

SetOffset gets a reference to the given int64 and assigns it to the Offset field.

func (*KgitproxyListRepositoriesReply) SetRepositories ¶

func (o *KgitproxyListRepositoriesReply) SetRepositories(v []KgitproxyRepository)

SetRepositories gets a reference to the given []KgitproxyRepository and assigns it to the Repositories field.

type KgitproxyRepository ¶

type KgitproxyRepository struct {
	Id             *string                      `json:"id,omitempty"`
	OrganizationId *string                      `json:"organization_id,omitempty"`
	Name           *string                      `json:"name,omitempty"`
	Url            *string                      `json:"url,omitempty"`
	Description    *string                      `json:"description,omitempty"`
	IsPrivate      *bool                        `json:"is_private,omitempty"`
	IsDisabled     *bool                        `json:"is_disabled,omitempty"`
	DefaultBranch  *string                      `json:"default_branch,omitempty"`
	Provider       *KgitproxyRepositoryProvider `json:"provider,omitempty"`
	LastPushDate   *time.Time                   `json:"last_push_date,omitempty"`
	Github         *KgitproxyGitHubRepository   `json:"github,omitempty"`
}

KgitproxyRepository struct for KgitproxyRepository

func NewKgitproxyRepository ¶

func NewKgitproxyRepository() *KgitproxyRepository

NewKgitproxyRepository instantiates a new KgitproxyRepository 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 NewKgitproxyRepositoryWithDefaults ¶

func NewKgitproxyRepositoryWithDefaults() *KgitproxyRepository

NewKgitproxyRepositoryWithDefaults instantiates a new KgitproxyRepository 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 (*KgitproxyRepository) GetDefaultBranch ¶

func (o *KgitproxyRepository) GetDefaultBranch() string

GetDefaultBranch returns the DefaultBranch field value if set, zero value otherwise.

func (*KgitproxyRepository) GetDefaultBranchOk ¶

func (o *KgitproxyRepository) GetDefaultBranchOk() (*string, bool)

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

func (*KgitproxyRepository) GetDescription ¶

func (o *KgitproxyRepository) GetDescription() string

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

func (*KgitproxyRepository) GetDescriptionOk ¶

func (o *KgitproxyRepository) 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 (*KgitproxyRepository) GetGithub ¶

GetGithub returns the Github field value if set, zero value otherwise.

func (*KgitproxyRepository) GetGithubOk ¶

func (o *KgitproxyRepository) GetGithubOk() (*KgitproxyGitHubRepository, bool)

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

func (*KgitproxyRepository) GetId ¶

func (o *KgitproxyRepository) GetId() string

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

func (*KgitproxyRepository) GetIdOk ¶

func (o *KgitproxyRepository) 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 (*KgitproxyRepository) GetIsDisabled ¶

func (o *KgitproxyRepository) GetIsDisabled() bool

GetIsDisabled returns the IsDisabled field value if set, zero value otherwise.

func (*KgitproxyRepository) GetIsDisabledOk ¶

func (o *KgitproxyRepository) GetIsDisabledOk() (*bool, bool)

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

func (*KgitproxyRepository) GetIsPrivate ¶

func (o *KgitproxyRepository) GetIsPrivate() bool

GetIsPrivate returns the IsPrivate field value if set, zero value otherwise.

func (*KgitproxyRepository) GetIsPrivateOk ¶

func (o *KgitproxyRepository) GetIsPrivateOk() (*bool, bool)

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

func (*KgitproxyRepository) GetLastPushDate ¶

func (o *KgitproxyRepository) GetLastPushDate() time.Time

GetLastPushDate returns the LastPushDate field value if set, zero value otherwise.

func (*KgitproxyRepository) GetLastPushDateOk ¶

func (o *KgitproxyRepository) GetLastPushDateOk() (*time.Time, bool)

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

func (*KgitproxyRepository) GetName ¶

func (o *KgitproxyRepository) GetName() string

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

func (*KgitproxyRepository) GetNameOk ¶

func (o *KgitproxyRepository) 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 (*KgitproxyRepository) GetOrganizationId ¶

func (o *KgitproxyRepository) GetOrganizationId() string

GetOrganizationId returns the OrganizationId field value if set, zero value otherwise.

func (*KgitproxyRepository) GetOrganizationIdOk ¶

func (o *KgitproxyRepository) GetOrganizationIdOk() (*string, bool)

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

func (*KgitproxyRepository) GetProvider ¶

GetProvider returns the Provider field value if set, zero value otherwise.

func (*KgitproxyRepository) GetProviderOk ¶

func (o *KgitproxyRepository) GetProviderOk() (*KgitproxyRepositoryProvider, bool)

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

func (*KgitproxyRepository) GetUrl ¶

func (o *KgitproxyRepository) GetUrl() string

GetUrl returns the Url field value if set, zero value otherwise.

func (*KgitproxyRepository) GetUrlOk ¶

func (o *KgitproxyRepository) 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 (*KgitproxyRepository) HasDefaultBranch ¶

func (o *KgitproxyRepository) HasDefaultBranch() bool

HasDefaultBranch returns a boolean if a field has been set.

func (*KgitproxyRepository) HasDescription ¶

func (o *KgitproxyRepository) HasDescription() bool

HasDescription returns a boolean if a field has been set.

func (*KgitproxyRepository) HasGithub ¶

func (o *KgitproxyRepository) HasGithub() bool

HasGithub returns a boolean if a field has been set.

func (*KgitproxyRepository) HasId ¶

func (o *KgitproxyRepository) HasId() bool

HasId returns a boolean if a field has been set.

func (*KgitproxyRepository) HasIsDisabled ¶

func (o *KgitproxyRepository) HasIsDisabled() bool

HasIsDisabled returns a boolean if a field has been set.

func (*KgitproxyRepository) HasIsPrivate ¶

func (o *KgitproxyRepository) HasIsPrivate() bool

HasIsPrivate returns a boolean if a field has been set.

func (*KgitproxyRepository) HasLastPushDate ¶

func (o *KgitproxyRepository) HasLastPushDate() bool

HasLastPushDate returns a boolean if a field has been set.

func (*KgitproxyRepository) HasName ¶

func (o *KgitproxyRepository) HasName() bool

HasName returns a boolean if a field has been set.

func (*KgitproxyRepository) HasOrganizationId ¶

func (o *KgitproxyRepository) HasOrganizationId() bool

HasOrganizationId returns a boolean if a field has been set.

func (*KgitproxyRepository) HasProvider ¶

func (o *KgitproxyRepository) HasProvider() bool

HasProvider returns a boolean if a field has been set.

func (*KgitproxyRepository) HasUrl ¶

func (o *KgitproxyRepository) HasUrl() bool

HasUrl returns a boolean if a field has been set.

func (KgitproxyRepository) MarshalJSON ¶

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

func (*KgitproxyRepository) SetDefaultBranch ¶

func (o *KgitproxyRepository) SetDefaultBranch(v string)

SetDefaultBranch gets a reference to the given string and assigns it to the DefaultBranch field.

func (*KgitproxyRepository) SetDescription ¶

func (o *KgitproxyRepository) SetDescription(v string)

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

func (*KgitproxyRepository) SetGithub ¶

SetGithub gets a reference to the given KgitproxyGitHubRepository and assigns it to the Github field.

func (*KgitproxyRepository) SetId ¶

func (o *KgitproxyRepository) SetId(v string)

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

func (*KgitproxyRepository) SetIsDisabled ¶

func (o *KgitproxyRepository) SetIsDisabled(v bool)

SetIsDisabled gets a reference to the given bool and assigns it to the IsDisabled field.

func (*KgitproxyRepository) SetIsPrivate ¶

func (o *KgitproxyRepository) SetIsPrivate(v bool)

SetIsPrivate gets a reference to the given bool and assigns it to the IsPrivate field.

func (*KgitproxyRepository) SetLastPushDate ¶

func (o *KgitproxyRepository) SetLastPushDate(v time.Time)

SetLastPushDate gets a reference to the given time.Time and assigns it to the LastPushDate field.

func (*KgitproxyRepository) SetName ¶

func (o *KgitproxyRepository) SetName(v string)

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

func (*KgitproxyRepository) SetOrganizationId ¶

func (o *KgitproxyRepository) SetOrganizationId(v string)

SetOrganizationId gets a reference to the given string and assigns it to the OrganizationId field.

func (*KgitproxyRepository) SetProvider ¶

SetProvider gets a reference to the given KgitproxyRepositoryProvider and assigns it to the Provider field.

func (*KgitproxyRepository) SetUrl ¶

func (o *KgitproxyRepository) SetUrl(v string)

SetUrl gets a reference to the given string and assigns it to the Url field.

type KgitproxyRepositoryProvider ¶

type KgitproxyRepositoryProvider string

KgitproxyRepositoryProvider the model 'KgitproxyRepositoryProvider'

const (
	KGITPROXYREPOSITORYPROVIDER_INVALID_PROVIDER KgitproxyRepositoryProvider = "INVALID_PROVIDER"
	KGITPROXYREPOSITORYPROVIDER_GITHUB           KgitproxyRepositoryProvider = "GITHUB"
)

List of kgitproxy.RepositoryProvider

func NewKgitproxyRepositoryProviderFromValue ¶

func NewKgitproxyRepositoryProviderFromValue(v string) (*KgitproxyRepositoryProvider, error)

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

func (KgitproxyRepositoryProvider) IsValid ¶

func (v KgitproxyRepositoryProvider) IsValid() bool

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

func (KgitproxyRepositoryProvider) Ptr ¶

Ptr returns reference to kgitproxy.RepositoryProvider value

func (*KgitproxyRepositoryProvider) UnmarshalJSON ¶

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

type KsearchApp ¶

type KsearchApp struct {
	Id             *string `json:"id,omitempty"`
	OrganizationId *string `json:"organization_id,omitempty"`
	Name           *string `json:"name,omitempty"`
}

KsearchApp struct for KsearchApp

func NewKsearchApp ¶

func NewKsearchApp() *KsearchApp

NewKsearchApp instantiates a new KsearchApp 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 NewKsearchAppWithDefaults ¶

func NewKsearchAppWithDefaults() *KsearchApp

NewKsearchAppWithDefaults instantiates a new KsearchApp 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 (*KsearchApp) GetId ¶

func (o *KsearchApp) GetId() string

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

func (*KsearchApp) GetIdOk ¶

func (o *KsearchApp) 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 (*KsearchApp) GetName ¶

func (o *KsearchApp) GetName() string

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

func (*KsearchApp) GetNameOk ¶

func (o *KsearchApp) 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 (*KsearchApp) GetOrganizationId ¶

func (o *KsearchApp) GetOrganizationId() string

GetOrganizationId returns the OrganizationId field value if set, zero value otherwise.

func (*KsearchApp) GetOrganizationIdOk ¶

func (o *KsearchApp) GetOrganizationIdOk() (*string, bool)

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

func (*KsearchApp) HasId ¶

func (o *KsearchApp) HasId() bool

HasId returns a boolean if a field has been set.

func (*KsearchApp) HasName ¶

func (o *KsearchApp) HasName() bool

HasName returns a boolean if a field has been set.

func (*KsearchApp) HasOrganizationId ¶

func (o *KsearchApp) HasOrganizationId() bool

HasOrganizationId returns a boolean if a field has been set.

func (KsearchApp) MarshalJSON ¶

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

func (*KsearchApp) SetId ¶

func (o *KsearchApp) SetId(v string)

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

func (*KsearchApp) SetName ¶

func (o *KsearchApp) SetName(v string)

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

func (*KsearchApp) SetOrganizationId ¶

func (o *KsearchApp) SetOrganizationId(v string)

SetOrganizationId gets a reference to the given string and assigns it to the OrganizationId field.

type KsearchGlobalDeployment ¶

type KsearchGlobalDeployment struct {
	Id             *string `json:"id,omitempty"`
	OrganizationId *string `json:"organization_id,omitempty"`
	AppId          *string `json:"app_id,omitempty"`
	ServiceId      *string `json:"service_id,omitempty"`
}

KsearchGlobalDeployment struct for KsearchGlobalDeployment

func NewKsearchGlobalDeployment ¶

func NewKsearchGlobalDeployment() *KsearchGlobalDeployment

NewKsearchGlobalDeployment instantiates a new KsearchGlobalDeployment 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 NewKsearchGlobalDeploymentWithDefaults ¶

func NewKsearchGlobalDeploymentWithDefaults() *KsearchGlobalDeployment

NewKsearchGlobalDeploymentWithDefaults instantiates a new KsearchGlobalDeployment 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 (*KsearchGlobalDeployment) GetAppId ¶

func (o *KsearchGlobalDeployment) GetAppId() string

GetAppId returns the AppId field value if set, zero value otherwise.

func (*KsearchGlobalDeployment) GetAppIdOk ¶

func (o *KsearchGlobalDeployment) GetAppIdOk() (*string, bool)

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

func (*KsearchGlobalDeployment) GetId ¶

func (o *KsearchGlobalDeployment) GetId() string

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

func (*KsearchGlobalDeployment) GetIdOk ¶

func (o *KsearchGlobalDeployment) 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 (*KsearchGlobalDeployment) GetOrganizationId ¶

func (o *KsearchGlobalDeployment) GetOrganizationId() string

GetOrganizationId returns the OrganizationId field value if set, zero value otherwise.

func (*KsearchGlobalDeployment) GetOrganizationIdOk ¶

func (o *KsearchGlobalDeployment) GetOrganizationIdOk() (*string, bool)

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

func (*KsearchGlobalDeployment) GetServiceId ¶

func (o *KsearchGlobalDeployment) GetServiceId() string

GetServiceId returns the ServiceId field value if set, zero value otherwise.

func (*KsearchGlobalDeployment) GetServiceIdOk ¶

func (o *KsearchGlobalDeployment) GetServiceIdOk() (*string, bool)

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

func (*KsearchGlobalDeployment) HasAppId ¶

func (o *KsearchGlobalDeployment) HasAppId() bool

HasAppId returns a boolean if a field has been set.

func (*KsearchGlobalDeployment) HasId ¶

func (o *KsearchGlobalDeployment) HasId() bool

HasId returns a boolean if a field has been set.

func (*KsearchGlobalDeployment) HasOrganizationId ¶

func (o *KsearchGlobalDeployment) HasOrganizationId() bool

HasOrganizationId returns a boolean if a field has been set.

func (*KsearchGlobalDeployment) HasServiceId ¶

func (o *KsearchGlobalDeployment) HasServiceId() bool

HasServiceId returns a boolean if a field has been set.

func (KsearchGlobalDeployment) MarshalJSON ¶

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

func (*KsearchGlobalDeployment) SetAppId ¶

func (o *KsearchGlobalDeployment) SetAppId(v string)

SetAppId gets a reference to the given string and assigns it to the AppId field.

func (*KsearchGlobalDeployment) SetId ¶

func (o *KsearchGlobalDeployment) SetId(v string)

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

func (*KsearchGlobalDeployment) SetOrganizationId ¶

func (o *KsearchGlobalDeployment) SetOrganizationId(v string)

SetOrganizationId gets a reference to the given string and assigns it to the OrganizationId field.

func (*KsearchGlobalDeployment) SetServiceId ¶

func (o *KsearchGlobalDeployment) SetServiceId(v string)

SetServiceId gets a reference to the given string and assigns it to the ServiceId field.

type KsearchInstance ¶

type KsearchInstance struct {
	Id             *string `json:"id,omitempty"`
	OrganizationId *string `json:"organization_id,omitempty"`
	AppId          *string `json:"app_id,omitempty"`
	ServiceId      *string `json:"service_id,omitempty"`
	AllocationId   *string `json:"allocation_id,omitempty"`
}

KsearchInstance struct for KsearchInstance

func NewKsearchInstance ¶

func NewKsearchInstance() *KsearchInstance

NewKsearchInstance instantiates a new KsearchInstance 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 NewKsearchInstanceWithDefaults ¶

func NewKsearchInstanceWithDefaults() *KsearchInstance

NewKsearchInstanceWithDefaults instantiates a new KsearchInstance 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 (*KsearchInstance) GetAllocationId ¶

func (o *KsearchInstance) GetAllocationId() string

GetAllocationId returns the AllocationId field value if set, zero value otherwise.

func (*KsearchInstance) GetAllocationIdOk ¶

func (o *KsearchInstance) GetAllocationIdOk() (*string, bool)

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

func (*KsearchInstance) GetAppId ¶

func (o *KsearchInstance) GetAppId() string

GetAppId returns the AppId field value if set, zero value otherwise.

func (*KsearchInstance) GetAppIdOk ¶

func (o *KsearchInstance) GetAppIdOk() (*string, bool)

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

func (*KsearchInstance) GetId ¶

func (o *KsearchInstance) GetId() string

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

func (*KsearchInstance) GetIdOk ¶

func (o *KsearchInstance) 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 (*KsearchInstance) GetOrganizationId ¶

func (o *KsearchInstance) GetOrganizationId() string

GetOrganizationId returns the OrganizationId field value if set, zero value otherwise.

func (*KsearchInstance) GetOrganizationIdOk ¶

func (o *KsearchInstance) GetOrganizationIdOk() (*string, bool)

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

func (*KsearchInstance) GetServiceId ¶

func (o *KsearchInstance) GetServiceId() string

GetServiceId returns the ServiceId field value if set, zero value otherwise.

func (*KsearchInstance) GetServiceIdOk ¶

func (o *KsearchInstance) GetServiceIdOk() (*string, bool)

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

func (*KsearchInstance) HasAllocationId ¶

func (o *KsearchInstance) HasAllocationId() bool

HasAllocationId returns a boolean if a field has been set.

func (*KsearchInstance) HasAppId ¶

func (o *KsearchInstance) HasAppId() bool

HasAppId returns a boolean if a field has been set.

func (*KsearchInstance) HasId ¶

func (o *KsearchInstance) HasId() bool

HasId returns a boolean if a field has been set.

func (*KsearchInstance) HasOrganizationId ¶

func (o *KsearchInstance) HasOrganizationId() bool

HasOrganizationId returns a boolean if a field has been set.

func (*KsearchInstance) HasServiceId ¶

func (o *KsearchInstance) HasServiceId() bool

HasServiceId returns a boolean if a field has been set.

func (KsearchInstance) MarshalJSON ¶

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

func (*KsearchInstance) SetAllocationId ¶

func (o *KsearchInstance) SetAllocationId(v string)

SetAllocationId gets a reference to the given string and assigns it to the AllocationId field.

func (*KsearchInstance) SetAppId ¶

func (o *KsearchInstance) SetAppId(v string)

SetAppId gets a reference to the given string and assigns it to the AppId field.

func (*KsearchInstance) SetId ¶

func (o *KsearchInstance) SetId(v string)

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

func (*KsearchInstance) SetOrganizationId ¶

func (o *KsearchInstance) SetOrganizationId(v string)

SetOrganizationId gets a reference to the given string and assigns it to the OrganizationId field.

func (*KsearchInstance) SetServiceId ¶

func (o *KsearchInstance) SetServiceId(v string)

SetServiceId gets a reference to the given string and assigns it to the ServiceId field.

type KsearchOrganization ¶

type KsearchOrganization struct {
	Id   *string `json:"id,omitempty"`
	Name *string `json:"name,omitempty"`
}

KsearchOrganization struct for KsearchOrganization

func NewKsearchOrganization ¶

func NewKsearchOrganization() *KsearchOrganization

NewKsearchOrganization instantiates a new KsearchOrganization 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 NewKsearchOrganizationWithDefaults ¶

func NewKsearchOrganizationWithDefaults() *KsearchOrganization

NewKsearchOrganizationWithDefaults instantiates a new KsearchOrganization 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 (*KsearchOrganization) GetId ¶

func (o *KsearchOrganization) GetId() string

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

func (*KsearchOrganization) GetIdOk ¶

func (o *KsearchOrganization) 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 (*KsearchOrganization) GetName ¶

func (o *KsearchOrganization) GetName() string

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

func (*KsearchOrganization) GetNameOk ¶

func (o *KsearchOrganization) 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 (*KsearchOrganization) HasId ¶

func (o *KsearchOrganization) HasId() bool

HasId returns a boolean if a field has been set.

func (*KsearchOrganization) HasName ¶

func (o *KsearchOrganization) HasName() bool

HasName returns a boolean if a field has been set.

func (KsearchOrganization) MarshalJSON ¶

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

func (*KsearchOrganization) SetId ¶

func (o *KsearchOrganization) SetId(v string)

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

func (*KsearchOrganization) SetName ¶

func (o *KsearchOrganization) SetName(v string)

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

type KsearchRegionalDeployment ¶

type KsearchRegionalDeployment struct {
	Id             *string `json:"id,omitempty"`
	OrganizationId *string `json:"organization_id,omitempty"`
	AppId          *string `json:"app_id,omitempty"`
	ServiceId      *string `json:"service_id,omitempty"`
	Region         *string `json:"region,omitempty"`
}

KsearchRegionalDeployment struct for KsearchRegionalDeployment

func NewKsearchRegionalDeployment ¶

func NewKsearchRegionalDeployment() *KsearchRegionalDeployment

NewKsearchRegionalDeployment instantiates a new KsearchRegionalDeployment 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 NewKsearchRegionalDeploymentWithDefaults ¶

func NewKsearchRegionalDeploymentWithDefaults() *KsearchRegionalDeployment

NewKsearchRegionalDeploymentWithDefaults instantiates a new KsearchRegionalDeployment 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 (*KsearchRegionalDeployment) GetAppId ¶

func (o *KsearchRegionalDeployment) GetAppId() string

GetAppId returns the AppId field value if set, zero value otherwise.

func (*KsearchRegionalDeployment) GetAppIdOk ¶

func (o *KsearchRegionalDeployment) GetAppIdOk() (*string, bool)

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

func (*KsearchRegionalDeployment) GetId ¶

func (o *KsearchRegionalDeployment) GetId() string

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

func (*KsearchRegionalDeployment) GetIdOk ¶

func (o *KsearchRegionalDeployment) 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 (*KsearchRegionalDeployment) GetOrganizationId ¶

func (o *KsearchRegionalDeployment) GetOrganizationId() string

GetOrganizationId returns the OrganizationId field value if set, zero value otherwise.

func (*KsearchRegionalDeployment) GetOrganizationIdOk ¶

func (o *KsearchRegionalDeployment) GetOrganizationIdOk() (*string, bool)

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

func (*KsearchRegionalDeployment) GetRegion ¶

func (o *KsearchRegionalDeployment) GetRegion() string

GetRegion returns the Region field value if set, zero value otherwise.

func (*KsearchRegionalDeployment) GetRegionOk ¶

func (o *KsearchRegionalDeployment) GetRegionOk() (*string, bool)

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

func (*KsearchRegionalDeployment) GetServiceId ¶

func (o *KsearchRegionalDeployment) GetServiceId() string

GetServiceId returns the ServiceId field value if set, zero value otherwise.

func (*KsearchRegionalDeployment) GetServiceIdOk ¶

func (o *KsearchRegionalDeployment) GetServiceIdOk() (*string, bool)

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

func (*KsearchRegionalDeployment) HasAppId ¶

func (o *KsearchRegionalDeployment) HasAppId() bool

HasAppId returns a boolean if a field has been set.

func (*KsearchRegionalDeployment) HasId ¶

func (o *KsearchRegionalDeployment) HasId() bool

HasId returns a boolean if a field has been set.

func (*KsearchRegionalDeployment) HasOrganizationId ¶

func (o *KsearchRegionalDeployment) HasOrganizationId() bool

HasOrganizationId returns a boolean if a field has been set.

func (*KsearchRegionalDeployment) HasRegion ¶

func (o *KsearchRegionalDeployment) HasRegion() bool

HasRegion returns a boolean if a field has been set.

func (*KsearchRegionalDeployment) HasServiceId ¶

func (o *KsearchRegionalDeployment) HasServiceId() bool

HasServiceId returns a boolean if a field has been set.

func (KsearchRegionalDeployment) MarshalJSON ¶

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

func (*KsearchRegionalDeployment) SetAppId ¶

func (o *KsearchRegionalDeployment) SetAppId(v string)

SetAppId gets a reference to the given string and assigns it to the AppId field.

func (*KsearchRegionalDeployment) SetId ¶

func (o *KsearchRegionalDeployment) SetId(v string)

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

func (*KsearchRegionalDeployment) SetOrganizationId ¶

func (o *KsearchRegionalDeployment) SetOrganizationId(v string)

SetOrganizationId gets a reference to the given string and assigns it to the OrganizationId field.

func (*KsearchRegionalDeployment) SetRegion ¶

func (o *KsearchRegionalDeployment) SetRegion(v string)

SetRegion gets a reference to the given string and assigns it to the Region field.

func (*KsearchRegionalDeployment) SetServiceId ¶

func (o *KsearchRegionalDeployment) SetServiceId(v string)

SetServiceId gets a reference to the given string and assigns it to the ServiceId field.

type KsearchSearchReply ¶

type KsearchSearchReply struct {
	Organizations       []KsearchOrganization       `json:"organizations,omitempty"`
	Users               []KsearchUser               `json:"users,omitempty"`
	Apps                []KsearchApp                `json:"apps,omitempty"`
	Services            []KsearchService            `json:"services,omitempty"`
	GlobalDeployments   []KsearchGlobalDeployment   `json:"global_deployments,omitempty"`
	RegionalDeployments []KsearchRegionalDeployment `json:"regional_deployments,omitempty"`
	Instances           []KsearchInstance           `json:"instances,omitempty"`
}

KsearchSearchReply struct for KsearchSearchReply

func NewKsearchSearchReply ¶

func NewKsearchSearchReply() *KsearchSearchReply

NewKsearchSearchReply instantiates a new KsearchSearchReply 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 NewKsearchSearchReplyWithDefaults ¶

func NewKsearchSearchReplyWithDefaults() *KsearchSearchReply

NewKsearchSearchReplyWithDefaults instantiates a new KsearchSearchReply 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 (*KsearchSearchReply) GetApps ¶

func (o *KsearchSearchReply) GetApps() []KsearchApp

GetApps returns the Apps field value if set, zero value otherwise.

func (*KsearchSearchReply) GetAppsOk ¶

func (o *KsearchSearchReply) GetAppsOk() ([]KsearchApp, bool)

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

func (*KsearchSearchReply) GetGlobalDeployments ¶

func (o *KsearchSearchReply) GetGlobalDeployments() []KsearchGlobalDeployment

GetGlobalDeployments returns the GlobalDeployments field value if set, zero value otherwise.

func (*KsearchSearchReply) GetGlobalDeploymentsOk ¶

func (o *KsearchSearchReply) GetGlobalDeploymentsOk() ([]KsearchGlobalDeployment, bool)

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

func (*KsearchSearchReply) GetInstances ¶

func (o *KsearchSearchReply) GetInstances() []KsearchInstance

GetInstances returns the Instances field value if set, zero value otherwise.

func (*KsearchSearchReply) GetInstancesOk ¶

func (o *KsearchSearchReply) GetInstancesOk() ([]KsearchInstance, bool)

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

func (*KsearchSearchReply) GetOrganizations ¶

func (o *KsearchSearchReply) GetOrganizations() []KsearchOrganization

GetOrganizations returns the Organizations field value if set, zero value otherwise.

func (*KsearchSearchReply) GetOrganizationsOk ¶

func (o *KsearchSearchReply) GetOrganizationsOk() ([]KsearchOrganization, bool)

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

func (*KsearchSearchReply) GetRegionalDeployments ¶

func (o *KsearchSearchReply) GetRegionalDeployments() []KsearchRegionalDeployment

GetRegionalDeployments returns the RegionalDeployments field value if set, zero value otherwise.

func (*KsearchSearchReply) GetRegionalDeploymentsOk ¶

func (o *KsearchSearchReply) GetRegionalDeploymentsOk() ([]KsearchRegionalDeployment, bool)

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

func (*KsearchSearchReply) GetServices ¶

func (o *KsearchSearchReply) GetServices() []KsearchService

GetServices returns the Services field value if set, zero value otherwise.

func (*KsearchSearchReply) GetServicesOk ¶

func (o *KsearchSearchReply) GetServicesOk() ([]KsearchService, bool)

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

func (*KsearchSearchReply) GetUsers ¶

func (o *KsearchSearchReply) GetUsers() []KsearchUser

GetUsers returns the Users field value if set, zero value otherwise.

func (*KsearchSearchReply) GetUsersOk ¶

func (o *KsearchSearchReply) GetUsersOk() ([]KsearchUser, bool)

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

func (*KsearchSearchReply) HasApps ¶

func (o *KsearchSearchReply) HasApps() bool

HasApps returns a boolean if a field has been set.

func (*KsearchSearchReply) HasGlobalDeployments ¶

func (o *KsearchSearchReply) HasGlobalDeployments() bool

HasGlobalDeployments returns a boolean if a field has been set.

func (*KsearchSearchReply) HasInstances ¶

func (o *KsearchSearchReply) HasInstances() bool

HasInstances returns a boolean if a field has been set.

func (*KsearchSearchReply) HasOrganizations ¶

func (o *KsearchSearchReply) HasOrganizations() bool

HasOrganizations returns a boolean if a field has been set.

func (*KsearchSearchReply) HasRegionalDeployments ¶

func (o *KsearchSearchReply) HasRegionalDeployments() bool

HasRegionalDeployments returns a boolean if a field has been set.

func (*KsearchSearchReply) HasServices ¶

func (o *KsearchSearchReply) HasServices() bool

HasServices returns a boolean if a field has been set.

func (*KsearchSearchReply) HasUsers ¶

func (o *KsearchSearchReply) HasUsers() bool

HasUsers returns a boolean if a field has been set.

func (KsearchSearchReply) MarshalJSON ¶

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

func (*KsearchSearchReply) SetApps ¶

func (o *KsearchSearchReply) SetApps(v []KsearchApp)

SetApps gets a reference to the given []KsearchApp and assigns it to the Apps field.

func (*KsearchSearchReply) SetGlobalDeployments ¶

func (o *KsearchSearchReply) SetGlobalDeployments(v []KsearchGlobalDeployment)

SetGlobalDeployments gets a reference to the given []KsearchGlobalDeployment and assigns it to the GlobalDeployments field.

func (*KsearchSearchReply) SetInstances ¶

func (o *KsearchSearchReply) SetInstances(v []KsearchInstance)

SetInstances gets a reference to the given []KsearchInstance and assigns it to the Instances field.

func (*KsearchSearchReply) SetOrganizations ¶

func (o *KsearchSearchReply) SetOrganizations(v []KsearchOrganization)

SetOrganizations gets a reference to the given []KsearchOrganization and assigns it to the Organizations field.

func (*KsearchSearchReply) SetRegionalDeployments ¶

func (o *KsearchSearchReply) SetRegionalDeployments(v []KsearchRegionalDeployment)

SetRegionalDeployments gets a reference to the given []KsearchRegionalDeployment and assigns it to the RegionalDeployments field.

func (*KsearchSearchReply) SetServices ¶

func (o *KsearchSearchReply) SetServices(v []KsearchService)

SetServices gets a reference to the given []KsearchService and assigns it to the Services field.

func (*KsearchSearchReply) SetUsers ¶

func (o *KsearchSearchReply) SetUsers(v []KsearchUser)

SetUsers gets a reference to the given []KsearchUser and assigns it to the Users field.

type KsearchService ¶

type KsearchService struct {
	Id             *string `json:"id,omitempty"`
	OrganizationId *string `json:"organization_id,omitempty"`
	AppId          *string `json:"app_id,omitempty"`
	Name           *string `json:"name,omitempty"`
}

KsearchService struct for KsearchService

func NewKsearchService ¶

func NewKsearchService() *KsearchService

NewKsearchService instantiates a new KsearchService 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 NewKsearchServiceWithDefaults ¶

func NewKsearchServiceWithDefaults() *KsearchService

NewKsearchServiceWithDefaults instantiates a new KsearchService 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 (*KsearchService) GetAppId ¶

func (o *KsearchService) GetAppId() string

GetAppId returns the AppId field value if set, zero value otherwise.

func (*KsearchService) GetAppIdOk ¶

func (o *KsearchService) GetAppIdOk() (*string, bool)

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

func (*KsearchService) GetId ¶

func (o *KsearchService) GetId() string

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

func (*KsearchService) GetIdOk ¶

func (o *KsearchService) 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 (*KsearchService) GetName ¶

func (o *KsearchService) GetName() string

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

func (*KsearchService) GetNameOk ¶

func (o *KsearchService) 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 (*KsearchService) GetOrganizationId ¶

func (o *KsearchService) GetOrganizationId() string

GetOrganizationId returns the OrganizationId field value if set, zero value otherwise.

func (*KsearchService) GetOrganizationIdOk ¶

func (o *KsearchService) GetOrganizationIdOk() (*string, bool)

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

func (*KsearchService) HasAppId ¶

func (o *KsearchService) HasAppId() bool

HasAppId returns a boolean if a field has been set.

func (*KsearchService) HasId ¶

func (o *KsearchService) HasId() bool

HasId returns a boolean if a field has been set.

func (*KsearchService) HasName ¶

func (o *KsearchService) HasName() bool

HasName returns a boolean if a field has been set.

func (*KsearchService) HasOrganizationId ¶

func (o *KsearchService) HasOrganizationId() bool

HasOrganizationId returns a boolean if a field has been set.

func (KsearchService) MarshalJSON ¶

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

func (*KsearchService) SetAppId ¶

func (o *KsearchService) SetAppId(v string)

SetAppId gets a reference to the given string and assigns it to the AppId field.

func (*KsearchService) SetId ¶

func (o *KsearchService) SetId(v string)

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

func (*KsearchService) SetName ¶

func (o *KsearchService) SetName(v string)

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

func (*KsearchService) SetOrganizationId ¶

func (o *KsearchService) SetOrganizationId(v string)

SetOrganizationId gets a reference to the given string and assigns it to the OrganizationId field.

type KsearchUser ¶

type KsearchUser struct {
	Id         *string `json:"id,omitempty"`
	Email      *string `json:"email,omitempty"`
	Name       *string `json:"name,omitempty"`
	GithubUser *string `json:"github_user,omitempty"`
}

KsearchUser struct for KsearchUser

func NewKsearchUser ¶

func NewKsearchUser() *KsearchUser

NewKsearchUser instantiates a new KsearchUser 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 NewKsearchUserWithDefaults ¶

func NewKsearchUserWithDefaults() *KsearchUser

NewKsearchUserWithDefaults instantiates a new KsearchUser 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 (*KsearchUser) GetEmail ¶

func (o *KsearchUser) GetEmail() string

GetEmail returns the Email field value if set, zero value otherwise.

func (*KsearchUser) GetEmailOk ¶

func (o *KsearchUser) GetEmailOk() (*string, bool)

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

func (*KsearchUser) GetGithubUser ¶

func (o *KsearchUser) GetGithubUser() string

GetGithubUser returns the GithubUser field value if set, zero value otherwise.

func (*KsearchUser) GetGithubUserOk ¶

func (o *KsearchUser) GetGithubUserOk() (*string, bool)

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

func (*KsearchUser) GetId ¶

func (o *KsearchUser) GetId() string

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

func (*KsearchUser) GetIdOk ¶

func (o *KsearchUser) 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 (*KsearchUser) GetName ¶

func (o *KsearchUser) GetName() string

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

func (*KsearchUser) GetNameOk ¶

func (o *KsearchUser) 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 (*KsearchUser) HasEmail ¶

func (o *KsearchUser) HasEmail() bool

HasEmail returns a boolean if a field has been set.

func (*KsearchUser) HasGithubUser ¶

func (o *KsearchUser) HasGithubUser() bool

HasGithubUser returns a boolean if a field has been set.

func (*KsearchUser) HasId ¶

func (o *KsearchUser) HasId() bool

HasId returns a boolean if a field has been set.

func (*KsearchUser) HasName ¶

func (o *KsearchUser) HasName() bool

HasName returns a boolean if a field has been set.

func (KsearchUser) MarshalJSON ¶

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

func (*KsearchUser) SetEmail ¶

func (o *KsearchUser) SetEmail(v string)

SetEmail gets a reference to the given string and assigns it to the Email field.

func (*KsearchUser) SetGithubUser ¶

func (o *KsearchUser) SetGithubUser(v string)

SetGithubUser gets a reference to the given string and assigns it to the GithubUser field.

func (*KsearchUser) SetId ¶

func (o *KsearchUser) SetId(v string)

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

func (*KsearchUser) SetName ¶

func (o *KsearchUser) SetName(v string)

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

type ListAppEventsReply ¶

type ListAppEventsReply struct {
	Events []AppEvent `json:"events,omitempty"`
	Limit  *int64     `json:"limit,omitempty"`
	Offset *int64     `json:"offset,omitempty"`
	Count  *int64     `json:"count,omitempty"`
	Order  *string    `json:"order,omitempty"`
}

ListAppEventsReply struct for ListAppEventsReply

func NewListAppEventsReply ¶

func NewListAppEventsReply() *ListAppEventsReply

NewListAppEventsReply instantiates a new ListAppEventsReply 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 NewListAppEventsReplyWithDefaults ¶

func NewListAppEventsReplyWithDefaults() *ListAppEventsReply

NewListAppEventsReplyWithDefaults instantiates a new ListAppEventsReply 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 (*ListAppEventsReply) GetCount ¶

func (o *ListAppEventsReply) GetCount() int64

GetCount returns the Count field value if set, zero value otherwise.

func (*ListAppEventsReply) GetCountOk ¶

func (o *ListAppEventsReply) GetCountOk() (*int64, bool)

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

func (*ListAppEventsReply) GetEvents ¶

func (o *ListAppEventsReply) GetEvents() []AppEvent

GetEvents returns the Events field value if set, zero value otherwise.

func (*ListAppEventsReply) GetEventsOk ¶

func (o *ListAppEventsReply) GetEventsOk() ([]AppEvent, bool)

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

func (*ListAppEventsReply) GetLimit ¶

func (o *ListAppEventsReply) GetLimit() int64

GetLimit returns the Limit field value if set, zero value otherwise.

func (*ListAppEventsReply) GetLimitOk ¶

func (o *ListAppEventsReply) GetLimitOk() (*int64, bool)

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

func (*ListAppEventsReply) GetOffset ¶

func (o *ListAppEventsReply) GetOffset() int64

GetOffset returns the Offset field value if set, zero value otherwise.

func (*ListAppEventsReply) GetOffsetOk ¶

func (o *ListAppEventsReply) GetOffsetOk() (*int64, bool)

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

func (*ListAppEventsReply) GetOrder ¶

func (o *ListAppEventsReply) GetOrder() string

GetOrder returns the Order field value if set, zero value otherwise.

func (*ListAppEventsReply) GetOrderOk ¶

func (o *ListAppEventsReply) GetOrderOk() (*string, bool)

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

func (*ListAppEventsReply) HasCount ¶

func (o *ListAppEventsReply) HasCount() bool

HasCount returns a boolean if a field has been set.

func (*ListAppEventsReply) HasEvents ¶

func (o *ListAppEventsReply) HasEvents() bool

HasEvents returns a boolean if a field has been set.

func (*ListAppEventsReply) HasLimit ¶

func (o *ListAppEventsReply) HasLimit() bool

HasLimit returns a boolean if a field has been set.

func (*ListAppEventsReply) HasOffset ¶

func (o *ListAppEventsReply) HasOffset() bool

HasOffset returns a boolean if a field has been set.

func (*ListAppEventsReply) HasOrder ¶

func (o *ListAppEventsReply) HasOrder() bool

HasOrder returns a boolean if a field has been set.

func (ListAppEventsReply) MarshalJSON ¶

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

func (*ListAppEventsReply) SetCount ¶

func (o *ListAppEventsReply) SetCount(v int64)

SetCount gets a reference to the given int64 and assigns it to the Count field.

func (*ListAppEventsReply) SetEvents ¶

func (o *ListAppEventsReply) SetEvents(v []AppEvent)

SetEvents gets a reference to the given []AppEvent and assigns it to the Events field.

func (*ListAppEventsReply) SetLimit ¶

func (o *ListAppEventsReply) SetLimit(v int64)

SetLimit gets a reference to the given int64 and assigns it to the Limit field.

func (*ListAppEventsReply) SetOffset ¶

func (o *ListAppEventsReply) SetOffset(v int64)

SetOffset gets a reference to the given int64 and assigns it to the Offset field.

func (*ListAppEventsReply) SetOrder ¶

func (o *ListAppEventsReply) SetOrder(v string)

SetOrder gets a reference to the given string and assigns it to the Order field.

type ListAppsReply ¶

type ListAppsReply struct {
	Apps   []AppListItem `json:"apps,omitempty"`
	Limit  *int64        `json:"limit,omitempty"`
	Offset *int64        `json:"offset,omitempty"`
	Count  *int64        `json:"count,omitempty"`
}

ListAppsReply struct for ListAppsReply

func NewListAppsReply ¶

func NewListAppsReply() *ListAppsReply

NewListAppsReply instantiates a new ListAppsReply 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 NewListAppsReplyWithDefaults ¶

func NewListAppsReplyWithDefaults() *ListAppsReply

NewListAppsReplyWithDefaults instantiates a new ListAppsReply 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 (*ListAppsReply) GetApps ¶

func (o *ListAppsReply) GetApps() []AppListItem

GetApps returns the Apps field value if set, zero value otherwise.

func (*ListAppsReply) GetAppsOk ¶

func (o *ListAppsReply) GetAppsOk() ([]AppListItem, bool)

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

func (*ListAppsReply) GetCount ¶

func (o *ListAppsReply) GetCount() int64

GetCount returns the Count field value if set, zero value otherwise.

func (*ListAppsReply) GetCountOk ¶

func (o *ListAppsReply) GetCountOk() (*int64, bool)

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

func (*ListAppsReply) GetLimit ¶

func (o *ListAppsReply) GetLimit() int64

GetLimit returns the Limit field value if set, zero value otherwise.

func (*ListAppsReply) GetLimitOk ¶

func (o *ListAppsReply) GetLimitOk() (*int64, bool)

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

func (*ListAppsReply) GetOffset ¶

func (o *ListAppsReply) GetOffset() int64

GetOffset returns the Offset field value if set, zero value otherwise.

func (*ListAppsReply) GetOffsetOk ¶

func (o *ListAppsReply) GetOffsetOk() (*int64, bool)

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

func (*ListAppsReply) HasApps ¶

func (o *ListAppsReply) HasApps() bool

HasApps returns a boolean if a field has been set.

func (*ListAppsReply) HasCount ¶

func (o *ListAppsReply) HasCount() bool

HasCount returns a boolean if a field has been set.

func (*ListAppsReply) HasLimit ¶

func (o *ListAppsReply) HasLimit() bool

HasLimit returns a boolean if a field has been set.

func (*ListAppsReply) HasOffset ¶

func (o *ListAppsReply) HasOffset() bool

HasOffset returns a boolean if a field has been set.

func (ListAppsReply) MarshalJSON ¶

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

func (*ListAppsReply) SetApps ¶

func (o *ListAppsReply) SetApps(v []AppListItem)

SetApps gets a reference to the given []AppListItem and assigns it to the Apps field.

func (*ListAppsReply) SetCount ¶

func (o *ListAppsReply) SetCount(v int64)

SetCount gets a reference to the given int64 and assigns it to the Count field.

func (*ListAppsReply) SetLimit ¶

func (o *ListAppsReply) SetLimit(v int64)

SetLimit gets a reference to the given int64 and assigns it to the Limit field.

func (*ListAppsReply) SetOffset ¶

func (o *ListAppsReply) SetOffset(v int64)

SetOffset gets a reference to the given int64 and assigns it to the Offset field.

type ListCatalogInstancesReply ¶

type ListCatalogInstancesReply struct {
	Instances []CatalogInstanceListItem `json:"instances,omitempty"`
	Limit     *int64                    `json:"limit,omitempty"`
	Offset    *int64                    `json:"offset,omitempty"`
	Count     *int64                    `json:"count,omitempty"`
}

ListCatalogInstancesReply struct for ListCatalogInstancesReply

func NewListCatalogInstancesReply ¶

func NewListCatalogInstancesReply() *ListCatalogInstancesReply

NewListCatalogInstancesReply instantiates a new ListCatalogInstancesReply 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 NewListCatalogInstancesReplyWithDefaults ¶

func NewListCatalogInstancesReplyWithDefaults() *ListCatalogInstancesReply

NewListCatalogInstancesReplyWithDefaults instantiates a new ListCatalogInstancesReply 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 (*ListCatalogInstancesReply) GetCount ¶

func (o *ListCatalogInstancesReply) GetCount() int64

GetCount returns the Count field value if set, zero value otherwise.

func (*ListCatalogInstancesReply) GetCountOk ¶

func (o *ListCatalogInstancesReply) GetCountOk() (*int64, bool)

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

func (*ListCatalogInstancesReply) GetInstances ¶

GetInstances returns the Instances field value if set, zero value otherwise.

func (*ListCatalogInstancesReply) GetInstancesOk ¶

func (o *ListCatalogInstancesReply) GetInstancesOk() ([]CatalogInstanceListItem, bool)

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

func (*ListCatalogInstancesReply) GetLimit ¶

func (o *ListCatalogInstancesReply) GetLimit() int64

GetLimit returns the Limit field value if set, zero value otherwise.

func (*ListCatalogInstancesReply) GetLimitOk ¶

func (o *ListCatalogInstancesReply) GetLimitOk() (*int64, bool)

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

func (*ListCatalogInstancesReply) GetOffset ¶

func (o *ListCatalogInstancesReply) GetOffset() int64

GetOffset returns the Offset field value if set, zero value otherwise.

func (*ListCatalogInstancesReply) GetOffsetOk ¶

func (o *ListCatalogInstancesReply) GetOffsetOk() (*int64, bool)

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

func (*ListCatalogInstancesReply) HasCount ¶

func (o *ListCatalogInstancesReply) HasCount() bool

HasCount returns a boolean if a field has been set.

func (*ListCatalogInstancesReply) HasInstances ¶

func (o *ListCatalogInstancesReply) HasInstances() bool

HasInstances returns a boolean if a field has been set.

func (*ListCatalogInstancesReply) HasLimit ¶

func (o *ListCatalogInstancesReply) HasLimit() bool

HasLimit returns a boolean if a field has been set.

func (*ListCatalogInstancesReply) HasOffset ¶

func (o *ListCatalogInstancesReply) HasOffset() bool

HasOffset returns a boolean if a field has been set.

func (ListCatalogInstancesReply) MarshalJSON ¶

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

func (*ListCatalogInstancesReply) SetCount ¶

func (o *ListCatalogInstancesReply) SetCount(v int64)

SetCount gets a reference to the given int64 and assigns it to the Count field.

func (*ListCatalogInstancesReply) SetInstances ¶

SetInstances gets a reference to the given []CatalogInstanceListItem and assigns it to the Instances field.

func (*ListCatalogInstancesReply) SetLimit ¶

func (o *ListCatalogInstancesReply) SetLimit(v int64)

SetLimit gets a reference to the given int64 and assigns it to the Limit field.

func (*ListCatalogInstancesReply) SetOffset ¶

func (o *ListCatalogInstancesReply) SetOffset(v int64)

SetOffset gets a reference to the given int64 and assigns it to the Offset field.

type ListCredentialsReply ¶

type ListCredentialsReply struct {
	Credentials []Credential `json:"credentials,omitempty"`
	Limit       *int64       `json:"limit,omitempty"`
	Offset      *int64       `json:"offset,omitempty"`
	Count       *int64       `json:"count,omitempty"`
}

ListCredentialsReply struct for ListCredentialsReply

func NewListCredentialsReply ¶

func NewListCredentialsReply() *ListCredentialsReply

NewListCredentialsReply instantiates a new ListCredentialsReply 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 NewListCredentialsReplyWithDefaults ¶

func NewListCredentialsReplyWithDefaults() *ListCredentialsReply

NewListCredentialsReplyWithDefaults instantiates a new ListCredentialsReply 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 (*ListCredentialsReply) GetCount ¶

func (o *ListCredentialsReply) GetCount() int64

GetCount returns the Count field value if set, zero value otherwise.

func (*ListCredentialsReply) GetCountOk ¶

func (o *ListCredentialsReply) GetCountOk() (*int64, bool)

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

func (*ListCredentialsReply) GetCredentials ¶

func (o *ListCredentialsReply) GetCredentials() []Credential

GetCredentials returns the Credentials field value if set, zero value otherwise.

func (*ListCredentialsReply) GetCredentialsOk ¶

func (o *ListCredentialsReply) GetCredentialsOk() ([]Credential, bool)

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

func (*ListCredentialsReply) GetLimit ¶

func (o *ListCredentialsReply) GetLimit() int64

GetLimit returns the Limit field value if set, zero value otherwise.

func (*ListCredentialsReply) GetLimitOk ¶

func (o *ListCredentialsReply) GetLimitOk() (*int64, bool)

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

func (*ListCredentialsReply) GetOffset ¶

func (o *ListCredentialsReply) GetOffset() int64

GetOffset returns the Offset field value if set, zero value otherwise.

func (*ListCredentialsReply) GetOffsetOk ¶

func (o *ListCredentialsReply) GetOffsetOk() (*int64, bool)

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

func (*ListCredentialsReply) HasCount ¶

func (o *ListCredentialsReply) HasCount() bool

HasCount returns a boolean if a field has been set.

func (*ListCredentialsReply) HasCredentials ¶

func (o *ListCredentialsReply) HasCredentials() bool

HasCredentials returns a boolean if a field has been set.

func (*ListCredentialsReply) HasLimit ¶

func (o *ListCredentialsReply) HasLimit() bool

HasLimit returns a boolean if a field has been set.

func (*ListCredentialsReply) HasOffset ¶

func (o *ListCredentialsReply) HasOffset() bool

HasOffset returns a boolean if a field has been set.

func (ListCredentialsReply) MarshalJSON ¶

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

func (*ListCredentialsReply) SetCount ¶

func (o *ListCredentialsReply) SetCount(v int64)

SetCount gets a reference to the given int64 and assigns it to the Count field.

func (*ListCredentialsReply) SetCredentials ¶

func (o *ListCredentialsReply) SetCredentials(v []Credential)

SetCredentials gets a reference to the given []Credential and assigns it to the Credentials field.

func (*ListCredentialsReply) SetLimit ¶

func (o *ListCredentialsReply) SetLimit(v int64)

SetLimit gets a reference to the given int64 and assigns it to the Limit field.

func (*ListCredentialsReply) SetOffset ¶

func (o *ListCredentialsReply) SetOffset(v int64)

SetOffset gets a reference to the given int64 and assigns it to the Offset field.

type ListDatacentersReply ¶

type ListDatacentersReply struct {
	Datacenters []DatacenterListItem `json:"datacenters,omitempty"`
}

ListDatacentersReply struct for ListDatacentersReply

func NewListDatacentersReply ¶

func NewListDatacentersReply() *ListDatacentersReply

NewListDatacentersReply instantiates a new ListDatacentersReply 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 NewListDatacentersReplyWithDefaults ¶

func NewListDatacentersReplyWithDefaults() *ListDatacentersReply

NewListDatacentersReplyWithDefaults instantiates a new ListDatacentersReply 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 (*ListDatacentersReply) GetDatacenters ¶

func (o *ListDatacentersReply) GetDatacenters() []DatacenterListItem

GetDatacenters returns the Datacenters field value if set, zero value otherwise.

func (*ListDatacentersReply) GetDatacentersOk ¶

func (o *ListDatacentersReply) GetDatacentersOk() ([]DatacenterListItem, bool)

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

func (*ListDatacentersReply) HasDatacenters ¶

func (o *ListDatacentersReply) HasDatacenters() bool

HasDatacenters returns a boolean if a field has been set.

func (ListDatacentersReply) MarshalJSON ¶

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

func (*ListDatacentersReply) SetDatacenters ¶

func (o *ListDatacentersReply) SetDatacenters(v []DatacenterListItem)

SetDatacenters gets a reference to the given []DatacenterListItem and assigns it to the Datacenters field.

type ListDeploymentEventsReply ¶

type ListDeploymentEventsReply struct {
	Events []DeploymentEvent `json:"events,omitempty"`
	Limit  *int64            `json:"limit,omitempty"`
	Offset *int64            `json:"offset,omitempty"`
	Count  *int64            `json:"count,omitempty"`
	Order  *string           `json:"order,omitempty"`
}

ListDeploymentEventsReply struct for ListDeploymentEventsReply

func NewListDeploymentEventsReply ¶

func NewListDeploymentEventsReply() *ListDeploymentEventsReply

NewListDeploymentEventsReply instantiates a new ListDeploymentEventsReply 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 NewListDeploymentEventsReplyWithDefaults ¶

func NewListDeploymentEventsReplyWithDefaults() *ListDeploymentEventsReply

NewListDeploymentEventsReplyWithDefaults instantiates a new ListDeploymentEventsReply 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 (*ListDeploymentEventsReply) GetCount ¶

func (o *ListDeploymentEventsReply) GetCount() int64

GetCount returns the Count field value if set, zero value otherwise.

func (*ListDeploymentEventsReply) GetCountOk ¶

func (o *ListDeploymentEventsReply) GetCountOk() (*int64, bool)

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

func (*ListDeploymentEventsReply) GetEvents ¶

func (o *ListDeploymentEventsReply) GetEvents() []DeploymentEvent

GetEvents returns the Events field value if set, zero value otherwise.

func (*ListDeploymentEventsReply) GetEventsOk ¶

func (o *ListDeploymentEventsReply) GetEventsOk() ([]DeploymentEvent, bool)

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

func (*ListDeploymentEventsReply) GetLimit ¶

func (o *ListDeploymentEventsReply) GetLimit() int64

GetLimit returns the Limit field value if set, zero value otherwise.

func (*ListDeploymentEventsReply) GetLimitOk ¶

func (o *ListDeploymentEventsReply) GetLimitOk() (*int64, bool)

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

func (*ListDeploymentEventsReply) GetOffset ¶

func (o *ListDeploymentEventsReply) GetOffset() int64

GetOffset returns the Offset field value if set, zero value otherwise.

func (*ListDeploymentEventsReply) GetOffsetOk ¶

func (o *ListDeploymentEventsReply) GetOffsetOk() (*int64, bool)

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

func (*ListDeploymentEventsReply) GetOrder ¶

func (o *ListDeploymentEventsReply) GetOrder() string

GetOrder returns the Order field value if set, zero value otherwise.

func (*ListDeploymentEventsReply) GetOrderOk ¶

func (o *ListDeploymentEventsReply) GetOrderOk() (*string, bool)

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

func (*ListDeploymentEventsReply) HasCount ¶

func (o *ListDeploymentEventsReply) HasCount() bool

HasCount returns a boolean if a field has been set.

func (*ListDeploymentEventsReply) HasEvents ¶

func (o *ListDeploymentEventsReply) HasEvents() bool

HasEvents returns a boolean if a field has been set.

func (*ListDeploymentEventsReply) HasLimit ¶

func (o *ListDeploymentEventsReply) HasLimit() bool

HasLimit returns a boolean if a field has been set.

func (*ListDeploymentEventsReply) HasOffset ¶

func (o *ListDeploymentEventsReply) HasOffset() bool

HasOffset returns a boolean if a field has been set.

func (*ListDeploymentEventsReply) HasOrder ¶

func (o *ListDeploymentEventsReply) HasOrder() bool

HasOrder returns a boolean if a field has been set.

func (ListDeploymentEventsReply) MarshalJSON ¶

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

func (*ListDeploymentEventsReply) SetCount ¶

func (o *ListDeploymentEventsReply) SetCount(v int64)

SetCount gets a reference to the given int64 and assigns it to the Count field.

func (*ListDeploymentEventsReply) SetEvents ¶

func (o *ListDeploymentEventsReply) SetEvents(v []DeploymentEvent)

SetEvents gets a reference to the given []DeploymentEvent and assigns it to the Events field.

func (*ListDeploymentEventsReply) SetLimit ¶

func (o *ListDeploymentEventsReply) SetLimit(v int64)

SetLimit gets a reference to the given int64 and assigns it to the Limit field.

func (*ListDeploymentEventsReply) SetOffset ¶

func (o *ListDeploymentEventsReply) SetOffset(v int64)

SetOffset gets a reference to the given int64 and assigns it to the Offset field.

func (*ListDeploymentEventsReply) SetOrder ¶

func (o *ListDeploymentEventsReply) SetOrder(v string)

SetOrder gets a reference to the given string and assigns it to the Order field.

type ListDeploymentsReply ¶

type ListDeploymentsReply struct {
	Deployments []DeploymentListItem `json:"deployments,omitempty"`
	Limit       *int64               `json:"limit,omitempty"`
	Offset      *int64               `json:"offset,omitempty"`
	Count       *int64               `json:"count,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) GetCount ¶

func (o *ListDeploymentsReply) GetCount() int64

GetCount returns the Count field value if set, zero value otherwise.

func (*ListDeploymentsReply) GetCountOk ¶

func (o *ListDeploymentsReply) GetCountOk() (*int64, bool)

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

func (*ListDeploymentsReply) GetDeployments ¶

func (o *ListDeploymentsReply) GetDeployments() []DeploymentListItem

GetDeployments returns the Deployments field value if set, zero value otherwise.

func (*ListDeploymentsReply) GetDeploymentsOk ¶

func (o *ListDeploymentsReply) GetDeploymentsOk() ([]DeploymentListItem, bool)

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

func (*ListDeploymentsReply) GetLimit ¶

func (o *ListDeploymentsReply) GetLimit() int64

GetLimit returns the Limit field value if set, zero value otherwise.

func (*ListDeploymentsReply) GetLimitOk ¶

func (o *ListDeploymentsReply) GetLimitOk() (*int64, bool)

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

func (*ListDeploymentsReply) GetOffset ¶

func (o *ListDeploymentsReply) GetOffset() int64

GetOffset returns the Offset field value if set, zero value otherwise.

func (*ListDeploymentsReply) GetOffsetOk ¶

func (o *ListDeploymentsReply) GetOffsetOk() (*int64, bool)

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

func (*ListDeploymentsReply) HasCount ¶

func (o *ListDeploymentsReply) HasCount() bool

HasCount returns a boolean if a field has been set.

func (*ListDeploymentsReply) HasDeployments ¶

func (o *ListDeploymentsReply) HasDeployments() bool

HasDeployments returns a boolean if a field has been set.

func (*ListDeploymentsReply) HasLimit ¶

func (o *ListDeploymentsReply) HasLimit() bool

HasLimit returns a boolean if a field has been set.

func (*ListDeploymentsReply) HasOffset ¶

func (o *ListDeploymentsReply) HasOffset() bool

HasOffset returns a boolean if a field has been set.

func (ListDeploymentsReply) MarshalJSON ¶

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

func (*ListDeploymentsReply) SetCount ¶

func (o *ListDeploymentsReply) SetCount(v int64)

SetCount gets a reference to the given int64 and assigns it to the Count field.

func (*ListDeploymentsReply) SetDeployments ¶

func (o *ListDeploymentsReply) SetDeployments(v []DeploymentListItem)

SetDeployments gets a reference to the given []DeploymentListItem and assigns it to the Deployments field.

func (*ListDeploymentsReply) SetLimit ¶

func (o *ListDeploymentsReply) SetLimit(v int64)

SetLimit gets a reference to the given int64 and assigns it to the Limit field.

func (*ListDeploymentsReply) SetOffset ¶

func (o *ListDeploymentsReply) SetOffset(v int64)

SetOffset gets a reference to the given int64 and assigns it to the Offset field.

type ListDomainsReply ¶

type ListDomainsReply struct {
	Domains []Domain `json:"domains,omitempty"`
	Limit   *int64   `json:"limit,omitempty"`
	Offset  *int64   `json:"offset,omitempty"`
	Count   *int64   `json:"count,omitempty"`
}

ListDomainsReply struct for ListDomainsReply

func NewListDomainsReply ¶

func NewListDomainsReply() *ListDomainsReply

NewListDomainsReply instantiates a new ListDomainsReply 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 NewListDomainsReplyWithDefaults ¶

func NewListDomainsReplyWithDefaults() *ListDomainsReply

NewListDomainsReplyWithDefaults instantiates a new ListDomainsReply 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 (*ListDomainsReply) GetCount ¶

func (o *ListDomainsReply) GetCount() int64

GetCount returns the Count field value if set, zero value otherwise.

func (*ListDomainsReply) GetCountOk ¶

func (o *ListDomainsReply) GetCountOk() (*int64, bool)

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

func (*ListDomainsReply) GetDomains ¶

func (o *ListDomainsReply) GetDomains() []Domain

GetDomains returns the Domains field value if set, zero value otherwise.

func (*ListDomainsReply) GetDomainsOk ¶

func (o *ListDomainsReply) GetDomainsOk() ([]Domain, bool)

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

func (*ListDomainsReply) GetLimit ¶

func (o *ListDomainsReply) GetLimit() int64

GetLimit returns the Limit field value if set, zero value otherwise.

func (*ListDomainsReply) GetLimitOk ¶

func (o *ListDomainsReply) GetLimitOk() (*int64, bool)

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

func (*ListDomainsReply) GetOffset ¶

func (o *ListDomainsReply) GetOffset() int64

GetOffset returns the Offset field value if set, zero value otherwise.

func (*ListDomainsReply) GetOffsetOk ¶

func (o *ListDomainsReply) GetOffsetOk() (*int64, bool)

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

func (*ListDomainsReply) HasCount ¶

func (o *ListDomainsReply) HasCount() bool

HasCount returns a boolean if a field has been set.

func (*ListDomainsReply) HasDomains ¶

func (o *ListDomainsReply) HasDomains() bool

HasDomains returns a boolean if a field has been set.

func (*ListDomainsReply) HasLimit ¶

func (o *ListDomainsReply) HasLimit() bool

HasLimit returns a boolean if a field has been set.

func (*ListDomainsReply) HasOffset ¶

func (o *ListDomainsReply) HasOffset() bool

HasOffset returns a boolean if a field has been set.

func (ListDomainsReply) MarshalJSON ¶

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

func (*ListDomainsReply) SetCount ¶

func (o *ListDomainsReply) SetCount(v int64)

SetCount gets a reference to the given int64 and assigns it to the Count field.

func (*ListDomainsReply) SetDomains ¶

func (o *ListDomainsReply) SetDomains(v []Domain)

SetDomains gets a reference to the given []Domain and assigns it to the Domains field.

func (*ListDomainsReply) SetLimit ¶

func (o *ListDomainsReply) SetLimit(v int64)

SetLimit gets a reference to the given int64 and assigns it to the Limit field.

func (*ListDomainsReply) SetOffset ¶

func (o *ListDomainsReply) SetOffset(v int64)

SetOffset gets a reference to the given int64 and assigns it to the Offset field.

type ListInstanceEventsReply ¶

type ListInstanceEventsReply struct {
	Events []InstanceEvent `json:"events,omitempty"`
	Limit  *int64          `json:"limit,omitempty"`
	Offset *int64          `json:"offset,omitempty"`
	Count  *int64          `json:"count,omitempty"`
	Order  *string         `json:"order,omitempty"`
}

ListInstanceEventsReply struct for ListInstanceEventsReply

func NewListInstanceEventsReply ¶

func NewListInstanceEventsReply() *ListInstanceEventsReply

NewListInstanceEventsReply instantiates a new ListInstanceEventsReply 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 NewListInstanceEventsReplyWithDefaults ¶

func NewListInstanceEventsReplyWithDefaults() *ListInstanceEventsReply

NewListInstanceEventsReplyWithDefaults instantiates a new ListInstanceEventsReply 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 (*ListInstanceEventsReply) GetCount ¶

func (o *ListInstanceEventsReply) GetCount() int64

GetCount returns the Count field value if set, zero value otherwise.

func (*ListInstanceEventsReply) GetCountOk ¶

func (o *ListInstanceEventsReply) GetCountOk() (*int64, bool)

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

func (*ListInstanceEventsReply) GetEvents ¶

func (o *ListInstanceEventsReply) GetEvents() []InstanceEvent

GetEvents returns the Events field value if set, zero value otherwise.

func (*ListInstanceEventsReply) GetEventsOk ¶

func (o *ListInstanceEventsReply) GetEventsOk() ([]InstanceEvent, bool)

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

func (*ListInstanceEventsReply) GetLimit ¶

func (o *ListInstanceEventsReply) GetLimit() int64

GetLimit returns the Limit field value if set, zero value otherwise.

func (*ListInstanceEventsReply) GetLimitOk ¶

func (o *ListInstanceEventsReply) GetLimitOk() (*int64, bool)

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

func (*ListInstanceEventsReply) GetOffset ¶

func (o *ListInstanceEventsReply) GetOffset() int64

GetOffset returns the Offset field value if set, zero value otherwise.

func (*ListInstanceEventsReply) GetOffsetOk ¶

func (o *ListInstanceEventsReply) GetOffsetOk() (*int64, bool)

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

func (*ListInstanceEventsReply) GetOrder ¶

func (o *ListInstanceEventsReply) GetOrder() string

GetOrder returns the Order field value if set, zero value otherwise.

func (*ListInstanceEventsReply) GetOrderOk ¶

func (o *ListInstanceEventsReply) GetOrderOk() (*string, bool)

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

func (*ListInstanceEventsReply) HasCount ¶

func (o *ListInstanceEventsReply) HasCount() bool

HasCount returns a boolean if a field has been set.

func (*ListInstanceEventsReply) HasEvents ¶

func (o *ListInstanceEventsReply) HasEvents() bool

HasEvents returns a boolean if a field has been set.

func (*ListInstanceEventsReply) HasLimit ¶

func (o *ListInstanceEventsReply) HasLimit() bool

HasLimit returns a boolean if a field has been set.

func (*ListInstanceEventsReply) HasOffset ¶

func (o *ListInstanceEventsReply) HasOffset() bool

HasOffset returns a boolean if a field has been set.

func (*ListInstanceEventsReply) HasOrder ¶

func (o *ListInstanceEventsReply) HasOrder() bool

HasOrder returns a boolean if a field has been set.

func (ListInstanceEventsReply) MarshalJSON ¶

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

func (*ListInstanceEventsReply) SetCount ¶

func (o *ListInstanceEventsReply) SetCount(v int64)

SetCount gets a reference to the given int64 and assigns it to the Count field.

func (*ListInstanceEventsReply) SetEvents ¶

func (o *ListInstanceEventsReply) SetEvents(v []InstanceEvent)

SetEvents gets a reference to the given []InstanceEvent and assigns it to the Events field.

func (*ListInstanceEventsReply) SetLimit ¶

func (o *ListInstanceEventsReply) SetLimit(v int64)

SetLimit gets a reference to the given int64 and assigns it to the Limit field.

func (*ListInstanceEventsReply) SetOffset ¶

func (o *ListInstanceEventsReply) SetOffset(v int64)

SetOffset gets a reference to the given int64 and assigns it to the Offset field.

func (*ListInstanceEventsReply) SetOrder ¶

func (o *ListInstanceEventsReply) SetOrder(v string)

SetOrder gets a reference to the given string and assigns it to the Order field.

type ListInstancesReply ¶

type ListInstancesReply struct {
	Instances []InstanceListItem `json:"instances,omitempty"`
	Limit     *int64             `json:"limit,omitempty"`
	Offset    *int64             `json:"offset,omitempty"`
	Count     *int64             `json:"count,omitempty"`
	Order     *string            `json:"order,omitempty"`
}

ListInstancesReply struct for ListInstancesReply

func NewListInstancesReply ¶

func NewListInstancesReply() *ListInstancesReply

NewListInstancesReply instantiates a new ListInstancesReply 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 NewListInstancesReplyWithDefaults ¶

func NewListInstancesReplyWithDefaults() *ListInstancesReply

NewListInstancesReplyWithDefaults instantiates a new ListInstancesReply 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 (*ListInstancesReply) GetCount ¶

func (o *ListInstancesReply) GetCount() int64

GetCount returns the Count field value if set, zero value otherwise.

func (*ListInstancesReply) GetCountOk ¶

func (o *ListInstancesReply) GetCountOk() (*int64, bool)

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

func (*ListInstancesReply) GetInstances ¶

func (o *ListInstancesReply) GetInstances() []InstanceListItem

GetInstances returns the Instances field value if set, zero value otherwise.

func (*ListInstancesReply) GetInstancesOk ¶

func (o *ListInstancesReply) GetInstancesOk() ([]InstanceListItem, bool)

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

func (*ListInstancesReply) GetLimit ¶

func (o *ListInstancesReply) GetLimit() int64

GetLimit returns the Limit field value if set, zero value otherwise.

func (*ListInstancesReply) GetLimitOk ¶

func (o *ListInstancesReply) GetLimitOk() (*int64, bool)

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

func (*ListInstancesReply) GetOffset ¶

func (o *ListInstancesReply) GetOffset() int64

GetOffset returns the Offset field value if set, zero value otherwise.

func (*ListInstancesReply) GetOffsetOk ¶

func (o *ListInstancesReply) GetOffsetOk() (*int64, bool)

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

func (*ListInstancesReply) GetOrder ¶

func (o *ListInstancesReply) GetOrder() string

GetOrder returns the Order field value if set, zero value otherwise.

func (*ListInstancesReply) GetOrderOk ¶

func (o *ListInstancesReply) GetOrderOk() (*string, bool)

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

func (*ListInstancesReply) HasCount ¶

func (o *ListInstancesReply) HasCount() bool

HasCount returns a boolean if a field has been set.

func (*ListInstancesReply) HasInstances ¶

func (o *ListInstancesReply) HasInstances() bool

HasInstances returns a boolean if a field has been set.

func (*ListInstancesReply) HasLimit ¶

func (o *ListInstancesReply) HasLimit() bool

HasLimit returns a boolean if a field has been set.

func (*ListInstancesReply) HasOffset ¶

func (o *ListInstancesReply) HasOffset() bool

HasOffset returns a boolean if a field has been set.

func (*ListInstancesReply) HasOrder ¶

func (o *ListInstancesReply) HasOrder() bool

HasOrder returns a boolean if a field has been set.

func (ListInstancesReply) MarshalJSON ¶

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

func (*ListInstancesReply) SetCount ¶

func (o *ListInstancesReply) SetCount(v int64)

SetCount gets a reference to the given int64 and assigns it to the Count field.

func (*ListInstancesReply) SetInstances ¶

func (o *ListInstancesReply) SetInstances(v []InstanceListItem)

SetInstances gets a reference to the given []InstanceListItem and assigns it to the Instances field.

func (*ListInstancesReply) SetLimit ¶

func (o *ListInstancesReply) SetLimit(v int64)

SetLimit gets a reference to the given int64 and assigns it to the Limit field.

func (*ListInstancesReply) SetOffset ¶

func (o *ListInstancesReply) SetOffset(v int64)

SetOffset gets a reference to the given int64 and assigns it to the Offset field.

func (*ListInstancesReply) SetOrder ¶

func (o *ListInstancesReply) SetOrder(v string)

SetOrder gets a reference to the given string and assigns it to the Order field.

type ListOrganizationInvitationsReply ¶

type ListOrganizationInvitationsReply struct {
	Invitations []OrganizationInvitation `json:"invitations,omitempty"`
	Limit       *int64                   `json:"limit,omitempty"`
	Offset      *int64                   `json:"offset,omitempty"`
	Count       *int64                   `json:"count,omitempty"`
}

ListOrganizationInvitationsReply struct for ListOrganizationInvitationsReply

func NewListOrganizationInvitationsReply ¶

func NewListOrganizationInvitationsReply() *ListOrganizationInvitationsReply

NewListOrganizationInvitationsReply instantiates a new ListOrganizationInvitationsReply 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 NewListOrganizationInvitationsReplyWithDefaults ¶

func NewListOrganizationInvitationsReplyWithDefaults() *ListOrganizationInvitationsReply

NewListOrganizationInvitationsReplyWithDefaults instantiates a new ListOrganizationInvitationsReply 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 (*ListOrganizationInvitationsReply) GetCount ¶

GetCount returns the Count field value if set, zero value otherwise.

func (*ListOrganizationInvitationsReply) GetCountOk ¶

func (o *ListOrganizationInvitationsReply) GetCountOk() (*int64, bool)

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

func (*ListOrganizationInvitationsReply) GetInvitations ¶

GetInvitations returns the Invitations field value if set, zero value otherwise.

func (*ListOrganizationInvitationsReply) GetInvitationsOk ¶

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

func (*ListOrganizationInvitationsReply) GetLimit ¶

GetLimit returns the Limit field value if set, zero value otherwise.

func (*ListOrganizationInvitationsReply) GetLimitOk ¶

func (o *ListOrganizationInvitationsReply) GetLimitOk() (*int64, bool)

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

func (*ListOrganizationInvitationsReply) GetOffset ¶

func (o *ListOrganizationInvitationsReply) GetOffset() int64

GetOffset returns the Offset field value if set, zero value otherwise.

func (*ListOrganizationInvitationsReply) GetOffsetOk ¶

func (o *ListOrganizationInvitationsReply) GetOffsetOk() (*int64, bool)

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

func (*ListOrganizationInvitationsReply) HasCount ¶

func (o *ListOrganizationInvitationsReply) HasCount() bool

HasCount returns a boolean if a field has been set.

func (*ListOrganizationInvitationsReply) HasInvitations ¶

func (o *ListOrganizationInvitationsReply) HasInvitations() bool

HasInvitations returns a boolean if a field has been set.

func (*ListOrganizationInvitationsReply) HasLimit ¶

func (o *ListOrganizationInvitationsReply) HasLimit() bool

HasLimit returns a boolean if a field has been set.

func (*ListOrganizationInvitationsReply) HasOffset ¶

func (o *ListOrganizationInvitationsReply) HasOffset() bool

HasOffset returns a boolean if a field has been set.

func (ListOrganizationInvitationsReply) MarshalJSON ¶

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

func (*ListOrganizationInvitationsReply) SetCount ¶

func (o *ListOrganizationInvitationsReply) SetCount(v int64)

SetCount gets a reference to the given int64 and assigns it to the Count field.

func (*ListOrganizationInvitationsReply) SetInvitations ¶

SetInvitations gets a reference to the given []OrganizationInvitation and assigns it to the Invitations field.

func (*ListOrganizationInvitationsReply) SetLimit ¶

func (o *ListOrganizationInvitationsReply) SetLimit(v int64)

SetLimit gets a reference to the given int64 and assigns it to the Limit field.

func (*ListOrganizationInvitationsReply) SetOffset ¶

func (o *ListOrganizationInvitationsReply) SetOffset(v int64)

SetOffset gets a reference to the given int64 and assigns it to the Offset field.

type ListOrganizationMembersReply ¶

type ListOrganizationMembersReply struct {
	Members []OrganizationMember `json:"members,omitempty"`
	Limit   *int64               `json:"limit,omitempty"`
	Offset  *int64               `json:"offset,omitempty"`
	Count   *int64               `json:"count,omitempty"`
}

ListOrganizationMembersReply struct for ListOrganizationMembersReply

func NewListOrganizationMembersReply ¶

func NewListOrganizationMembersReply() *ListOrganizationMembersReply

NewListOrganizationMembersReply instantiates a new ListOrganizationMembersReply 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 NewListOrganizationMembersReplyWithDefaults ¶

func NewListOrganizationMembersReplyWithDefaults() *ListOrganizationMembersReply

NewListOrganizationMembersReplyWithDefaults instantiates a new ListOrganizationMembersReply 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 (*ListOrganizationMembersReply) GetCount ¶

func (o *ListOrganizationMembersReply) GetCount() int64

GetCount returns the Count field value if set, zero value otherwise.

func (*ListOrganizationMembersReply) GetCountOk ¶

func (o *ListOrganizationMembersReply) GetCountOk() (*int64, bool)

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

func (*ListOrganizationMembersReply) GetLimit ¶

func (o *ListOrganizationMembersReply) GetLimit() int64

GetLimit returns the Limit field value if set, zero value otherwise.

func (*ListOrganizationMembersReply) GetLimitOk ¶

func (o *ListOrganizationMembersReply) GetLimitOk() (*int64, bool)

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

func (*ListOrganizationMembersReply) GetMembers ¶

GetMembers returns the Members field value if set, zero value otherwise.

func (*ListOrganizationMembersReply) GetMembersOk ¶

func (o *ListOrganizationMembersReply) GetMembersOk() ([]OrganizationMember, bool)

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

func (*ListOrganizationMembersReply) GetOffset ¶

func (o *ListOrganizationMembersReply) GetOffset() int64

GetOffset returns the Offset field value if set, zero value otherwise.

func (*ListOrganizationMembersReply) GetOffsetOk ¶

func (o *ListOrganizationMembersReply) GetOffsetOk() (*int64, bool)

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

func (*ListOrganizationMembersReply) HasCount ¶

func (o *ListOrganizationMembersReply) HasCount() bool

HasCount returns a boolean if a field has been set.

func (*ListOrganizationMembersReply) HasLimit ¶

func (o *ListOrganizationMembersReply) HasLimit() bool

HasLimit returns a boolean if a field has been set.

func (*ListOrganizationMembersReply) HasMembers ¶

func (o *ListOrganizationMembersReply) HasMembers() bool

HasMembers returns a boolean if a field has been set.

func (*ListOrganizationMembersReply) HasOffset ¶

func (o *ListOrganizationMembersReply) HasOffset() bool

HasOffset returns a boolean if a field has been set.

func (ListOrganizationMembersReply) MarshalJSON ¶

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

func (*ListOrganizationMembersReply) SetCount ¶

func (o *ListOrganizationMembersReply) SetCount(v int64)

SetCount gets a reference to the given int64 and assigns it to the Count field.

func (*ListOrganizationMembersReply) SetLimit ¶

func (o *ListOrganizationMembersReply) SetLimit(v int64)

SetLimit gets a reference to the given int64 and assigns it to the Limit field.

func (*ListOrganizationMembersReply) SetMembers ¶

SetMembers gets a reference to the given []OrganizationMember and assigns it to the Members field.

func (*ListOrganizationMembersReply) SetOffset ¶

func (o *ListOrganizationMembersReply) SetOffset(v int64)

SetOffset gets a reference to the given int64 and assigns it to the Offset field.

type ListPaymentMethodsReply ¶

type ListPaymentMethodsReply struct {
	PaymentMethods []PaymentMethod `json:"payment_methods,omitempty"`
	Limit          *int64          `json:"limit,omitempty"`
	Offset         *int64          `json:"offset,omitempty"`
	Count          *int64          `json:"count,omitempty"`
}

ListPaymentMethodsReply struct for ListPaymentMethodsReply

func NewListPaymentMethodsReply ¶

func NewListPaymentMethodsReply() *ListPaymentMethodsReply

NewListPaymentMethodsReply instantiates a new ListPaymentMethodsReply 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 NewListPaymentMethodsReplyWithDefaults ¶

func NewListPaymentMethodsReplyWithDefaults() *ListPaymentMethodsReply

NewListPaymentMethodsReplyWithDefaults instantiates a new ListPaymentMethodsReply 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 (*ListPaymentMethodsReply) GetCount ¶

func (o *ListPaymentMethodsReply) GetCount() int64

GetCount returns the Count field value if set, zero value otherwise.

func (*ListPaymentMethodsReply) GetCountOk ¶

func (o *ListPaymentMethodsReply) GetCountOk() (*int64, bool)

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

func (*ListPaymentMethodsReply) GetLimit ¶

func (o *ListPaymentMethodsReply) GetLimit() int64

GetLimit returns the Limit field value if set, zero value otherwise.

func (*ListPaymentMethodsReply) GetLimitOk ¶

func (o *ListPaymentMethodsReply) GetLimitOk() (*int64, bool)

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

func (*ListPaymentMethodsReply) GetOffset ¶

func (o *ListPaymentMethodsReply) GetOffset() int64

GetOffset returns the Offset field value if set, zero value otherwise.

func (*ListPaymentMethodsReply) GetOffsetOk ¶

func (o *ListPaymentMethodsReply) GetOffsetOk() (*int64, bool)

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

func (*ListPaymentMethodsReply) GetPaymentMethods ¶

func (o *ListPaymentMethodsReply) GetPaymentMethods() []PaymentMethod

GetPaymentMethods returns the PaymentMethods field value if set, zero value otherwise.

func (*ListPaymentMethodsReply) GetPaymentMethodsOk ¶

func (o *ListPaymentMethodsReply) GetPaymentMethodsOk() ([]PaymentMethod, bool)

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

func (*ListPaymentMethodsReply) HasCount ¶

func (o *ListPaymentMethodsReply) HasCount() bool

HasCount returns a boolean if a field has been set.

func (*ListPaymentMethodsReply) HasLimit ¶

func (o *ListPaymentMethodsReply) HasLimit() bool

HasLimit returns a boolean if a field has been set.

func (*ListPaymentMethodsReply) HasOffset ¶

func (o *ListPaymentMethodsReply) HasOffset() bool

HasOffset returns a boolean if a field has been set.

func (*ListPaymentMethodsReply) HasPaymentMethods ¶

func (o *ListPaymentMethodsReply) HasPaymentMethods() bool

HasPaymentMethods returns a boolean if a field has been set.

func (ListPaymentMethodsReply) MarshalJSON ¶

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

func (*ListPaymentMethodsReply) SetCount ¶

func (o *ListPaymentMethodsReply) SetCount(v int64)

SetCount gets a reference to the given int64 and assigns it to the Count field.

func (*ListPaymentMethodsReply) SetLimit ¶

func (o *ListPaymentMethodsReply) SetLimit(v int64)

SetLimit gets a reference to the given int64 and assigns it to the Limit field.

func (*ListPaymentMethodsReply) SetOffset ¶

func (o *ListPaymentMethodsReply) SetOffset(v int64)

SetOffset gets a reference to the given int64 and assigns it to the Offset field.

func (*ListPaymentMethodsReply) SetPaymentMethods ¶

func (o *ListPaymentMethodsReply) SetPaymentMethods(v []PaymentMethod)

SetPaymentMethods gets a reference to the given []PaymentMethod and assigns it to the PaymentMethods field.

type ListRegionalDeploymentEventsReply ¶

type ListRegionalDeploymentEventsReply struct {
	Events []RegionalDeploymentEvent `json:"events,omitempty"`
	Limit  *int64                    `json:"limit,omitempty"`
	Offset *int64                    `json:"offset,omitempty"`
	Count  *int64                    `json:"count,omitempty"`
	Order  *string                   `json:"order,omitempty"`
}

ListRegionalDeploymentEventsReply struct for ListRegionalDeploymentEventsReply

func NewListRegionalDeploymentEventsReply ¶

func NewListRegionalDeploymentEventsReply() *ListRegionalDeploymentEventsReply

NewListRegionalDeploymentEventsReply instantiates a new ListRegionalDeploymentEventsReply 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 NewListRegionalDeploymentEventsReplyWithDefaults ¶

func NewListRegionalDeploymentEventsReplyWithDefaults() *ListRegionalDeploymentEventsReply

NewListRegionalDeploymentEventsReplyWithDefaults instantiates a new ListRegionalDeploymentEventsReply 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 (*ListRegionalDeploymentEventsReply) GetCount ¶

GetCount returns the Count field value if set, zero value otherwise.

func (*ListRegionalDeploymentEventsReply) GetCountOk ¶

func (o *ListRegionalDeploymentEventsReply) GetCountOk() (*int64, bool)

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

func (*ListRegionalDeploymentEventsReply) GetEvents ¶

GetEvents returns the Events field value if set, zero value otherwise.

func (*ListRegionalDeploymentEventsReply) GetEventsOk ¶

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

func (*ListRegionalDeploymentEventsReply) GetLimit ¶

GetLimit returns the Limit field value if set, zero value otherwise.

func (*ListRegionalDeploymentEventsReply) GetLimitOk ¶

func (o *ListRegionalDeploymentEventsReply) GetLimitOk() (*int64, bool)

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

func (*ListRegionalDeploymentEventsReply) GetOffset ¶

GetOffset returns the Offset field value if set, zero value otherwise.

func (*ListRegionalDeploymentEventsReply) GetOffsetOk ¶

func (o *ListRegionalDeploymentEventsReply) GetOffsetOk() (*int64, bool)

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

func (*ListRegionalDeploymentEventsReply) GetOrder ¶

GetOrder returns the Order field value if set, zero value otherwise.

func (*ListRegionalDeploymentEventsReply) GetOrderOk ¶

func (o *ListRegionalDeploymentEventsReply) GetOrderOk() (*string, bool)

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

func (*ListRegionalDeploymentEventsReply) HasCount ¶

HasCount returns a boolean if a field has been set.

func (*ListRegionalDeploymentEventsReply) HasEvents ¶

func (o *ListRegionalDeploymentEventsReply) HasEvents() bool

HasEvents returns a boolean if a field has been set.

func (*ListRegionalDeploymentEventsReply) HasLimit ¶

HasLimit returns a boolean if a field has been set.

func (*ListRegionalDeploymentEventsReply) HasOffset ¶

func (o *ListRegionalDeploymentEventsReply) HasOffset() bool

HasOffset returns a boolean if a field has been set.

func (*ListRegionalDeploymentEventsReply) HasOrder ¶

HasOrder returns a boolean if a field has been set.

func (ListRegionalDeploymentEventsReply) MarshalJSON ¶

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

func (*ListRegionalDeploymentEventsReply) SetCount ¶

SetCount gets a reference to the given int64 and assigns it to the Count field.

func (*ListRegionalDeploymentEventsReply) SetEvents ¶

SetEvents gets a reference to the given []RegionalDeploymentEvent and assigns it to the Events field.

func (*ListRegionalDeploymentEventsReply) SetLimit ¶

SetLimit gets a reference to the given int64 and assigns it to the Limit field.

func (*ListRegionalDeploymentEventsReply) SetOffset ¶

func (o *ListRegionalDeploymentEventsReply) SetOffset(v int64)

SetOffset gets a reference to the given int64 and assigns it to the Offset field.

func (*ListRegionalDeploymentEventsReply) SetOrder ¶

SetOrder gets a reference to the given string and assigns it to the Order field.

type ListRegionalDeploymentsReply ¶

type ListRegionalDeploymentsReply struct {
	RegionalDeployments []RegionalDeploymentListItem `json:"regional_deployments,omitempty"`
	Limit               *int64                       `json:"limit,omitempty"`
	Offset              *int64                       `json:"offset,omitempty"`
	Count               *int64                       `json:"count,omitempty"`
}

ListRegionalDeploymentsReply struct for ListRegionalDeploymentsReply

func NewListRegionalDeploymentsReply ¶

func NewListRegionalDeploymentsReply() *ListRegionalDeploymentsReply

NewListRegionalDeploymentsReply instantiates a new ListRegionalDeploymentsReply 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 NewListRegionalDeploymentsReplyWithDefaults ¶

func NewListRegionalDeploymentsReplyWithDefaults() *ListRegionalDeploymentsReply

NewListRegionalDeploymentsReplyWithDefaults instantiates a new ListRegionalDeploymentsReply 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 (*ListRegionalDeploymentsReply) GetCount ¶

func (o *ListRegionalDeploymentsReply) GetCount() int64

GetCount returns the Count field value if set, zero value otherwise.

func (*ListRegionalDeploymentsReply) GetCountOk ¶

func (o *ListRegionalDeploymentsReply) GetCountOk() (*int64, bool)

GetCountOk returns a tuple with the Count field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ListRegionalDeploymentsReply) GetLimit ¶

func (o *ListRegionalDeploymentsReply) GetLimit() int64

GetLimit returns the Limit field value if set, zero value otherwise.

func (*ListRegionalDeploymentsReply) GetLimitOk ¶

func (o *ListRegionalDeploymentsReply) GetLimitOk() (*int64, bool)

GetLimitOk returns a tuple with the Limit field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ListRegionalDeploymentsReply) GetOffset ¶

func (o *ListRegionalDeploymentsReply) GetOffset() int64

GetOffset returns the Offset field value if set, zero value otherwise.

func (*ListRegionalDeploymentsReply) GetOffsetOk ¶

func (o *ListRegionalDeploymentsReply) GetOffsetOk() (*int64, bool)

GetOffsetOk returns a tuple with the Offset field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ListRegionalDeploymentsReply) GetRegionalDeployments ¶

func (o *ListRegionalDeploymentsReply) GetRegionalDeployments() []RegionalDeploymentListItem

GetRegionalDeployments returns the RegionalDeployments field value if set, zero value otherwise.

func (*ListRegionalDeploymentsReply) GetRegionalDeploymentsOk ¶

func (o *ListRegionalDeploymentsReply) GetRegionalDeploymentsOk() ([]RegionalDeploymentListItem, bool)

GetRegionalDeploymentsOk returns a tuple with the RegionalDeployments field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ListRegionalDeploymentsReply) HasCount ¶

func (o *ListRegionalDeploymentsReply) HasCount() bool

HasCount returns a boolean if a field has been set.

func (*ListRegionalDeploymentsReply) HasLimit ¶

func (o *ListRegionalDeploymentsReply) HasLimit() bool

HasLimit returns a boolean if a field has been set.

func (*ListRegionalDeploymentsReply) HasOffset ¶

func (o *ListRegionalDeploymentsReply) HasOffset() bool

HasOffset returns a boolean if a field has been set.

func (*ListRegionalDeploymentsReply) HasRegionalDeployments ¶

func (o *ListRegionalDeploymentsReply) HasRegionalDeployments() bool

HasRegionalDeployments returns a boolean if a field has been set.

func (ListRegionalDeploymentsReply) MarshalJSON ¶

func (o ListRegionalDeploymentsReply) MarshalJSON() ([]byte, error)

func (*ListRegionalDeploymentsReply) SetCount ¶

func (o *ListRegionalDeploymentsReply) SetCount(v int64)

SetCount gets a reference to the given int64 and assigns it to the Count field.

func (*ListRegionalDeploymentsReply) SetLimit ¶

func (o *ListRegionalDeploymentsReply) SetLimit(v int64)

SetLimit gets a reference to the given int64 and assigns it to the Limit field.

func (*ListRegionalDeploymentsReply) SetOffset ¶

func (o *ListRegionalDeploymentsReply) SetOffset(v int64)

SetOffset gets a reference to the given int64 and assigns it to the Offset field.

func (*ListRegionalDeploymentsReply) SetRegionalDeployments ¶

func (o *ListRegionalDeploymentsReply) SetRegionalDeployments(v []RegionalDeploymentListItem)

SetRegionalDeployments gets a reference to the given []RegionalDeploymentListItem and assigns it to the RegionalDeployments field.

type ListRegionsReply ¶

type ListRegionsReply struct {
	Regions []RegionListItem `json:"regions,omitempty"`
	Limit   *int64           `json:"limit,omitempty"`
	Offset  *int64           `json:"offset,omitempty"`
	Count   *int64           `json:"count,omitempty"`
}

ListRegionsReply struct for ListRegionsReply

func NewListRegionsReply ¶

func NewListRegionsReply() *ListRegionsReply

NewListRegionsReply instantiates a new ListRegionsReply 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 NewListRegionsReplyWithDefaults ¶

func NewListRegionsReplyWithDefaults() *ListRegionsReply

NewListRegionsReplyWithDefaults instantiates a new ListRegionsReply 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 (*ListRegionsReply) GetCount ¶

func (o *ListRegionsReply) GetCount() int64

GetCount returns the Count field value if set, zero value otherwise.

func (*ListRegionsReply) GetCountOk ¶

func (o *ListRegionsReply) GetCountOk() (*int64, bool)

GetCountOk returns a tuple with the Count field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ListRegionsReply) GetLimit ¶

func (o *ListRegionsReply) GetLimit() int64

GetLimit returns the Limit field value if set, zero value otherwise.

func (*ListRegionsReply) GetLimitOk ¶

func (o *ListRegionsReply) GetLimitOk() (*int64, bool)

GetLimitOk returns a tuple with the Limit field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ListRegionsReply) GetOffset ¶

func (o *ListRegionsReply) GetOffset() int64

GetOffset returns the Offset field value if set, zero value otherwise.

func (*ListRegionsReply) GetOffsetOk ¶

func (o *ListRegionsReply) GetOffsetOk() (*int64, bool)

GetOffsetOk returns a tuple with the Offset field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ListRegionsReply) GetRegions ¶

func (o *ListRegionsReply) GetRegions() []RegionListItem

GetRegions returns the Regions field value if set, zero value otherwise.

func (*ListRegionsReply) GetRegionsOk ¶

func (o *ListRegionsReply) GetRegionsOk() ([]RegionListItem, bool)

GetRegionsOk returns a tuple with the Regions field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ListRegionsReply) HasCount ¶

func (o *ListRegionsReply) HasCount() bool

HasCount returns a boolean if a field has been set.

func (*ListRegionsReply) HasLimit ¶

func (o *ListRegionsReply) HasLimit() bool

HasLimit returns a boolean if a field has been set.

func (*ListRegionsReply) HasOffset ¶

func (o *ListRegionsReply) HasOffset() bool

HasOffset returns a boolean if a field has been set.

func (*ListRegionsReply) HasRegions ¶

func (o *ListRegionsReply) HasRegions() bool

HasRegions returns a boolean if a field has been set.

func (ListRegionsReply) MarshalJSON ¶

func (o ListRegionsReply) MarshalJSON() ([]byte, error)

func (*ListRegionsReply) SetCount ¶

func (o *ListRegionsReply) SetCount(v int64)

SetCount gets a reference to the given int64 and assigns it to the Count field.

func (*ListRegionsReply) SetLimit ¶

func (o *ListRegionsReply) SetLimit(v int64)

SetLimit gets a reference to the given int64 and assigns it to the Limit field.

func (*ListRegionsReply) SetOffset ¶

func (o *ListRegionsReply) SetOffset(v int64)

SetOffset gets a reference to the given int64 and assigns it to the Offset field.

func (*ListRegionsReply) SetRegions ¶

func (o *ListRegionsReply) SetRegions(v []RegionListItem)

SetRegions gets a reference to the given []RegionListItem and assigns it to the Regions field.

type ListSecretsReply ¶

type ListSecretsReply struct {
	Secrets []Secret `json:"secrets,omitempty"`
	Limit   *int64   `json:"limit,omitempty"`
	Offset  *int64   `json:"offset,omitempty"`
	Count   *int64   `json:"count,omitempty"`
}

ListSecretsReply struct for ListSecretsReply

func NewListSecretsReply ¶

func NewListSecretsReply() *ListSecretsReply

NewListSecretsReply instantiates a new ListSecretsReply 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 NewListSecretsReplyWithDefaults ¶

func NewListSecretsReplyWithDefaults() *ListSecretsReply

NewListSecretsReplyWithDefaults instantiates a new ListSecretsReply 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 (*ListSecretsReply) GetCount ¶

func (o *ListSecretsReply) GetCount() int64

GetCount returns the Count field value if set, zero value otherwise.

func (*ListSecretsReply) GetCountOk ¶

func (o *ListSecretsReply) GetCountOk() (*int64, bool)

GetCountOk returns a tuple with the Count field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ListSecretsReply) GetLimit ¶

func (o *ListSecretsReply) GetLimit() int64

GetLimit returns the Limit field value if set, zero value otherwise.

func (*ListSecretsReply) GetLimitOk ¶

func (o *ListSecretsReply) GetLimitOk() (*int64, bool)

GetLimitOk returns a tuple with the Limit field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ListSecretsReply) GetOffset ¶

func (o *ListSecretsReply) GetOffset() int64

GetOffset returns the Offset field value if set, zero value otherwise.

func (*ListSecretsReply) GetOffsetOk ¶

func (o *ListSecretsReply) GetOffsetOk() (*int64, bool)

GetOffsetOk returns a tuple with the Offset field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ListSecretsReply) GetSecrets ¶

func (o *ListSecretsReply) GetSecrets() []Secret

GetSecrets returns the Secrets field value if set, zero value otherwise.

func (*ListSecretsReply) GetSecretsOk ¶

func (o *ListSecretsReply) GetSecretsOk() ([]Secret, bool)

GetSecretsOk returns a tuple with the Secrets field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ListSecretsReply) HasCount ¶

func (o *ListSecretsReply) HasCount() bool

HasCount returns a boolean if a field has been set.

func (*ListSecretsReply) HasLimit ¶

func (o *ListSecretsReply) HasLimit() bool

HasLimit returns a boolean if a field has been set.

func (*ListSecretsReply) HasOffset ¶

func (o *ListSecretsReply) HasOffset() bool

HasOffset returns a boolean if a field has been set.

func (*ListSecretsReply) HasSecrets ¶

func (o *ListSecretsReply) HasSecrets() bool

HasSecrets returns a boolean if a field has been set.

func (ListSecretsReply) MarshalJSON ¶

func (o ListSecretsReply) MarshalJSON() ([]byte, error)

func (*ListSecretsReply) SetCount ¶

func (o *ListSecretsReply) SetCount(v int64)

SetCount gets a reference to the given int64 and assigns it to the Count field.

func (*ListSecretsReply) SetLimit ¶

func (o *ListSecretsReply) SetLimit(v int64)

SetLimit gets a reference to the given int64 and assigns it to the Limit field.

func (*ListSecretsReply) SetOffset ¶

func (o *ListSecretsReply) SetOffset(v int64)

SetOffset gets a reference to the given int64 and assigns it to the Offset field.

func (*ListSecretsReply) SetSecrets ¶

func (o *ListSecretsReply) SetSecrets(v []Secret)

SetSecrets gets a reference to the given []Secret and assigns it to the Secrets field.

type ListServiceEventsReply ¶

type ListServiceEventsReply struct {
	Events []ServiceEvent `json:"events,omitempty"`
	Limit  *int64         `json:"limit,omitempty"`
	Offset *int64         `json:"offset,omitempty"`
	Count  *int64         `json:"count,omitempty"`
	Order  *string        `json:"order,omitempty"`
}

ListServiceEventsReply struct for ListServiceEventsReply

func NewListServiceEventsReply ¶

func NewListServiceEventsReply() *ListServiceEventsReply

NewListServiceEventsReply instantiates a new ListServiceEventsReply 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 NewListServiceEventsReplyWithDefaults ¶

func NewListServiceEventsReplyWithDefaults() *ListServiceEventsReply

NewListServiceEventsReplyWithDefaults instantiates a new ListServiceEventsReply 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 (*ListServiceEventsReply) GetCount ¶

func (o *ListServiceEventsReply) GetCount() int64

GetCount returns the Count field value if set, zero value otherwise.

func (*ListServiceEventsReply) GetCountOk ¶

func (o *ListServiceEventsReply) GetCountOk() (*int64, bool)

GetCountOk returns a tuple with the Count field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ListServiceEventsReply) GetEvents ¶

func (o *ListServiceEventsReply) GetEvents() []ServiceEvent

GetEvents returns the Events field value if set, zero value otherwise.

func (*ListServiceEventsReply) GetEventsOk ¶

func (o *ListServiceEventsReply) GetEventsOk() ([]ServiceEvent, bool)

GetEventsOk returns a tuple with the Events field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ListServiceEventsReply) GetLimit ¶

func (o *ListServiceEventsReply) GetLimit() int64

GetLimit returns the Limit field value if set, zero value otherwise.

func (*ListServiceEventsReply) GetLimitOk ¶

func (o *ListServiceEventsReply) GetLimitOk() (*int64, bool)

GetLimitOk returns a tuple with the Limit field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ListServiceEventsReply) GetOffset ¶

func (o *ListServiceEventsReply) GetOffset() int64

GetOffset returns the Offset field value if set, zero value otherwise.

func (*ListServiceEventsReply) GetOffsetOk ¶

func (o *ListServiceEventsReply) GetOffsetOk() (*int64, bool)

GetOffsetOk returns a tuple with the Offset field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ListServiceEventsReply) GetOrder ¶

func (o *ListServiceEventsReply) GetOrder() string

GetOrder returns the Order field value if set, zero value otherwise.

func (*ListServiceEventsReply) GetOrderOk ¶

func (o *ListServiceEventsReply) GetOrderOk() (*string, bool)

GetOrderOk returns a tuple with the Order field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ListServiceEventsReply) HasCount ¶

func (o *ListServiceEventsReply) HasCount() bool

HasCount returns a boolean if a field has been set.

func (*ListServiceEventsReply) HasEvents ¶

func (o *ListServiceEventsReply) HasEvents() bool

HasEvents returns a boolean if a field has been set.

func (*ListServiceEventsReply) HasLimit ¶

func (o *ListServiceEventsReply) HasLimit() bool

HasLimit returns a boolean if a field has been set.

func (*ListServiceEventsReply) HasOffset ¶

func (o *ListServiceEventsReply) HasOffset() bool

HasOffset returns a boolean if a field has been set.

func (*ListServiceEventsReply) HasOrder ¶

func (o *ListServiceEventsReply) HasOrder() bool

HasOrder returns a boolean if a field has been set.

func (ListServiceEventsReply) MarshalJSON ¶

func (o ListServiceEventsReply) MarshalJSON() ([]byte, error)

func (*ListServiceEventsReply) SetCount ¶

func (o *ListServiceEventsReply) SetCount(v int64)

SetCount gets a reference to the given int64 and assigns it to the Count field.

func (*ListServiceEventsReply) SetEvents ¶

func (o *ListServiceEventsReply) SetEvents(v []ServiceEvent)

SetEvents gets a reference to the given []ServiceEvent and assigns it to the Events field.

func (*ListServiceEventsReply) SetLimit ¶

func (o *ListServiceEventsReply) SetLimit(v int64)

SetLimit gets a reference to the given int64 and assigns it to the Limit field.

func (*ListServiceEventsReply) SetOffset ¶

func (o *ListServiceEventsReply) SetOffset(v int64)

SetOffset gets a reference to the given int64 and assigns it to the Offset field.

func (*ListServiceEventsReply) SetOrder ¶

func (o *ListServiceEventsReply) SetOrder(v string)

SetOrder gets a reference to the given string and assigns it to the Order field.

type ListServicesReply ¶

type ListServicesReply struct {
	Services []ServiceListItem `json:"services,omitempty"`
	Limit    *int64            `json:"limit,omitempty"`
	Offset   *int64            `json:"offset,omitempty"`
	Count    *int64            `json:"count,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) GetCount ¶

func (o *ListServicesReply) GetCount() int64

GetCount returns the Count field value if set, zero value otherwise.

func (*ListServicesReply) GetCountOk ¶

func (o *ListServicesReply) GetCountOk() (*int64, bool)

GetCountOk returns a tuple with the Count field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ListServicesReply) GetLimit ¶

func (o *ListServicesReply) GetLimit() int64

GetLimit returns the Limit field value if set, zero value otherwise.

func (*ListServicesReply) GetLimitOk ¶

func (o *ListServicesReply) GetLimitOk() (*int64, bool)

GetLimitOk returns a tuple with the Limit field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ListServicesReply) GetOffset ¶

func (o *ListServicesReply) GetOffset() int64

GetOffset returns the Offset field value if set, zero value otherwise.

func (*ListServicesReply) GetOffsetOk ¶

func (o *ListServicesReply) GetOffsetOk() (*int64, bool)

GetOffsetOk returns a tuple with the Offset field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ListServicesReply) GetServices ¶

func (o *ListServicesReply) GetServices() []ServiceListItem

GetServices returns the Services field value if set, zero value otherwise.

func (*ListServicesReply) GetServicesOk ¶

func (o *ListServicesReply) GetServicesOk() ([]ServiceListItem, bool)

GetServicesOk returns a tuple with the Services field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ListServicesReply) HasCount ¶

func (o *ListServicesReply) HasCount() bool

HasCount returns a boolean if a field has been set.

func (*ListServicesReply) HasLimit ¶

func (o *ListServicesReply) HasLimit() bool

HasLimit returns a boolean if a field has been set.

func (*ListServicesReply) HasOffset ¶

func (o *ListServicesReply) HasOffset() bool

HasOffset returns a boolean if a field has been set.

func (*ListServicesReply) HasServices ¶

func (o *ListServicesReply) HasServices() bool

HasServices returns a boolean if a field has been set.

func (ListServicesReply) MarshalJSON ¶

func (o ListServicesReply) MarshalJSON() ([]byte, error)

func (*ListServicesReply) SetCount ¶

func (o *ListServicesReply) SetCount(v int64)

SetCount gets a reference to the given int64 and assigns it to the Count field.

func (*ListServicesReply) SetLimit ¶

func (o *ListServicesReply) SetLimit(v int64)

SetLimit gets a reference to the given int64 and assigns it to the Limit field.

func (*ListServicesReply) SetOffset ¶

func (o *ListServicesReply) SetOffset(v int64)

SetOffset gets a reference to the given int64 and assigns it to the Offset field.

func (*ListServicesReply) SetServices ¶

func (o *ListServicesReply) SetServices(v []ServiceListItem)

SetServices gets a reference to the given []ServiceListItem and assigns it to the Services field.

type ListUserOrganizationInvitationsReply ¶

type ListUserOrganizationInvitationsReply struct {
	Invitations []OrganizationInvitation `json:"invitations,omitempty"`
	Limit       *int64                   `json:"limit,omitempty"`
	Offset      *int64                   `json:"offset,omitempty"`
	Count       *int64                   `json:"count,omitempty"`
}

ListUserOrganizationInvitationsReply struct for ListUserOrganizationInvitationsReply

func NewListUserOrganizationInvitationsReply ¶

func NewListUserOrganizationInvitationsReply() *ListUserOrganizationInvitationsReply

NewListUserOrganizationInvitationsReply instantiates a new ListUserOrganizationInvitationsReply 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 NewListUserOrganizationInvitationsReplyWithDefaults ¶

func NewListUserOrganizationInvitationsReplyWithDefaults() *ListUserOrganizationInvitationsReply

NewListUserOrganizationInvitationsReplyWithDefaults instantiates a new ListUserOrganizationInvitationsReply 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 (*ListUserOrganizationInvitationsReply) GetCount ¶

GetCount returns the Count field value if set, zero value otherwise.

func (*ListUserOrganizationInvitationsReply) GetCountOk ¶

func (o *ListUserOrganizationInvitationsReply) GetCountOk() (*int64, bool)

GetCountOk returns a tuple with the Count field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ListUserOrganizationInvitationsReply) GetInvitations ¶

GetInvitations returns the Invitations field value if set, zero value otherwise.

func (*ListUserOrganizationInvitationsReply) GetInvitationsOk ¶

GetInvitationsOk returns a tuple with the Invitations field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ListUserOrganizationInvitationsReply) GetLimit ¶

GetLimit returns the Limit field value if set, zero value otherwise.

func (*ListUserOrganizationInvitationsReply) GetLimitOk ¶

func (o *ListUserOrganizationInvitationsReply) GetLimitOk() (*int64, bool)

GetLimitOk returns a tuple with the Limit field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ListUserOrganizationInvitationsReply) GetOffset ¶

GetOffset returns the Offset field value if set, zero value otherwise.

func (*ListUserOrganizationInvitationsReply) GetOffsetOk ¶

func (o *ListUserOrganizationInvitationsReply) GetOffsetOk() (*int64, bool)

GetOffsetOk returns a tuple with the Offset field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ListUserOrganizationInvitationsReply) HasCount ¶

HasCount returns a boolean if a field has been set.

func (*ListUserOrganizationInvitationsReply) HasInvitations ¶

func (o *ListUserOrganizationInvitationsReply) HasInvitations() bool

HasInvitations returns a boolean if a field has been set.

func (*ListUserOrganizationInvitationsReply) HasLimit ¶

HasLimit returns a boolean if a field has been set.

func (*ListUserOrganizationInvitationsReply) HasOffset ¶

HasOffset returns a boolean if a field has been set.

func (ListUserOrganizationInvitationsReply) MarshalJSON ¶

func (o ListUserOrganizationInvitationsReply) MarshalJSON() ([]byte, error)

func (*ListUserOrganizationInvitationsReply) SetCount ¶

SetCount gets a reference to the given int64 and assigns it to the Count field.

func (*ListUserOrganizationInvitationsReply) SetInvitations ¶

SetInvitations gets a reference to the given []OrganizationInvitation and assigns it to the Invitations field.

func (*ListUserOrganizationInvitationsReply) SetLimit ¶

SetLimit gets a reference to the given int64 and assigns it to the Limit field.

func (*ListUserOrganizationInvitationsReply) SetOffset ¶

SetOffset gets a reference to the given int64 and assigns it to the Offset field.

type LogEntry ¶

type LogEntry struct {
	Msg       *string                `json:"msg,omitempty"`
	CreatedAt *time.Time             `json:"created_at,omitempty"`
	Labels    map[string]interface{} `json:"labels,omitempty"`
}

LogEntry struct for LogEntry

func NewLogEntry ¶

func NewLogEntry() *LogEntry

NewLogEntry instantiates a new LogEntry 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 NewLogEntryWithDefaults ¶

func NewLogEntryWithDefaults() *LogEntry

NewLogEntryWithDefaults instantiates a new LogEntry 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 (*LogEntry) GetCreatedAt ¶

func (o *LogEntry) GetCreatedAt() time.Time

GetCreatedAt returns the CreatedAt field value if set, zero value otherwise.

func (*LogEntry) GetCreatedAtOk ¶

func (o *LogEntry) GetCreatedAtOk() (*time.Time, bool)

GetCreatedAtOk returns a tuple with the CreatedAt field value if set, nil otherwise and a boolean to check if the value has been set.

func (*LogEntry) GetLabels ¶

func (o *LogEntry) GetLabels() map[string]interface{}

GetLabels returns the Labels field value if set, zero value otherwise.

func (*LogEntry) GetLabelsOk ¶

func (o *LogEntry) GetLabelsOk() (map[string]interface{}, bool)

GetLabelsOk returns a tuple with the Labels field value if set, nil otherwise and a boolean to check if the value has been set.

func (*LogEntry) GetMsg ¶

func (o *LogEntry) GetMsg() string

GetMsg returns the Msg field value if set, zero value otherwise.

func (*LogEntry) GetMsgOk ¶

func (o *LogEntry) GetMsgOk() (*string, bool)

GetMsgOk returns a tuple with the Msg field value if set, nil otherwise and a boolean to check if the value has been set.

func (*LogEntry) HasCreatedAt ¶

func (o *LogEntry) HasCreatedAt() bool

HasCreatedAt returns a boolean if a field has been set.

func (*LogEntry) HasLabels ¶

func (o *LogEntry) HasLabels() bool

HasLabels returns a boolean if a field has been set.

func (*LogEntry) HasMsg ¶

func (o *LogEntry) HasMsg() bool

HasMsg returns a boolean if a field has been set.

func (LogEntry) MarshalJSON ¶

func (o LogEntry) MarshalJSON() ([]byte, error)

func (*LogEntry) SetCreatedAt ¶

func (o *LogEntry) SetCreatedAt(v time.Time)

SetCreatedAt gets a reference to the given time.Time and assigns it to the CreatedAt field.

func (*LogEntry) SetLabels ¶

func (o *LogEntry) SetLabels(v map[string]interface{})

SetLabels gets a reference to the given map[string]interface{} and assigns it to the Labels field.

func (*LogEntry) SetMsg ¶

func (o *LogEntry) SetMsg(v string)

SetMsg gets a reference to the given string and assigns it to the Msg field.

type LoginReply ¶

type LoginReply struct {
	Token *Token `json:"token,omitempty"`
}

LoginReply struct for LoginReply

func NewLoginReply ¶

func NewLoginReply() *LoginReply

NewLoginReply instantiates a new LoginReply 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 NewLoginReplyWithDefaults ¶

func NewLoginReplyWithDefaults() *LoginReply

NewLoginReplyWithDefaults instantiates a new LoginReply 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 (*LoginReply) GetToken ¶

func (o *LoginReply) GetToken() Token

GetToken returns the Token field value if set, zero value otherwise.

func (*LoginReply) GetTokenOk ¶

func (o *LoginReply) GetTokenOk() (*Token, bool)

GetTokenOk returns a tuple with the Token field value if set, nil otherwise and a boolean to check if the value has been set.

func (*LoginReply) HasToken ¶

func (o *LoginReply) HasToken() bool

HasToken returns a boolean if a field has been set.

func (LoginReply) MarshalJSON ¶

func (o LoginReply) MarshalJSON() ([]byte, error)

func (*LoginReply) SetToken ¶

func (o *LoginReply) SetToken(v Token)

SetToken gets a reference to the given Token and assigns it to the Token field.

type LoginRequest ¶

type LoginRequest struct {
	Email          *string `json:"email,omitempty"`
	Password       *string `json:"password,omitempty"`
	OrganizationId *string `json:"organization_id,omitempty"`
}

LoginRequest struct for LoginRequest

func NewLoginRequest ¶

func NewLoginRequest() *LoginRequest

NewLoginRequest instantiates a new LoginRequest 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 NewLoginRequestWithDefaults ¶

func NewLoginRequestWithDefaults() *LoginRequest

NewLoginRequestWithDefaults instantiates a new LoginRequest 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 (*LoginRequest) GetEmail ¶

func (o *LoginRequest) GetEmail() string

GetEmail returns the Email field value if set, zero value otherwise.

func (*LoginRequest) GetEmailOk ¶

func (o *LoginRequest) GetEmailOk() (*string, bool)

GetEmailOk returns a tuple with the Email field value if set, nil otherwise and a boolean to check if the value has been set.

func (*LoginRequest) GetOrganizationId ¶

func (o *LoginRequest) GetOrganizationId() string

GetOrganizationId returns the OrganizationId field value if set, zero value otherwise.

func (*LoginRequest) GetOrganizationIdOk ¶

func (o *LoginRequest) GetOrganizationIdOk() (*string, bool)

GetOrganizationIdOk returns a tuple with the OrganizationId field value if set, nil otherwise and a boolean to check if the value has been set.

func (*LoginRequest) GetPassword ¶

func (o *LoginRequest) GetPassword() string

GetPassword returns the Password field value if set, zero value otherwise.

func (*LoginRequest) GetPasswordOk ¶

func (o *LoginRequest) GetPasswordOk() (*string, bool)

GetPasswordOk returns a tuple with the Password field value if set, nil otherwise and a boolean to check if the value has been set.

func (*LoginRequest) HasEmail ¶

func (o *LoginRequest) HasEmail() bool

HasEmail returns a boolean if a field has been set.

func (*LoginRequest) HasOrganizationId ¶

func (o *LoginRequest) HasOrganizationId() bool

HasOrganizationId returns a boolean if a field has been set.

func (*LoginRequest) HasPassword ¶

func (o *LoginRequest) HasPassword() bool

HasPassword returns a boolean if a field has been set.

func (LoginRequest) MarshalJSON ¶

func (o LoginRequest) MarshalJSON() ([]byte, error)

func (*LoginRequest) SetEmail ¶

func (o *LoginRequest) SetEmail(v string)

SetEmail gets a reference to the given string and assigns it to the Email field.

func (*LoginRequest) SetOrganizationId ¶

func (o *LoginRequest) SetOrganizationId(v string)

SetOrganizationId gets a reference to the given string and assigns it to the OrganizationId field.

func (*LoginRequest) SetPassword ¶

func (o *LoginRequest) SetPassword(v string)

SetPassword gets a reference to the given string and assigns it to the Password field.

type LogsApi ¶

type LogsApi interface {

	/*
		TailLogs Tails logs

		@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
		@return ApiTailLogsRequest
	*/
	TailLogs(ctx context.Context) ApiTailLogsRequest

	// TailLogsExecute executes the request
	//  @return StreamResultOfLogEntry
	TailLogsExecute(r ApiTailLogsRequest) (*StreamResultOfLogEntry, *http.Response, error)
}

type LogsApiService ¶

type LogsApiService service

LogsApiService LogsApi service

func (*LogsApiService) TailLogs ¶

TailLogs Tails logs

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@return ApiTailLogsRequest

func (*LogsApiService) TailLogsExecute ¶

Execute executes the request

@return StreamResultOfLogEntry

type ManageReply ¶

type ManageReply struct {
	Url *string `json:"url,omitempty"`
}

ManageReply struct for ManageReply

func NewManageReply ¶

func NewManageReply() *ManageReply

NewManageReply instantiates a new ManageReply 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 NewManageReplyWithDefaults ¶

func NewManageReplyWithDefaults() *ManageReply

NewManageReplyWithDefaults instantiates a new ManageReply 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 (*ManageReply) GetUrl ¶

func (o *ManageReply) GetUrl() string

GetUrl returns the Url field value if set, zero value otherwise.

func (*ManageReply) GetUrlOk ¶

func (o *ManageReply) 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 (*ManageReply) HasUrl ¶

func (o *ManageReply) HasUrl() bool

HasUrl returns a boolean if a field has been set.

func (ManageReply) MarshalJSON ¶

func (o ManageReply) MarshalJSON() ([]byte, error)

func (*ManageReply) SetUrl ¶

func (o *ManageReply) SetUrl(v string)

SetUrl gets a reference to the given string and assigns it to the Url field.

type MembersSummary ¶

type MembersSummary struct {
	Total               *string            `json:"total,omitempty"`
	InvitationsByStatus *map[string]string `json:"invitations_by_status,omitempty"`
}

MembersSummary struct for MembersSummary

func NewMembersSummary ¶

func NewMembersSummary() *MembersSummary

NewMembersSummary instantiates a new MembersSummary 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 NewMembersSummaryWithDefaults ¶

func NewMembersSummaryWithDefaults() *MembersSummary

NewMembersSummaryWithDefaults instantiates a new MembersSummary 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 (*MembersSummary) GetInvitationsByStatus ¶

func (o *MembersSummary) GetInvitationsByStatus() map[string]string

GetInvitationsByStatus returns the InvitationsByStatus field value if set, zero value otherwise.

func (*MembersSummary) GetInvitationsByStatusOk ¶

func (o *MembersSummary) GetInvitationsByStatusOk() (*map[string]string, bool)

GetInvitationsByStatusOk returns a tuple with the InvitationsByStatus field value if set, nil otherwise and a boolean to check if the value has been set.

func (*MembersSummary) GetTotal ¶

func (o *MembersSummary) GetTotal() string

GetTotal returns the Total field value if set, zero value otherwise.

func (*MembersSummary) GetTotalOk ¶

func (o *MembersSummary) GetTotalOk() (*string, bool)

GetTotalOk returns a tuple with the Total field value if set, nil otherwise and a boolean to check if the value has been set.

func (*MembersSummary) HasInvitationsByStatus ¶

func (o *MembersSummary) HasInvitationsByStatus() bool

HasInvitationsByStatus returns a boolean if a field has been set.

func (*MembersSummary) HasTotal ¶

func (o *MembersSummary) HasTotal() bool

HasTotal returns a boolean if a field has been set.

func (MembersSummary) MarshalJSON ¶

func (o MembersSummary) MarshalJSON() ([]byte, error)

func (*MembersSummary) SetInvitationsByStatus ¶

func (o *MembersSummary) SetInvitationsByStatus(v map[string]string)

SetInvitationsByStatus gets a reference to the given map[string]string and assigns it to the InvitationsByStatus field.

func (*MembersSummary) SetTotal ¶

func (o *MembersSummary) SetTotal(v string)

SetTotal gets a reference to the given string and assigns it to the Total field.

type MetricName ¶

type MetricName string

MetricName the model 'MetricName'

const (
	METRICNAME_UNKNOWN                  MetricName = "UNKNOWN"
	METRICNAME_CPU_TOTAL_PERCENT        MetricName = "CPU_TOTAL_PERCENT"
	METRICNAME_MEM_RSS                  MetricName = "MEM_RSS"
	METRICNAME_HTTP_THROUGHPUT          MetricName = "HTTP_THROUGHPUT"
	METRICNAME_HTTP_RESPONSE_TIME_50_P  MetricName = "HTTP_RESPONSE_TIME_50P"
	METRICNAME_HTTP_RESPONSE_TIME_90_P  MetricName = "HTTP_RESPONSE_TIME_90P"
	METRICNAME_HTTP_RESPONSE_TIME_99_P  MetricName = "HTTP_RESPONSE_TIME_99P"
	METRICNAME_HTTP_RESPONSE_TIME_MAX   MetricName = "HTTP_RESPONSE_TIME_MAX"
	METRICNAME_PUBLIC_DATA_TRANSFER_IN  MetricName = "PUBLIC_DATA_TRANSFER_IN"
	METRICNAME_PUBLIC_DATA_TRANSFER_OUT MetricName = "PUBLIC_DATA_TRANSFER_OUT"
)

List of MetricName

func NewMetricNameFromValue ¶

func NewMetricNameFromValue(v string) (*MetricName, error)

NewMetricNameFromValue returns a pointer to a valid MetricName for the value passed as argument, or an error if the value passed is not allowed by the enum

func (MetricName) IsValid ¶

func (v MetricName) IsValid() bool

IsValid return true if the value is valid for the enum, false otherwise

func (MetricName) Ptr ¶

func (v MetricName) Ptr() *MetricName

Ptr returns reference to MetricName value

func (*MetricName) UnmarshalJSON ¶

func (v *MetricName) UnmarshalJSON(src []byte) error

type MetricsApi ¶

type MetricsApi interface {

	/*
		GetMetrics Method for GetMetrics

		@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
		@return ApiGetMetricsRequest
	*/
	GetMetrics(ctx context.Context) ApiGetMetricsRequest

	// GetMetricsExecute executes the request
	//  @return GetMetricsReply
	GetMetricsExecute(r ApiGetMetricsRequest) (*GetMetricsReply, *http.Response, error)
}

type MetricsApiService ¶

type MetricsApiService service

MetricsApiService MetricsApi service

func (*MetricsApiService) GetMetrics ¶

GetMetrics Method for GetMetrics

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@return ApiGetMetricsRequest

func (*MetricsApiService) GetMetricsExecute ¶

Execute executes the request

@return GetMetricsReply

type NeonPostgresDatabase ¶

type NeonPostgresDatabase struct {
	PgVersion    *int64                             `json:"pg_version,omitempty"`
	Region       *string                            `json:"region,omitempty"`
	InstanceType *string                            `json:"instance_type,omitempty"`
	Roles        []NeonPostgresDatabaseNeonRole     `json:"roles,omitempty"`
	Databases    []NeonPostgresDatabaseNeonDatabase `json:"databases,omitempty"`
}

NeonPostgresDatabase struct for NeonPostgresDatabase

func NewNeonPostgresDatabase ¶

func NewNeonPostgresDatabase() *NeonPostgresDatabase

NewNeonPostgresDatabase instantiates a new NeonPostgresDatabase 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 NewNeonPostgresDatabaseWithDefaults ¶

func NewNeonPostgresDatabaseWithDefaults() *NeonPostgresDatabase

NewNeonPostgresDatabaseWithDefaults instantiates a new NeonPostgresDatabase 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 (*NeonPostgresDatabase) GetDatabases ¶

GetDatabases returns the Databases field value if set, zero value otherwise.

func (*NeonPostgresDatabase) GetDatabasesOk ¶

GetDatabasesOk returns a tuple with the Databases field value if set, nil otherwise and a boolean to check if the value has been set.

func (*NeonPostgresDatabase) GetInstanceType ¶

func (o *NeonPostgresDatabase) GetInstanceType() string

GetInstanceType returns the InstanceType field value if set, zero value otherwise.

func (*NeonPostgresDatabase) GetInstanceTypeOk ¶

func (o *NeonPostgresDatabase) GetInstanceTypeOk() (*string, bool)

GetInstanceTypeOk returns a tuple with the InstanceType field value if set, nil otherwise and a boolean to check if the value has been set.

func (*NeonPostgresDatabase) GetPgVersion ¶

func (o *NeonPostgresDatabase) GetPgVersion() int64

GetPgVersion returns the PgVersion field value if set, zero value otherwise.

func (*NeonPostgresDatabase) GetPgVersionOk ¶

func (o *NeonPostgresDatabase) GetPgVersionOk() (*int64, bool)

GetPgVersionOk returns a tuple with the PgVersion field value if set, nil otherwise and a boolean to check if the value has been set.

func (*NeonPostgresDatabase) GetRegion ¶

func (o *NeonPostgresDatabase) GetRegion() string

GetRegion returns the Region field value if set, zero value otherwise.

func (*NeonPostgresDatabase) GetRegionOk ¶

func (o *NeonPostgresDatabase) GetRegionOk() (*string, bool)

GetRegionOk returns a tuple with the Region field value if set, nil otherwise and a boolean to check if the value has been set.

func (*NeonPostgresDatabase) GetRoles ¶

GetRoles returns the Roles field value if set, zero value otherwise.

func (*NeonPostgresDatabase) GetRolesOk ¶

GetRolesOk returns a tuple with the Roles field value if set, nil otherwise and a boolean to check if the value has been set.

func (*NeonPostgresDatabase) HasDatabases ¶

func (o *NeonPostgresDatabase) HasDatabases() bool

HasDatabases returns a boolean if a field has been set.

func (*NeonPostgresDatabase) HasInstanceType ¶

func (o *NeonPostgresDatabase) HasInstanceType() bool

HasInstanceType returns a boolean if a field has been set.

func (*NeonPostgresDatabase) HasPgVersion ¶

func (o *NeonPostgresDatabase) HasPgVersion() bool

HasPgVersion returns a boolean if a field has been set.

func (*NeonPostgresDatabase) HasRegion ¶

func (o *NeonPostgresDatabase) HasRegion() bool

HasRegion returns a boolean if a field has been set.

func (*NeonPostgresDatabase) HasRoles ¶

func (o *NeonPostgresDatabase) HasRoles() bool

HasRoles returns a boolean if a field has been set.

func (NeonPostgresDatabase) MarshalJSON ¶

func (o NeonPostgresDatabase) MarshalJSON() ([]byte, error)

func (*NeonPostgresDatabase) SetDatabases ¶

SetDatabases gets a reference to the given []NeonPostgresDatabaseNeonDatabase and assigns it to the Databases field.

func (*NeonPostgresDatabase) SetInstanceType ¶

func (o *NeonPostgresDatabase) SetInstanceType(v string)

SetInstanceType gets a reference to the given string and assigns it to the InstanceType field.

func (*NeonPostgresDatabase) SetPgVersion ¶

func (o *NeonPostgresDatabase) SetPgVersion(v int64)

SetPgVersion gets a reference to the given int64 and assigns it to the PgVersion field.

func (*NeonPostgresDatabase) SetRegion ¶

func (o *NeonPostgresDatabase) SetRegion(v string)

SetRegion gets a reference to the given string and assigns it to the Region field.

func (*NeonPostgresDatabase) SetRoles ¶

SetRoles gets a reference to the given []NeonPostgresDatabaseNeonRole and assigns it to the Roles field.

type NeonPostgresDatabaseDeploymentMetadata ¶

type NeonPostgresDatabaseDeploymentMetadata struct {
	ResetRolePasswords []string `json:"reset_role_passwords,omitempty"`
}

NeonPostgresDatabaseDeploymentMetadata struct for NeonPostgresDatabaseDeploymentMetadata

func NewNeonPostgresDatabaseDeploymentMetadata ¶

func NewNeonPostgresDatabaseDeploymentMetadata() *NeonPostgresDatabaseDeploymentMetadata

NewNeonPostgresDatabaseDeploymentMetadata instantiates a new NeonPostgresDatabaseDeploymentMetadata 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 NewNeonPostgresDatabaseDeploymentMetadataWithDefaults ¶

func NewNeonPostgresDatabaseDeploymentMetadataWithDefaults() *NeonPostgresDatabaseDeploymentMetadata

NewNeonPostgresDatabaseDeploymentMetadataWithDefaults instantiates a new NeonPostgresDatabaseDeploymentMetadata 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 (*NeonPostgresDatabaseDeploymentMetadata) GetResetRolePasswords ¶

func (o *NeonPostgresDatabaseDeploymentMetadata) GetResetRolePasswords() []string

GetResetRolePasswords returns the ResetRolePasswords field value if set, zero value otherwise.

func (*NeonPostgresDatabaseDeploymentMetadata) GetResetRolePasswordsOk ¶

func (o *NeonPostgresDatabaseDeploymentMetadata) GetResetRolePasswordsOk() ([]string, bool)

GetResetRolePasswordsOk returns a tuple with the ResetRolePasswords field value if set, nil otherwise and a boolean to check if the value has been set.

func (*NeonPostgresDatabaseDeploymentMetadata) HasResetRolePasswords ¶

func (o *NeonPostgresDatabaseDeploymentMetadata) HasResetRolePasswords() bool

HasResetRolePasswords returns a boolean if a field has been set.

func (NeonPostgresDatabaseDeploymentMetadata) MarshalJSON ¶

func (o NeonPostgresDatabaseDeploymentMetadata) MarshalJSON() ([]byte, error)

func (*NeonPostgresDatabaseDeploymentMetadata) SetResetRolePasswords ¶

func (o *NeonPostgresDatabaseDeploymentMetadata) SetResetRolePasswords(v []string)

SetResetRolePasswords gets a reference to the given []string and assigns it to the ResetRolePasswords field.

type NeonPostgresDatabaseNeonDatabase ¶

type NeonPostgresDatabaseNeonDatabase struct {
	Name  *string `json:"name,omitempty"`
	Owner *string `json:"owner,omitempty"`
}

NeonPostgresDatabaseNeonDatabase struct for NeonPostgresDatabaseNeonDatabase

func NewNeonPostgresDatabaseNeonDatabase ¶

func NewNeonPostgresDatabaseNeonDatabase() *NeonPostgresDatabaseNeonDatabase

NewNeonPostgresDatabaseNeonDatabase instantiates a new NeonPostgresDatabaseNeonDatabase 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 NewNeonPostgresDatabaseNeonDatabaseWithDefaults ¶

func NewNeonPostgresDatabaseNeonDatabaseWithDefaults() *NeonPostgresDatabaseNeonDatabase

NewNeonPostgresDatabaseNeonDatabaseWithDefaults instantiates a new NeonPostgresDatabaseNeonDatabase 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 (*NeonPostgresDatabaseNeonDatabase) GetName ¶

GetName returns the Name field value if set, zero value otherwise.

func (*NeonPostgresDatabaseNeonDatabase) GetNameOk ¶

func (o *NeonPostgresDatabaseNeonDatabase) 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 (*NeonPostgresDatabaseNeonDatabase) GetOwner ¶

GetOwner returns the Owner field value if set, zero value otherwise.

func (*NeonPostgresDatabaseNeonDatabase) GetOwnerOk ¶

func (o *NeonPostgresDatabaseNeonDatabase) GetOwnerOk() (*string, bool)

GetOwnerOk returns a tuple with the Owner field value if set, nil otherwise and a boolean to check if the value has been set.

func (*NeonPostgresDatabaseNeonDatabase) HasName ¶

HasName returns a boolean if a field has been set.

func (*NeonPostgresDatabaseNeonDatabase) HasOwner ¶

func (o *NeonPostgresDatabaseNeonDatabase) HasOwner() bool

HasOwner returns a boolean if a field has been set.

func (NeonPostgresDatabaseNeonDatabase) MarshalJSON ¶

func (o NeonPostgresDatabaseNeonDatabase) MarshalJSON() ([]byte, error)

func (*NeonPostgresDatabaseNeonDatabase) SetName ¶

SetName gets a reference to the given string and assigns it to the Name field.

func (*NeonPostgresDatabaseNeonDatabase) SetOwner ¶

SetOwner gets a reference to the given string and assigns it to the Owner field.

type NeonPostgresDatabaseNeonRole ¶

type NeonPostgresDatabaseNeonRole struct {
	Name   *string `json:"name,omitempty"`
	Secret *string `json:"secret,omitempty"`
}

NeonPostgresDatabaseNeonRole struct for NeonPostgresDatabaseNeonRole

func NewNeonPostgresDatabaseNeonRole ¶

func NewNeonPostgresDatabaseNeonRole() *NeonPostgresDatabaseNeonRole

NewNeonPostgresDatabaseNeonRole instantiates a new NeonPostgresDatabaseNeonRole 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 NewNeonPostgresDatabaseNeonRoleWithDefaults ¶

func NewNeonPostgresDatabaseNeonRoleWithDefaults() *NeonPostgresDatabaseNeonRole

NewNeonPostgresDatabaseNeonRoleWithDefaults instantiates a new NeonPostgresDatabaseNeonRole 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 (*NeonPostgresDatabaseNeonRole) GetName ¶

func (o *NeonPostgresDatabaseNeonRole) GetName() string

GetName returns the Name field value if set, zero value otherwise.

func (*NeonPostgresDatabaseNeonRole) GetNameOk ¶

func (o *NeonPostgresDatabaseNeonRole) 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 (*NeonPostgresDatabaseNeonRole) GetSecret ¶

func (o *NeonPostgresDatabaseNeonRole) GetSecret() string

GetSecret returns the Secret field value if set, zero value otherwise.

func (*NeonPostgresDatabaseNeonRole) GetSecretOk ¶

func (o *NeonPostgresDatabaseNeonRole) GetSecretOk() (*string, bool)

GetSecretOk returns a tuple with the Secret field value if set, nil otherwise and a boolean to check if the value has been set.

func (*NeonPostgresDatabaseNeonRole) HasName ¶

func (o *NeonPostgresDatabaseNeonRole) HasName() bool

HasName returns a boolean if a field has been set.

func (*NeonPostgresDatabaseNeonRole) HasSecret ¶

func (o *NeonPostgresDatabaseNeonRole) HasSecret() bool

HasSecret returns a boolean if a field has been set.

func (NeonPostgresDatabaseNeonRole) MarshalJSON ¶

func (o NeonPostgresDatabaseNeonRole) MarshalJSON() ([]byte, error)

func (*NeonPostgresDatabaseNeonRole) SetName ¶

func (o *NeonPostgresDatabaseNeonRole) SetName(v string)

SetName gets a reference to the given string and assigns it to the Name field.

func (*NeonPostgresDatabaseNeonRole) SetSecret ¶

func (o *NeonPostgresDatabaseNeonRole) SetSecret(v string)

SetSecret gets a reference to the given string and assigns it to the Secret field.

type NeonPostgresSummary ¶

type NeonPostgresSummary struct {
	Total          *string            `json:"total,omitempty"`
	ByInstanceType *map[string]string `json:"by_instance_type,omitempty"`
}

NeonPostgresSummary struct for NeonPostgresSummary

func NewNeonPostgresSummary ¶

func NewNeonPostgresSummary() *NeonPostgresSummary

NewNeonPostgresSummary instantiates a new NeonPostgresSummary 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 NewNeonPostgresSummaryWithDefaults ¶

func NewNeonPostgresSummaryWithDefaults() *NeonPostgresSummary

NewNeonPostgresSummaryWithDefaults instantiates a new NeonPostgresSummary 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 (*NeonPostgresSummary) GetByInstanceType ¶

func (o *NeonPostgresSummary) GetByInstanceType() map[string]string

GetByInstanceType returns the ByInstanceType field value if set, zero value otherwise.

func (*NeonPostgresSummary) GetByInstanceTypeOk ¶

func (o *NeonPostgresSummary) GetByInstanceTypeOk() (*map[string]string, bool)

GetByInstanceTypeOk returns a tuple with the ByInstanceType field value if set, nil otherwise and a boolean to check if the value has been set.

func (*NeonPostgresSummary) GetTotal ¶

func (o *NeonPostgresSummary) GetTotal() string

GetTotal returns the Total field value if set, zero value otherwise.

func (*NeonPostgresSummary) GetTotalOk ¶

func (o *NeonPostgresSummary) GetTotalOk() (*string, bool)

GetTotalOk returns a tuple with the Total field value if set, nil otherwise and a boolean to check if the value has been set.

func (*NeonPostgresSummary) HasByInstanceType ¶

func (o *NeonPostgresSummary) HasByInstanceType() bool

HasByInstanceType returns a boolean if a field has been set.

func (*NeonPostgresSummary) HasTotal ¶

func (o *NeonPostgresSummary) HasTotal() bool

HasTotal returns a boolean if a field has been set.

func (NeonPostgresSummary) MarshalJSON ¶

func (o NeonPostgresSummary) MarshalJSON() ([]byte, error)

func (*NeonPostgresSummary) SetByInstanceType ¶

func (o *NeonPostgresSummary) SetByInstanceType(v map[string]string)

SetByInstanceType gets a reference to the given map[string]string and assigns it to the ByInstanceType field.

func (*NeonPostgresSummary) SetTotal ¶

func (o *NeonPostgresSummary) SetTotal(v string)

SetTotal gets a reference to the given string and assigns it to the Total field.

type NextInvoiceReply ¶

type NextInvoiceReply struct {
	StripeInvoice map[string]interface{} `json:"stripe_invoice,omitempty"`
}

NextInvoiceReply struct for NextInvoiceReply

func NewNextInvoiceReply ¶

func NewNextInvoiceReply() *NextInvoiceReply

NewNextInvoiceReply instantiates a new NextInvoiceReply 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 NewNextInvoiceReplyWithDefaults ¶

func NewNextInvoiceReplyWithDefaults() *NextInvoiceReply

NewNextInvoiceReplyWithDefaults instantiates a new NextInvoiceReply 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 (*NextInvoiceReply) GetStripeInvoice ¶

func (o *NextInvoiceReply) GetStripeInvoice() map[string]interface{}

GetStripeInvoice returns the StripeInvoice field value if set, zero value otherwise.

func (*NextInvoiceReply) GetStripeInvoiceOk ¶

func (o *NextInvoiceReply) GetStripeInvoiceOk() (map[string]interface{}, bool)

GetStripeInvoiceOk returns a tuple with the StripeInvoice field value if set, nil otherwise and a boolean to check if the value has been set.

func (*NextInvoiceReply) HasStripeInvoice ¶

func (o *NextInvoiceReply) HasStripeInvoice() bool

HasStripeInvoice returns a boolean if a field has been set.

func (NextInvoiceReply) MarshalJSON ¶

func (o NextInvoiceReply) MarshalJSON() ([]byte, error)

func (*NextInvoiceReply) SetStripeInvoice ¶

func (o *NextInvoiceReply) SetStripeInvoice(v map[string]interface{})

SetStripeInvoice gets a reference to the given map[string]interface{} and assigns it to the StripeInvoice field.

type Notification ¶

type Notification struct {
	Id        *string    `json:"id,omitempty"`
	Activity  *Activity  `json:"activity,omitempty"`
	IsRead    *bool      `json:"is_read,omitempty"`
	IsSeen    *bool      `json:"is_seen,omitempty"`
	CreatedAt *time.Time `json:"created_at,omitempty"`
}

Notification struct for Notification

func NewNotification ¶

func NewNotification() *Notification

NewNotification instantiates a new Notification 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 NewNotificationWithDefaults ¶

func NewNotificationWithDefaults() *Notification

NewNotificationWithDefaults instantiates a new Notification 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 (*Notification) GetActivity ¶

func (o *Notification) GetActivity() Activity

GetActivity returns the Activity field value if set, zero value otherwise.

func (*Notification) GetActivityOk ¶

func (o *Notification) GetActivityOk() (*Activity, bool)

GetActivityOk returns a tuple with the Activity field value if set, nil otherwise and a boolean to check if the value has been set.

func (*Notification) GetCreatedAt ¶

func (o *Notification) GetCreatedAt() time.Time

GetCreatedAt returns the CreatedAt field value if set, zero value otherwise.

func (*Notification) GetCreatedAtOk ¶

func (o *Notification) GetCreatedAtOk() (*time.Time, bool)

GetCreatedAtOk returns a tuple with the CreatedAt field value if set, nil otherwise and a boolean to check if the value has been set.

func (*Notification) GetId ¶

func (o *Notification) GetId() string

GetId returns the Id field value if set, zero value otherwise.

func (*Notification) GetIdOk ¶

func (o *Notification) 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 (*Notification) GetIsRead ¶

func (o *Notification) GetIsRead() bool

GetIsRead returns the IsRead field value if set, zero value otherwise.

func (*Notification) GetIsReadOk ¶

func (o *Notification) GetIsReadOk() (*bool, bool)

GetIsReadOk returns a tuple with the IsRead field value if set, nil otherwise and a boolean to check if the value has been set.

func (*Notification) GetIsSeen ¶

func (o *Notification) GetIsSeen() bool

GetIsSeen returns the IsSeen field value if set, zero value otherwise.

func (*Notification) GetIsSeenOk ¶

func (o *Notification) GetIsSeenOk() (*bool, bool)

GetIsSeenOk returns a tuple with the IsSeen field value if set, nil otherwise and a boolean to check if the value has been set.

func (*Notification) HasActivity ¶

func (o *Notification) HasActivity() bool

HasActivity returns a boolean if a field has been set.

func (*Notification) HasCreatedAt ¶

func (o *Notification) HasCreatedAt() bool

HasCreatedAt returns a boolean if a field has been set.

func (*Notification) HasId ¶

func (o *Notification) HasId() bool

HasId returns a boolean if a field has been set.

func (*Notification) HasIsRead ¶

func (o *Notification) HasIsRead() bool

HasIsRead returns a boolean if a field has been set.

func (*Notification) HasIsSeen ¶

func (o *Notification) HasIsSeen() bool

HasIsSeen returns a boolean if a field has been set.

func (Notification) MarshalJSON ¶

func (o Notification) MarshalJSON() ([]byte, error)

func (*Notification) SetActivity ¶

func (o *Notification) SetActivity(v Activity)

SetActivity gets a reference to the given Activity and assigns it to the Activity field.

func (*Notification) SetCreatedAt ¶

func (o *Notification) SetCreatedAt(v time.Time)

SetCreatedAt gets a reference to the given time.Time and assigns it to the CreatedAt field.

func (*Notification) SetId ¶

func (o *Notification) SetId(v string)

SetId gets a reference to the given string and assigns it to the Id field.

func (*Notification) SetIsRead ¶

func (o *Notification) SetIsRead(v bool)

SetIsRead gets a reference to the given bool and assigns it to the IsRead field.

func (*Notification) SetIsSeen ¶

func (o *Notification) SetIsSeen(v bool)

SetIsSeen gets a reference to the given bool and assigns it to the IsSeen field.

type NotificationList ¶

type NotificationList struct {
	Notifications []Notification `json:"notifications,omitempty"`
	Limit         *int64         `json:"limit,omitempty"`
	Offset        *int64         `json:"offset,omitempty"`
	Count         *int64         `json:"count,omitempty"`
	IsRead        *bool          `json:"is_read,omitempty"`
	IsSeen        *bool          `json:"is_seen,omitempty"`
	Unread        *int64         `json:"unread,omitempty"`
	Unseen        *int64         `json:"unseen,omitempty"`
}

NotificationList struct for NotificationList

func NewNotificationList ¶

func NewNotificationList() *NotificationList

NewNotificationList instantiates a new NotificationList 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 NewNotificationListWithDefaults ¶

func NewNotificationListWithDefaults() *NotificationList

NewNotificationListWithDefaults instantiates a new NotificationList 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 (*NotificationList) GetCount ¶

func (o *NotificationList) GetCount() int64

GetCount returns the Count field value if set, zero value otherwise.

func (*NotificationList) GetCountOk ¶

func (o *NotificationList) GetCountOk() (*int64, bool)

GetCountOk returns a tuple with the Count field value if set, nil otherwise and a boolean to check if the value has been set.

func (*NotificationList) GetIsRead ¶

func (o *NotificationList) GetIsRead() bool

GetIsRead returns the IsRead field value if set, zero value otherwise.

func (*NotificationList) GetIsReadOk ¶

func (o *NotificationList) GetIsReadOk() (*bool, bool)

GetIsReadOk returns a tuple with the IsRead field value if set, nil otherwise and a boolean to check if the value has been set.

func (*NotificationList) GetIsSeen ¶

func (o *NotificationList) GetIsSeen() bool

GetIsSeen returns the IsSeen field value if set, zero value otherwise.

func (*NotificationList) GetIsSeenOk ¶

func (o *NotificationList) GetIsSeenOk() (*bool, bool)

GetIsSeenOk returns a tuple with the IsSeen field value if set, nil otherwise and a boolean to check if the value has been set.

func (*NotificationList) GetLimit ¶

func (o *NotificationList) GetLimit() int64

GetLimit returns the Limit field value if set, zero value otherwise.

func (*NotificationList) GetLimitOk ¶

func (o *NotificationList) GetLimitOk() (*int64, bool)

GetLimitOk returns a tuple with the Limit field value if set, nil otherwise and a boolean to check if the value has been set.

func (*NotificationList) GetNotifications ¶

func (o *NotificationList) GetNotifications() []Notification

GetNotifications returns the Notifications field value if set, zero value otherwise.

func (*NotificationList) GetNotificationsOk ¶

func (o *NotificationList) GetNotificationsOk() ([]Notification, bool)

GetNotificationsOk returns a tuple with the Notifications field value if set, nil otherwise and a boolean to check if the value has been set.

func (*NotificationList) GetOffset ¶

func (o *NotificationList) GetOffset() int64

GetOffset returns the Offset field value if set, zero value otherwise.

func (*NotificationList) GetOffsetOk ¶

func (o *NotificationList) GetOffsetOk() (*int64, bool)

GetOffsetOk returns a tuple with the Offset field value if set, nil otherwise and a boolean to check if the value has been set.

func (*NotificationList) GetUnread ¶

func (o *NotificationList) GetUnread() int64

GetUnread returns the Unread field value if set, zero value otherwise.

func (*NotificationList) GetUnreadOk ¶

func (o *NotificationList) GetUnreadOk() (*int64, bool)

GetUnreadOk returns a tuple with the Unread field value if set, nil otherwise and a boolean to check if the value has been set.

func (*NotificationList) GetUnseen ¶

func (o *NotificationList) GetUnseen() int64

GetUnseen returns the Unseen field value if set, zero value otherwise.

func (*NotificationList) GetUnseenOk ¶

func (o *NotificationList) GetUnseenOk() (*int64, bool)

GetUnseenOk returns a tuple with the Unseen field value if set, nil otherwise and a boolean to check if the value has been set.

func (*NotificationList) HasCount ¶

func (o *NotificationList) HasCount() bool

HasCount returns a boolean if a field has been set.

func (*NotificationList) HasIsRead ¶

func (o *NotificationList) HasIsRead() bool

HasIsRead returns a boolean if a field has been set.

func (*NotificationList) HasIsSeen ¶

func (o *NotificationList) HasIsSeen() bool

HasIsSeen returns a boolean if a field has been set.

func (*NotificationList) HasLimit ¶

func (o *NotificationList) HasLimit() bool

HasLimit returns a boolean if a field has been set.

func (*NotificationList) HasNotifications ¶

func (o *NotificationList) HasNotifications() bool

HasNotifications returns a boolean if a field has been set.

func (*NotificationList) HasOffset ¶

func (o *NotificationList) HasOffset() bool

HasOffset returns a boolean if a field has been set.

func (*NotificationList) HasUnread ¶

func (o *NotificationList) HasUnread() bool

HasUnread returns a boolean if a field has been set.

func (*NotificationList) HasUnseen ¶

func (o *NotificationList) HasUnseen() bool

HasUnseen returns a boolean if a field has been set.

func (NotificationList) MarshalJSON ¶

func (o NotificationList) MarshalJSON() ([]byte, error)

func (*NotificationList) SetCount ¶

func (o *NotificationList) SetCount(v int64)

SetCount gets a reference to the given int64 and assigns it to the Count field.

func (*NotificationList) SetIsRead ¶

func (o *NotificationList) SetIsRead(v bool)

SetIsRead gets a reference to the given bool and assigns it to the IsRead field.

func (*NotificationList) SetIsSeen ¶

func (o *NotificationList) SetIsSeen(v bool)

SetIsSeen gets a reference to the given bool and assigns it to the IsSeen field.

func (*NotificationList) SetLimit ¶

func (o *NotificationList) SetLimit(v int64)

SetLimit gets a reference to the given int64 and assigns it to the Limit field.

func (*NotificationList) SetNotifications ¶

func (o *NotificationList) SetNotifications(v []Notification)

SetNotifications gets a reference to the given []Notification and assigns it to the Notifications field.

func (*NotificationList) SetOffset ¶

func (o *NotificationList) SetOffset(v int64)

SetOffset gets a reference to the given int64 and assigns it to the Offset field.

func (*NotificationList) SetUnread ¶

func (o *NotificationList) SetUnread(v int64)

SetUnread gets a reference to the given int64 and assigns it to the Unread field.

func (*NotificationList) SetUnseen ¶

func (o *NotificationList) SetUnseen(v int64)

SetUnseen gets a reference to the given int64 and assigns it to the Unseen field.

type NullableAcceptOrganizationInvitationReply ¶

type NullableAcceptOrganizationInvitationReply struct {
	// contains filtered or unexported fields
}

func (NullableAcceptOrganizationInvitationReply) Get ¶

func (NullableAcceptOrganizationInvitationReply) IsSet ¶

func (NullableAcceptOrganizationInvitationReply) MarshalJSON ¶

func (*NullableAcceptOrganizationInvitationReply) Set ¶

func (*NullableAcceptOrganizationInvitationReply) UnmarshalJSON ¶

func (v *NullableAcceptOrganizationInvitationReply) UnmarshalJSON(src []byte) error

func (*NullableAcceptOrganizationInvitationReply) Unset ¶

type NullableAction ¶

type NullableAction struct {
	// contains filtered or unexported fields
}

func NewNullableAction ¶

func NewNullableAction(val *Action) *NullableAction

func (NullableAction) Get ¶

func (v NullableAction) Get() *Action

func (NullableAction) IsSet ¶

func (v NullableAction) IsSet() bool

func (NullableAction) MarshalJSON ¶

func (v NullableAction) MarshalJSON() ([]byte, error)

func (*NullableAction) Set ¶

func (v *NullableAction) Set(val *Action)

func (*NullableAction) UnmarshalJSON ¶

func (v *NullableAction) UnmarshalJSON(src []byte) error

func (*NullableAction) Unset ¶

func (v *NullableAction) Unset()

type NullableActivity ¶

type NullableActivity struct {
	// contains filtered or unexported fields
}

func NewNullableActivity ¶

func NewNullableActivity(val *Activity) *NullableActivity

func (NullableActivity) Get ¶

func (v NullableActivity) Get() *Activity

func (NullableActivity) IsSet ¶

func (v NullableActivity) IsSet() bool

func (NullableActivity) MarshalJSON ¶

func (v NullableActivity) MarshalJSON() ([]byte, error)

func (*NullableActivity) Set ¶

func (v *NullableActivity) Set(val *Activity)

func (*NullableActivity) UnmarshalJSON ¶

func (v *NullableActivity) UnmarshalJSON(src []byte) error

func (*NullableActivity) Unset ¶

func (v *NullableActivity) Unset()

type NullableActivityList ¶

type NullableActivityList struct {
	// contains filtered or unexported fields
}

func NewNullableActivityList ¶

func NewNullableActivityList(val *ActivityList) *NullableActivityList

func (NullableActivityList) Get ¶

func (NullableActivityList) IsSet ¶

func (v NullableActivityList) IsSet() bool

func (NullableActivityList) MarshalJSON ¶

func (v NullableActivityList) MarshalJSON() ([]byte, error)

func (*NullableActivityList) Set ¶

func (v *NullableActivityList) Set(val *ActivityList)

func (*NullableActivityList) UnmarshalJSON ¶

func (v *NullableActivityList) UnmarshalJSON(src []byte) error

func (*NullableActivityList) Unset ¶

func (v *NullableActivityList) Unset()

type NullableApp ¶

type NullableApp struct {
	// contains filtered or unexported fields
}

func NewNullableApp ¶

func NewNullableApp(val *App) *NullableApp

func (NullableApp) Get ¶

func (v NullableApp) Get() *App

func (NullableApp) IsSet ¶

func (v NullableApp) IsSet() bool

func (NullableApp) MarshalJSON ¶

func (v NullableApp) MarshalJSON() ([]byte, error)

func (*NullableApp) Set ¶

func (v *NullableApp) Set(val *App)

func (*NullableApp) UnmarshalJSON ¶

func (v *NullableApp) UnmarshalJSON(src []byte) error

func (*NullableApp) Unset ¶

func (v *NullableApp) Unset()

type NullableAppEvent ¶

type NullableAppEvent struct {
	// contains filtered or unexported fields
}

func NewNullableAppEvent ¶

func NewNullableAppEvent(val *AppEvent) *NullableAppEvent

func (NullableAppEvent) Get ¶

func (v NullableAppEvent) Get() *AppEvent

func (NullableAppEvent) IsSet ¶

func (v NullableAppEvent) IsSet() bool

func (NullableAppEvent) MarshalJSON ¶

func (v NullableAppEvent) MarshalJSON() ([]byte, error)

func (*NullableAppEvent) Set ¶

func (v *NullableAppEvent) Set(val *AppEvent)

func (*NullableAppEvent) UnmarshalJSON ¶

func (v *NullableAppEvent) UnmarshalJSON(src []byte) error

func (*NullableAppEvent) Unset ¶

func (v *NullableAppEvent) Unset()

type NullableAppListItem ¶

type NullableAppListItem struct {
	// contains filtered or unexported fields
}

func NewNullableAppListItem ¶

func NewNullableAppListItem(val *AppListItem) *NullableAppListItem

func (NullableAppListItem) Get ¶

func (NullableAppListItem) IsSet ¶

func (v NullableAppListItem) IsSet() bool

func (NullableAppListItem) MarshalJSON ¶

func (v NullableAppListItem) MarshalJSON() ([]byte, error)

func (*NullableAppListItem) Set ¶

func (v *NullableAppListItem) Set(val *AppListItem)

func (*NullableAppListItem) UnmarshalJSON ¶

func (v *NullableAppListItem) UnmarshalJSON(src []byte) error

func (*NullableAppListItem) Unset ¶

func (v *NullableAppListItem) Unset()

type NullableAppStatus ¶

type NullableAppStatus struct {
	// contains filtered or unexported fields
}

func NewNullableAppStatus ¶

func NewNullableAppStatus(val *AppStatus) *NullableAppStatus

func (NullableAppStatus) Get ¶

func (v NullableAppStatus) Get() *AppStatus

func (NullableAppStatus) IsSet ¶

func (v NullableAppStatus) IsSet() bool

func (NullableAppStatus) MarshalJSON ¶

func (v NullableAppStatus) MarshalJSON() ([]byte, error)

func (*NullableAppStatus) Set ¶

func (v *NullableAppStatus) Set(val *AppStatus)

func (*NullableAppStatus) UnmarshalJSON ¶

func (v *NullableAppStatus) UnmarshalJSON(src []byte) error

func (*NullableAppStatus) Unset ¶

func (v *NullableAppStatus) Unset()

type NullableAppUsage ¶

type NullableAppUsage struct {
	// contains filtered or unexported fields
}

func NewNullableAppUsage ¶

func NewNullableAppUsage(val *AppUsage) *NullableAppUsage

func (NullableAppUsage) Get ¶

func (v NullableAppUsage) Get() *AppUsage

func (NullableAppUsage) IsSet ¶

func (v NullableAppUsage) IsSet() bool

func (NullableAppUsage) MarshalJSON ¶

func (v NullableAppUsage) MarshalJSON() ([]byte, error)

func (*NullableAppUsage) Set ¶

func (v *NullableAppUsage) Set(val *AppUsage)

func (*NullableAppUsage) UnmarshalJSON ¶

func (v *NullableAppUsage) UnmarshalJSON(src []byte) error

func (*NullableAppUsage) Unset ¶

func (v *NullableAppUsage) Unset()

type NullableAppsSummary ¶

type NullableAppsSummary struct {
	// contains filtered or unexported fields
}

func NewNullableAppsSummary ¶

func NewNullableAppsSummary(val *AppsSummary) *NullableAppsSummary

func (NullableAppsSummary) Get ¶

func (NullableAppsSummary) IsSet ¶

func (v NullableAppsSummary) IsSet() bool

func (NullableAppsSummary) MarshalJSON ¶

func (v NullableAppsSummary) MarshalJSON() ([]byte, error)

func (*NullableAppsSummary) Set ¶

func (v *NullableAppsSummary) Set(val *AppsSummary)

func (*NullableAppsSummary) UnmarshalJSON ¶

func (v *NullableAppsSummary) UnmarshalJSON(src []byte) error

func (*NullableAppsSummary) Unset ¶

func (v *NullableAppsSummary) Unset()

type NullableAutoRelease ¶

type NullableAutoRelease struct {
	// contains filtered or unexported fields
}

func NewNullableAutoRelease ¶

func NewNullableAutoRelease(val *AutoRelease) *NullableAutoRelease

func (NullableAutoRelease) Get ¶

func (NullableAutoRelease) IsSet ¶

func (v NullableAutoRelease) IsSet() bool

func (NullableAutoRelease) MarshalJSON ¶

func (v NullableAutoRelease) MarshalJSON() ([]byte, error)

func (*NullableAutoRelease) Set ¶

func (v *NullableAutoRelease) Set(val *AutoRelease)

func (*NullableAutoRelease) UnmarshalJSON ¶

func (v *NullableAutoRelease) UnmarshalJSON(src []byte) error

func (*NullableAutoRelease) Unset ¶

func (v *NullableAutoRelease) Unset()

type NullableAutoReleaseGroup ¶

type NullableAutoReleaseGroup struct {
	// contains filtered or unexported fields
}

func NewNullableAutoReleaseGroup ¶

func NewNullableAutoReleaseGroup(val *AutoReleaseGroup) *NullableAutoReleaseGroup

func (NullableAutoReleaseGroup) Get ¶

func (NullableAutoReleaseGroup) IsSet ¶

func (v NullableAutoReleaseGroup) IsSet() bool

func (NullableAutoReleaseGroup) MarshalJSON ¶

func (v NullableAutoReleaseGroup) MarshalJSON() ([]byte, error)

func (*NullableAutoReleaseGroup) Set ¶

func (*NullableAutoReleaseGroup) UnmarshalJSON ¶

func (v *NullableAutoReleaseGroup) UnmarshalJSON(src []byte) error

func (*NullableAutoReleaseGroup) Unset ¶

func (v *NullableAutoReleaseGroup) Unset()

type NullableAzureContainerRegistryConfiguration ¶

type NullableAzureContainerRegistryConfiguration struct {
	// contains filtered or unexported fields
}

func (NullableAzureContainerRegistryConfiguration) Get ¶

func (NullableAzureContainerRegistryConfiguration) IsSet ¶

func (NullableAzureContainerRegistryConfiguration) MarshalJSON ¶

func (*NullableAzureContainerRegistryConfiguration) Set ¶

func (*NullableAzureContainerRegistryConfiguration) UnmarshalJSON ¶

func (v *NullableAzureContainerRegistryConfiguration) UnmarshalJSON(src []byte) error

func (*NullableAzureContainerRegistryConfiguration) 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 NullableBuildpackBuilder ¶

type NullableBuildpackBuilder struct {
	// contains filtered or unexported fields
}

func NewNullableBuildpackBuilder ¶

func NewNullableBuildpackBuilder(val *BuildpackBuilder) *NullableBuildpackBuilder

func (NullableBuildpackBuilder) Get ¶

func (NullableBuildpackBuilder) IsSet ¶

func (v NullableBuildpackBuilder) IsSet() bool

func (NullableBuildpackBuilder) MarshalJSON ¶

func (v NullableBuildpackBuilder) MarshalJSON() ([]byte, error)

func (*NullableBuildpackBuilder) Set ¶

func (*NullableBuildpackBuilder) UnmarshalJSON ¶

func (v *NullableBuildpackBuilder) UnmarshalJSON(src []byte) error

func (*NullableBuildpackBuilder) Unset ¶

func (v *NullableBuildpackBuilder) Unset()

type NullableCannyAuthReply ¶

type NullableCannyAuthReply struct {
	// contains filtered or unexported fields
}

func NewNullableCannyAuthReply ¶

func NewNullableCannyAuthReply(val *CannyAuthReply) *NullableCannyAuthReply

func (NullableCannyAuthReply) Get ¶

func (NullableCannyAuthReply) IsSet ¶

func (v NullableCannyAuthReply) IsSet() bool

func (NullableCannyAuthReply) MarshalJSON ¶

func (v NullableCannyAuthReply) MarshalJSON() ([]byte, error)

func (*NullableCannyAuthReply) Set ¶

func (*NullableCannyAuthReply) UnmarshalJSON ¶

func (v *NullableCannyAuthReply) UnmarshalJSON(src []byte) error

func (*NullableCannyAuthReply) Unset ¶

func (v *NullableCannyAuthReply) Unset()

type NullableCatalogInstance ¶

type NullableCatalogInstance struct {
	// contains filtered or unexported fields
}

func NewNullableCatalogInstance ¶

func NewNullableCatalogInstance(val *CatalogInstance) *NullableCatalogInstance

func (NullableCatalogInstance) Get ¶

func (NullableCatalogInstance) IsSet ¶

func (v NullableCatalogInstance) IsSet() bool

func (NullableCatalogInstance) MarshalJSON ¶

func (v NullableCatalogInstance) MarshalJSON() ([]byte, error)

func (*NullableCatalogInstance) Set ¶

func (*NullableCatalogInstance) UnmarshalJSON ¶

func (v *NullableCatalogInstance) UnmarshalJSON(src []byte) error

func (*NullableCatalogInstance) Unset ¶

func (v *NullableCatalogInstance) Unset()

type NullableCatalogInstanceListItem ¶

type NullableCatalogInstanceListItem struct {
	// contains filtered or unexported fields
}

func (NullableCatalogInstanceListItem) Get ¶

func (NullableCatalogInstanceListItem) IsSet ¶

func (NullableCatalogInstanceListItem) MarshalJSON ¶

func (v NullableCatalogInstanceListItem) MarshalJSON() ([]byte, error)

func (*NullableCatalogInstanceListItem) Set ¶

func (*NullableCatalogInstanceListItem) UnmarshalJSON ¶

func (v *NullableCatalogInstanceListItem) UnmarshalJSON(src []byte) error

func (*NullableCatalogInstanceListItem) Unset ¶

type NullableConfirmPaymentAuthorizationReply ¶

type NullableConfirmPaymentAuthorizationReply struct {
	// contains filtered or unexported fields
}

func (NullableConfirmPaymentAuthorizationReply) Get ¶

func (NullableConfirmPaymentAuthorizationReply) IsSet ¶

func (NullableConfirmPaymentAuthorizationReply) MarshalJSON ¶

func (*NullableConfirmPaymentAuthorizationReply) Set ¶

func (*NullableConfirmPaymentAuthorizationReply) UnmarshalJSON ¶

func (v *NullableConfirmPaymentAuthorizationReply) UnmarshalJSON(src []byte) error

func (*NullableConfirmPaymentAuthorizationReply) Unset ¶

type NullableCreateAccountRequest ¶

type NullableCreateAccountRequest struct {
	// contains filtered or unexported fields
}

func (NullableCreateAccountRequest) Get ¶

func (NullableCreateAccountRequest) IsSet ¶

func (NullableCreateAccountRequest) MarshalJSON ¶

func (v NullableCreateAccountRequest) MarshalJSON() ([]byte, error)

func (*NullableCreateAccountRequest) Set ¶

func (*NullableCreateAccountRequest) UnmarshalJSON ¶

func (v *NullableCreateAccountRequest) UnmarshalJSON(src []byte) error

func (*NullableCreateAccountRequest) Unset ¶

func (v *NullableCreateAccountRequest) Unset()

type NullableCreateApp ¶

type NullableCreateApp struct {
	// contains filtered or unexported fields
}

func NewNullableCreateApp ¶

func NewNullableCreateApp(val *CreateApp) *NullableCreateApp

func (NullableCreateApp) Get ¶

func (v NullableCreateApp) Get() *CreateApp

func (NullableCreateApp) IsSet ¶

func (v NullableCreateApp) IsSet() bool

func (NullableCreateApp) MarshalJSON ¶

func (v NullableCreateApp) MarshalJSON() ([]byte, error)

func (*NullableCreateApp) Set ¶

func (v *NullableCreateApp) Set(val *CreateApp)

func (*NullableCreateApp) UnmarshalJSON ¶

func (v *NullableCreateApp) UnmarshalJSON(src []byte) error

func (*NullableCreateApp) Unset ¶

func (v *NullableCreateApp) Unset()

type NullableCreateAppReply ¶

type NullableCreateAppReply struct {
	// contains filtered or unexported fields
}

func NewNullableCreateAppReply ¶

func NewNullableCreateAppReply(val *CreateAppReply) *NullableCreateAppReply

func (NullableCreateAppReply) Get ¶

func (NullableCreateAppReply) IsSet ¶

func (v NullableCreateAppReply) IsSet() bool

func (NullableCreateAppReply) MarshalJSON ¶

func (v NullableCreateAppReply) MarshalJSON() ([]byte, error)

func (*NullableCreateAppReply) Set ¶

func (*NullableCreateAppReply) UnmarshalJSON ¶

func (v *NullableCreateAppReply) UnmarshalJSON(src []byte) error

func (*NullableCreateAppReply) Unset ¶

func (v *NullableCreateAppReply) Unset()

type NullableCreateCredential ¶

type NullableCreateCredential struct {
	// contains filtered or unexported fields
}

func NewNullableCreateCredential ¶

func NewNullableCreateCredential(val *CreateCredential) *NullableCreateCredential

func (NullableCreateCredential) Get ¶

func (NullableCreateCredential) IsSet ¶

func (v NullableCreateCredential) IsSet() bool

func (NullableCreateCredential) MarshalJSON ¶

func (v NullableCreateCredential) MarshalJSON() ([]byte, error)

func (*NullableCreateCredential) Set ¶

func (*NullableCreateCredential) UnmarshalJSON ¶

func (v *NullableCreateCredential) UnmarshalJSON(src []byte) error

func (*NullableCreateCredential) Unset ¶

func (v *NullableCreateCredential) Unset()

type NullableCreateCredentialReply ¶

type NullableCreateCredentialReply struct {
	// contains filtered or unexported fields
}

func (NullableCreateCredentialReply) Get ¶

func (NullableCreateCredentialReply) IsSet ¶

func (NullableCreateCredentialReply) MarshalJSON ¶

func (v NullableCreateCredentialReply) MarshalJSON() ([]byte, error)

func (*NullableCreateCredentialReply) Set ¶

func (*NullableCreateCredentialReply) UnmarshalJSON ¶

func (v *NullableCreateCredentialReply) UnmarshalJSON(src []byte) error

func (*NullableCreateCredentialReply) Unset ¶

func (v *NullableCreateCredentialReply) Unset()

type NullableCreateDomain ¶

type NullableCreateDomain struct {
	// contains filtered or unexported fields
}

func NewNullableCreateDomain ¶

func NewNullableCreateDomain(val *CreateDomain) *NullableCreateDomain

func (NullableCreateDomain) Get ¶

func (NullableCreateDomain) IsSet ¶

func (v NullableCreateDomain) IsSet() bool

func (NullableCreateDomain) MarshalJSON ¶

func (v NullableCreateDomain) MarshalJSON() ([]byte, error)

func (*NullableCreateDomain) Set ¶

func (v *NullableCreateDomain) Set(val *CreateDomain)

func (*NullableCreateDomain) UnmarshalJSON ¶

func (v *NullableCreateDomain) UnmarshalJSON(src []byte) error

func (*NullableCreateDomain) Unset ¶

func (v *NullableCreateDomain) Unset()

type NullableCreateDomainReply ¶

type NullableCreateDomainReply struct {
	// contains filtered or unexported fields
}

func NewNullableCreateDomainReply ¶

func NewNullableCreateDomainReply(val *CreateDomainReply) *NullableCreateDomainReply

func (NullableCreateDomainReply) Get ¶

func (NullableCreateDomainReply) IsSet ¶

func (v NullableCreateDomainReply) IsSet() bool

func (NullableCreateDomainReply) MarshalJSON ¶

func (v NullableCreateDomainReply) MarshalJSON() ([]byte, error)

func (*NullableCreateDomainReply) Set ¶

func (*NullableCreateDomainReply) UnmarshalJSON ¶

func (v *NullableCreateDomainReply) UnmarshalJSON(src []byte) error

func (*NullableCreateDomainReply) Unset ¶

func (v *NullableCreateDomainReply) Unset()

type NullableCreateOrganizationInvitationReply ¶

type NullableCreateOrganizationInvitationReply struct {
	// contains filtered or unexported fields
}

func (NullableCreateOrganizationInvitationReply) Get ¶

func (NullableCreateOrganizationInvitationReply) IsSet ¶

func (NullableCreateOrganizationInvitationReply) MarshalJSON ¶

func (*NullableCreateOrganizationInvitationReply) Set ¶

func (*NullableCreateOrganizationInvitationReply) UnmarshalJSON ¶

func (v *NullableCreateOrganizationInvitationReply) UnmarshalJSON(src []byte) error

func (*NullableCreateOrganizationInvitationReply) Unset ¶

type NullableCreateOrganizationInvitationRequest ¶

type NullableCreateOrganizationInvitationRequest struct {
	// contains filtered or unexported fields
}

func (NullableCreateOrganizationInvitationRequest) Get ¶

func (NullableCreateOrganizationInvitationRequest) IsSet ¶

func (NullableCreateOrganizationInvitationRequest) MarshalJSON ¶

func (*NullableCreateOrganizationInvitationRequest) Set ¶

func (*NullableCreateOrganizationInvitationRequest) UnmarshalJSON ¶

func (v *NullableCreateOrganizationInvitationRequest) UnmarshalJSON(src []byte) error

func (*NullableCreateOrganizationInvitationRequest) Unset ¶

type NullableCreateOrganizationReply ¶

type NullableCreateOrganizationReply struct {
	// contains filtered or unexported fields
}

func (NullableCreateOrganizationReply) Get ¶

func (NullableCreateOrganizationReply) IsSet ¶

func (NullableCreateOrganizationReply) MarshalJSON ¶

func (v NullableCreateOrganizationReply) MarshalJSON() ([]byte, error)

func (*NullableCreateOrganizationReply) Set ¶

func (*NullableCreateOrganizationReply) UnmarshalJSON ¶

func (v *NullableCreateOrganizationReply) UnmarshalJSON(src []byte) error

func (*NullableCreateOrganizationReply) Unset ¶

type NullableCreateOrganizationRequest ¶

type NullableCreateOrganizationRequest struct {
	// contains filtered or unexported fields
}

func (NullableCreateOrganizationRequest) Get ¶

func (NullableCreateOrganizationRequest) IsSet ¶

func (NullableCreateOrganizationRequest) MarshalJSON ¶

func (v NullableCreateOrganizationRequest) MarshalJSON() ([]byte, error)

func (*NullableCreateOrganizationRequest) Set ¶

func (*NullableCreateOrganizationRequest) UnmarshalJSON ¶

func (v *NullableCreateOrganizationRequest) UnmarshalJSON(src []byte) error

func (*NullableCreateOrganizationRequest) Unset ¶

type NullableCreatePaymentAuthorizationReply ¶

type NullableCreatePaymentAuthorizationReply struct {
	// contains filtered or unexported fields
}

func (NullableCreatePaymentAuthorizationReply) Get ¶

func (NullableCreatePaymentAuthorizationReply) IsSet ¶

func (NullableCreatePaymentAuthorizationReply) MarshalJSON ¶

func (v NullableCreatePaymentAuthorizationReply) MarshalJSON() ([]byte, error)

func (*NullableCreatePaymentAuthorizationReply) Set ¶

func (*NullableCreatePaymentAuthorizationReply) UnmarshalJSON ¶

func (v *NullableCreatePaymentAuthorizationReply) UnmarshalJSON(src []byte) error

func (*NullableCreatePaymentAuthorizationReply) Unset ¶

type NullableCreateSecret ¶

type NullableCreateSecret struct {
	// contains filtered or unexported fields
}

func NewNullableCreateSecret ¶

func NewNullableCreateSecret(val *CreateSecret) *NullableCreateSecret

func (NullableCreateSecret) Get ¶

func (NullableCreateSecret) IsSet ¶

func (v NullableCreateSecret) IsSet() bool

func (NullableCreateSecret) MarshalJSON ¶

func (v NullableCreateSecret) MarshalJSON() ([]byte, error)

func (*NullableCreateSecret) Set ¶

func (v *NullableCreateSecret) Set(val *CreateSecret)

func (*NullableCreateSecret) UnmarshalJSON ¶

func (v *NullableCreateSecret) UnmarshalJSON(src []byte) error

func (*NullableCreateSecret) Unset ¶

func (v *NullableCreateSecret) Unset()

type NullableCreateSecretReply ¶

type NullableCreateSecretReply struct {
	// contains filtered or unexported fields
}

func NewNullableCreateSecretReply ¶

func NewNullableCreateSecretReply(val *CreateSecretReply) *NullableCreateSecretReply

func (NullableCreateSecretReply) Get ¶

func (NullableCreateSecretReply) IsSet ¶

func (v NullableCreateSecretReply) IsSet() bool

func (NullableCreateSecretReply) MarshalJSON ¶

func (v NullableCreateSecretReply) MarshalJSON() ([]byte, error)

func (*NullableCreateSecretReply) Set ¶

func (*NullableCreateSecretReply) UnmarshalJSON ¶

func (v *NullableCreateSecretReply) UnmarshalJSON(src []byte) error

func (*NullableCreateSecretReply) Unset ¶

func (v *NullableCreateSecretReply) Unset()

type NullableCreateService ¶

type NullableCreateService struct {
	// contains filtered or unexported fields
}

func NewNullableCreateService ¶

func NewNullableCreateService(val *CreateService) *NullableCreateService

func (NullableCreateService) Get ¶

func (NullableCreateService) IsSet ¶

func (v NullableCreateService) IsSet() bool

func (NullableCreateService) MarshalJSON ¶

func (v NullableCreateService) MarshalJSON() ([]byte, error)

func (*NullableCreateService) Set ¶

func (v *NullableCreateService) Set(val *CreateService)

func (*NullableCreateService) UnmarshalJSON ¶

func (v *NullableCreateService) UnmarshalJSON(src []byte) error

func (*NullableCreateService) Unset ¶

func (v *NullableCreateService) Unset()

type NullableCreateServiceReply ¶

type NullableCreateServiceReply struct {
	// contains filtered or unexported fields
}

func NewNullableCreateServiceReply ¶

func NewNullableCreateServiceReply(val *CreateServiceReply) *NullableCreateServiceReply

func (NullableCreateServiceReply) Get ¶

func (NullableCreateServiceReply) IsSet ¶

func (v NullableCreateServiceReply) IsSet() bool

func (NullableCreateServiceReply) MarshalJSON ¶

func (v NullableCreateServiceReply) MarshalJSON() ([]byte, error)

func (*NullableCreateServiceReply) Set ¶

func (*NullableCreateServiceReply) UnmarshalJSON ¶

func (v *NullableCreateServiceReply) UnmarshalJSON(src []byte) error

func (*NullableCreateServiceReply) Unset ¶

func (v *NullableCreateServiceReply) Unset()

type NullableCredential ¶

type NullableCredential struct {
	// contains filtered or unexported fields
}

func NewNullableCredential ¶

func NewNullableCredential(val *Credential) *NullableCredential

func (NullableCredential) Get ¶

func (v NullableCredential) Get() *Credential

func (NullableCredential) IsSet ¶

func (v NullableCredential) IsSet() bool

func (NullableCredential) MarshalJSON ¶

func (v NullableCredential) MarshalJSON() ([]byte, error)

func (*NullableCredential) Set ¶

func (v *NullableCredential) Set(val *Credential)

func (*NullableCredential) UnmarshalJSON ¶

func (v *NullableCredential) UnmarshalJSON(src []byte) error

func (*NullableCredential) Unset ¶

func (v *NullableCredential) Unset()

type NullableCredentialType ¶

type NullableCredentialType struct {
	// contains filtered or unexported fields
}

func NewNullableCredentialType ¶

func NewNullableCredentialType(val *CredentialType) *NullableCredentialType

func (NullableCredentialType) Get ¶

func (NullableCredentialType) IsSet ¶

func (v NullableCredentialType) IsSet() bool

func (NullableCredentialType) MarshalJSON ¶

func (v NullableCredentialType) MarshalJSON() ([]byte, error)

func (*NullableCredentialType) Set ¶

func (*NullableCredentialType) UnmarshalJSON ¶

func (v *NullableCredentialType) UnmarshalJSON(src []byte) error

func (*NullableCredentialType) Unset ¶

func (v *NullableCredentialType) Unset()

type NullableDatabaseDeploymentMetadata ¶

type NullableDatabaseDeploymentMetadata struct {
	// contains filtered or unexported fields
}

func (NullableDatabaseDeploymentMetadata) Get ¶

func (NullableDatabaseDeploymentMetadata) IsSet ¶

func (NullableDatabaseDeploymentMetadata) MarshalJSON ¶

func (v NullableDatabaseDeploymentMetadata) MarshalJSON() ([]byte, error)

func (*NullableDatabaseDeploymentMetadata) Set ¶

func (*NullableDatabaseDeploymentMetadata) UnmarshalJSON ¶

func (v *NullableDatabaseDeploymentMetadata) UnmarshalJSON(src []byte) error

func (*NullableDatabaseDeploymentMetadata) Unset ¶

type NullableDatabaseRolePassword ¶

type NullableDatabaseRolePassword struct {
	// contains filtered or unexported fields
}

func (NullableDatabaseRolePassword) Get ¶

func (NullableDatabaseRolePassword) IsSet ¶

func (NullableDatabaseRolePassword) MarshalJSON ¶

func (v NullableDatabaseRolePassword) MarshalJSON() ([]byte, error)

func (*NullableDatabaseRolePassword) Set ¶

func (*NullableDatabaseRolePassword) UnmarshalJSON ¶

func (v *NullableDatabaseRolePassword) UnmarshalJSON(src []byte) error

func (*NullableDatabaseRolePassword) Unset ¶

func (v *NullableDatabaseRolePassword) Unset()

type NullableDatabaseSource ¶

type NullableDatabaseSource struct {
	// contains filtered or unexported fields
}

func NewNullableDatabaseSource ¶

func NewNullableDatabaseSource(val *DatabaseSource) *NullableDatabaseSource

func (NullableDatabaseSource) Get ¶

func (NullableDatabaseSource) IsSet ¶

func (v NullableDatabaseSource) IsSet() bool

func (NullableDatabaseSource) MarshalJSON ¶

func (v NullableDatabaseSource) MarshalJSON() ([]byte, error)

func (*NullableDatabaseSource) Set ¶

func (*NullableDatabaseSource) UnmarshalJSON ¶

func (v *NullableDatabaseSource) UnmarshalJSON(src []byte) error

func (*NullableDatabaseSource) Unset ¶

func (v *NullableDatabaseSource) Unset()

type NullableDatacenterListItem ¶

type NullableDatacenterListItem struct {
	// contains filtered or unexported fields
}

func NewNullableDatacenterListItem ¶

func NewNullableDatacenterListItem(val *DatacenterListItem) *NullableDatacenterListItem

func (NullableDatacenterListItem) Get ¶

func (NullableDatacenterListItem) IsSet ¶

func (v NullableDatacenterListItem) IsSet() bool

func (NullableDatacenterListItem) MarshalJSON ¶

func (v NullableDatacenterListItem) MarshalJSON() ([]byte, error)

func (*NullableDatacenterListItem) Set ¶

func (*NullableDatacenterListItem) UnmarshalJSON ¶

func (v *NullableDatacenterListItem) UnmarshalJSON(src []byte) error

func (*NullableDatacenterListItem) Unset ¶

func (v *NullableDatacenterListItem) Unset()

type NullableDeactivateOrganizationReply ¶

type NullableDeactivateOrganizationReply struct {
	// contains filtered or unexported fields
}

func (NullableDeactivateOrganizationReply) Get ¶

func (NullableDeactivateOrganizationReply) IsSet ¶

func (NullableDeactivateOrganizationReply) MarshalJSON ¶

func (v NullableDeactivateOrganizationReply) MarshalJSON() ([]byte, error)

func (*NullableDeactivateOrganizationReply) Set ¶

func (*NullableDeactivateOrganizationReply) UnmarshalJSON ¶

func (v *NullableDeactivateOrganizationReply) UnmarshalJSON(src []byte) error

func (*NullableDeactivateOrganizationReply) Unset ¶

type NullableDeclineOrganizationInvitationReply ¶

type NullableDeclineOrganizationInvitationReply struct {
	// contains filtered or unexported fields
}

func (NullableDeclineOrganizationInvitationReply) Get ¶

func (NullableDeclineOrganizationInvitationReply) IsSet ¶

func (NullableDeclineOrganizationInvitationReply) MarshalJSON ¶

func (*NullableDeclineOrganizationInvitationReply) Set ¶

func (*NullableDeclineOrganizationInvitationReply) UnmarshalJSON ¶

func (v *NullableDeclineOrganizationInvitationReply) UnmarshalJSON(src []byte) error

func (*NullableDeclineOrganizationInvitationReply) Unset ¶

type NullableDeleteOrganizationReply ¶

type NullableDeleteOrganizationReply struct {
	// contains filtered or unexported fields
}

func (NullableDeleteOrganizationReply) Get ¶

func (NullableDeleteOrganizationReply) IsSet ¶

func (NullableDeleteOrganizationReply) MarshalJSON ¶

func (v NullableDeleteOrganizationReply) MarshalJSON() ([]byte, error)

func (*NullableDeleteOrganizationReply) Set ¶

func (*NullableDeleteOrganizationReply) UnmarshalJSON ¶

func (v *NullableDeleteOrganizationReply) UnmarshalJSON(src []byte) error

func (*NullableDeleteOrganizationReply) Unset ¶

type NullableDeleteUserReply ¶

type NullableDeleteUserReply struct {
	// contains filtered or unexported fields
}

func NewNullableDeleteUserReply ¶

func NewNullableDeleteUserReply(val *DeleteUserReply) *NullableDeleteUserReply

func (NullableDeleteUserReply) Get ¶

func (NullableDeleteUserReply) IsSet ¶

func (v NullableDeleteUserReply) IsSet() bool

func (NullableDeleteUserReply) MarshalJSON ¶

func (v NullableDeleteUserReply) MarshalJSON() ([]byte, error)

func (*NullableDeleteUserReply) Set ¶

func (*NullableDeleteUserReply) UnmarshalJSON ¶

func (v *NullableDeleteUserReply) UnmarshalJSON(src []byte) error

func (*NullableDeleteUserReply) Unset ¶

func (v *NullableDeleteUserReply) Unset()

type NullableDeployment ¶

type NullableDeployment struct {
	// contains filtered or unexported fields
}

func NewNullableDeployment ¶

func NewNullableDeployment(val *Deployment) *NullableDeployment

func (NullableDeployment) Get ¶

func (v NullableDeployment) Get() *Deployment

func (NullableDeployment) IsSet ¶

func (v NullableDeployment) IsSet() bool

func (NullableDeployment) MarshalJSON ¶

func (v NullableDeployment) MarshalJSON() ([]byte, error)

func (*NullableDeployment) Set ¶

func (v *NullableDeployment) Set(val *Deployment)

func (*NullableDeployment) UnmarshalJSON ¶

func (v *NullableDeployment) UnmarshalJSON(src []byte) error

func (*NullableDeployment) Unset ¶

func (v *NullableDeployment) Unset()

type NullableDeploymentDatabaseInfo ¶

type NullableDeploymentDatabaseInfo struct {
	// contains filtered or unexported fields
}

func (NullableDeploymentDatabaseInfo) Get ¶

func (NullableDeploymentDatabaseInfo) IsSet ¶

func (NullableDeploymentDatabaseInfo) MarshalJSON ¶

func (v NullableDeploymentDatabaseInfo) MarshalJSON() ([]byte, error)

func (*NullableDeploymentDatabaseInfo) Set ¶

func (*NullableDeploymentDatabaseInfo) UnmarshalJSON ¶

func (v *NullableDeploymentDatabaseInfo) UnmarshalJSON(src []byte) error

func (*NullableDeploymentDatabaseInfo) Unset ¶

func (v *NullableDeploymentDatabaseInfo) Unset()

type NullableDeploymentDefinition ¶

type NullableDeploymentDefinition struct {
	// contains filtered or unexported fields
}

func (NullableDeploymentDefinition) Get ¶

func (NullableDeploymentDefinition) IsSet ¶

func (NullableDeploymentDefinition) MarshalJSON ¶

func (v NullableDeploymentDefinition) MarshalJSON() ([]byte, error)

func (*NullableDeploymentDefinition) Set ¶

func (*NullableDeploymentDefinition) UnmarshalJSON ¶

func (v *NullableDeploymentDefinition) UnmarshalJSON(src []byte) error

func (*NullableDeploymentDefinition) Unset ¶

func (v *NullableDeploymentDefinition) Unset()

type NullableDeploymentDefinitionType ¶

type NullableDeploymentDefinitionType struct {
	// contains filtered or unexported fields
}

func (NullableDeploymentDefinitionType) Get ¶

func (NullableDeploymentDefinitionType) IsSet ¶

func (NullableDeploymentDefinitionType) MarshalJSON ¶

func (v NullableDeploymentDefinitionType) MarshalJSON() ([]byte, error)

func (*NullableDeploymentDefinitionType) Set ¶

func (*NullableDeploymentDefinitionType) UnmarshalJSON ¶

func (v *NullableDeploymentDefinitionType) UnmarshalJSON(src []byte) error

func (*NullableDeploymentDefinitionType) Unset ¶

type NullableDeploymentEnv ¶

type NullableDeploymentEnv struct {
	// contains filtered or unexported fields
}

func NewNullableDeploymentEnv ¶

func NewNullableDeploymentEnv(val *DeploymentEnv) *NullableDeploymentEnv

func (NullableDeploymentEnv) Get ¶

func (NullableDeploymentEnv) IsSet ¶

func (v NullableDeploymentEnv) IsSet() bool

func (NullableDeploymentEnv) MarshalJSON ¶

func (v NullableDeploymentEnv) MarshalJSON() ([]byte, error)

func (*NullableDeploymentEnv) Set ¶

func (v *NullableDeploymentEnv) Set(val *DeploymentEnv)

func (*NullableDeploymentEnv) UnmarshalJSON ¶

func (v *NullableDeploymentEnv) UnmarshalJSON(src []byte) error

func (*NullableDeploymentEnv) Unset ¶

func (v *NullableDeploymentEnv) Unset()

type NullableDeploymentEvent ¶

type NullableDeploymentEvent struct {
	// contains filtered or unexported fields
}

func NewNullableDeploymentEvent ¶

func NewNullableDeploymentEvent(val *DeploymentEvent) *NullableDeploymentEvent

func (NullableDeploymentEvent) Get ¶

func (NullableDeploymentEvent) IsSet ¶

func (v NullableDeploymentEvent) IsSet() bool

func (NullableDeploymentEvent) MarshalJSON ¶

func (v NullableDeploymentEvent) MarshalJSON() ([]byte, error)

func (*NullableDeploymentEvent) Set ¶

func (*NullableDeploymentEvent) UnmarshalJSON ¶

func (v *NullableDeploymentEvent) UnmarshalJSON(src []byte) error

func (*NullableDeploymentEvent) Unset ¶

func (v *NullableDeploymentEvent) Unset()

type NullableDeploymentHealthCheck ¶

type NullableDeploymentHealthCheck struct {
	// contains filtered or unexported fields
}

func (NullableDeploymentHealthCheck) Get ¶

func (NullableDeploymentHealthCheck) IsSet ¶

func (NullableDeploymentHealthCheck) MarshalJSON ¶

func (v NullableDeploymentHealthCheck) MarshalJSON() ([]byte, error)

func (*NullableDeploymentHealthCheck) Set ¶

func (*NullableDeploymentHealthCheck) UnmarshalJSON ¶

func (v *NullableDeploymentHealthCheck) UnmarshalJSON(src []byte) error

func (*NullableDeploymentHealthCheck) Unset ¶

func (v *NullableDeploymentHealthCheck) Unset()

type NullableDeploymentInstanceType ¶

type NullableDeploymentInstanceType struct {
	// contains filtered or unexported fields
}

func (NullableDeploymentInstanceType) Get ¶

func (NullableDeploymentInstanceType) IsSet ¶

func (NullableDeploymentInstanceType) MarshalJSON ¶

func (v NullableDeploymentInstanceType) MarshalJSON() ([]byte, error)

func (*NullableDeploymentInstanceType) Set ¶

func (*NullableDeploymentInstanceType) UnmarshalJSON ¶

func (v *NullableDeploymentInstanceType) UnmarshalJSON(src []byte) error

func (*NullableDeploymentInstanceType) Unset ¶

func (v *NullableDeploymentInstanceType) Unset()

type NullableDeploymentListItem ¶

type NullableDeploymentListItem struct {
	// contains filtered or unexported fields
}

func NewNullableDeploymentListItem ¶

func NewNullableDeploymentListItem(val *DeploymentListItem) *NullableDeploymentListItem

func (NullableDeploymentListItem) Get ¶

func (NullableDeploymentListItem) IsSet ¶

func (v NullableDeploymentListItem) IsSet() bool

func (NullableDeploymentListItem) MarshalJSON ¶

func (v NullableDeploymentListItem) MarshalJSON() ([]byte, error)

func (*NullableDeploymentListItem) Set ¶

func (*NullableDeploymentListItem) UnmarshalJSON ¶

func (v *NullableDeploymentListItem) UnmarshalJSON(src []byte) error

func (*NullableDeploymentListItem) Unset ¶

func (v *NullableDeploymentListItem) Unset()

type NullableDeploymentMetadata ¶

type NullableDeploymentMetadata struct {
	// contains filtered or unexported fields
}

func NewNullableDeploymentMetadata ¶

func NewNullableDeploymentMetadata(val *DeploymentMetadata) *NullableDeploymentMetadata

func (NullableDeploymentMetadata) Get ¶

func (NullableDeploymentMetadata) IsSet ¶

func (v NullableDeploymentMetadata) IsSet() bool

func (NullableDeploymentMetadata) MarshalJSON ¶

func (v NullableDeploymentMetadata) MarshalJSON() ([]byte, error)

func (*NullableDeploymentMetadata) Set ¶

func (*NullableDeploymentMetadata) UnmarshalJSON ¶

func (v *NullableDeploymentMetadata) UnmarshalJSON(src []byte) error

func (*NullableDeploymentMetadata) Unset ¶

func (v *NullableDeploymentMetadata) Unset()

type NullableDeploymentNeonPostgresDatabaseInfo ¶

type NullableDeploymentNeonPostgresDatabaseInfo struct {
	// contains filtered or unexported fields
}

func (NullableDeploymentNeonPostgresDatabaseInfo) Get ¶

func (NullableDeploymentNeonPostgresDatabaseInfo) IsSet ¶

func (NullableDeploymentNeonPostgresDatabaseInfo) MarshalJSON ¶

func (*NullableDeploymentNeonPostgresDatabaseInfo) Set ¶

func (*NullableDeploymentNeonPostgresDatabaseInfo) UnmarshalJSON ¶

func (v *NullableDeploymentNeonPostgresDatabaseInfo) UnmarshalJSON(src []byte) error

func (*NullableDeploymentNeonPostgresDatabaseInfo) Unset ¶

type NullableDeploymentNeonPostgresDatabaseInfoRole ¶

type NullableDeploymentNeonPostgresDatabaseInfoRole struct {
	// contains filtered or unexported fields
}

func (NullableDeploymentNeonPostgresDatabaseInfoRole) Get ¶

func (NullableDeploymentNeonPostgresDatabaseInfoRole) IsSet ¶

func (NullableDeploymentNeonPostgresDatabaseInfoRole) MarshalJSON ¶

func (*NullableDeploymentNeonPostgresDatabaseInfoRole) Set ¶

func (*NullableDeploymentNeonPostgresDatabaseInfoRole) UnmarshalJSON ¶

func (*NullableDeploymentNeonPostgresDatabaseInfoRole) Unset ¶

type NullableDeploymentPort ¶

type NullableDeploymentPort struct {
	// contains filtered or unexported fields
}

func NewNullableDeploymentPort ¶

func NewNullableDeploymentPort(val *DeploymentPort) *NullableDeploymentPort

func (NullableDeploymentPort) Get ¶

func (NullableDeploymentPort) IsSet ¶

func (v NullableDeploymentPort) IsSet() bool

func (NullableDeploymentPort) MarshalJSON ¶

func (v NullableDeploymentPort) MarshalJSON() ([]byte, error)

func (*NullableDeploymentPort) Set ¶

func (*NullableDeploymentPort) UnmarshalJSON ¶

func (v *NullableDeploymentPort) UnmarshalJSON(src []byte) error

func (*NullableDeploymentPort) Unset ¶

func (v *NullableDeploymentPort) Unset()

type NullableDeploymentProvisioningInfo ¶

type NullableDeploymentProvisioningInfo struct {
	// contains filtered or unexported fields
}

func (NullableDeploymentProvisioningInfo) Get ¶

func (NullableDeploymentProvisioningInfo) IsSet ¶

func (NullableDeploymentProvisioningInfo) MarshalJSON ¶

func (v NullableDeploymentProvisioningInfo) MarshalJSON() ([]byte, error)

func (*NullableDeploymentProvisioningInfo) Set ¶

func (*NullableDeploymentProvisioningInfo) UnmarshalJSON ¶

func (v *NullableDeploymentProvisioningInfo) UnmarshalJSON(src []byte) error

func (*NullableDeploymentProvisioningInfo) Unset ¶

type NullableDeploymentProvisioningInfoStage ¶

type NullableDeploymentProvisioningInfoStage struct {
	// contains filtered or unexported fields
}

func (NullableDeploymentProvisioningInfoStage) Get ¶

func (NullableDeploymentProvisioningInfoStage) IsSet ¶

func (NullableDeploymentProvisioningInfoStage) MarshalJSON ¶

func (v NullableDeploymentProvisioningInfoStage) MarshalJSON() ([]byte, error)

func (*NullableDeploymentProvisioningInfoStage) Set ¶

func (*NullableDeploymentProvisioningInfoStage) UnmarshalJSON ¶

func (v *NullableDeploymentProvisioningInfoStage) UnmarshalJSON(src []byte) error

func (*NullableDeploymentProvisioningInfoStage) Unset ¶

type NullableDeploymentProvisioningInfoStageBuildAttempt ¶

type NullableDeploymentProvisioningInfoStageBuildAttempt struct {
	// contains filtered or unexported fields
}

func (NullableDeploymentProvisioningInfoStageBuildAttempt) Get ¶

func (NullableDeploymentProvisioningInfoStageBuildAttempt) IsSet ¶

func (NullableDeploymentProvisioningInfoStageBuildAttempt) MarshalJSON ¶

func (*NullableDeploymentProvisioningInfoStageBuildAttempt) Set ¶

func (*NullableDeploymentProvisioningInfoStageBuildAttempt) UnmarshalJSON ¶

func (*NullableDeploymentProvisioningInfoStageBuildAttempt) Unset ¶

type NullableDeploymentProvisioningInfoStageStatus ¶

type NullableDeploymentProvisioningInfoStageStatus struct {
	// contains filtered or unexported fields
}

func (NullableDeploymentProvisioningInfoStageStatus) Get ¶

func (NullableDeploymentProvisioningInfoStageStatus) IsSet ¶

func (NullableDeploymentProvisioningInfoStageStatus) MarshalJSON ¶

func (*NullableDeploymentProvisioningInfoStageStatus) Set ¶

func (*NullableDeploymentProvisioningInfoStageStatus) UnmarshalJSON ¶

func (*NullableDeploymentProvisioningInfoStageStatus) Unset ¶

type NullableDeploymentRoute ¶

type NullableDeploymentRoute struct {
	// contains filtered or unexported fields
}

func NewNullableDeploymentRoute ¶

func NewNullableDeploymentRoute(val *DeploymentRoute) *NullableDeploymentRoute

func (NullableDeploymentRoute) Get ¶

func (NullableDeploymentRoute) IsSet ¶

func (v NullableDeploymentRoute) IsSet() bool

func (NullableDeploymentRoute) MarshalJSON ¶

func (v NullableDeploymentRoute) MarshalJSON() ([]byte, error)

func (*NullableDeploymentRoute) Set ¶

func (*NullableDeploymentRoute) UnmarshalJSON ¶

func (v *NullableDeploymentRoute) UnmarshalJSON(src []byte) error

func (*NullableDeploymentRoute) Unset ¶

func (v *NullableDeploymentRoute) Unset()

type NullableDeploymentScaling ¶

type NullableDeploymentScaling struct {
	// contains filtered or unexported fields
}

func NewNullableDeploymentScaling ¶

func NewNullableDeploymentScaling(val *DeploymentScaling) *NullableDeploymentScaling

func (NullableDeploymentScaling) Get ¶

func (NullableDeploymentScaling) IsSet ¶

func (v NullableDeploymentScaling) IsSet() bool

func (NullableDeploymentScaling) MarshalJSON ¶

func (v NullableDeploymentScaling) MarshalJSON() ([]byte, error)

func (*NullableDeploymentScaling) Set ¶

func (*NullableDeploymentScaling) UnmarshalJSON ¶

func (v *NullableDeploymentScaling) UnmarshalJSON(src []byte) error

func (*NullableDeploymentScaling) Unset ¶

func (v *NullableDeploymentScaling) Unset()

type NullableDeploymentScalingTarget ¶

type NullableDeploymentScalingTarget struct {
	// contains filtered or unexported fields
}

func (NullableDeploymentScalingTarget) Get ¶

func (NullableDeploymentScalingTarget) IsSet ¶

func (NullableDeploymentScalingTarget) MarshalJSON ¶

func (v NullableDeploymentScalingTarget) MarshalJSON() ([]byte, error)

func (*NullableDeploymentScalingTarget) Set ¶

func (*NullableDeploymentScalingTarget) UnmarshalJSON ¶

func (v *NullableDeploymentScalingTarget) UnmarshalJSON(src []byte) error

func (*NullableDeploymentScalingTarget) Unset ¶

type NullableDeploymentScalingTargetAverageCPU ¶

type NullableDeploymentScalingTargetAverageCPU struct {
	// contains filtered or unexported fields
}

func (NullableDeploymentScalingTargetAverageCPU) Get ¶

func (NullableDeploymentScalingTargetAverageCPU) IsSet ¶

func (NullableDeploymentScalingTargetAverageCPU) MarshalJSON ¶

func (*NullableDeploymentScalingTargetAverageCPU) Set ¶

func (*NullableDeploymentScalingTargetAverageCPU) UnmarshalJSON ¶

func (v *NullableDeploymentScalingTargetAverageCPU) UnmarshalJSON(src []byte) error

func (*NullableDeploymentScalingTargetAverageCPU) Unset ¶

type NullableDeploymentScalingTargetAverageMem ¶

type NullableDeploymentScalingTargetAverageMem struct {
	// contains filtered or unexported fields
}

func (NullableDeploymentScalingTargetAverageMem) Get ¶

func (NullableDeploymentScalingTargetAverageMem) IsSet ¶

func (NullableDeploymentScalingTargetAverageMem) MarshalJSON ¶

func (*NullableDeploymentScalingTargetAverageMem) Set ¶

func (*NullableDeploymentScalingTargetAverageMem) UnmarshalJSON ¶

func (v *NullableDeploymentScalingTargetAverageMem) UnmarshalJSON(src []byte) error

func (*NullableDeploymentScalingTargetAverageMem) Unset ¶

type NullableDeploymentScalingTargetRequestsPerSecond ¶

type NullableDeploymentScalingTargetRequestsPerSecond struct {
	// contains filtered or unexported fields
}

func (NullableDeploymentScalingTargetRequestsPerSecond) Get ¶

func (NullableDeploymentScalingTargetRequestsPerSecond) IsSet ¶

func (NullableDeploymentScalingTargetRequestsPerSecond) MarshalJSON ¶

func (*NullableDeploymentScalingTargetRequestsPerSecond) Set ¶

func (*NullableDeploymentScalingTargetRequestsPerSecond) UnmarshalJSON ¶

func (*NullableDeploymentScalingTargetRequestsPerSecond) Unset ¶

type NullableDeploymentStatus ¶

type NullableDeploymentStatus struct {
	// contains filtered or unexported fields
}

func NewNullableDeploymentStatus ¶

func NewNullableDeploymentStatus(val *DeploymentStatus) *NullableDeploymentStatus

func (NullableDeploymentStatus) Get ¶

func (NullableDeploymentStatus) IsSet ¶

func (v NullableDeploymentStatus) IsSet() bool

func (NullableDeploymentStatus) MarshalJSON ¶

func (v NullableDeploymentStatus) MarshalJSON() ([]byte, error)

func (*NullableDeploymentStatus) Set ¶

func (*NullableDeploymentStatus) UnmarshalJSON ¶

func (v *NullableDeploymentStatus) UnmarshalJSON(src []byte) error

func (*NullableDeploymentStatus) Unset ¶

func (v *NullableDeploymentStatus) Unset()

type NullableDesiredDeployment ¶

type NullableDesiredDeployment struct {
	// contains filtered or unexported fields
}

func NewNullableDesiredDeployment ¶

func NewNullableDesiredDeployment(val *DesiredDeployment) *NullableDesiredDeployment

func (NullableDesiredDeployment) Get ¶

func (NullableDesiredDeployment) IsSet ¶

func (v NullableDesiredDeployment) IsSet() bool

func (NullableDesiredDeployment) MarshalJSON ¶

func (v NullableDesiredDeployment) MarshalJSON() ([]byte, error)

func (*NullableDesiredDeployment) Set ¶

func (*NullableDesiredDeployment) UnmarshalJSON ¶

func (v *NullableDesiredDeployment) UnmarshalJSON(src []byte) error

func (*NullableDesiredDeployment) Unset ¶

func (v *NullableDesiredDeployment) Unset()

type NullableDesiredDeploymentGroup ¶

type NullableDesiredDeploymentGroup struct {
	// contains filtered or unexported fields
}

func (NullableDesiredDeploymentGroup) Get ¶

func (NullableDesiredDeploymentGroup) IsSet ¶

func (NullableDesiredDeploymentGroup) MarshalJSON ¶

func (v NullableDesiredDeploymentGroup) MarshalJSON() ([]byte, error)

func (*NullableDesiredDeploymentGroup) Set ¶

func (*NullableDesiredDeploymentGroup) UnmarshalJSON ¶

func (v *NullableDesiredDeploymentGroup) UnmarshalJSON(src []byte) error

func (*NullableDesiredDeploymentGroup) Unset ¶

func (v *NullableDesiredDeploymentGroup) Unset()

type NullableDigitalOceanRegistryConfiguration ¶

type NullableDigitalOceanRegistryConfiguration struct {
	// contains filtered or unexported fields
}

func (NullableDigitalOceanRegistryConfiguration) Get ¶

func (NullableDigitalOceanRegistryConfiguration) IsSet ¶

func (NullableDigitalOceanRegistryConfiguration) MarshalJSON ¶

func (*NullableDigitalOceanRegistryConfiguration) Set ¶

func (*NullableDigitalOceanRegistryConfiguration) UnmarshalJSON ¶

func (v *NullableDigitalOceanRegistryConfiguration) UnmarshalJSON(src []byte) error

func (*NullableDigitalOceanRegistryConfiguration) Unset ¶

type NullableDiscourseAuthReply ¶

type NullableDiscourseAuthReply struct {
	// contains filtered or unexported fields
}

func NewNullableDiscourseAuthReply ¶

func NewNullableDiscourseAuthReply(val *DiscourseAuthReply) *NullableDiscourseAuthReply

func (NullableDiscourseAuthReply) Get ¶

func (NullableDiscourseAuthReply) IsSet ¶

func (v NullableDiscourseAuthReply) IsSet() bool

func (NullableDiscourseAuthReply) MarshalJSON ¶

func (v NullableDiscourseAuthReply) MarshalJSON() ([]byte, error)

func (*NullableDiscourseAuthReply) Set ¶

func (*NullableDiscourseAuthReply) UnmarshalJSON ¶

func (v *NullableDiscourseAuthReply) UnmarshalJSON(src []byte) error

func (*NullableDiscourseAuthReply) Unset ¶

func (v *NullableDiscourseAuthReply) Unset()

type NullableDiscourseAuthRequest ¶

type NullableDiscourseAuthRequest struct {
	// contains filtered or unexported fields
}

func (NullableDiscourseAuthRequest) Get ¶

func (NullableDiscourseAuthRequest) IsSet ¶

func (NullableDiscourseAuthRequest) MarshalJSON ¶

func (v NullableDiscourseAuthRequest) MarshalJSON() ([]byte, error)

func (*NullableDiscourseAuthRequest) Set ¶

func (*NullableDiscourseAuthRequest) UnmarshalJSON ¶

func (v *NullableDiscourseAuthRequest) UnmarshalJSON(src []byte) error

func (*NullableDiscourseAuthRequest) Unset ¶

func (v *NullableDiscourseAuthRequest) Unset()

type NullableDockerBuilder ¶

type NullableDockerBuilder struct {
	// contains filtered or unexported fields
}

func NewNullableDockerBuilder ¶

func NewNullableDockerBuilder(val *DockerBuilder) *NullableDockerBuilder

func (NullableDockerBuilder) Get ¶

func (NullableDockerBuilder) IsSet ¶

func (v NullableDockerBuilder) IsSet() bool

func (NullableDockerBuilder) MarshalJSON ¶

func (v NullableDockerBuilder) MarshalJSON() ([]byte, error)

func (*NullableDockerBuilder) Set ¶

func (v *NullableDockerBuilder) Set(val *DockerBuilder)

func (*NullableDockerBuilder) UnmarshalJSON ¶

func (v *NullableDockerBuilder) UnmarshalJSON(src []byte) error

func (*NullableDockerBuilder) Unset ¶

func (v *NullableDockerBuilder) Unset()

type NullableDockerHubRegistryConfiguration ¶

type NullableDockerHubRegistryConfiguration struct {
	// contains filtered or unexported fields
}

func (NullableDockerHubRegistryConfiguration) Get ¶

func (NullableDockerHubRegistryConfiguration) IsSet ¶

func (NullableDockerHubRegistryConfiguration) MarshalJSON ¶

func (v NullableDockerHubRegistryConfiguration) MarshalJSON() ([]byte, error)

func (*NullableDockerHubRegistryConfiguration) Set ¶

func (*NullableDockerHubRegistryConfiguration) UnmarshalJSON ¶

func (v *NullableDockerHubRegistryConfiguration) UnmarshalJSON(src []byte) error

func (*NullableDockerHubRegistryConfiguration) Unset ¶

type NullableDockerSource ¶

type NullableDockerSource struct {
	// contains filtered or unexported fields
}

func NewNullableDockerSource ¶

func NewNullableDockerSource(val *DockerSource) *NullableDockerSource

func (NullableDockerSource) Get ¶

func (NullableDockerSource) IsSet ¶

func (v NullableDockerSource) IsSet() bool

func (NullableDockerSource) MarshalJSON ¶

func (v NullableDockerSource) MarshalJSON() ([]byte, error)

func (*NullableDockerSource) Set ¶

func (v *NullableDockerSource) Set(val *DockerSource)

func (*NullableDockerSource) UnmarshalJSON ¶

func (v *NullableDockerSource) UnmarshalJSON(src []byte) error

func (*NullableDockerSource) Unset ¶

func (v *NullableDockerSource) Unset()

type NullableDomain ¶

type NullableDomain struct {
	// contains filtered or unexported fields
}

func NewNullableDomain ¶

func NewNullableDomain(val *Domain) *NullableDomain

func (NullableDomain) Get ¶

func (v NullableDomain) Get() *Domain

func (NullableDomain) IsSet ¶

func (v NullableDomain) IsSet() bool

func (NullableDomain) MarshalJSON ¶

func (v NullableDomain) MarshalJSON() ([]byte, error)

func (*NullableDomain) Set ¶

func (v *NullableDomain) Set(val *Domain)

func (*NullableDomain) UnmarshalJSON ¶

func (v *NullableDomain) UnmarshalJSON(src []byte) error

func (*NullableDomain) Unset ¶

func (v *NullableDomain) Unset()

type NullableDomainStatus ¶

type NullableDomainStatus struct {
	// contains filtered or unexported fields
}

func NewNullableDomainStatus ¶

func NewNullableDomainStatus(val *DomainStatus) *NullableDomainStatus

func (NullableDomainStatus) Get ¶

func (NullableDomainStatus) IsSet ¶

func (v NullableDomainStatus) IsSet() bool

func (NullableDomainStatus) MarshalJSON ¶

func (v NullableDomainStatus) MarshalJSON() ([]byte, error)

func (*NullableDomainStatus) Set ¶

func (v *NullableDomainStatus) Set(val *DomainStatus)

func (*NullableDomainStatus) UnmarshalJSON ¶

func (v *NullableDomainStatus) UnmarshalJSON(src []byte) error

func (*NullableDomainStatus) Unset ¶

func (v *NullableDomainStatus) Unset()

type NullableDomainType ¶

type NullableDomainType struct {
	// contains filtered or unexported fields
}

func NewNullableDomainType ¶

func NewNullableDomainType(val *DomainType) *NullableDomainType

func (NullableDomainType) Get ¶

func (v NullableDomainType) Get() *DomainType

func (NullableDomainType) IsSet ¶

func (v NullableDomainType) IsSet() bool

func (NullableDomainType) MarshalJSON ¶

func (v NullableDomainType) MarshalJSON() ([]byte, error)

func (*NullableDomainType) Set ¶

func (v *NullableDomainType) Set(val *DomainType)

func (*NullableDomainType) UnmarshalJSON ¶

func (v *NullableDomainType) UnmarshalJSON(src []byte) error

func (*NullableDomainType) Unset ¶

func (v *NullableDomainType) Unset()

type NullableDomainsSummary ¶

type NullableDomainsSummary struct {
	// contains filtered or unexported fields
}

func NewNullableDomainsSummary ¶

func NewNullableDomainsSummary(val *DomainsSummary) *NullableDomainsSummary

func (NullableDomainsSummary) Get ¶

func (NullableDomainsSummary) IsSet ¶

func (v NullableDomainsSummary) IsSet() bool

func (NullableDomainsSummary) MarshalJSON ¶

func (v NullableDomainsSummary) MarshalJSON() ([]byte, error)

func (*NullableDomainsSummary) Set ¶

func (*NullableDomainsSummary) UnmarshalJSON ¶

func (v *NullableDomainsSummary) UnmarshalJSON(src []byte) error

func (*NullableDomainsSummary) Unset ¶

func (v *NullableDomainsSummary) Unset()

type NullableEnv ¶

type NullableEnv struct {
	// contains filtered or unexported fields
}

func NewNullableEnv ¶

func NewNullableEnv(val *Env) *NullableEnv

func (NullableEnv) Get ¶

func (v NullableEnv) Get() *Env

func (NullableEnv) IsSet ¶

func (v NullableEnv) IsSet() bool

func (NullableEnv) MarshalJSON ¶

func (v NullableEnv) MarshalJSON() ([]byte, error)

func (*NullableEnv) Set ¶

func (v *NullableEnv) Set(val *Env)

func (*NullableEnv) UnmarshalJSON ¶

func (v *NullableEnv) UnmarshalJSON(src []byte) error

func (*NullableEnv) Unset ¶

func (v *NullableEnv) Unset()

type NullableError ¶

type NullableError struct {
	// contains filtered or unexported fields
}

func NewNullableError ¶

func NewNullableError(val *Error) *NullableError

func (NullableError) Get ¶

func (v NullableError) Get() *Error

func (NullableError) IsSet ¶

func (v NullableError) IsSet() bool

func (NullableError) MarshalJSON ¶

func (v NullableError) MarshalJSON() ([]byte, error)

func (*NullableError) Set ¶

func (v *NullableError) Set(val *Error)

func (*NullableError) UnmarshalJSON ¶

func (v *NullableError) UnmarshalJSON(src []byte) error

func (*NullableError) Unset ¶

func (v *NullableError) Unset()

type NullableErrorField ¶

type NullableErrorField struct {
	// contains filtered or unexported fields
}

func NewNullableErrorField ¶

func NewNullableErrorField(val *ErrorField) *NullableErrorField

func (NullableErrorField) Get ¶

func (v NullableErrorField) Get() *ErrorField

func (NullableErrorField) IsSet ¶

func (v NullableErrorField) IsSet() bool

func (NullableErrorField) MarshalJSON ¶

func (v NullableErrorField) MarshalJSON() ([]byte, error)

func (*NullableErrorField) Set ¶

func (v *NullableErrorField) Set(val *ErrorField)

func (*NullableErrorField) UnmarshalJSON ¶

func (v *NullableErrorField) UnmarshalJSON(src []byte) error

func (*NullableErrorField) Unset ¶

func (v *NullableErrorField) Unset()

type NullableErrorWithFields ¶

type NullableErrorWithFields struct {
	// contains filtered or unexported fields
}

func NewNullableErrorWithFields ¶

func NewNullableErrorWithFields(val *ErrorWithFields) *NullableErrorWithFields

func (NullableErrorWithFields) Get ¶

func (NullableErrorWithFields) IsSet ¶

func (v NullableErrorWithFields) IsSet() bool

func (NullableErrorWithFields) MarshalJSON ¶

func (v NullableErrorWithFields) MarshalJSON() ([]byte, error)

func (*NullableErrorWithFields) Set ¶

func (*NullableErrorWithFields) UnmarshalJSON ¶

func (v *NullableErrorWithFields) UnmarshalJSON(src []byte) error

func (*NullableErrorWithFields) Unset ¶

func (v *NullableErrorWithFields) Unset()

type NullableExecCommandIO ¶

type NullableExecCommandIO struct {
	// contains filtered or unexported fields
}

func NewNullableExecCommandIO ¶

func NewNullableExecCommandIO(val *ExecCommandIO) *NullableExecCommandIO

func (NullableExecCommandIO) Get ¶

func (NullableExecCommandIO) IsSet ¶

func (v NullableExecCommandIO) IsSet() bool

func (NullableExecCommandIO) MarshalJSON ¶

func (v NullableExecCommandIO) MarshalJSON() ([]byte, error)

func (*NullableExecCommandIO) Set ¶

func (v *NullableExecCommandIO) Set(val *ExecCommandIO)

func (*NullableExecCommandIO) UnmarshalJSON ¶

func (v *NullableExecCommandIO) UnmarshalJSON(src []byte) error

func (*NullableExecCommandIO) Unset ¶

func (v *NullableExecCommandIO) Unset()

type NullableExecCommandReply ¶

type NullableExecCommandReply struct {
	// contains filtered or unexported fields
}

func NewNullableExecCommandReply ¶

func NewNullableExecCommandReply(val *ExecCommandReply) *NullableExecCommandReply

func (NullableExecCommandReply) Get ¶

func (NullableExecCommandReply) IsSet ¶

func (v NullableExecCommandReply) IsSet() bool

func (NullableExecCommandReply) MarshalJSON ¶

func (v NullableExecCommandReply) MarshalJSON() ([]byte, error)

func (*NullableExecCommandReply) Set ¶

func (*NullableExecCommandReply) UnmarshalJSON ¶

func (v *NullableExecCommandReply) UnmarshalJSON(src []byte) error

func (*NullableExecCommandReply) Unset ¶

func (v *NullableExecCommandReply) Unset()

type NullableExecCommandRequestBody ¶

type NullableExecCommandRequestBody struct {
	// contains filtered or unexported fields
}

func (NullableExecCommandRequestBody) Get ¶

func (NullableExecCommandRequestBody) IsSet ¶

func (NullableExecCommandRequestBody) MarshalJSON ¶

func (v NullableExecCommandRequestBody) MarshalJSON() ([]byte, error)

func (*NullableExecCommandRequestBody) Set ¶

func (*NullableExecCommandRequestBody) UnmarshalJSON ¶

func (v *NullableExecCommandRequestBody) UnmarshalJSON(src []byte) error

func (*NullableExecCommandRequestBody) Unset ¶

func (v *NullableExecCommandRequestBody) Unset()

type NullableExecCommandRequestIdType ¶

type NullableExecCommandRequestIdType struct {
	// contains filtered or unexported fields
}

func (NullableExecCommandRequestIdType) Get ¶

func (NullableExecCommandRequestIdType) IsSet ¶

func (NullableExecCommandRequestIdType) MarshalJSON ¶

func (v NullableExecCommandRequestIdType) MarshalJSON() ([]byte, error)

func (*NullableExecCommandRequestIdType) Set ¶

func (*NullableExecCommandRequestIdType) UnmarshalJSON ¶

func (v *NullableExecCommandRequestIdType) UnmarshalJSON(src []byte) error

func (*NullableExecCommandRequestIdType) Unset ¶

type NullableExecCommandRequestTerminalSize ¶

type NullableExecCommandRequestTerminalSize struct {
	// contains filtered or unexported fields
}

func (NullableExecCommandRequestTerminalSize) Get ¶

func (NullableExecCommandRequestTerminalSize) IsSet ¶

func (NullableExecCommandRequestTerminalSize) MarshalJSON ¶

func (v NullableExecCommandRequestTerminalSize) MarshalJSON() ([]byte, error)

func (*NullableExecCommandRequestTerminalSize) Set ¶

func (*NullableExecCommandRequestTerminalSize) UnmarshalJSON ¶

func (v *NullableExecCommandRequestTerminalSize) UnmarshalJSON(src []byte) error

func (*NullableExecCommandRequestTerminalSize) 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 NullableGCPContainerRegistryConfiguration ¶

type NullableGCPContainerRegistryConfiguration struct {
	// contains filtered or unexported fields
}

func (NullableGCPContainerRegistryConfiguration) Get ¶

func (NullableGCPContainerRegistryConfiguration) IsSet ¶

func (NullableGCPContainerRegistryConfiguration) MarshalJSON ¶

func (*NullableGCPContainerRegistryConfiguration) Set ¶

func (*NullableGCPContainerRegistryConfiguration) UnmarshalJSON ¶

func (v *NullableGCPContainerRegistryConfiguration) UnmarshalJSON(src []byte) error

func (*NullableGCPContainerRegistryConfiguration) Unset ¶

type NullableGetAppReply ¶

type NullableGetAppReply struct {
	// contains filtered or unexported fields
}

func NewNullableGetAppReply ¶

func NewNullableGetAppReply(val *GetAppReply) *NullableGetAppReply

func (NullableGetAppReply) Get ¶

func (NullableGetAppReply) IsSet ¶

func (v NullableGetAppReply) IsSet() bool

func (NullableGetAppReply) MarshalJSON ¶

func (v NullableGetAppReply) MarshalJSON() ([]byte, error)

func (*NullableGetAppReply) Set ¶

func (v *NullableGetAppReply) Set(val *GetAppReply)

func (*NullableGetAppReply) UnmarshalJSON ¶

func (v *NullableGetAppReply) UnmarshalJSON(src []byte) error

func (*NullableGetAppReply) Unset ¶

func (v *NullableGetAppReply) Unset()

type NullableGetCatalogInstanceReply ¶

type NullableGetCatalogInstanceReply struct {
	// contains filtered or unexported fields
}

func (NullableGetCatalogInstanceReply) Get ¶

func (NullableGetCatalogInstanceReply) IsSet ¶

func (NullableGetCatalogInstanceReply) MarshalJSON ¶

func (v NullableGetCatalogInstanceReply) MarshalJSON() ([]byte, error)

func (*NullableGetCatalogInstanceReply) Set ¶

func (*NullableGetCatalogInstanceReply) UnmarshalJSON ¶

func (v *NullableGetCatalogInstanceReply) UnmarshalJSON(src []byte) error

func (*NullableGetCatalogInstanceReply) Unset ¶

type NullableGetCredentialReply ¶

type NullableGetCredentialReply struct {
	// contains filtered or unexported fields
}

func NewNullableGetCredentialReply ¶

func NewNullableGetCredentialReply(val *GetCredentialReply) *NullableGetCredentialReply

func (NullableGetCredentialReply) Get ¶

func (NullableGetCredentialReply) IsSet ¶

func (v NullableGetCredentialReply) IsSet() bool

func (NullableGetCredentialReply) MarshalJSON ¶

func (v NullableGetCredentialReply) MarshalJSON() ([]byte, error)

func (*NullableGetCredentialReply) Set ¶

func (*NullableGetCredentialReply) UnmarshalJSON ¶

func (v *NullableGetCredentialReply) UnmarshalJSON(src []byte) error

func (*NullableGetCredentialReply) Unset ¶

func (v *NullableGetCredentialReply) Unset()

type NullableGetDeploymentReply ¶

type NullableGetDeploymentReply struct {
	// contains filtered or unexported fields
}

func NewNullableGetDeploymentReply ¶

func NewNullableGetDeploymentReply(val *GetDeploymentReply) *NullableGetDeploymentReply

func (NullableGetDeploymentReply) Get ¶

func (NullableGetDeploymentReply) IsSet ¶

func (v NullableGetDeploymentReply) IsSet() bool

func (NullableGetDeploymentReply) MarshalJSON ¶

func (v NullableGetDeploymentReply) MarshalJSON() ([]byte, error)

func (*NullableGetDeploymentReply) Set ¶

func (*NullableGetDeploymentReply) UnmarshalJSON ¶

func (v *NullableGetDeploymentReply) UnmarshalJSON(src []byte) error

func (*NullableGetDeploymentReply) Unset ¶

func (v *NullableGetDeploymentReply) Unset()

type NullableGetDomainReply ¶

type NullableGetDomainReply struct {
	// contains filtered or unexported fields
}

func NewNullableGetDomainReply ¶

func NewNullableGetDomainReply(val *GetDomainReply) *NullableGetDomainReply

func (NullableGetDomainReply) Get ¶

func (NullableGetDomainReply) IsSet ¶

func (v NullableGetDomainReply) IsSet() bool

func (NullableGetDomainReply) MarshalJSON ¶

func (v NullableGetDomainReply) MarshalJSON() ([]byte, error)

func (*NullableGetDomainReply) Set ¶

func (*NullableGetDomainReply) UnmarshalJSON ¶

func (v *NullableGetDomainReply) UnmarshalJSON(src []byte) error

func (*NullableGetDomainReply) Unset ¶

func (v *NullableGetDomainReply) Unset()

type NullableGetGithubInstallationReply ¶

type NullableGetGithubInstallationReply struct {
	// contains filtered or unexported fields
}

func (NullableGetGithubInstallationReply) Get ¶

func (NullableGetGithubInstallationReply) IsSet ¶

func (NullableGetGithubInstallationReply) MarshalJSON ¶

func (v NullableGetGithubInstallationReply) MarshalJSON() ([]byte, error)

func (*NullableGetGithubInstallationReply) Set ¶

func (*NullableGetGithubInstallationReply) UnmarshalJSON ¶

func (v *NullableGetGithubInstallationReply) UnmarshalJSON(src []byte) error

func (*NullableGetGithubInstallationReply) Unset ¶

type NullableGetInstanceReply ¶

type NullableGetInstanceReply struct {
	// contains filtered or unexported fields
}

func NewNullableGetInstanceReply ¶

func NewNullableGetInstanceReply(val *GetInstanceReply) *NullableGetInstanceReply

func (NullableGetInstanceReply) Get ¶

func (NullableGetInstanceReply) IsSet ¶

func (v NullableGetInstanceReply) IsSet() bool

func (NullableGetInstanceReply) MarshalJSON ¶

func (v NullableGetInstanceReply) MarshalJSON() ([]byte, error)

func (*NullableGetInstanceReply) Set ¶

func (*NullableGetInstanceReply) UnmarshalJSON ¶

func (v *NullableGetInstanceReply) UnmarshalJSON(src []byte) error

func (*NullableGetInstanceReply) Unset ¶

func (v *NullableGetInstanceReply) Unset()

type NullableGetMetricsReply ¶

type NullableGetMetricsReply struct {
	// contains filtered or unexported fields
}

func NewNullableGetMetricsReply ¶

func NewNullableGetMetricsReply(val *GetMetricsReply) *NullableGetMetricsReply

func (NullableGetMetricsReply) Get ¶

func (NullableGetMetricsReply) IsSet ¶

func (v NullableGetMetricsReply) IsSet() bool

func (NullableGetMetricsReply) MarshalJSON ¶

func (v NullableGetMetricsReply) MarshalJSON() ([]byte, error)

func (*NullableGetMetricsReply) Set ¶

func (*NullableGetMetricsReply) UnmarshalJSON ¶

func (v *NullableGetMetricsReply) UnmarshalJSON(src []byte) error

func (*NullableGetMetricsReply) Unset ¶

func (v *NullableGetMetricsReply) Unset()

type NullableGetMetricsReplyMetric ¶

type NullableGetMetricsReplyMetric struct {
	// contains filtered or unexported fields
}

func (NullableGetMetricsReplyMetric) Get ¶

func (NullableGetMetricsReplyMetric) IsSet ¶

func (NullableGetMetricsReplyMetric) MarshalJSON ¶

func (v NullableGetMetricsReplyMetric) MarshalJSON() ([]byte, error)

func (*NullableGetMetricsReplyMetric) Set ¶

func (*NullableGetMetricsReplyMetric) UnmarshalJSON ¶

func (v *NullableGetMetricsReplyMetric) UnmarshalJSON(src []byte) error

func (*NullableGetMetricsReplyMetric) Unset ¶

func (v *NullableGetMetricsReplyMetric) Unset()

type NullableGetOAuthOptionsReply ¶

type NullableGetOAuthOptionsReply struct {
	// contains filtered or unexported fields
}

func (NullableGetOAuthOptionsReply) Get ¶

func (NullableGetOAuthOptionsReply) IsSet ¶

func (NullableGetOAuthOptionsReply) MarshalJSON ¶

func (v NullableGetOAuthOptionsReply) MarshalJSON() ([]byte, error)

func (*NullableGetOAuthOptionsReply) Set ¶

func (*NullableGetOAuthOptionsReply) UnmarshalJSON ¶

func (v *NullableGetOAuthOptionsReply) UnmarshalJSON(src []byte) error

func (*NullableGetOAuthOptionsReply) Unset ¶

func (v *NullableGetOAuthOptionsReply) Unset()

type NullableGetOrganizationInvitationReply ¶

type NullableGetOrganizationInvitationReply struct {
	// contains filtered or unexported fields
}

func (NullableGetOrganizationInvitationReply) Get ¶

func (NullableGetOrganizationInvitationReply) IsSet ¶

func (NullableGetOrganizationInvitationReply) MarshalJSON ¶

func (v NullableGetOrganizationInvitationReply) MarshalJSON() ([]byte, error)

func (*NullableGetOrganizationInvitationReply) Set ¶

func (*NullableGetOrganizationInvitationReply) UnmarshalJSON ¶

func (v *NullableGetOrganizationInvitationReply) UnmarshalJSON(src []byte) error

func (*NullableGetOrganizationInvitationReply) Unset ¶

type NullableGetOrganizationReply ¶

type NullableGetOrganizationReply struct {
	// contains filtered or unexported fields
}

func (NullableGetOrganizationReply) Get ¶

func (NullableGetOrganizationReply) IsSet ¶

func (NullableGetOrganizationReply) MarshalJSON ¶

func (v NullableGetOrganizationReply) MarshalJSON() ([]byte, error)

func (*NullableGetOrganizationReply) Set ¶

func (*NullableGetOrganizationReply) UnmarshalJSON ¶

func (v *NullableGetOrganizationReply) UnmarshalJSON(src []byte) error

func (*NullableGetOrganizationReply) Unset ¶

func (v *NullableGetOrganizationReply) Unset()

type NullableGetOrganizationSummaryReply ¶

type NullableGetOrganizationSummaryReply struct {
	// contains filtered or unexported fields
}

func (NullableGetOrganizationSummaryReply) Get ¶

func (NullableGetOrganizationSummaryReply) IsSet ¶

func (NullableGetOrganizationSummaryReply) MarshalJSON ¶

func (v NullableGetOrganizationSummaryReply) MarshalJSON() ([]byte, error)

func (*NullableGetOrganizationSummaryReply) Set ¶

func (*NullableGetOrganizationSummaryReply) UnmarshalJSON ¶

func (v *NullableGetOrganizationSummaryReply) UnmarshalJSON(src []byte) error

func (*NullableGetOrganizationSummaryReply) Unset ¶

type NullableGetOrganizationUsageDetailsReply ¶

type NullableGetOrganizationUsageDetailsReply struct {
	// contains filtered or unexported fields
}

func (NullableGetOrganizationUsageDetailsReply) Get ¶

func (NullableGetOrganizationUsageDetailsReply) IsSet ¶

func (NullableGetOrganizationUsageDetailsReply) MarshalJSON ¶

func (*NullableGetOrganizationUsageDetailsReply) Set ¶

func (*NullableGetOrganizationUsageDetailsReply) UnmarshalJSON ¶

func (v *NullableGetOrganizationUsageDetailsReply) UnmarshalJSON(src []byte) error

func (*NullableGetOrganizationUsageDetailsReply) Unset ¶

type NullableGetOrganizationUsageReply ¶

type NullableGetOrganizationUsageReply struct {
	// contains filtered or unexported fields
}

func (NullableGetOrganizationUsageReply) Get ¶

func (NullableGetOrganizationUsageReply) IsSet ¶

func (NullableGetOrganizationUsageReply) MarshalJSON ¶

func (v NullableGetOrganizationUsageReply) MarshalJSON() ([]byte, error)

func (*NullableGetOrganizationUsageReply) Set ¶

func (*NullableGetOrganizationUsageReply) UnmarshalJSON ¶

func (v *NullableGetOrganizationUsageReply) UnmarshalJSON(src []byte) error

func (*NullableGetOrganizationUsageReply) Unset ¶

type NullableGetPaymentMethodReply ¶

type NullableGetPaymentMethodReply struct {
	// contains filtered or unexported fields
}

func (NullableGetPaymentMethodReply) Get ¶

func (NullableGetPaymentMethodReply) IsSet ¶

func (NullableGetPaymentMethodReply) MarshalJSON ¶

func (v NullableGetPaymentMethodReply) MarshalJSON() ([]byte, error)

func (*NullableGetPaymentMethodReply) Set ¶

func (*NullableGetPaymentMethodReply) UnmarshalJSON ¶

func (v *NullableGetPaymentMethodReply) UnmarshalJSON(src []byte) error

func (*NullableGetPaymentMethodReply) Unset ¶

func (v *NullableGetPaymentMethodReply) Unset()

type NullableGetQuotasReply ¶

type NullableGetQuotasReply struct {
	// contains filtered or unexported fields
}

func NewNullableGetQuotasReply ¶

func NewNullableGetQuotasReply(val *GetQuotasReply) *NullableGetQuotasReply

func (NullableGetQuotasReply) Get ¶

func (NullableGetQuotasReply) IsSet ¶

func (v NullableGetQuotasReply) IsSet() bool

func (NullableGetQuotasReply) MarshalJSON ¶

func (v NullableGetQuotasReply) MarshalJSON() ([]byte, error)

func (*NullableGetQuotasReply) Set ¶

func (*NullableGetQuotasReply) UnmarshalJSON ¶

func (v *NullableGetQuotasReply) UnmarshalJSON(src []byte) error

func (*NullableGetQuotasReply) Unset ¶

func (v *NullableGetQuotasReply) Unset()

type NullableGetRegionReply ¶

type NullableGetRegionReply struct {
	// contains filtered or unexported fields
}

func NewNullableGetRegionReply ¶

func NewNullableGetRegionReply(val *GetRegionReply) *NullableGetRegionReply

func (NullableGetRegionReply) Get ¶

func (NullableGetRegionReply) IsSet ¶

func (v NullableGetRegionReply) IsSet() bool

func (NullableGetRegionReply) MarshalJSON ¶

func (v NullableGetRegionReply) MarshalJSON() ([]byte, error)

func (*NullableGetRegionReply) Set ¶

func (*NullableGetRegionReply) UnmarshalJSON ¶

func (v *NullableGetRegionReply) UnmarshalJSON(src []byte) error

func (*NullableGetRegionReply) Unset ¶

func (v *NullableGetRegionReply) Unset()

type NullableGetRegionalDeploymentReply ¶

type NullableGetRegionalDeploymentReply struct {
	// contains filtered or unexported fields
}

func (NullableGetRegionalDeploymentReply) Get ¶

func (NullableGetRegionalDeploymentReply) IsSet ¶

func (NullableGetRegionalDeploymentReply) MarshalJSON ¶

func (v NullableGetRegionalDeploymentReply) MarshalJSON() ([]byte, error)

func (*NullableGetRegionalDeploymentReply) Set ¶

func (*NullableGetRegionalDeploymentReply) UnmarshalJSON ¶

func (v *NullableGetRegionalDeploymentReply) UnmarshalJSON(src []byte) error

func (*NullableGetRegionalDeploymentReply) Unset ¶

type NullableGetSecretReply ¶

type NullableGetSecretReply struct {
	// contains filtered or unexported fields
}

func NewNullableGetSecretReply ¶

func NewNullableGetSecretReply(val *GetSecretReply) *NullableGetSecretReply

func (NullableGetSecretReply) Get ¶

func (NullableGetSecretReply) IsSet ¶

func (v NullableGetSecretReply) IsSet() bool

func (NullableGetSecretReply) MarshalJSON ¶

func (v NullableGetSecretReply) MarshalJSON() ([]byte, error)

func (*NullableGetSecretReply) Set ¶

func (*NullableGetSecretReply) UnmarshalJSON ¶

func (v *NullableGetSecretReply) UnmarshalJSON(src []byte) error

func (*NullableGetSecretReply) Unset ¶

func (v *NullableGetSecretReply) Unset()

type NullableGetServiceReply ¶

type NullableGetServiceReply struct {
	// contains filtered or unexported fields
}

func NewNullableGetServiceReply ¶

func NewNullableGetServiceReply(val *GetServiceReply) *NullableGetServiceReply

func (NullableGetServiceReply) Get ¶

func (NullableGetServiceReply) IsSet ¶

func (v NullableGetServiceReply) IsSet() bool

func (NullableGetServiceReply) MarshalJSON ¶

func (v NullableGetServiceReply) MarshalJSON() ([]byte, error)

func (*NullableGetServiceReply) Set ¶

func (*NullableGetServiceReply) UnmarshalJSON ¶

func (v *NullableGetServiceReply) UnmarshalJSON(src []byte) error

func (*NullableGetServiceReply) Unset ¶

func (v *NullableGetServiceReply) Unset()

type NullableGetSubscriptionReply ¶

type NullableGetSubscriptionReply struct {
	// contains filtered or unexported fields
}

func (NullableGetSubscriptionReply) Get ¶

func (NullableGetSubscriptionReply) IsSet ¶

func (NullableGetSubscriptionReply) MarshalJSON ¶

func (v NullableGetSubscriptionReply) MarshalJSON() ([]byte, error)

func (*NullableGetSubscriptionReply) Set ¶

func (*NullableGetSubscriptionReply) UnmarshalJSON ¶

func (v *NullableGetSubscriptionReply) UnmarshalJSON(src []byte) error

func (*NullableGetSubscriptionReply) Unset ¶

func (v *NullableGetSubscriptionReply) Unset()

type NullableGetUserOrganizationInvitationReply ¶

type NullableGetUserOrganizationInvitationReply struct {
	// contains filtered or unexported fields
}

func (NullableGetUserOrganizationInvitationReply) Get ¶

func (NullableGetUserOrganizationInvitationReply) IsSet ¶

func (NullableGetUserOrganizationInvitationReply) MarshalJSON ¶

func (*NullableGetUserOrganizationInvitationReply) Set ¶

func (*NullableGetUserOrganizationInvitationReply) UnmarshalJSON ¶

func (v *NullableGetUserOrganizationInvitationReply) UnmarshalJSON(src []byte) error

func (*NullableGetUserOrganizationInvitationReply) Unset ¶

type NullableGitDeploymentMetadata ¶

type NullableGitDeploymentMetadata struct {
	// contains filtered or unexported fields
}

func (NullableGitDeploymentMetadata) Get ¶

func (NullableGitDeploymentMetadata) IsSet ¶

func (NullableGitDeploymentMetadata) MarshalJSON ¶

func (v NullableGitDeploymentMetadata) MarshalJSON() ([]byte, error)

func (*NullableGitDeploymentMetadata) Set ¶

func (*NullableGitDeploymentMetadata) UnmarshalJSON ¶

func (v *NullableGitDeploymentMetadata) UnmarshalJSON(src []byte) error

func (*NullableGitDeploymentMetadata) Unset ¶

func (v *NullableGitDeploymentMetadata) Unset()

type NullableGitHubRegistryConfiguration ¶

type NullableGitHubRegistryConfiguration struct {
	// contains filtered or unexported fields
}

func (NullableGitHubRegistryConfiguration) Get ¶

func (NullableGitHubRegistryConfiguration) IsSet ¶

func (NullableGitHubRegistryConfiguration) MarshalJSON ¶

func (v NullableGitHubRegistryConfiguration) MarshalJSON() ([]byte, error)

func (*NullableGitHubRegistryConfiguration) Set ¶

func (*NullableGitHubRegistryConfiguration) UnmarshalJSON ¶

func (v *NullableGitHubRegistryConfiguration) UnmarshalJSON(src []byte) error

func (*NullableGitHubRegistryConfiguration) Unset ¶

type NullableGitLabRegistryConfiguration ¶

type NullableGitLabRegistryConfiguration struct {
	// contains filtered or unexported fields
}

func (NullableGitLabRegistryConfiguration) Get ¶

func (NullableGitLabRegistryConfiguration) IsSet ¶

func (NullableGitLabRegistryConfiguration) MarshalJSON ¶

func (v NullableGitLabRegistryConfiguration) MarshalJSON() ([]byte, error)

func (*NullableGitLabRegistryConfiguration) Set ¶

func (*NullableGitLabRegistryConfiguration) UnmarshalJSON ¶

func (v *NullableGitLabRegistryConfiguration) UnmarshalJSON(src []byte) error

func (*NullableGitLabRegistryConfiguration) Unset ¶

type NullableGitSource ¶

type NullableGitSource struct {
	// contains filtered or unexported fields
}

func NewNullableGitSource ¶

func NewNullableGitSource(val *GitSource) *NullableGitSource

func (NullableGitSource) Get ¶

func (v NullableGitSource) Get() *GitSource

func (NullableGitSource) IsSet ¶

func (v NullableGitSource) IsSet() bool

func (NullableGitSource) MarshalJSON ¶

func (v NullableGitSource) MarshalJSON() ([]byte, error)

func (*NullableGitSource) Set ¶

func (v *NullableGitSource) Set(val *GitSource)

func (*NullableGitSource) UnmarshalJSON ¶

func (v *NullableGitSource) UnmarshalJSON(src []byte) error

func (*NullableGitSource) Unset ¶

func (v *NullableGitSource) Unset()

type NullableGithubInstallationCallbackRequest ¶

type NullableGithubInstallationCallbackRequest struct {
	// contains filtered or unexported fields
}

func (NullableGithubInstallationCallbackRequest) Get ¶

func (NullableGithubInstallationCallbackRequest) IsSet ¶

func (NullableGithubInstallationCallbackRequest) MarshalJSON ¶

func (*NullableGithubInstallationCallbackRequest) Set ¶

func (*NullableGithubInstallationCallbackRequest) UnmarshalJSON ¶

func (v *NullableGithubInstallationCallbackRequest) UnmarshalJSON(src []byte) error

func (*NullableGithubInstallationCallbackRequest) Unset ¶

type NullableGithubInstallationReply ¶

type NullableGithubInstallationReply struct {
	// contains filtered or unexported fields
}

func (NullableGithubInstallationReply) Get ¶

func (NullableGithubInstallationReply) IsSet ¶

func (NullableGithubInstallationReply) MarshalJSON ¶

func (v NullableGithubInstallationReply) MarshalJSON() ([]byte, error)

func (*NullableGithubInstallationReply) Set ¶

func (*NullableGithubInstallationReply) UnmarshalJSON ¶

func (v *NullableGithubInstallationReply) UnmarshalJSON(src []byte) error

func (*NullableGithubInstallationReply) Unset ¶

type NullableGithubInstallationRequest ¶

type NullableGithubInstallationRequest struct {
	// contains filtered or unexported fields
}

func (NullableGithubInstallationRequest) Get ¶

func (NullableGithubInstallationRequest) IsSet ¶

func (NullableGithubInstallationRequest) MarshalJSON ¶

func (v NullableGithubInstallationRequest) MarshalJSON() ([]byte, error)

func (*NullableGithubInstallationRequest) Set ¶

func (*NullableGithubInstallationRequest) UnmarshalJSON ¶

func (v *NullableGithubInstallationRequest) UnmarshalJSON(src []byte) error

func (*NullableGithubInstallationRequest) Unset ¶

type NullableGoogleProtobufAny ¶

type NullableGoogleProtobufAny struct {
	// contains filtered or unexported fields
}

func NewNullableGoogleProtobufAny ¶

func NewNullableGoogleProtobufAny(val *GoogleProtobufAny) *NullableGoogleProtobufAny

func (NullableGoogleProtobufAny) Get ¶

func (NullableGoogleProtobufAny) IsSet ¶

func (v NullableGoogleProtobufAny) IsSet() bool

func (NullableGoogleProtobufAny) MarshalJSON ¶

func (v NullableGoogleProtobufAny) MarshalJSON() ([]byte, error)

func (*NullableGoogleProtobufAny) Set ¶

func (*NullableGoogleProtobufAny) UnmarshalJSON ¶

func (v *NullableGoogleProtobufAny) UnmarshalJSON(src []byte) error

func (*NullableGoogleProtobufAny) Unset ¶

func (v *NullableGoogleProtobufAny) Unset()

type NullableGoogleProtobufNullValue ¶

type NullableGoogleProtobufNullValue struct {
	// contains filtered or unexported fields
}

func (NullableGoogleProtobufNullValue) Get ¶

func (NullableGoogleProtobufNullValue) IsSet ¶

func (NullableGoogleProtobufNullValue) MarshalJSON ¶

func (v NullableGoogleProtobufNullValue) MarshalJSON() ([]byte, error)

func (*NullableGoogleProtobufNullValue) Set ¶

func (*NullableGoogleProtobufNullValue) UnmarshalJSON ¶

func (v *NullableGoogleProtobufNullValue) UnmarshalJSON(src []byte) error

func (*NullableGoogleProtobufNullValue) Unset ¶

type NullableGoogleRpcStatus ¶

type NullableGoogleRpcStatus struct {
	// contains filtered or unexported fields
}

func NewNullableGoogleRpcStatus ¶

func NewNullableGoogleRpcStatus(val *GoogleRpcStatus) *NullableGoogleRpcStatus

func (NullableGoogleRpcStatus) Get ¶

func (NullableGoogleRpcStatus) IsSet ¶

func (v NullableGoogleRpcStatus) IsSet() bool

func (NullableGoogleRpcStatus) MarshalJSON ¶

func (v NullableGoogleRpcStatus) MarshalJSON() ([]byte, error)

func (*NullableGoogleRpcStatus) Set ¶

func (*NullableGoogleRpcStatus) UnmarshalJSON ¶

func (v *NullableGoogleRpcStatus) UnmarshalJSON(src []byte) error

func (*NullableGoogleRpcStatus) Unset ¶

func (v *NullableGoogleRpcStatus) Unset()

type NullableHTTPHeader ¶

type NullableHTTPHeader struct {
	// contains filtered or unexported fields
}

func NewNullableHTTPHeader ¶

func NewNullableHTTPHeader(val *HTTPHeader) *NullableHTTPHeader

func (NullableHTTPHeader) Get ¶

func (v NullableHTTPHeader) Get() *HTTPHeader

func (NullableHTTPHeader) IsSet ¶

func (v NullableHTTPHeader) IsSet() bool

func (NullableHTTPHeader) MarshalJSON ¶

func (v NullableHTTPHeader) MarshalJSON() ([]byte, error)

func (*NullableHTTPHeader) Set ¶

func (v *NullableHTTPHeader) Set(val *HTTPHeader)

func (*NullableHTTPHeader) UnmarshalJSON ¶

func (v *NullableHTTPHeader) UnmarshalJSON(src []byte) error

func (*NullableHTTPHeader) Unset ¶

func (v *NullableHTTPHeader) Unset()

type NullableHTTPHealthCheck ¶

type NullableHTTPHealthCheck struct {
	// contains filtered or unexported fields
}

func NewNullableHTTPHealthCheck ¶

func NewNullableHTTPHealthCheck(val *HTTPHealthCheck) *NullableHTTPHealthCheck

func (NullableHTTPHealthCheck) Get ¶

func (NullableHTTPHealthCheck) IsSet ¶

func (v NullableHTTPHealthCheck) IsSet() bool

func (NullableHTTPHealthCheck) MarshalJSON ¶

func (v NullableHTTPHealthCheck) MarshalJSON() ([]byte, error)

func (*NullableHTTPHealthCheck) Set ¶

func (*NullableHTTPHealthCheck) UnmarshalJSON ¶

func (v *NullableHTTPHealthCheck) UnmarshalJSON(src []byte) error

func (*NullableHTTPHealthCheck) Unset ¶

func (v *NullableHTTPHealthCheck) Unset()

type NullableHasUnpaidInvoicesReply ¶

type NullableHasUnpaidInvoicesReply struct {
	// contains filtered or unexported fields
}

func (NullableHasUnpaidInvoicesReply) Get ¶

func (NullableHasUnpaidInvoicesReply) IsSet ¶

func (NullableHasUnpaidInvoicesReply) MarshalJSON ¶

func (v NullableHasUnpaidInvoicesReply) MarshalJSON() ([]byte, error)

func (*NullableHasUnpaidInvoicesReply) Set ¶

func (*NullableHasUnpaidInvoicesReply) UnmarshalJSON ¶

func (v *NullableHasUnpaidInvoicesReply) UnmarshalJSON(src []byte) error

func (*NullableHasUnpaidInvoicesReply) Unset ¶

func (v *NullableHasUnpaidInvoicesReply) Unset()

type NullableInstance ¶

type NullableInstance struct {
	// contains filtered or unexported fields
}

func NewNullableInstance ¶

func NewNullableInstance(val *Instance) *NullableInstance

func (NullableInstance) Get ¶

func (v NullableInstance) Get() *Instance

func (NullableInstance) IsSet ¶

func (v NullableInstance) IsSet() bool

func (NullableInstance) MarshalJSON ¶

func (v NullableInstance) MarshalJSON() ([]byte, error)

func (*NullableInstance) Set ¶

func (v *NullableInstance) Set(val *Instance)

func (*NullableInstance) UnmarshalJSON ¶

func (v *NullableInstance) UnmarshalJSON(src []byte) error

func (*NullableInstance) Unset ¶

func (v *NullableInstance) Unset()

type NullableInstanceEvent ¶

type NullableInstanceEvent struct {
	// contains filtered or unexported fields
}

func NewNullableInstanceEvent ¶

func NewNullableInstanceEvent(val *InstanceEvent) *NullableInstanceEvent

func (NullableInstanceEvent) Get ¶

func (NullableInstanceEvent) IsSet ¶

func (v NullableInstanceEvent) IsSet() bool

func (NullableInstanceEvent) MarshalJSON ¶

func (v NullableInstanceEvent) MarshalJSON() ([]byte, error)

func (*NullableInstanceEvent) Set ¶

func (v *NullableInstanceEvent) Set(val *InstanceEvent)

func (*NullableInstanceEvent) UnmarshalJSON ¶

func (v *NullableInstanceEvent) UnmarshalJSON(src []byte) error

func (*NullableInstanceEvent) Unset ¶

func (v *NullableInstanceEvent) Unset()

type NullableInstanceListItem ¶

type NullableInstanceListItem struct {
	// contains filtered or unexported fields
}

func NewNullableInstanceListItem ¶

func NewNullableInstanceListItem(val *InstanceListItem) *NullableInstanceListItem

func (NullableInstanceListItem) Get ¶

func (NullableInstanceListItem) IsSet ¶

func (v NullableInstanceListItem) IsSet() bool

func (NullableInstanceListItem) MarshalJSON ¶

func (v NullableInstanceListItem) MarshalJSON() ([]byte, error)

func (*NullableInstanceListItem) Set ¶

func (*NullableInstanceListItem) UnmarshalJSON ¶

func (v *NullableInstanceListItem) UnmarshalJSON(src []byte) error

func (*NullableInstanceListItem) Unset ¶

func (v *NullableInstanceListItem) Unset()

type NullableInstanceStatus ¶

type NullableInstanceStatus struct {
	// contains filtered or unexported fields
}

func NewNullableInstanceStatus ¶

func NewNullableInstanceStatus(val *InstanceStatus) *NullableInstanceStatus

func (NullableInstanceStatus) Get ¶

func (NullableInstanceStatus) IsSet ¶

func (v NullableInstanceStatus) IsSet() bool

func (NullableInstanceStatus) MarshalJSON ¶

func (v NullableInstanceStatus) MarshalJSON() ([]byte, error)

func (*NullableInstanceStatus) Set ¶

func (*NullableInstanceStatus) UnmarshalJSON ¶

func (v *NullableInstanceStatus) UnmarshalJSON(src []byte) error

func (*NullableInstanceStatus) Unset ¶

func (v *NullableInstanceStatus) Unset()

type NullableInstanceUsage ¶

type NullableInstanceUsage struct {
	// contains filtered or unexported fields
}

func NewNullableInstanceUsage ¶

func NewNullableInstanceUsage(val *InstanceUsage) *NullableInstanceUsage

func (NullableInstanceUsage) Get ¶

func (NullableInstanceUsage) IsSet ¶

func (v NullableInstanceUsage) IsSet() bool

func (NullableInstanceUsage) MarshalJSON ¶

func (v NullableInstanceUsage) MarshalJSON() ([]byte, error)

func (*NullableInstanceUsage) Set ¶

func (v *NullableInstanceUsage) Set(val *InstanceUsage)

func (*NullableInstanceUsage) UnmarshalJSON ¶

func (v *NullableInstanceUsage) UnmarshalJSON(src []byte) error

func (*NullableInstanceUsage) Unset ¶

func (v *NullableInstanceUsage) Unset()

type NullableInstancesSummary ¶

type NullableInstancesSummary struct {
	// contains filtered or unexported fields
}

func NewNullableInstancesSummary ¶

func NewNullableInstancesSummary(val *InstancesSummary) *NullableInstancesSummary

func (NullableInstancesSummary) Get ¶

func (NullableInstancesSummary) IsSet ¶

func (v NullableInstancesSummary) IsSet() bool

func (NullableInstancesSummary) MarshalJSON ¶

func (v NullableInstancesSummary) MarshalJSON() ([]byte, error)

func (*NullableInstancesSummary) Set ¶

func (*NullableInstancesSummary) UnmarshalJSON ¶

func (v *NullableInstancesSummary) UnmarshalJSON(src []byte) error

func (*NullableInstancesSummary) Unset ¶

func (v *NullableInstancesSummary) 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 NullableInviteUserRequest ¶

type NullableInviteUserRequest struct {
	// contains filtered or unexported fields
}

func NewNullableInviteUserRequest ¶

func NewNullableInviteUserRequest(val *InviteUserRequest) *NullableInviteUserRequest

func (NullableInviteUserRequest) Get ¶

func (NullableInviteUserRequest) IsSet ¶

func (v NullableInviteUserRequest) IsSet() bool

func (NullableInviteUserRequest) MarshalJSON ¶

func (v NullableInviteUserRequest) MarshalJSON() ([]byte, error)

func (*NullableInviteUserRequest) Set ¶

func (*NullableInviteUserRequest) UnmarshalJSON ¶

func (v *NullableInviteUserRequest) UnmarshalJSON(src []byte) error

func (*NullableInviteUserRequest) Unset ¶

func (v *NullableInviteUserRequest) Unset()

type NullableKgitproxyBranch ¶

type NullableKgitproxyBranch struct {
	// contains filtered or unexported fields
}

func NewNullableKgitproxyBranch ¶

func NewNullableKgitproxyBranch(val *KgitproxyBranch) *NullableKgitproxyBranch

func (NullableKgitproxyBranch) Get ¶

func (NullableKgitproxyBranch) IsSet ¶

func (v NullableKgitproxyBranch) IsSet() bool

func (NullableKgitproxyBranch) MarshalJSON ¶

func (v NullableKgitproxyBranch) MarshalJSON() ([]byte, error)

func (*NullableKgitproxyBranch) Set ¶

func (*NullableKgitproxyBranch) UnmarshalJSON ¶

func (v *NullableKgitproxyBranch) UnmarshalJSON(src []byte) error

func (*NullableKgitproxyBranch) Unset ¶

func (v *NullableKgitproxyBranch) Unset()

type NullableKgitproxyGitHubRepository ¶

type NullableKgitproxyGitHubRepository struct {
	// contains filtered or unexported fields
}

func (NullableKgitproxyGitHubRepository) Get ¶

func (NullableKgitproxyGitHubRepository) IsSet ¶

func (NullableKgitproxyGitHubRepository) MarshalJSON ¶

func (v NullableKgitproxyGitHubRepository) MarshalJSON() ([]byte, error)

func (*NullableKgitproxyGitHubRepository) Set ¶

func (*NullableKgitproxyGitHubRepository) UnmarshalJSON ¶

func (v *NullableKgitproxyGitHubRepository) UnmarshalJSON(src []byte) error

func (*NullableKgitproxyGitHubRepository) Unset ¶

type NullableKgitproxyGithubInstallationStatus ¶

type NullableKgitproxyGithubInstallationStatus struct {
	// contains filtered or unexported fields
}

func (NullableKgitproxyGithubInstallationStatus) Get ¶

func (NullableKgitproxyGithubInstallationStatus) IsSet ¶

func (NullableKgitproxyGithubInstallationStatus) MarshalJSON ¶

func (*NullableKgitproxyGithubInstallationStatus) Set ¶

func (*NullableKgitproxyGithubInstallationStatus) UnmarshalJSON ¶

func (v *NullableKgitproxyGithubInstallationStatus) UnmarshalJSON(src []byte) error

func (*NullableKgitproxyGithubInstallationStatus) Unset ¶

type NullableKgitproxyIndexingStatus ¶

type NullableKgitproxyIndexingStatus struct {
	// contains filtered or unexported fields
}

func (NullableKgitproxyIndexingStatus) Get ¶

func (NullableKgitproxyIndexingStatus) IsSet ¶

func (NullableKgitproxyIndexingStatus) MarshalJSON ¶

func (v NullableKgitproxyIndexingStatus) MarshalJSON() ([]byte, error)

func (*NullableKgitproxyIndexingStatus) Set ¶

func (*NullableKgitproxyIndexingStatus) UnmarshalJSON ¶

func (v *NullableKgitproxyIndexingStatus) UnmarshalJSON(src []byte) error

func (*NullableKgitproxyIndexingStatus) Unset ¶

type NullableKgitproxyListBranchesReply ¶

type NullableKgitproxyListBranchesReply struct {
	// contains filtered or unexported fields
}

func (NullableKgitproxyListBranchesReply) Get ¶

func (NullableKgitproxyListBranchesReply) IsSet ¶

func (NullableKgitproxyListBranchesReply) MarshalJSON ¶

func (v NullableKgitproxyListBranchesReply) MarshalJSON() ([]byte, error)

func (*NullableKgitproxyListBranchesReply) Set ¶

func (*NullableKgitproxyListBranchesReply) UnmarshalJSON ¶

func (v *NullableKgitproxyListBranchesReply) UnmarshalJSON(src []byte) error

func (*NullableKgitproxyListBranchesReply) Unset ¶

type NullableKgitproxyListRepositoriesReply ¶

type NullableKgitproxyListRepositoriesReply struct {
	// contains filtered or unexported fields
}

func (NullableKgitproxyListRepositoriesReply) Get ¶

func (NullableKgitproxyListRepositoriesReply) IsSet ¶

func (NullableKgitproxyListRepositoriesReply) MarshalJSON ¶

func (v NullableKgitproxyListRepositoriesReply) MarshalJSON() ([]byte, error)

func (*NullableKgitproxyListRepositoriesReply) Set ¶

func (*NullableKgitproxyListRepositoriesReply) UnmarshalJSON ¶

func (v *NullableKgitproxyListRepositoriesReply) UnmarshalJSON(src []byte) error

func (*NullableKgitproxyListRepositoriesReply) Unset ¶

type NullableKgitproxyRepository ¶

type NullableKgitproxyRepository struct {
	// contains filtered or unexported fields
}

func (NullableKgitproxyRepository) Get ¶

func (NullableKgitproxyRepository) IsSet ¶

func (NullableKgitproxyRepository) MarshalJSON ¶

func (v NullableKgitproxyRepository) MarshalJSON() ([]byte, error)

func (*NullableKgitproxyRepository) Set ¶

func (*NullableKgitproxyRepository) UnmarshalJSON ¶

func (v *NullableKgitproxyRepository) UnmarshalJSON(src []byte) error

func (*NullableKgitproxyRepository) Unset ¶

func (v *NullableKgitproxyRepository) Unset()

type NullableKgitproxyRepositoryProvider ¶

type NullableKgitproxyRepositoryProvider struct {
	// contains filtered or unexported fields
}

func (NullableKgitproxyRepositoryProvider) Get ¶

func (NullableKgitproxyRepositoryProvider) IsSet ¶

func (NullableKgitproxyRepositoryProvider) MarshalJSON ¶

func (v NullableKgitproxyRepositoryProvider) MarshalJSON() ([]byte, error)

func (*NullableKgitproxyRepositoryProvider) Set ¶

func (*NullableKgitproxyRepositoryProvider) UnmarshalJSON ¶

func (v *NullableKgitproxyRepositoryProvider) UnmarshalJSON(src []byte) error

func (*NullableKgitproxyRepositoryProvider) Unset ¶

type NullableKsearchApp ¶

type NullableKsearchApp struct {
	// contains filtered or unexported fields
}

func NewNullableKsearchApp ¶

func NewNullableKsearchApp(val *KsearchApp) *NullableKsearchApp

func (NullableKsearchApp) Get ¶

func (v NullableKsearchApp) Get() *KsearchApp

func (NullableKsearchApp) IsSet ¶

func (v NullableKsearchApp) IsSet() bool

func (NullableKsearchApp) MarshalJSON ¶

func (v NullableKsearchApp) MarshalJSON() ([]byte, error)

func (*NullableKsearchApp) Set ¶

func (v *NullableKsearchApp) Set(val *KsearchApp)

func (*NullableKsearchApp) UnmarshalJSON ¶

func (v *NullableKsearchApp) UnmarshalJSON(src []byte) error

func (*NullableKsearchApp) Unset ¶

func (v *NullableKsearchApp) Unset()

type NullableKsearchGlobalDeployment ¶

type NullableKsearchGlobalDeployment struct {
	// contains filtered or unexported fields
}

func (NullableKsearchGlobalDeployment) Get ¶

func (NullableKsearchGlobalDeployment) IsSet ¶

func (NullableKsearchGlobalDeployment) MarshalJSON ¶

func (v NullableKsearchGlobalDeployment) MarshalJSON() ([]byte, error)

func (*NullableKsearchGlobalDeployment) Set ¶

func (*NullableKsearchGlobalDeployment) UnmarshalJSON ¶

func (v *NullableKsearchGlobalDeployment) UnmarshalJSON(src []byte) error

func (*NullableKsearchGlobalDeployment) Unset ¶

type NullableKsearchInstance ¶

type NullableKsearchInstance struct {
	// contains filtered or unexported fields
}

func NewNullableKsearchInstance ¶

func NewNullableKsearchInstance(val *KsearchInstance) *NullableKsearchInstance

func (NullableKsearchInstance) Get ¶

func (NullableKsearchInstance) IsSet ¶

func (v NullableKsearchInstance) IsSet() bool

func (NullableKsearchInstance) MarshalJSON ¶

func (v NullableKsearchInstance) MarshalJSON() ([]byte, error)

func (*NullableKsearchInstance) Set ¶

func (*NullableKsearchInstance) UnmarshalJSON ¶

func (v *NullableKsearchInstance) UnmarshalJSON(src []byte) error

func (*NullableKsearchInstance) Unset ¶

func (v *NullableKsearchInstance) Unset()

type NullableKsearchOrganization ¶

type NullableKsearchOrganization struct {
	// contains filtered or unexported fields
}

func (NullableKsearchOrganization) Get ¶

func (NullableKsearchOrganization) IsSet ¶

func (NullableKsearchOrganization) MarshalJSON ¶

func (v NullableKsearchOrganization) MarshalJSON() ([]byte, error)

func (*NullableKsearchOrganization) Set ¶

func (*NullableKsearchOrganization) UnmarshalJSON ¶

func (v *NullableKsearchOrganization) UnmarshalJSON(src []byte) error

func (*NullableKsearchOrganization) Unset ¶

func (v *NullableKsearchOrganization) Unset()

type NullableKsearchRegionalDeployment ¶

type NullableKsearchRegionalDeployment struct {
	// contains filtered or unexported fields
}

func (NullableKsearchRegionalDeployment) Get ¶

func (NullableKsearchRegionalDeployment) IsSet ¶

func (NullableKsearchRegionalDeployment) MarshalJSON ¶

func (v NullableKsearchRegionalDeployment) MarshalJSON() ([]byte, error)

func (*NullableKsearchRegionalDeployment) Set ¶

func (*NullableKsearchRegionalDeployment) UnmarshalJSON ¶

func (v *NullableKsearchRegionalDeployment) UnmarshalJSON(src []byte) error

func (*NullableKsearchRegionalDeployment) Unset ¶

type NullableKsearchSearchReply ¶

type NullableKsearchSearchReply struct {
	// contains filtered or unexported fields
}

func NewNullableKsearchSearchReply ¶

func NewNullableKsearchSearchReply(val *KsearchSearchReply) *NullableKsearchSearchReply

func (NullableKsearchSearchReply) Get ¶

func (NullableKsearchSearchReply) IsSet ¶

func (v NullableKsearchSearchReply) IsSet() bool

func (NullableKsearchSearchReply) MarshalJSON ¶

func (v NullableKsearchSearchReply) MarshalJSON() ([]byte, error)

func (*NullableKsearchSearchReply) Set ¶

func (*NullableKsearchSearchReply) UnmarshalJSON ¶

func (v *NullableKsearchSearchReply) UnmarshalJSON(src []byte) error

func (*NullableKsearchSearchReply) Unset ¶

func (v *NullableKsearchSearchReply) Unset()

type NullableKsearchService ¶

type NullableKsearchService struct {
	// contains filtered or unexported fields
}

func NewNullableKsearchService ¶

func NewNullableKsearchService(val *KsearchService) *NullableKsearchService

func (NullableKsearchService) Get ¶

func (NullableKsearchService) IsSet ¶

func (v NullableKsearchService) IsSet() bool

func (NullableKsearchService) MarshalJSON ¶

func (v NullableKsearchService) MarshalJSON() ([]byte, error)

func (*NullableKsearchService) Set ¶

func (*NullableKsearchService) UnmarshalJSON ¶

func (v *NullableKsearchService) UnmarshalJSON(src []byte) error

func (*NullableKsearchService) Unset ¶

func (v *NullableKsearchService) Unset()

type NullableKsearchUser ¶

type NullableKsearchUser struct {
	// contains filtered or unexported fields
}

func NewNullableKsearchUser ¶

func NewNullableKsearchUser(val *KsearchUser) *NullableKsearchUser

func (NullableKsearchUser) Get ¶

func (NullableKsearchUser) IsSet ¶

func (v NullableKsearchUser) IsSet() bool

func (NullableKsearchUser) MarshalJSON ¶

func (v NullableKsearchUser) MarshalJSON() ([]byte, error)

func (*NullableKsearchUser) Set ¶

func (v *NullableKsearchUser) Set(val *KsearchUser)

func (*NullableKsearchUser) UnmarshalJSON ¶

func (v *NullableKsearchUser) UnmarshalJSON(src []byte) error

func (*NullableKsearchUser) Unset ¶

func (v *NullableKsearchUser) Unset()

type NullableListAppEventsReply ¶

type NullableListAppEventsReply struct {
	// contains filtered or unexported fields
}

func NewNullableListAppEventsReply ¶

func NewNullableListAppEventsReply(val *ListAppEventsReply) *NullableListAppEventsReply

func (NullableListAppEventsReply) Get ¶

func (NullableListAppEventsReply) IsSet ¶

func (v NullableListAppEventsReply) IsSet() bool

func (NullableListAppEventsReply) MarshalJSON ¶

func (v NullableListAppEventsReply) MarshalJSON() ([]byte, error)

func (*NullableListAppEventsReply) Set ¶

func (*NullableListAppEventsReply) UnmarshalJSON ¶

func (v *NullableListAppEventsReply) UnmarshalJSON(src []byte) error

func (*NullableListAppEventsReply) Unset ¶

func (v *NullableListAppEventsReply) Unset()

type NullableListAppsReply ¶

type NullableListAppsReply struct {
	// contains filtered or unexported fields
}

func NewNullableListAppsReply ¶

func NewNullableListAppsReply(val *ListAppsReply) *NullableListAppsReply

func (NullableListAppsReply) Get ¶

func (NullableListAppsReply) IsSet ¶

func (v NullableListAppsReply) IsSet() bool

func (NullableListAppsReply) MarshalJSON ¶

func (v NullableListAppsReply) MarshalJSON() ([]byte, error)

func (*NullableListAppsReply) Set ¶

func (v *NullableListAppsReply) Set(val *ListAppsReply)

func (*NullableListAppsReply) UnmarshalJSON ¶

func (v *NullableListAppsReply) UnmarshalJSON(src []byte) error

func (*NullableListAppsReply) Unset ¶

func (v *NullableListAppsReply) Unset()

type NullableListCatalogInstancesReply ¶

type NullableListCatalogInstancesReply struct {
	// contains filtered or unexported fields
}

func (NullableListCatalogInstancesReply) Get ¶

func (NullableListCatalogInstancesReply) IsSet ¶

func (NullableListCatalogInstancesReply) MarshalJSON ¶

func (v NullableListCatalogInstancesReply) MarshalJSON() ([]byte, error)

func (*NullableListCatalogInstancesReply) Set ¶

func (*NullableListCatalogInstancesReply) UnmarshalJSON ¶

func (v *NullableListCatalogInstancesReply) UnmarshalJSON(src []byte) error

func (*NullableListCatalogInstancesReply) Unset ¶

type NullableListCredentialsReply ¶

type NullableListCredentialsReply struct {
	// contains filtered or unexported fields
}

func (NullableListCredentialsReply) Get ¶

func (NullableListCredentialsReply) IsSet ¶

func (NullableListCredentialsReply) MarshalJSON ¶

func (v NullableListCredentialsReply) MarshalJSON() ([]byte, error)

func (*NullableListCredentialsReply) Set ¶

func (*NullableListCredentialsReply) UnmarshalJSON ¶

func (v *NullableListCredentialsReply) UnmarshalJSON(src []byte) error

func (*NullableListCredentialsReply) Unset ¶

func (v *NullableListCredentialsReply) Unset()

type NullableListDatacentersReply ¶

type NullableListDatacentersReply struct {
	// contains filtered or unexported fields
}

func (NullableListDatacentersReply) Get ¶

func (NullableListDatacentersReply) IsSet ¶

func (NullableListDatacentersReply) MarshalJSON ¶

func (v NullableListDatacentersReply) MarshalJSON() ([]byte, error)

func (*NullableListDatacentersReply) Set ¶

func (*NullableListDatacentersReply) UnmarshalJSON ¶

func (v *NullableListDatacentersReply) UnmarshalJSON(src []byte) error

func (*NullableListDatacentersReply) Unset ¶

func (v *NullableListDatacentersReply) Unset()

type NullableListDeploymentEventsReply ¶

type NullableListDeploymentEventsReply struct {
	// contains filtered or unexported fields
}

func (NullableListDeploymentEventsReply) Get ¶

func (NullableListDeploymentEventsReply) IsSet ¶

func (NullableListDeploymentEventsReply) MarshalJSON ¶

func (v NullableListDeploymentEventsReply) MarshalJSON() ([]byte, error)

func (*NullableListDeploymentEventsReply) Set ¶

func (*NullableListDeploymentEventsReply) UnmarshalJSON ¶

func (v *NullableListDeploymentEventsReply) UnmarshalJSON(src []byte) error

func (*NullableListDeploymentEventsReply) Unset ¶

type NullableListDeploymentsReply ¶

type NullableListDeploymentsReply struct {
	// contains filtered or unexported fields
}

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 NullableListDomainsReply ¶

type NullableListDomainsReply struct {
	// contains filtered or unexported fields
}

func NewNullableListDomainsReply ¶

func NewNullableListDomainsReply(val *ListDomainsReply) *NullableListDomainsReply

func (NullableListDomainsReply) Get ¶

func (NullableListDomainsReply) IsSet ¶

func (v NullableListDomainsReply) IsSet() bool

func (NullableListDomainsReply) MarshalJSON ¶

func (v NullableListDomainsReply) MarshalJSON() ([]byte, error)

func (*NullableListDomainsReply) Set ¶

func (*NullableListDomainsReply) UnmarshalJSON ¶

func (v *NullableListDomainsReply) UnmarshalJSON(src []byte) error

func (*NullableListDomainsReply) Unset ¶

func (v *NullableListDomainsReply) Unset()

type NullableListInstanceEventsReply ¶

type NullableListInstanceEventsReply struct {
	// contains filtered or unexported fields
}

func (NullableListInstanceEventsReply) Get ¶

func (NullableListInstanceEventsReply) IsSet ¶

func (NullableListInstanceEventsReply) MarshalJSON ¶

func (v NullableListInstanceEventsReply) MarshalJSON() ([]byte, error)

func (*NullableListInstanceEventsReply) Set ¶

func (*NullableListInstanceEventsReply) UnmarshalJSON ¶

func (v *NullableListInstanceEventsReply) UnmarshalJSON(src []byte) error

func (*NullableListInstanceEventsReply) Unset ¶

type NullableListInstancesReply ¶

type NullableListInstancesReply struct {
	// contains filtered or unexported fields
}

func NewNullableListInstancesReply ¶

func NewNullableListInstancesReply(val *ListInstancesReply) *NullableListInstancesReply

func (NullableListInstancesReply) Get ¶

func (NullableListInstancesReply) IsSet ¶

func (v NullableListInstancesReply) IsSet() bool

func (NullableListInstancesReply) MarshalJSON ¶

func (v NullableListInstancesReply) MarshalJSON() ([]byte, error)

func (*NullableListInstancesReply) Set ¶

func (*NullableListInstancesReply) UnmarshalJSON ¶

func (v *NullableListInstancesReply) UnmarshalJSON(src []byte) error

func (*NullableListInstancesReply) Unset ¶

func (v *NullableListInstancesReply) Unset()

type NullableListOrganizationInvitationsReply ¶

type NullableListOrganizationInvitationsReply struct {
	// contains filtered or unexported fields
}

func (NullableListOrganizationInvitationsReply) Get ¶

func (NullableListOrganizationInvitationsReply) IsSet ¶

func (NullableListOrganizationInvitationsReply) MarshalJSON ¶

func (*NullableListOrganizationInvitationsReply) Set ¶

func (*NullableListOrganizationInvitationsReply) UnmarshalJSON ¶

func (v *NullableListOrganizationInvitationsReply) UnmarshalJSON(src []byte) error

func (*NullableListOrganizationInvitationsReply) Unset ¶

type NullableListOrganizationMembersReply ¶

type NullableListOrganizationMembersReply struct {
	// contains filtered or unexported fields
}

func (NullableListOrganizationMembersReply) Get ¶

func (NullableListOrganizationMembersReply) IsSet ¶

func (NullableListOrganizationMembersReply) MarshalJSON ¶

func (v NullableListOrganizationMembersReply) MarshalJSON() ([]byte, error)

func (*NullableListOrganizationMembersReply) Set ¶

func (*NullableListOrganizationMembersReply) UnmarshalJSON ¶

func (v *NullableListOrganizationMembersReply) UnmarshalJSON(src []byte) error

func (*NullableListOrganizationMembersReply) Unset ¶

type NullableListPaymentMethodsReply ¶

type NullableListPaymentMethodsReply struct {
	// contains filtered or unexported fields
}

func (NullableListPaymentMethodsReply) Get ¶

func (NullableListPaymentMethodsReply) IsSet ¶

func (NullableListPaymentMethodsReply) MarshalJSON ¶

func (v NullableListPaymentMethodsReply) MarshalJSON() ([]byte, error)

func (*NullableListPaymentMethodsReply) Set ¶

func (*NullableListPaymentMethodsReply) UnmarshalJSON ¶

func (v *NullableListPaymentMethodsReply) UnmarshalJSON(src []byte) error

func (*NullableListPaymentMethodsReply) Unset ¶

type NullableListRegionalDeploymentEventsReply ¶

type NullableListRegionalDeploymentEventsReply struct {
	// contains filtered or unexported fields
}

func (NullableListRegionalDeploymentEventsReply) Get ¶

func (NullableListRegionalDeploymentEventsReply) IsSet ¶

func (NullableListRegionalDeploymentEventsReply) MarshalJSON ¶

func (*NullableListRegionalDeploymentEventsReply) Set ¶

func (*NullableListRegionalDeploymentEventsReply) UnmarshalJSON ¶

func (v *NullableListRegionalDeploymentEventsReply) UnmarshalJSON(src []byte) error

func (*NullableListRegionalDeploymentEventsReply) Unset ¶

type NullableListRegionalDeploymentsReply ¶

type NullableListRegionalDeploymentsReply struct {
	// contains filtered or unexported fields
}

func (NullableListRegionalDeploymentsReply) Get ¶

func (NullableListRegionalDeploymentsReply) IsSet ¶

func (NullableListRegionalDeploymentsReply) MarshalJSON ¶

func (v NullableListRegionalDeploymentsReply) MarshalJSON() ([]byte, error)

func (*NullableListRegionalDeploymentsReply) Set ¶

func (*NullableListRegionalDeploymentsReply) UnmarshalJSON ¶

func (v *NullableListRegionalDeploymentsReply) UnmarshalJSON(src []byte) error

func (*NullableListRegionalDeploymentsReply) Unset ¶

type NullableListRegionsReply ¶

type NullableListRegionsReply struct {
	// contains filtered or unexported fields
}

func NewNullableListRegionsReply ¶

func NewNullableListRegionsReply(val *ListRegionsReply) *NullableListRegionsReply

func (NullableListRegionsReply) Get ¶

func (NullableListRegionsReply) IsSet ¶

func (v NullableListRegionsReply) IsSet() bool

func (NullableListRegionsReply) MarshalJSON ¶

func (v NullableListRegionsReply) MarshalJSON() ([]byte, error)

func (*NullableListRegionsReply) Set ¶

func (*NullableListRegionsReply) UnmarshalJSON ¶

func (v *NullableListRegionsReply) UnmarshalJSON(src []byte) error

func (*NullableListRegionsReply) Unset ¶

func (v *NullableListRegionsReply) Unset()

type NullableListSecretsReply ¶

type NullableListSecretsReply struct {
	// contains filtered or unexported fields
}

func NewNullableListSecretsReply ¶

func NewNullableListSecretsReply(val *ListSecretsReply) *NullableListSecretsReply

func (NullableListSecretsReply) Get ¶

func (NullableListSecretsReply) IsSet ¶

func (v NullableListSecretsReply) IsSet() bool

func (NullableListSecretsReply) MarshalJSON ¶

func (v NullableListSecretsReply) MarshalJSON() ([]byte, error)

func (*NullableListSecretsReply) Set ¶

func (*NullableListSecretsReply) UnmarshalJSON ¶

func (v *NullableListSecretsReply) UnmarshalJSON(src []byte) error

func (*NullableListSecretsReply) Unset ¶

func (v *NullableListSecretsReply) Unset()

type NullableListServiceEventsReply ¶

type NullableListServiceEventsReply struct {
	// contains filtered or unexported fields
}

func (NullableListServiceEventsReply) Get ¶

func (NullableListServiceEventsReply) IsSet ¶

func (NullableListServiceEventsReply) MarshalJSON ¶

func (v NullableListServiceEventsReply) MarshalJSON() ([]byte, error)

func (*NullableListServiceEventsReply) Set ¶

func (*NullableListServiceEventsReply) UnmarshalJSON ¶

func (v *NullableListServiceEventsReply) UnmarshalJSON(src []byte) error

func (*NullableListServiceEventsReply) Unset ¶

func (v *NullableListServiceEventsReply) 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 NullableListUserOrganizationInvitationsReply ¶

type NullableListUserOrganizationInvitationsReply struct {
	// contains filtered or unexported fields
}

func (NullableListUserOrganizationInvitationsReply) Get ¶

func (NullableListUserOrganizationInvitationsReply) IsSet ¶

func (NullableListUserOrganizationInvitationsReply) MarshalJSON ¶

func (*NullableListUserOrganizationInvitationsReply) Set ¶

func (*NullableListUserOrganizationInvitationsReply) UnmarshalJSON ¶

func (*NullableListUserOrganizationInvitationsReply) Unset ¶

type NullableLogEntry ¶

type NullableLogEntry struct {
	// contains filtered or unexported fields
}

func NewNullableLogEntry ¶

func NewNullableLogEntry(val *LogEntry) *NullableLogEntry

func (NullableLogEntry) Get ¶

func (v NullableLogEntry) Get() *LogEntry

func (NullableLogEntry) IsSet ¶

func (v NullableLogEntry) IsSet() bool

func (NullableLogEntry) MarshalJSON ¶

func (v NullableLogEntry) MarshalJSON() ([]byte, error)

func (*NullableLogEntry) Set ¶

func (v *NullableLogEntry) Set(val *LogEntry)

func (*NullableLogEntry) UnmarshalJSON ¶

func (v *NullableLogEntry) UnmarshalJSON(src []byte) error

func (*NullableLogEntry) Unset ¶

func (v *NullableLogEntry) Unset()

type NullableLoginReply ¶

type NullableLoginReply struct {
	// contains filtered or unexported fields
}

func NewNullableLoginReply ¶

func NewNullableLoginReply(val *LoginReply) *NullableLoginReply

func (NullableLoginReply) Get ¶

func (v NullableLoginReply) Get() *LoginReply

func (NullableLoginReply) IsSet ¶

func (v NullableLoginReply) IsSet() bool

func (NullableLoginReply) MarshalJSON ¶

func (v NullableLoginReply) MarshalJSON() ([]byte, error)

func (*NullableLoginReply) Set ¶

func (v *NullableLoginReply) Set(val *LoginReply)

func (*NullableLoginReply) UnmarshalJSON ¶

func (v *NullableLoginReply) UnmarshalJSON(src []byte) error

func (*NullableLoginReply) Unset ¶

func (v *NullableLoginReply) Unset()

type NullableLoginRequest ¶

type NullableLoginRequest struct {
	// contains filtered or unexported fields
}

func NewNullableLoginRequest ¶

func NewNullableLoginRequest(val *LoginRequest) *NullableLoginRequest

func (NullableLoginRequest) Get ¶

func (NullableLoginRequest) IsSet ¶

func (v NullableLoginRequest) IsSet() bool

func (NullableLoginRequest) MarshalJSON ¶

func (v NullableLoginRequest) MarshalJSON() ([]byte, error)

func (*NullableLoginRequest) Set ¶

func (v *NullableLoginRequest) Set(val *LoginRequest)

func (*NullableLoginRequest) UnmarshalJSON ¶

func (v *NullableLoginRequest) UnmarshalJSON(src []byte) error

func (*NullableLoginRequest) Unset ¶

func (v *NullableLoginRequest) Unset()

type NullableManageReply ¶

type NullableManageReply struct {
	// contains filtered or unexported fields
}

func NewNullableManageReply ¶

func NewNullableManageReply(val *ManageReply) *NullableManageReply

func (NullableManageReply) Get ¶

func (NullableManageReply) IsSet ¶

func (v NullableManageReply) IsSet() bool

func (NullableManageReply) MarshalJSON ¶

func (v NullableManageReply) MarshalJSON() ([]byte, error)

func (*NullableManageReply) Set ¶

func (v *NullableManageReply) Set(val *ManageReply)

func (*NullableManageReply) UnmarshalJSON ¶

func (v *NullableManageReply) UnmarshalJSON(src []byte) error

func (*NullableManageReply) Unset ¶

func (v *NullableManageReply) Unset()

type NullableMembersSummary ¶

type NullableMembersSummary struct {
	// contains filtered or unexported fields
}

func NewNullableMembersSummary ¶

func NewNullableMembersSummary(val *MembersSummary) *NullableMembersSummary

func (NullableMembersSummary) Get ¶

func (NullableMembersSummary) IsSet ¶

func (v NullableMembersSummary) IsSet() bool

func (NullableMembersSummary) MarshalJSON ¶

func (v NullableMembersSummary) MarshalJSON() ([]byte, error)

func (*NullableMembersSummary) Set ¶

func (*NullableMembersSummary) UnmarshalJSON ¶

func (v *NullableMembersSummary) UnmarshalJSON(src []byte) error

func (*NullableMembersSummary) Unset ¶

func (v *NullableMembersSummary) Unset()

type NullableMetricName ¶

type NullableMetricName struct {
	// contains filtered or unexported fields
}

func NewNullableMetricName ¶

func NewNullableMetricName(val *MetricName) *NullableMetricName

func (NullableMetricName) Get ¶

func (v NullableMetricName) Get() *MetricName

func (NullableMetricName) IsSet ¶

func (v NullableMetricName) IsSet() bool

func (NullableMetricName) MarshalJSON ¶

func (v NullableMetricName) MarshalJSON() ([]byte, error)

func (*NullableMetricName) Set ¶

func (v *NullableMetricName) Set(val *MetricName)

func (*NullableMetricName) UnmarshalJSON ¶

func (v *NullableMetricName) UnmarshalJSON(src []byte) error

func (*NullableMetricName) Unset ¶

func (v *NullableMetricName) Unset()

type NullableNeonPostgresDatabase ¶

type NullableNeonPostgresDatabase struct {
	// contains filtered or unexported fields
}

func (NullableNeonPostgresDatabase) Get ¶

func (NullableNeonPostgresDatabase) IsSet ¶

func (NullableNeonPostgresDatabase) MarshalJSON ¶

func (v NullableNeonPostgresDatabase) MarshalJSON() ([]byte, error)

func (*NullableNeonPostgresDatabase) Set ¶

func (*NullableNeonPostgresDatabase) UnmarshalJSON ¶

func (v *NullableNeonPostgresDatabase) UnmarshalJSON(src []byte) error

func (*NullableNeonPostgresDatabase) Unset ¶

func (v *NullableNeonPostgresDatabase) Unset()

type NullableNeonPostgresDatabaseDeploymentMetadata ¶

type NullableNeonPostgresDatabaseDeploymentMetadata struct {
	// contains filtered or unexported fields
}

func (NullableNeonPostgresDatabaseDeploymentMetadata) Get ¶

func (NullableNeonPostgresDatabaseDeploymentMetadata) IsSet ¶

func (NullableNeonPostgresDatabaseDeploymentMetadata) MarshalJSON ¶

func (*NullableNeonPostgresDatabaseDeploymentMetadata) Set ¶

func (*NullableNeonPostgresDatabaseDeploymentMetadata) UnmarshalJSON ¶

func (*NullableNeonPostgresDatabaseDeploymentMetadata) Unset ¶

type NullableNeonPostgresDatabaseNeonDatabase ¶

type NullableNeonPostgresDatabaseNeonDatabase struct {
	// contains filtered or unexported fields
}

func (NullableNeonPostgresDatabaseNeonDatabase) Get ¶

func (NullableNeonPostgresDatabaseNeonDatabase) IsSet ¶

func (NullableNeonPostgresDatabaseNeonDatabase) MarshalJSON ¶

func (*NullableNeonPostgresDatabaseNeonDatabase) Set ¶

func (*NullableNeonPostgresDatabaseNeonDatabase) UnmarshalJSON ¶

func (v *NullableNeonPostgresDatabaseNeonDatabase) UnmarshalJSON(src []byte) error

func (*NullableNeonPostgresDatabaseNeonDatabase) Unset ¶

type NullableNeonPostgresDatabaseNeonRole ¶

type NullableNeonPostgresDatabaseNeonRole struct {
	// contains filtered or unexported fields
}

func (NullableNeonPostgresDatabaseNeonRole) Get ¶

func (NullableNeonPostgresDatabaseNeonRole) IsSet ¶

func (NullableNeonPostgresDatabaseNeonRole) MarshalJSON ¶

func (v NullableNeonPostgresDatabaseNeonRole) MarshalJSON() ([]byte, error)

func (*NullableNeonPostgresDatabaseNeonRole) Set ¶

func (*NullableNeonPostgresDatabaseNeonRole) UnmarshalJSON ¶

func (v *NullableNeonPostgresDatabaseNeonRole) UnmarshalJSON(src []byte) error

func (*NullableNeonPostgresDatabaseNeonRole) Unset ¶

type NullableNeonPostgresSummary ¶

type NullableNeonPostgresSummary struct {
	// contains filtered or unexported fields
}

func (NullableNeonPostgresSummary) Get ¶

func (NullableNeonPostgresSummary) IsSet ¶

func (NullableNeonPostgresSummary) MarshalJSON ¶

func (v NullableNeonPostgresSummary) MarshalJSON() ([]byte, error)

func (*NullableNeonPostgresSummary) Set ¶

func (*NullableNeonPostgresSummary) UnmarshalJSON ¶

func (v *NullableNeonPostgresSummary) UnmarshalJSON(src []byte) error

func (*NullableNeonPostgresSummary) Unset ¶

func (v *NullableNeonPostgresSummary) Unset()

type NullableNextInvoiceReply ¶

type NullableNextInvoiceReply struct {
	// contains filtered or unexported fields
}

func NewNullableNextInvoiceReply ¶

func NewNullableNextInvoiceReply(val *NextInvoiceReply) *NullableNextInvoiceReply

func (NullableNextInvoiceReply) Get ¶

func (NullableNextInvoiceReply) IsSet ¶

func (v NullableNextInvoiceReply) IsSet() bool

func (NullableNextInvoiceReply) MarshalJSON ¶

func (v NullableNextInvoiceReply) MarshalJSON() ([]byte, error)

func (*NullableNextInvoiceReply) Set ¶

func (*NullableNextInvoiceReply) UnmarshalJSON ¶

func (v *NullableNextInvoiceReply) UnmarshalJSON(src []byte) error

func (*NullableNextInvoiceReply) Unset ¶

func (v *NullableNextInvoiceReply) Unset()

type NullableNotification ¶

type NullableNotification struct {
	// contains filtered or unexported fields
}

func NewNullableNotification ¶

func NewNullableNotification(val *Notification) *NullableNotification

func (NullableNotification) Get ¶

func (NullableNotification) IsSet ¶

func (v NullableNotification) IsSet() bool

func (NullableNotification) MarshalJSON ¶

func (v NullableNotification) MarshalJSON() ([]byte, error)

func (*NullableNotification) Set ¶

func (v *NullableNotification) Set(val *Notification)

func (*NullableNotification) UnmarshalJSON ¶

func (v *NullableNotification) UnmarshalJSON(src []byte) error

func (*NullableNotification) Unset ¶

func (v *NullableNotification) Unset()

type NullableNotificationList ¶

type NullableNotificationList struct {
	// contains filtered or unexported fields
}

func NewNullableNotificationList ¶

func NewNullableNotificationList(val *NotificationList) *NullableNotificationList

func (NullableNotificationList) Get ¶

func (NullableNotificationList) IsSet ¶

func (v NullableNotificationList) IsSet() bool

func (NullableNotificationList) MarshalJSON ¶

func (v NullableNotificationList) MarshalJSON() ([]byte, error)

func (*NullableNotificationList) Set ¶

func (*NullableNotificationList) UnmarshalJSON ¶

func (v *NullableNotificationList) UnmarshalJSON(src []byte) error

func (*NullableNotificationList) Unset ¶

func (v *NullableNotificationList) Unset()

type NullableOAuthCallbackReply ¶

type NullableOAuthCallbackReply struct {
	// contains filtered or unexported fields
}

func NewNullableOAuthCallbackReply ¶

func NewNullableOAuthCallbackReply(val *OAuthCallbackReply) *NullableOAuthCallbackReply

func (NullableOAuthCallbackReply) Get ¶

func (NullableOAuthCallbackReply) IsSet ¶

func (v NullableOAuthCallbackReply) IsSet() bool

func (NullableOAuthCallbackReply) MarshalJSON ¶

func (v NullableOAuthCallbackReply) MarshalJSON() ([]byte, error)

func (*NullableOAuthCallbackReply) Set ¶

func (*NullableOAuthCallbackReply) UnmarshalJSON ¶

func (v *NullableOAuthCallbackReply) UnmarshalJSON(src []byte) error

func (*NullableOAuthCallbackReply) Unset ¶

func (v *NullableOAuthCallbackReply) Unset()

type NullableOAuthCallbackRequest ¶

type NullableOAuthCallbackRequest struct {
	// contains filtered or unexported fields
}

func (NullableOAuthCallbackRequest) Get ¶

func (NullableOAuthCallbackRequest) IsSet ¶

func (NullableOAuthCallbackRequest) MarshalJSON ¶

func (v NullableOAuthCallbackRequest) MarshalJSON() ([]byte, error)

func (*NullableOAuthCallbackRequest) Set ¶

func (*NullableOAuthCallbackRequest) UnmarshalJSON ¶

func (v *NullableOAuthCallbackRequest) UnmarshalJSON(src []byte) error

func (*NullableOAuthCallbackRequest) Unset ¶

func (v *NullableOAuthCallbackRequest) Unset()

type NullableOAuthProvider ¶

type NullableOAuthProvider struct {
	// contains filtered or unexported fields
}

func NewNullableOAuthProvider ¶

func NewNullableOAuthProvider(val *OAuthProvider) *NullableOAuthProvider

func (NullableOAuthProvider) Get ¶

func (NullableOAuthProvider) IsSet ¶

func (v NullableOAuthProvider) IsSet() bool

func (NullableOAuthProvider) MarshalJSON ¶

func (v NullableOAuthProvider) MarshalJSON() ([]byte, error)

func (*NullableOAuthProvider) Set ¶

func (v *NullableOAuthProvider) Set(val *OAuthProvider)

func (*NullableOAuthProvider) UnmarshalJSON ¶

func (v *NullableOAuthProvider) UnmarshalJSON(src []byte) error

func (*NullableOAuthProvider) Unset ¶

func (v *NullableOAuthProvider) Unset()

type NullableObject ¶

type NullableObject struct {
	// contains filtered or unexported fields
}

func NewNullableObject ¶

func NewNullableObject(val *Object) *NullableObject

func (NullableObject) Get ¶

func (v NullableObject) Get() *Object

func (NullableObject) IsSet ¶

func (v NullableObject) IsSet() bool

func (NullableObject) MarshalJSON ¶

func (v NullableObject) MarshalJSON() ([]byte, error)

func (*NullableObject) Set ¶

func (v *NullableObject) Set(val *Object)

func (*NullableObject) UnmarshalJSON ¶

func (v *NullableObject) UnmarshalJSON(src []byte) error

func (*NullableObject) Unset ¶

func (v *NullableObject) Unset()

type NullableOrganization ¶

type NullableOrganization struct {
	// contains filtered or unexported fields
}

func NewNullableOrganization ¶

func NewNullableOrganization(val *Organization) *NullableOrganization

func (NullableOrganization) Get ¶

func (NullableOrganization) IsSet ¶

func (v NullableOrganization) IsSet() bool

func (NullableOrganization) MarshalJSON ¶

func (v NullableOrganization) MarshalJSON() ([]byte, error)

func (*NullableOrganization) Set ¶

func (v *NullableOrganization) Set(val *Organization)

func (*NullableOrganization) UnmarshalJSON ¶

func (v *NullableOrganization) UnmarshalJSON(src []byte) error

func (*NullableOrganization) Unset ¶

func (v *NullableOrganization) Unset()

type NullableOrganizationDeactivationReason ¶

type NullableOrganizationDeactivationReason struct {
	// contains filtered or unexported fields
}

func (NullableOrganizationDeactivationReason) Get ¶

func (NullableOrganizationDeactivationReason) IsSet ¶

func (NullableOrganizationDeactivationReason) MarshalJSON ¶

func (v NullableOrganizationDeactivationReason) MarshalJSON() ([]byte, error)

func (*NullableOrganizationDeactivationReason) Set ¶

func (*NullableOrganizationDeactivationReason) UnmarshalJSON ¶

func (v *NullableOrganizationDeactivationReason) UnmarshalJSON(src []byte) error

func (*NullableOrganizationDeactivationReason) Unset ¶

type NullableOrganizationDetailedStatus ¶

type NullableOrganizationDetailedStatus struct {
	// contains filtered or unexported fields
}

func (NullableOrganizationDetailedStatus) Get ¶

func (NullableOrganizationDetailedStatus) IsSet ¶

func (NullableOrganizationDetailedStatus) MarshalJSON ¶

func (v NullableOrganizationDetailedStatus) MarshalJSON() ([]byte, error)

func (*NullableOrganizationDetailedStatus) Set ¶

func (*NullableOrganizationDetailedStatus) UnmarshalJSON ¶

func (v *NullableOrganizationDetailedStatus) UnmarshalJSON(src []byte) error

func (*NullableOrganizationDetailedStatus) Unset ¶

type NullableOrganizationInvitation ¶

type NullableOrganizationInvitation struct {
	// contains filtered or unexported fields
}

func (NullableOrganizationInvitation) Get ¶

func (NullableOrganizationInvitation) IsSet ¶

func (NullableOrganizationInvitation) MarshalJSON ¶

func (v NullableOrganizationInvitation) MarshalJSON() ([]byte, error)

func (*NullableOrganizationInvitation) Set ¶

func (*NullableOrganizationInvitation) UnmarshalJSON ¶

func (v *NullableOrganizationInvitation) UnmarshalJSON(src []byte) error

func (*NullableOrganizationInvitation) Unset ¶

func (v *NullableOrganizationInvitation) Unset()

type NullableOrganizationInvitationStatus ¶

type NullableOrganizationInvitationStatus struct {
	// contains filtered or unexported fields
}

func (NullableOrganizationInvitationStatus) Get ¶

func (NullableOrganizationInvitationStatus) IsSet ¶

func (NullableOrganizationInvitationStatus) MarshalJSON ¶

func (v NullableOrganizationInvitationStatus) MarshalJSON() ([]byte, error)

func (*NullableOrganizationInvitationStatus) Set ¶

func (*NullableOrganizationInvitationStatus) UnmarshalJSON ¶

func (v *NullableOrganizationInvitationStatus) UnmarshalJSON(src []byte) error

func (*NullableOrganizationInvitationStatus) Unset ¶

type NullableOrganizationMember ¶

type NullableOrganizationMember struct {
	// contains filtered or unexported fields
}

func NewNullableOrganizationMember ¶

func NewNullableOrganizationMember(val *OrganizationMember) *NullableOrganizationMember

func (NullableOrganizationMember) Get ¶

func (NullableOrganizationMember) IsSet ¶

func (v NullableOrganizationMember) IsSet() bool

func (NullableOrganizationMember) MarshalJSON ¶

func (v NullableOrganizationMember) MarshalJSON() ([]byte, error)

func (*NullableOrganizationMember) Set ¶

func (*NullableOrganizationMember) UnmarshalJSON ¶

func (v *NullableOrganizationMember) UnmarshalJSON(src []byte) error

func (*NullableOrganizationMember) Unset ¶

func (v *NullableOrganizationMember) Unset()

type NullableOrganizationMemberStatus ¶

type NullableOrganizationMemberStatus struct {
	// contains filtered or unexported fields
}

func (NullableOrganizationMemberStatus) Get ¶

func (NullableOrganizationMemberStatus) IsSet ¶

func (NullableOrganizationMemberStatus) MarshalJSON ¶

func (v NullableOrganizationMemberStatus) MarshalJSON() ([]byte, error)

func (*NullableOrganizationMemberStatus) Set ¶

func (*NullableOrganizationMemberStatus) UnmarshalJSON ¶

func (v *NullableOrganizationMemberStatus) UnmarshalJSON(src []byte) error

func (*NullableOrganizationMemberStatus) Unset ¶

type NullableOrganizationStatus ¶

type NullableOrganizationStatus struct {
	// contains filtered or unexported fields
}

func NewNullableOrganizationStatus ¶

func NewNullableOrganizationStatus(val *OrganizationStatus) *NullableOrganizationStatus

func (NullableOrganizationStatus) Get ¶

func (NullableOrganizationStatus) IsSet ¶

func (v NullableOrganizationStatus) IsSet() bool

func (NullableOrganizationStatus) MarshalJSON ¶

func (v NullableOrganizationStatus) MarshalJSON() ([]byte, error)

func (*NullableOrganizationStatus) Set ¶

func (*NullableOrganizationStatus) UnmarshalJSON ¶

func (v *NullableOrganizationStatus) UnmarshalJSON(src []byte) error

func (*NullableOrganizationStatus) Unset ¶

func (v *NullableOrganizationStatus) Unset()

type NullableOrganizationSummary ¶

type NullableOrganizationSummary struct {
	// contains filtered or unexported fields
}

func (NullableOrganizationSummary) Get ¶

func (NullableOrganizationSummary) IsSet ¶

func (NullableOrganizationSummary) MarshalJSON ¶

func (v NullableOrganizationSummary) MarshalJSON() ([]byte, error)

func (*NullableOrganizationSummary) Set ¶

func (*NullableOrganizationSummary) UnmarshalJSON ¶

func (v *NullableOrganizationSummary) UnmarshalJSON(src []byte) error

func (*NullableOrganizationSummary) Unset ¶

func (v *NullableOrganizationSummary) Unset()

type NullablePaymentMethod ¶

type NullablePaymentMethod struct {
	// contains filtered or unexported fields
}

func NewNullablePaymentMethod ¶

func NewNullablePaymentMethod(val *PaymentMethod) *NullablePaymentMethod

func (NullablePaymentMethod) Get ¶

func (NullablePaymentMethod) IsSet ¶

func (v NullablePaymentMethod) IsSet() bool

func (NullablePaymentMethod) MarshalJSON ¶

func (v NullablePaymentMethod) MarshalJSON() ([]byte, error)

func (*NullablePaymentMethod) Set ¶

func (v *NullablePaymentMethod) Set(val *PaymentMethod)

func (*NullablePaymentMethod) UnmarshalJSON ¶

func (v *NullablePaymentMethod) UnmarshalJSON(src []byte) error

func (*NullablePaymentMethod) Unset ¶

func (v *NullablePaymentMethod) Unset()

type NullablePaymentMethodStatus ¶

type NullablePaymentMethodStatus struct {
	// contains filtered or unexported fields
}

func (NullablePaymentMethodStatus) Get ¶

func (NullablePaymentMethodStatus) IsSet ¶

func (NullablePaymentMethodStatus) MarshalJSON ¶

func (v NullablePaymentMethodStatus) MarshalJSON() ([]byte, error)

func (*NullablePaymentMethodStatus) Set ¶

func (*NullablePaymentMethodStatus) UnmarshalJSON ¶

func (v *NullablePaymentMethodStatus) UnmarshalJSON(src []byte) error

func (*NullablePaymentMethodStatus) Unset ¶

func (v *NullablePaymentMethodStatus) Unset()

type NullablePeriodUsage ¶

type NullablePeriodUsage struct {
	// contains filtered or unexported fields
}

func NewNullablePeriodUsage ¶

func NewNullablePeriodUsage(val *PeriodUsage) *NullablePeriodUsage

func (NullablePeriodUsage) Get ¶

func (NullablePeriodUsage) IsSet ¶

func (v NullablePeriodUsage) IsSet() bool

func (NullablePeriodUsage) MarshalJSON ¶

func (v NullablePeriodUsage) MarshalJSON() ([]byte, error)

func (*NullablePeriodUsage) Set ¶

func (v *NullablePeriodUsage) Set(val *PeriodUsage)

func (*NullablePeriodUsage) UnmarshalJSON ¶

func (v *NullablePeriodUsage) UnmarshalJSON(src []byte) error

func (*NullablePeriodUsage) Unset ¶

func (v *NullablePeriodUsage) Unset()

type NullablePlan ¶

type NullablePlan struct {
	// contains filtered or unexported fields
}

func NewNullablePlan ¶

func NewNullablePlan(val *Plan) *NullablePlan

func (NullablePlan) Get ¶

func (v NullablePlan) Get() *Plan

func (NullablePlan) IsSet ¶

func (v NullablePlan) IsSet() bool

func (NullablePlan) MarshalJSON ¶

func (v NullablePlan) MarshalJSON() ([]byte, error)

func (*NullablePlan) Set ¶

func (v *NullablePlan) Set(val *Plan)

func (*NullablePlan) UnmarshalJSON ¶

func (v *NullablePlan) UnmarshalJSON(src []byte) error

func (*NullablePlan) Unset ¶

func (v *NullablePlan) Unset()

type NullablePort ¶

type NullablePort struct {
	// contains filtered or unexported fields
}

func NewNullablePort ¶

func NewNullablePort(val *Port) *NullablePort

func (NullablePort) Get ¶

func (v NullablePort) Get() *Port

func (NullablePort) IsSet ¶

func (v NullablePort) IsSet() bool

func (NullablePort) MarshalJSON ¶

func (v NullablePort) MarshalJSON() ([]byte, error)

func (*NullablePort) Set ¶

func (v *NullablePort) Set(val *Port)

func (*NullablePort) UnmarshalJSON ¶

func (v *NullablePort) UnmarshalJSON(src []byte) error

func (*NullablePort) Unset ¶

func (v *NullablePort) Unset()

type NullablePrivateRegistryConfiguration ¶

type NullablePrivateRegistryConfiguration struct {
	// contains filtered or unexported fields
}

func (NullablePrivateRegistryConfiguration) Get ¶

func (NullablePrivateRegistryConfiguration) IsSet ¶

func (NullablePrivateRegistryConfiguration) MarshalJSON ¶

func (v NullablePrivateRegistryConfiguration) MarshalJSON() ([]byte, error)

func (*NullablePrivateRegistryConfiguration) Set ¶

func (*NullablePrivateRegistryConfiguration) UnmarshalJSON ¶

func (v *NullablePrivateRegistryConfiguration) UnmarshalJSON(src []byte) error

func (*NullablePrivateRegistryConfiguration) Unset ¶

type NullablePublicOrganization ¶

type NullablePublicOrganization struct {
	// contains filtered or unexported fields
}

func NewNullablePublicOrganization ¶

func NewNullablePublicOrganization(val *PublicOrganization) *NullablePublicOrganization

func (NullablePublicOrganization) Get ¶

func (NullablePublicOrganization) IsSet ¶

func (v NullablePublicOrganization) IsSet() bool

func (NullablePublicOrganization) MarshalJSON ¶

func (v NullablePublicOrganization) MarshalJSON() ([]byte, error)

func (*NullablePublicOrganization) Set ¶

func (*NullablePublicOrganization) UnmarshalJSON ¶

func (v *NullablePublicOrganization) UnmarshalJSON(src []byte) error

func (*NullablePublicOrganization) Unset ¶

func (v *NullablePublicOrganization) Unset()

type NullablePublicUser ¶

type NullablePublicUser struct {
	// contains filtered or unexported fields
}

func NewNullablePublicUser ¶

func NewNullablePublicUser(val *PublicUser) *NullablePublicUser

func (NullablePublicUser) Get ¶

func (v NullablePublicUser) Get() *PublicUser

func (NullablePublicUser) IsSet ¶

func (v NullablePublicUser) IsSet() bool

func (NullablePublicUser) MarshalJSON ¶

func (v NullablePublicUser) MarshalJSON() ([]byte, error)

func (*NullablePublicUser) Set ¶

func (v *NullablePublicUser) Set(val *PublicUser)

func (*NullablePublicUser) UnmarshalJSON ¶

func (v *NullablePublicUser) UnmarshalJSON(src []byte) error

func (*NullablePublicUser) Unset ¶

func (v *NullablePublicUser) Unset()

type NullableQuotas ¶

type NullableQuotas struct {
	// contains filtered or unexported fields
}

func NewNullableQuotas ¶

func NewNullableQuotas(val *Quotas) *NullableQuotas

func (NullableQuotas) Get ¶

func (v NullableQuotas) Get() *Quotas

func (NullableQuotas) IsSet ¶

func (v NullableQuotas) IsSet() bool

func (NullableQuotas) MarshalJSON ¶

func (v NullableQuotas) MarshalJSON() ([]byte, error)

func (*NullableQuotas) Set ¶

func (v *NullableQuotas) Set(val *Quotas)

func (*NullableQuotas) UnmarshalJSON ¶

func (v *NullableQuotas) UnmarshalJSON(src []byte) error

func (*NullableQuotas) Unset ¶

func (v *NullableQuotas) Unset()

type NullableReactivateOrganizationReply ¶

type NullableReactivateOrganizationReply struct {
	// contains filtered or unexported fields
}

func (NullableReactivateOrganizationReply) Get ¶

func (NullableReactivateOrganizationReply) IsSet ¶

func (NullableReactivateOrganizationReply) MarshalJSON ¶

func (v NullableReactivateOrganizationReply) MarshalJSON() ([]byte, error)

func (*NullableReactivateOrganizationReply) Set ¶

func (*NullableReactivateOrganizationReply) UnmarshalJSON ¶

func (v *NullableReactivateOrganizationReply) UnmarshalJSON(src []byte) error

func (*NullableReactivateOrganizationReply) Unset ¶

type NullableRedeployReply ¶

type NullableRedeployReply struct {
	// contains filtered or unexported fields
}

func NewNullableRedeployReply ¶

func NewNullableRedeployReply(val *RedeployReply) *NullableRedeployReply

func (NullableRedeployReply) Get ¶

func (NullableRedeployReply) IsSet ¶

func (v NullableRedeployReply) IsSet() bool

func (NullableRedeployReply) MarshalJSON ¶

func (v NullableRedeployReply) MarshalJSON() ([]byte, error)

func (*NullableRedeployReply) Set ¶

func (v *NullableRedeployReply) Set(val *RedeployReply)

func (*NullableRedeployReply) UnmarshalJSON ¶

func (v *NullableRedeployReply) UnmarshalJSON(src []byte) error

func (*NullableRedeployReply) Unset ¶

func (v *NullableRedeployReply) Unset()

type NullableRedeployRequestInfo ¶

type NullableRedeployRequestInfo struct {
	// contains filtered or unexported fields
}

func (NullableRedeployRequestInfo) Get ¶

func (NullableRedeployRequestInfo) IsSet ¶

func (NullableRedeployRequestInfo) MarshalJSON ¶

func (v NullableRedeployRequestInfo) MarshalJSON() ([]byte, error)

func (*NullableRedeployRequestInfo) Set ¶

func (*NullableRedeployRequestInfo) UnmarshalJSON ¶

func (v *NullableRedeployRequestInfo) UnmarshalJSON(src []byte) error

func (*NullableRedeployRequestInfo) Unset ¶

func (v *NullableRedeployRequestInfo) Unset()

type NullableRegion ¶

type NullableRegion struct {
	// contains filtered or unexported fields
}

func NewNullableRegion ¶

func NewNullableRegion(val *Region) *NullableRegion

func (NullableRegion) Get ¶

func (v NullableRegion) Get() *Region

func (NullableRegion) IsSet ¶

func (v NullableRegion) IsSet() bool

func (NullableRegion) MarshalJSON ¶

func (v NullableRegion) MarshalJSON() ([]byte, error)

func (*NullableRegion) Set ¶

func (v *NullableRegion) Set(val *Region)

func (*NullableRegion) UnmarshalJSON ¶

func (v *NullableRegion) UnmarshalJSON(src []byte) error

func (*NullableRegion) Unset ¶

func (v *NullableRegion) Unset()

type NullableRegionListItem ¶

type NullableRegionListItem struct {
	// contains filtered or unexported fields
}

func NewNullableRegionListItem ¶

func NewNullableRegionListItem(val *RegionListItem) *NullableRegionListItem

func (NullableRegionListItem) Get ¶

func (NullableRegionListItem) IsSet ¶

func (v NullableRegionListItem) IsSet() bool

func (NullableRegionListItem) MarshalJSON ¶

func (v NullableRegionListItem) MarshalJSON() ([]byte, error)

func (*NullableRegionListItem) Set ¶

func (*NullableRegionListItem) UnmarshalJSON ¶

func (v *NullableRegionListItem) UnmarshalJSON(src []byte) error

func (*NullableRegionListItem) Unset ¶

func (v *NullableRegionListItem) Unset()

type NullableRegionUsage ¶

type NullableRegionUsage struct {
	// contains filtered or unexported fields
}

func NewNullableRegionUsage ¶

func NewNullableRegionUsage(val *RegionUsage) *NullableRegionUsage

func (NullableRegionUsage) Get ¶

func (NullableRegionUsage) IsSet ¶

func (v NullableRegionUsage) IsSet() bool

func (NullableRegionUsage) MarshalJSON ¶

func (v NullableRegionUsage) MarshalJSON() ([]byte, error)

func (*NullableRegionUsage) Set ¶

func (v *NullableRegionUsage) Set(val *RegionUsage)

func (*NullableRegionUsage) UnmarshalJSON ¶

func (v *NullableRegionUsage) UnmarshalJSON(src []byte) error

func (*NullableRegionUsage) Unset ¶

func (v *NullableRegionUsage) Unset()

type NullableRegionalDeployment ¶

type NullableRegionalDeployment struct {
	// contains filtered or unexported fields
}

func NewNullableRegionalDeployment ¶

func NewNullableRegionalDeployment(val *RegionalDeployment) *NullableRegionalDeployment

func (NullableRegionalDeployment) Get ¶

func (NullableRegionalDeployment) IsSet ¶

func (v NullableRegionalDeployment) IsSet() bool

func (NullableRegionalDeployment) MarshalJSON ¶

func (v NullableRegionalDeployment) MarshalJSON() ([]byte, error)

func (*NullableRegionalDeployment) Set ¶

func (*NullableRegionalDeployment) UnmarshalJSON ¶

func (v *NullableRegionalDeployment) UnmarshalJSON(src []byte) error

func (*NullableRegionalDeployment) Unset ¶

func (v *NullableRegionalDeployment) Unset()

type NullableRegionalDeploymentDefinition ¶

type NullableRegionalDeploymentDefinition struct {
	// contains filtered or unexported fields
}

func (NullableRegionalDeploymentDefinition) Get ¶

func (NullableRegionalDeploymentDefinition) IsSet ¶

func (NullableRegionalDeploymentDefinition) MarshalJSON ¶

func (v NullableRegionalDeploymentDefinition) MarshalJSON() ([]byte, error)

func (*NullableRegionalDeploymentDefinition) Set ¶

func (*NullableRegionalDeploymentDefinition) UnmarshalJSON ¶

func (v *NullableRegionalDeploymentDefinition) UnmarshalJSON(src []byte) error

func (*NullableRegionalDeploymentDefinition) Unset ¶

type NullableRegionalDeploymentDefinitionType ¶

type NullableRegionalDeploymentDefinitionType struct {
	// contains filtered or unexported fields
}

func (NullableRegionalDeploymentDefinitionType) Get ¶

func (NullableRegionalDeploymentDefinitionType) IsSet ¶

func (NullableRegionalDeploymentDefinitionType) MarshalJSON ¶

func (*NullableRegionalDeploymentDefinitionType) Set ¶

func (*NullableRegionalDeploymentDefinitionType) UnmarshalJSON ¶

func (v *NullableRegionalDeploymentDefinitionType) UnmarshalJSON(src []byte) error

func (*NullableRegionalDeploymentDefinitionType) Unset ¶

type NullableRegionalDeploymentEvent ¶

type NullableRegionalDeploymentEvent struct {
	// contains filtered or unexported fields
}

func (NullableRegionalDeploymentEvent) Get ¶

func (NullableRegionalDeploymentEvent) IsSet ¶

func (NullableRegionalDeploymentEvent) MarshalJSON ¶

func (v NullableRegionalDeploymentEvent) MarshalJSON() ([]byte, error)

func (*NullableRegionalDeploymentEvent) Set ¶

func (*NullableRegionalDeploymentEvent) UnmarshalJSON ¶

func (v *NullableRegionalDeploymentEvent) UnmarshalJSON(src []byte) error

func (*NullableRegionalDeploymentEvent) Unset ¶

type NullableRegionalDeploymentListItem ¶

type NullableRegionalDeploymentListItem struct {
	// contains filtered or unexported fields
}

func (NullableRegionalDeploymentListItem) Get ¶

func (NullableRegionalDeploymentListItem) IsSet ¶

func (NullableRegionalDeploymentListItem) MarshalJSON ¶

func (v NullableRegionalDeploymentListItem) MarshalJSON() ([]byte, error)

func (*NullableRegionalDeploymentListItem) Set ¶

func (*NullableRegionalDeploymentListItem) UnmarshalJSON ¶

func (v *NullableRegionalDeploymentListItem) UnmarshalJSON(src []byte) error

func (*NullableRegionalDeploymentListItem) Unset ¶

type NullableRegionalDeploymentMetadata ¶

type NullableRegionalDeploymentMetadata struct {
	// contains filtered or unexported fields
}

func (NullableRegionalDeploymentMetadata) Get ¶

func (NullableRegionalDeploymentMetadata) IsSet ¶

func (NullableRegionalDeploymentMetadata) MarshalJSON ¶

func (v NullableRegionalDeploymentMetadata) MarshalJSON() ([]byte, error)

func (*NullableRegionalDeploymentMetadata) Set ¶

func (*NullableRegionalDeploymentMetadata) UnmarshalJSON ¶

func (v *NullableRegionalDeploymentMetadata) UnmarshalJSON(src []byte) error

func (*NullableRegionalDeploymentMetadata) Unset ¶

type NullableRegionalDeploymentStatus ¶

type NullableRegionalDeploymentStatus struct {
	// contains filtered or unexported fields
}

func (NullableRegionalDeploymentStatus) Get ¶

func (NullableRegionalDeploymentStatus) IsSet ¶

func (NullableRegionalDeploymentStatus) MarshalJSON ¶

func (v NullableRegionalDeploymentStatus) MarshalJSON() ([]byte, error)

func (*NullableRegionalDeploymentStatus) Set ¶

func (*NullableRegionalDeploymentStatus) UnmarshalJSON ¶

func (v *NullableRegionalDeploymentStatus) UnmarshalJSON(src []byte) error

func (*NullableRegionalDeploymentStatus) Unset ¶

type NullableRemoveOrganizationMemberReply ¶

type NullableRemoveOrganizationMemberReply struct {
	// contains filtered or unexported fields
}

func (NullableRemoveOrganizationMemberReply) Get ¶

func (NullableRemoveOrganizationMemberReply) IsSet ¶

func (NullableRemoveOrganizationMemberReply) MarshalJSON ¶

func (v NullableRemoveOrganizationMemberReply) MarshalJSON() ([]byte, error)

func (*NullableRemoveOrganizationMemberReply) Set ¶

func (*NullableRemoveOrganizationMemberReply) UnmarshalJSON ¶

func (v *NullableRemoveOrganizationMemberReply) UnmarshalJSON(src []byte) error

func (*NullableRemoveOrganizationMemberReply) Unset ¶

type NullableResendOrganizationInvitationReply ¶

type NullableResendOrganizationInvitationReply struct {
	// contains filtered or unexported fields
}

func (NullableResendOrganizationInvitationReply) Get ¶

func (NullableResendOrganizationInvitationReply) IsSet ¶

func (NullableResendOrganizationInvitationReply) MarshalJSON ¶

func (*NullableResendOrganizationInvitationReply) Set ¶

func (*NullableResendOrganizationInvitationReply) UnmarshalJSON ¶

func (v *NullableResendOrganizationInvitationReply) UnmarshalJSON(src []byte) error

func (*NullableResendOrganizationInvitationReply) Unset ¶

type NullableResetPasswordRequest ¶

type NullableResetPasswordRequest struct {
	// contains filtered or unexported fields
}

func (NullableResetPasswordRequest) Get ¶

func (NullableResetPasswordRequest) IsSet ¶

func (NullableResetPasswordRequest) MarshalJSON ¶

func (v NullableResetPasswordRequest) MarshalJSON() ([]byte, error)

func (*NullableResetPasswordRequest) Set ¶

func (*NullableResetPasswordRequest) UnmarshalJSON ¶

func (v *NullableResetPasswordRequest) UnmarshalJSON(src []byte) error

func (*NullableResetPasswordRequest) Unset ¶

func (v *NullableResetPasswordRequest) Unset()

type NullableRevealSecretReply ¶

type NullableRevealSecretReply struct {
	// contains filtered or unexported fields
}

func NewNullableRevealSecretReply ¶

func NewNullableRevealSecretReply(val *RevealSecretReply) *NullableRevealSecretReply

func (NullableRevealSecretReply) Get ¶

func (NullableRevealSecretReply) IsSet ¶

func (v NullableRevealSecretReply) IsSet() bool

func (NullableRevealSecretReply) MarshalJSON ¶

func (v NullableRevealSecretReply) MarshalJSON() ([]byte, error)

func (*NullableRevealSecretReply) Set ¶

func (*NullableRevealSecretReply) UnmarshalJSON ¶

func (v *NullableRevealSecretReply) UnmarshalJSON(src []byte) error

func (*NullableRevealSecretReply) Unset ¶

func (v *NullableRevealSecretReply) Unset()

type NullableReviewOrganizationCapacityReply ¶

type NullableReviewOrganizationCapacityReply struct {
	// contains filtered or unexported fields
}

func (NullableReviewOrganizationCapacityReply) Get ¶

func (NullableReviewOrganizationCapacityReply) IsSet ¶

func (NullableReviewOrganizationCapacityReply) MarshalJSON ¶

func (v NullableReviewOrganizationCapacityReply) MarshalJSON() ([]byte, error)

func (*NullableReviewOrganizationCapacityReply) Set ¶

func (*NullableReviewOrganizationCapacityReply) UnmarshalJSON ¶

func (v *NullableReviewOrganizationCapacityReply) UnmarshalJSON(src []byte) error

func (*NullableReviewOrganizationCapacityReply) Unset ¶

type NullableReviewOrganizationCapacityRequest ¶

type NullableReviewOrganizationCapacityRequest struct {
	// contains filtered or unexported fields
}

func (NullableReviewOrganizationCapacityRequest) Get ¶

func (NullableReviewOrganizationCapacityRequest) IsSet ¶

func (NullableReviewOrganizationCapacityRequest) MarshalJSON ¶

func (*NullableReviewOrganizationCapacityRequest) Set ¶

func (*NullableReviewOrganizationCapacityRequest) UnmarshalJSON ¶

func (v *NullableReviewOrganizationCapacityRequest) UnmarshalJSON(src []byte) error

func (*NullableReviewOrganizationCapacityRequest) Unset ¶

type NullableRoute ¶

type NullableRoute struct {
	// contains filtered or unexported fields
}

func NewNullableRoute ¶

func NewNullableRoute(val *Route) *NullableRoute

func (NullableRoute) Get ¶

func (v NullableRoute) Get() *Route

func (NullableRoute) IsSet ¶

func (v NullableRoute) IsSet() bool

func (NullableRoute) MarshalJSON ¶

func (v NullableRoute) MarshalJSON() ([]byte, error)

func (*NullableRoute) Set ¶

func (v *NullableRoute) Set(val *Route)

func (*NullableRoute) UnmarshalJSON ¶

func (v *NullableRoute) UnmarshalJSON(src []byte) error

func (*NullableRoute) Unset ¶

func (v *NullableRoute) Unset()

type NullableSample ¶

type NullableSample struct {
	// contains filtered or unexported fields
}

func NewNullableSample ¶

func NewNullableSample(val *Sample) *NullableSample

func (NullableSample) Get ¶

func (v NullableSample) Get() *Sample

func (NullableSample) IsSet ¶

func (v NullableSample) IsSet() bool

func (NullableSample) MarshalJSON ¶

func (v NullableSample) MarshalJSON() ([]byte, error)

func (*NullableSample) Set ¶

func (v *NullableSample) Set(val *Sample)

func (*NullableSample) UnmarshalJSON ¶

func (v *NullableSample) UnmarshalJSON(src []byte) error

func (*NullableSample) Unset ¶

func (v *NullableSample) Unset()

type NullableScaling ¶

type NullableScaling struct {
	// contains filtered or unexported fields
}

func NewNullableScaling ¶

func NewNullableScaling(val *Scaling) *NullableScaling

func (NullableScaling) Get ¶

func (v NullableScaling) Get() *Scaling

func (NullableScaling) IsSet ¶

func (v NullableScaling) IsSet() bool

func (NullableScaling) MarshalJSON ¶

func (v NullableScaling) MarshalJSON() ([]byte, error)

func (*NullableScaling) Set ¶

func (v *NullableScaling) Set(val *Scaling)

func (*NullableScaling) UnmarshalJSON ¶

func (v *NullableScaling) UnmarshalJSON(src []byte) error

func (*NullableScaling) Unset ¶

func (v *NullableScaling) Unset()

type NullableSecret ¶

type NullableSecret struct {
	// contains filtered or unexported fields
}

func NewNullableSecret ¶

func NewNullableSecret(val *Secret) *NullableSecret

func (NullableSecret) Get ¶

func (v NullableSecret) Get() *Secret

func (NullableSecret) IsSet ¶

func (v NullableSecret) IsSet() bool

func (NullableSecret) MarshalJSON ¶

func (v NullableSecret) MarshalJSON() ([]byte, error)

func (*NullableSecret) Set ¶

func (v *NullableSecret) Set(val *Secret)

func (*NullableSecret) UnmarshalJSON ¶

func (v *NullableSecret) UnmarshalJSON(src []byte) error

func (*NullableSecret) Unset ¶

func (v *NullableSecret) Unset()

type NullableSecretType ¶

type NullableSecretType struct {
	// contains filtered or unexported fields
}

func NewNullableSecretType ¶

func NewNullableSecretType(val *SecretType) *NullableSecretType

func (NullableSecretType) Get ¶

func (v NullableSecretType) Get() *SecretType

func (NullableSecretType) IsSet ¶

func (v NullableSecretType) IsSet() bool

func (NullableSecretType) MarshalJSON ¶

func (v NullableSecretType) MarshalJSON() ([]byte, error)

func (*NullableSecretType) Set ¶

func (v *NullableSecretType) Set(val *SecretType)

func (*NullableSecretType) UnmarshalJSON ¶

func (v *NullableSecretType) UnmarshalJSON(src []byte) error

func (*NullableSecretType) Unset ¶

func (v *NullableSecretType) Unset()

type NullableSecretsSummary ¶

type NullableSecretsSummary struct {
	// contains filtered or unexported fields
}

func NewNullableSecretsSummary ¶

func NewNullableSecretsSummary(val *SecretsSummary) *NullableSecretsSummary

func (NullableSecretsSummary) Get ¶

func (NullableSecretsSummary) IsSet ¶

func (v NullableSecretsSummary) IsSet() bool

func (NullableSecretsSummary) MarshalJSON ¶

func (v NullableSecretsSummary) MarshalJSON() ([]byte, error)

func (*NullableSecretsSummary) Set ¶

func (*NullableSecretsSummary) UnmarshalJSON ¶

func (v *NullableSecretsSummary) UnmarshalJSON(src []byte) error

func (*NullableSecretsSummary) Unset ¶

func (v *NullableSecretsSummary) Unset()

type NullableService ¶

type NullableService struct {
	// contains filtered or unexported fields
}

func NewNullableService ¶

func NewNullableService(val *Service) *NullableService

func (NullableService) Get ¶

func (v NullableService) Get() *Service

func (NullableService) IsSet ¶

func (v NullableService) IsSet() bool

func (NullableService) MarshalJSON ¶

func (v NullableService) MarshalJSON() ([]byte, error)

func (*NullableService) Set ¶

func (v *NullableService) Set(val *Service)

func (*NullableService) UnmarshalJSON ¶

func (v *NullableService) UnmarshalJSON(src []byte) error

func (*NullableService) Unset ¶

func (v *NullableService) Unset()

type NullableServiceEvent ¶

type NullableServiceEvent struct {
	// contains filtered or unexported fields
}

func NewNullableServiceEvent ¶

func NewNullableServiceEvent(val *ServiceEvent) *NullableServiceEvent

func (NullableServiceEvent) Get ¶

func (NullableServiceEvent) IsSet ¶

func (v NullableServiceEvent) IsSet() bool

func (NullableServiceEvent) MarshalJSON ¶

func (v NullableServiceEvent) MarshalJSON() ([]byte, error)

func (*NullableServiceEvent) Set ¶

func (v *NullableServiceEvent) Set(val *ServiceEvent)

func (*NullableServiceEvent) UnmarshalJSON ¶

func (v *NullableServiceEvent) UnmarshalJSON(src []byte) error

func (*NullableServiceEvent) Unset ¶

func (v *NullableServiceEvent) Unset()

type NullableServiceListItem ¶

type NullableServiceListItem struct {
	// contains filtered or unexported fields
}

func NewNullableServiceListItem ¶

func NewNullableServiceListItem(val *ServiceListItem) *NullableServiceListItem

func (NullableServiceListItem) Get ¶

func (NullableServiceListItem) IsSet ¶

func (v NullableServiceListItem) IsSet() bool

func (NullableServiceListItem) MarshalJSON ¶

func (v NullableServiceListItem) MarshalJSON() ([]byte, error)

func (*NullableServiceListItem) Set ¶

func (*NullableServiceListItem) UnmarshalJSON ¶

func (v *NullableServiceListItem) UnmarshalJSON(src []byte) error

func (*NullableServiceListItem) Unset ¶

func (v *NullableServiceListItem) Unset()

type NullableServiceState ¶

type NullableServiceState struct {
	// contains filtered or unexported fields
}

func NewNullableServiceState ¶

func NewNullableServiceState(val *ServiceState) *NullableServiceState

func (NullableServiceState) Get ¶

func (NullableServiceState) IsSet ¶

func (v NullableServiceState) IsSet() bool

func (NullableServiceState) MarshalJSON ¶

func (v NullableServiceState) MarshalJSON() ([]byte, error)

func (*NullableServiceState) Set ¶

func (v *NullableServiceState) Set(val *ServiceState)

func (*NullableServiceState) UnmarshalJSON ¶

func (v *NullableServiceState) UnmarshalJSON(src []byte) error

func (*NullableServiceState) Unset ¶

func (v *NullableServiceState) Unset()

type NullableServiceStatus ¶

type NullableServiceStatus struct {
	// contains filtered or unexported fields
}

func NewNullableServiceStatus ¶

func NewNullableServiceStatus(val *ServiceStatus) *NullableServiceStatus

func (NullableServiceStatus) Get ¶

func (NullableServiceStatus) IsSet ¶

func (v NullableServiceStatus) IsSet() bool

func (NullableServiceStatus) MarshalJSON ¶

func (v NullableServiceStatus) MarshalJSON() ([]byte, error)

func (*NullableServiceStatus) Set ¶

func (v *NullableServiceStatus) Set(val *ServiceStatus)

func (*NullableServiceStatus) UnmarshalJSON ¶

func (v *NullableServiceStatus) UnmarshalJSON(src []byte) error

func (*NullableServiceStatus) Unset ¶

func (v *NullableServiceStatus) Unset()

type NullableServiceSummary ¶

type NullableServiceSummary struct {
	// contains filtered or unexported fields
}

func NewNullableServiceSummary ¶

func NewNullableServiceSummary(val *ServiceSummary) *NullableServiceSummary

func (NullableServiceSummary) Get ¶

func (NullableServiceSummary) IsSet ¶

func (v NullableServiceSummary) IsSet() bool

func (NullableServiceSummary) MarshalJSON ¶

func (v NullableServiceSummary) MarshalJSON() ([]byte, error)

func (*NullableServiceSummary) Set ¶

func (*NullableServiceSummary) UnmarshalJSON ¶

func (v *NullableServiceSummary) UnmarshalJSON(src []byte) error

func (*NullableServiceSummary) Unset ¶

func (v *NullableServiceSummary) Unset()

type NullableServiceType ¶

type NullableServiceType struct {
	// contains filtered or unexported fields
}

func NewNullableServiceType ¶

func NewNullableServiceType(val *ServiceType) *NullableServiceType

func (NullableServiceType) Get ¶

func (NullableServiceType) IsSet ¶

func (v NullableServiceType) IsSet() bool

func (NullableServiceType) MarshalJSON ¶

func (v NullableServiceType) MarshalJSON() ([]byte, error)

func (*NullableServiceType) Set ¶

func (v *NullableServiceType) Set(val *ServiceType)

func (*NullableServiceType) UnmarshalJSON ¶

func (v *NullableServiceType) UnmarshalJSON(src []byte) error

func (*NullableServiceType) Unset ¶

func (v *NullableServiceType) Unset()

type NullableServiceUsage ¶

type NullableServiceUsage struct {
	// contains filtered or unexported fields
}

func NewNullableServiceUsage ¶

func NewNullableServiceUsage(val *ServiceUsage) *NullableServiceUsage

func (NullableServiceUsage) Get ¶

func (NullableServiceUsage) IsSet ¶

func (v NullableServiceUsage) IsSet() bool

func (NullableServiceUsage) MarshalJSON ¶

func (v NullableServiceUsage) MarshalJSON() ([]byte, error)

func (*NullableServiceUsage) Set ¶

func (v *NullableServiceUsage) Set(val *ServiceUsage)

func (*NullableServiceUsage) UnmarshalJSON ¶

func (v *NullableServiceUsage) UnmarshalJSON(src []byte) error

func (*NullableServiceUsage) Unset ¶

func (v *NullableServiceUsage) Unset()

type NullableStreamResultOfExecCommandReply ¶

type NullableStreamResultOfExecCommandReply struct {
	// contains filtered or unexported fields
}

func (NullableStreamResultOfExecCommandReply) Get ¶

func (NullableStreamResultOfExecCommandReply) IsSet ¶

func (NullableStreamResultOfExecCommandReply) MarshalJSON ¶

func (v NullableStreamResultOfExecCommandReply) MarshalJSON() ([]byte, error)

func (*NullableStreamResultOfExecCommandReply) Set ¶

func (*NullableStreamResultOfExecCommandReply) UnmarshalJSON ¶

func (v *NullableStreamResultOfExecCommandReply) UnmarshalJSON(src []byte) error

func (*NullableStreamResultOfExecCommandReply) Unset ¶

type NullableStreamResultOfLogEntry ¶

type NullableStreamResultOfLogEntry struct {
	// contains filtered or unexported fields
}

func (NullableStreamResultOfLogEntry) Get ¶

func (NullableStreamResultOfLogEntry) IsSet ¶

func (NullableStreamResultOfLogEntry) MarshalJSON ¶

func (v NullableStreamResultOfLogEntry) MarshalJSON() ([]byte, error)

func (*NullableStreamResultOfLogEntry) Set ¶

func (*NullableStreamResultOfLogEntry) UnmarshalJSON ¶

func (v *NullableStreamResultOfLogEntry) UnmarshalJSON(src []byte) error

func (*NullableStreamResultOfLogEntry) Unset ¶

func (v *NullableStreamResultOfLogEntry) 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 NullableSubscription ¶

type NullableSubscription struct {
	// contains filtered or unexported fields
}

func NewNullableSubscription ¶

func NewNullableSubscription(val *Subscription) *NullableSubscription

func (NullableSubscription) Get ¶

func (NullableSubscription) IsSet ¶

func (v NullableSubscription) IsSet() bool

func (NullableSubscription) MarshalJSON ¶

func (v NullableSubscription) MarshalJSON() ([]byte, error)

func (*NullableSubscription) Set ¶

func (v *NullableSubscription) Set(val *Subscription)

func (*NullableSubscription) UnmarshalJSON ¶

func (v *NullableSubscription) UnmarshalJSON(src []byte) error

func (*NullableSubscription) Unset ¶

func (v *NullableSubscription) Unset()

type NullableSubscriptionPaymentFailure ¶

type NullableSubscriptionPaymentFailure struct {
	// contains filtered or unexported fields
}

func (NullableSubscriptionPaymentFailure) Get ¶

func (NullableSubscriptionPaymentFailure) IsSet ¶

func (NullableSubscriptionPaymentFailure) MarshalJSON ¶

func (v NullableSubscriptionPaymentFailure) MarshalJSON() ([]byte, error)

func (*NullableSubscriptionPaymentFailure) Set ¶

func (*NullableSubscriptionPaymentFailure) UnmarshalJSON ¶

func (v *NullableSubscriptionPaymentFailure) UnmarshalJSON(src []byte) error

func (*NullableSubscriptionPaymentFailure) Unset ¶

type NullableSubscriptionPaymentFailureStripeSDK ¶

type NullableSubscriptionPaymentFailureStripeSDK struct {
	// contains filtered or unexported fields
}

func (NullableSubscriptionPaymentFailureStripeSDK) Get ¶

func (NullableSubscriptionPaymentFailureStripeSDK) IsSet ¶

func (NullableSubscriptionPaymentFailureStripeSDK) MarshalJSON ¶

func (*NullableSubscriptionPaymentFailureStripeSDK) Set ¶

func (*NullableSubscriptionPaymentFailureStripeSDK) UnmarshalJSON ¶

func (v *NullableSubscriptionPaymentFailureStripeSDK) UnmarshalJSON(src []byte) error

func (*NullableSubscriptionPaymentFailureStripeSDK) Unset ¶

type NullableSubscriptionStatus ¶

type NullableSubscriptionStatus struct {
	// contains filtered or unexported fields
}

func NewNullableSubscriptionStatus ¶

func NewNullableSubscriptionStatus(val *SubscriptionStatus) *NullableSubscriptionStatus

func (NullableSubscriptionStatus) Get ¶

func (NullableSubscriptionStatus) IsSet ¶

func (v NullableSubscriptionStatus) IsSet() bool

func (NullableSubscriptionStatus) MarshalJSON ¶

func (v NullableSubscriptionStatus) MarshalJSON() ([]byte, error)

func (*NullableSubscriptionStatus) Set ¶

func (*NullableSubscriptionStatus) UnmarshalJSON ¶

func (v *NullableSubscriptionStatus) UnmarshalJSON(src []byte) error

func (*NullableSubscriptionStatus) Unset ¶

func (v *NullableSubscriptionStatus) Unset()

type NullableTCPHealthCheck ¶

type NullableTCPHealthCheck struct {
	// contains filtered or unexported fields
}

func NewNullableTCPHealthCheck ¶

func NewNullableTCPHealthCheck(val *TCPHealthCheck) *NullableTCPHealthCheck

func (NullableTCPHealthCheck) Get ¶

func (NullableTCPHealthCheck) IsSet ¶

func (v NullableTCPHealthCheck) IsSet() bool

func (NullableTCPHealthCheck) MarshalJSON ¶

func (v NullableTCPHealthCheck) MarshalJSON() ([]byte, error)

func (*NullableTCPHealthCheck) Set ¶

func (*NullableTCPHealthCheck) UnmarshalJSON ¶

func (v *NullableTCPHealthCheck) UnmarshalJSON(src []byte) error

func (*NullableTCPHealthCheck) Unset ¶

func (v *NullableTCPHealthCheck) 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 NullableToken ¶

type NullableToken struct {
	// contains filtered or unexported fields
}

func NewNullableToken ¶

func NewNullableToken(val *Token) *NullableToken

func (NullableToken) Get ¶

func (v NullableToken) Get() *Token

func (NullableToken) IsSet ¶

func (v NullableToken) IsSet() bool

func (NullableToken) MarshalJSON ¶

func (v NullableToken) MarshalJSON() ([]byte, error)

func (*NullableToken) Set ¶

func (v *NullableToken) Set(val *Token)

func (*NullableToken) UnmarshalJSON ¶

func (v *NullableToken) UnmarshalJSON(src []byte) error

func (*NullableToken) Unset ¶

func (v *NullableToken) Unset()

type NullableTriggerDeploymentMetadata ¶

type NullableTriggerDeploymentMetadata struct {
	// contains filtered or unexported fields
}

func (NullableTriggerDeploymentMetadata) Get ¶

func (NullableTriggerDeploymentMetadata) IsSet ¶

func (NullableTriggerDeploymentMetadata) MarshalJSON ¶

func (v NullableTriggerDeploymentMetadata) MarshalJSON() ([]byte, error)

func (*NullableTriggerDeploymentMetadata) Set ¶

func (*NullableTriggerDeploymentMetadata) UnmarshalJSON ¶

func (v *NullableTriggerDeploymentMetadata) UnmarshalJSON(src []byte) error

func (*NullableTriggerDeploymentMetadata) Unset ¶

type NullableTriggerDeploymentMetadataActorType ¶

type NullableTriggerDeploymentMetadataActorType struct {
	// contains filtered or unexported fields
}

func (NullableTriggerDeploymentMetadataActorType) Get ¶

func (NullableTriggerDeploymentMetadataActorType) IsSet ¶

func (NullableTriggerDeploymentMetadataActorType) MarshalJSON ¶

func (*NullableTriggerDeploymentMetadataActorType) Set ¶

func (*NullableTriggerDeploymentMetadataActorType) UnmarshalJSON ¶

func (v *NullableTriggerDeploymentMetadataActorType) UnmarshalJSON(src []byte) error

func (*NullableTriggerDeploymentMetadataActorType) Unset ¶

type NullableTriggerDeploymentMetadataTriggerType ¶

type NullableTriggerDeploymentMetadataTriggerType struct {
	// contains filtered or unexported fields
}

func (NullableTriggerDeploymentMetadataTriggerType) Get ¶

func (NullableTriggerDeploymentMetadataTriggerType) IsSet ¶

func (NullableTriggerDeploymentMetadataTriggerType) MarshalJSON ¶

func (*NullableTriggerDeploymentMetadataTriggerType) Set ¶

func (*NullableTriggerDeploymentMetadataTriggerType) UnmarshalJSON ¶

func (*NullableTriggerDeploymentMetadataTriggerType) Unset ¶

type NullableTriggerGitDeploymentMetadata ¶

type NullableTriggerGitDeploymentMetadata struct {
	// contains filtered or unexported fields
}

func (NullableTriggerGitDeploymentMetadata) Get ¶

func (NullableTriggerGitDeploymentMetadata) IsSet ¶

func (NullableTriggerGitDeploymentMetadata) MarshalJSON ¶

func (v NullableTriggerGitDeploymentMetadata) MarshalJSON() ([]byte, error)

func (*NullableTriggerGitDeploymentMetadata) Set ¶

func (*NullableTriggerGitDeploymentMetadata) UnmarshalJSON ¶

func (v *NullableTriggerGitDeploymentMetadata) UnmarshalJSON(src []byte) error

func (*NullableTriggerGitDeploymentMetadata) Unset ¶

type NullableTriggerGitDeploymentMetadataProvider ¶

type NullableTriggerGitDeploymentMetadataProvider struct {
	// contains filtered or unexported fields
}

func (NullableTriggerGitDeploymentMetadataProvider) Get ¶

func (NullableTriggerGitDeploymentMetadataProvider) IsSet ¶

func (NullableTriggerGitDeploymentMetadataProvider) MarshalJSON ¶

func (*NullableTriggerGitDeploymentMetadataProvider) Set ¶

func (*NullableTriggerGitDeploymentMetadataProvider) UnmarshalJSON ¶

func (*NullableTriggerGitDeploymentMetadataProvider) Unset ¶

type NullableUpdateApp ¶

type NullableUpdateApp struct {
	// contains filtered or unexported fields
}

func NewNullableUpdateApp ¶

func NewNullableUpdateApp(val *UpdateApp) *NullableUpdateApp

func (NullableUpdateApp) Get ¶

func (v NullableUpdateApp) Get() *UpdateApp

func (NullableUpdateApp) IsSet ¶

func (v NullableUpdateApp) IsSet() bool

func (NullableUpdateApp) MarshalJSON ¶

func (v NullableUpdateApp) MarshalJSON() ([]byte, error)

func (*NullableUpdateApp) Set ¶

func (v *NullableUpdateApp) Set(val *UpdateApp)

func (*NullableUpdateApp) UnmarshalJSON ¶

func (v *NullableUpdateApp) UnmarshalJSON(src []byte) error

func (*NullableUpdateApp) Unset ¶

func (v *NullableUpdateApp) Unset()

type NullableUpdateAppReply ¶

type NullableUpdateAppReply struct {
	// contains filtered or unexported fields
}

func NewNullableUpdateAppReply ¶

func NewNullableUpdateAppReply(val *UpdateAppReply) *NullableUpdateAppReply

func (NullableUpdateAppReply) Get ¶

func (NullableUpdateAppReply) IsSet ¶

func (v NullableUpdateAppReply) IsSet() bool

func (NullableUpdateAppReply) MarshalJSON ¶

func (v NullableUpdateAppReply) MarshalJSON() ([]byte, error)

func (*NullableUpdateAppReply) Set ¶

func (*NullableUpdateAppReply) UnmarshalJSON ¶

func (v *NullableUpdateAppReply) UnmarshalJSON(src []byte) error

func (*NullableUpdateAppReply) Unset ¶

func (v *NullableUpdateAppReply) Unset()

type NullableUpdateCredentialReply ¶

type NullableUpdateCredentialReply struct {
	// contains filtered or unexported fields
}

func (NullableUpdateCredentialReply) Get ¶

func (NullableUpdateCredentialReply) IsSet ¶

func (NullableUpdateCredentialReply) MarshalJSON ¶

func (v NullableUpdateCredentialReply) MarshalJSON() ([]byte, error)

func (*NullableUpdateCredentialReply) Set ¶

func (*NullableUpdateCredentialReply) UnmarshalJSON ¶

func (v *NullableUpdateCredentialReply) UnmarshalJSON(src []byte) error

func (*NullableUpdateCredentialReply) Unset ¶

func (v *NullableUpdateCredentialReply) Unset()

type NullableUpdateDomain ¶

type NullableUpdateDomain struct {
	// contains filtered or unexported fields
}

func NewNullableUpdateDomain ¶

func NewNullableUpdateDomain(val *UpdateDomain) *NullableUpdateDomain

func (NullableUpdateDomain) Get ¶

func (NullableUpdateDomain) IsSet ¶

func (v NullableUpdateDomain) IsSet() bool

func (NullableUpdateDomain) MarshalJSON ¶

func (v NullableUpdateDomain) MarshalJSON() ([]byte, error)

func (*NullableUpdateDomain) Set ¶

func (v *NullableUpdateDomain) Set(val *UpdateDomain)

func (*NullableUpdateDomain) UnmarshalJSON ¶

func (v *NullableUpdateDomain) UnmarshalJSON(src []byte) error

func (*NullableUpdateDomain) Unset ¶

func (v *NullableUpdateDomain) Unset()

type NullableUpdateDomainReply ¶

type NullableUpdateDomainReply struct {
	// contains filtered or unexported fields
}

func NewNullableUpdateDomainReply ¶

func NewNullableUpdateDomainReply(val *UpdateDomainReply) *NullableUpdateDomainReply

func (NullableUpdateDomainReply) Get ¶

func (NullableUpdateDomainReply) IsSet ¶

func (v NullableUpdateDomainReply) IsSet() bool

func (NullableUpdateDomainReply) MarshalJSON ¶

func (v NullableUpdateDomainReply) MarshalJSON() ([]byte, error)

func (*NullableUpdateDomainReply) Set ¶

func (*NullableUpdateDomainReply) UnmarshalJSON ¶

func (v *NullableUpdateDomainReply) UnmarshalJSON(src []byte) error

func (*NullableUpdateDomainReply) Unset ¶

func (v *NullableUpdateDomainReply) Unset()

type NullableUpdateOrganizationPlanReply ¶

type NullableUpdateOrganizationPlanReply struct {
	// contains filtered or unexported fields
}

func (NullableUpdateOrganizationPlanReply) Get ¶

func (NullableUpdateOrganizationPlanReply) IsSet ¶

func (NullableUpdateOrganizationPlanReply) MarshalJSON ¶

func (v NullableUpdateOrganizationPlanReply) MarshalJSON() ([]byte, error)

func (*NullableUpdateOrganizationPlanReply) Set ¶

func (*NullableUpdateOrganizationPlanReply) UnmarshalJSON ¶

func (v *NullableUpdateOrganizationPlanReply) UnmarshalJSON(src []byte) error

func (*NullableUpdateOrganizationPlanReply) Unset ¶

type NullableUpdateOrganizationPlanRequest ¶

type NullableUpdateOrganizationPlanRequest struct {
	// contains filtered or unexported fields
}

func (NullableUpdateOrganizationPlanRequest) Get ¶

func (NullableUpdateOrganizationPlanRequest) IsSet ¶

func (NullableUpdateOrganizationPlanRequest) MarshalJSON ¶

func (v NullableUpdateOrganizationPlanRequest) MarshalJSON() ([]byte, error)

func (*NullableUpdateOrganizationPlanRequest) Set ¶

func (*NullableUpdateOrganizationPlanRequest) UnmarshalJSON ¶

func (v *NullableUpdateOrganizationPlanRequest) UnmarshalJSON(src []byte) error

func (*NullableUpdateOrganizationPlanRequest) Unset ¶

type NullableUpdateOrganizationReply ¶

type NullableUpdateOrganizationReply struct {
	// contains filtered or unexported fields
}

func (NullableUpdateOrganizationReply) Get ¶

func (NullableUpdateOrganizationReply) IsSet ¶

func (NullableUpdateOrganizationReply) MarshalJSON ¶

func (v NullableUpdateOrganizationReply) MarshalJSON() ([]byte, error)

func (*NullableUpdateOrganizationReply) Set ¶

func (*NullableUpdateOrganizationReply) UnmarshalJSON ¶

func (v *NullableUpdateOrganizationReply) UnmarshalJSON(src []byte) error

func (*NullableUpdateOrganizationReply) Unset ¶

type NullableUpdatePasswordRequest ¶

type NullableUpdatePasswordRequest struct {
	// contains filtered or unexported fields
}

func (NullableUpdatePasswordRequest) Get ¶

func (NullableUpdatePasswordRequest) IsSet ¶

func (NullableUpdatePasswordRequest) MarshalJSON ¶

func (v NullableUpdatePasswordRequest) MarshalJSON() ([]byte, error)

func (*NullableUpdatePasswordRequest) Set ¶

func (*NullableUpdatePasswordRequest) UnmarshalJSON ¶

func (v *NullableUpdatePasswordRequest) UnmarshalJSON(src []byte) error

func (*NullableUpdatePasswordRequest) Unset ¶

func (v *NullableUpdatePasswordRequest) Unset()

type NullableUpdateSecretReply ¶

type NullableUpdateSecretReply struct {
	// contains filtered or unexported fields
}

func NewNullableUpdateSecretReply ¶

func NewNullableUpdateSecretReply(val *UpdateSecretReply) *NullableUpdateSecretReply

func (NullableUpdateSecretReply) Get ¶

func (NullableUpdateSecretReply) IsSet ¶

func (v NullableUpdateSecretReply) IsSet() bool

func (NullableUpdateSecretReply) MarshalJSON ¶

func (v NullableUpdateSecretReply) MarshalJSON() ([]byte, error)

func (*NullableUpdateSecretReply) Set ¶

func (*NullableUpdateSecretReply) UnmarshalJSON ¶

func (v *NullableUpdateSecretReply) UnmarshalJSON(src []byte) error

func (*NullableUpdateSecretReply) Unset ¶

func (v *NullableUpdateSecretReply) Unset()

type NullableUpdateService ¶

type NullableUpdateService struct {
	// contains filtered or unexported fields
}

func NewNullableUpdateService ¶

func NewNullableUpdateService(val *UpdateService) *NullableUpdateService

func (NullableUpdateService) Get ¶

func (NullableUpdateService) IsSet ¶

func (v NullableUpdateService) IsSet() bool

func (NullableUpdateService) MarshalJSON ¶

func (v NullableUpdateService) MarshalJSON() ([]byte, error)

func (*NullableUpdateService) Set ¶

func (v *NullableUpdateService) Set(val *UpdateService)

func (*NullableUpdateService) UnmarshalJSON ¶

func (v *NullableUpdateService) UnmarshalJSON(src []byte) error

func (*NullableUpdateService) Unset ¶

func (v *NullableUpdateService) Unset()

type NullableUpdateServiceReply ¶

type NullableUpdateServiceReply struct {
	// contains filtered or unexported fields
}

func NewNullableUpdateServiceReply ¶

func NewNullableUpdateServiceReply(val *UpdateServiceReply) *NullableUpdateServiceReply

func (NullableUpdateServiceReply) Get ¶

func (NullableUpdateServiceReply) IsSet ¶

func (v NullableUpdateServiceReply) IsSet() bool

func (NullableUpdateServiceReply) MarshalJSON ¶

func (v NullableUpdateServiceReply) MarshalJSON() ([]byte, error)

func (*NullableUpdateServiceReply) Set ¶

func (*NullableUpdateServiceReply) UnmarshalJSON ¶

func (v *NullableUpdateServiceReply) UnmarshalJSON(src []byte) error

func (*NullableUpdateServiceReply) Unset ¶

func (v *NullableUpdateServiceReply) Unset()

type NullableUpdateUserRequestUserUpdateBody ¶

type NullableUpdateUserRequestUserUpdateBody struct {
	// contains filtered or unexported fields
}

func (NullableUpdateUserRequestUserUpdateBody) Get ¶

func (NullableUpdateUserRequestUserUpdateBody) IsSet ¶

func (NullableUpdateUserRequestUserUpdateBody) MarshalJSON ¶

func (v NullableUpdateUserRequestUserUpdateBody) MarshalJSON() ([]byte, error)

func (*NullableUpdateUserRequestUserUpdateBody) Set ¶

func (*NullableUpdateUserRequestUserUpdateBody) UnmarshalJSON ¶

func (v *NullableUpdateUserRequestUserUpdateBody) UnmarshalJSON(src []byte) error

func (*NullableUpdateUserRequestUserUpdateBody) Unset ¶

type NullableUpsertSignupQualificationReply ¶

type NullableUpsertSignupQualificationReply struct {
	// contains filtered or unexported fields
}

func (NullableUpsertSignupQualificationReply) Get ¶

func (NullableUpsertSignupQualificationReply) IsSet ¶

func (NullableUpsertSignupQualificationReply) MarshalJSON ¶

func (v NullableUpsertSignupQualificationReply) MarshalJSON() ([]byte, error)

func (*NullableUpsertSignupQualificationReply) Set ¶

func (*NullableUpsertSignupQualificationReply) UnmarshalJSON ¶

func (v *NullableUpsertSignupQualificationReply) UnmarshalJSON(src []byte) error

func (*NullableUpsertSignupQualificationReply) Unset ¶

type NullableUpsertSignupQualificationRequest ¶

type NullableUpsertSignupQualificationRequest struct {
	// contains filtered or unexported fields
}

func (NullableUpsertSignupQualificationRequest) Get ¶

func (NullableUpsertSignupQualificationRequest) IsSet ¶

func (NullableUpsertSignupQualificationRequest) MarshalJSON ¶

func (*NullableUpsertSignupQualificationRequest) Set ¶

func (*NullableUpsertSignupQualificationRequest) UnmarshalJSON ¶

func (v *NullableUpsertSignupQualificationRequest) UnmarshalJSON(src []byte) error

func (*NullableUpsertSignupQualificationRequest) Unset ¶

type NullableUsage ¶

type NullableUsage struct {
	// contains filtered or unexported fields
}

func NewNullableUsage ¶

func NewNullableUsage(val *Usage) *NullableUsage

func (NullableUsage) Get ¶

func (v NullableUsage) Get() *Usage

func (NullableUsage) IsSet ¶

func (v NullableUsage) IsSet() bool

func (NullableUsage) MarshalJSON ¶

func (v NullableUsage) MarshalJSON() ([]byte, error)

func (*NullableUsage) Set ¶

func (v *NullableUsage) Set(val *Usage)

func (*NullableUsage) UnmarshalJSON ¶

func (v *NullableUsage) UnmarshalJSON(src []byte) error

func (*NullableUsage) Unset ¶

func (v *NullableUsage) Unset()

type NullableUsageDetails ¶

type NullableUsageDetails struct {
	// contains filtered or unexported fields
}

func NewNullableUsageDetails ¶

func NewNullableUsageDetails(val *UsageDetails) *NullableUsageDetails

func (NullableUsageDetails) Get ¶

func (NullableUsageDetails) IsSet ¶

func (v NullableUsageDetails) IsSet() bool

func (NullableUsageDetails) MarshalJSON ¶

func (v NullableUsageDetails) MarshalJSON() ([]byte, error)

func (*NullableUsageDetails) Set ¶

func (v *NullableUsageDetails) Set(val *UsageDetails)

func (*NullableUsageDetails) UnmarshalJSON ¶

func (v *NullableUsageDetails) UnmarshalJSON(src []byte) error

func (*NullableUsageDetails) Unset ¶

func (v *NullableUsageDetails) Unset()

type NullableUser ¶

type NullableUser struct {
	// contains filtered or unexported fields
}

func NewNullableUser ¶

func NewNullableUser(val *User) *NullableUser

func (NullableUser) Get ¶

func (v NullableUser) Get() *User

func (NullableUser) IsSet ¶

func (v NullableUser) IsSet() bool

func (NullableUser) MarshalJSON ¶

func (v NullableUser) MarshalJSON() ([]byte, error)

func (*NullableUser) Set ¶

func (v *NullableUser) Set(val *User)

func (*NullableUser) UnmarshalJSON ¶

func (v *NullableUser) UnmarshalJSON(src []byte) error

func (*NullableUser) Unset ¶

func (v *NullableUser) Unset()

type NullableUserFlags ¶

type NullableUserFlags struct {
	// contains filtered or unexported fields
}

func NewNullableUserFlags ¶

func NewNullableUserFlags(val *UserFlags) *NullableUserFlags

func (NullableUserFlags) Get ¶

func (v NullableUserFlags) Get() *UserFlags

func (NullableUserFlags) IsSet ¶

func (v NullableUserFlags) IsSet() bool

func (NullableUserFlags) MarshalJSON ¶

func (v NullableUserFlags) MarshalJSON() ([]byte, error)

func (*NullableUserFlags) Set ¶

func (v *NullableUserFlags) Set(val *UserFlags)

func (*NullableUserFlags) UnmarshalJSON ¶

func (v *NullableUserFlags) UnmarshalJSON(src []byte) error

func (*NullableUserFlags) Unset ¶

func (v *NullableUserFlags) Unset()

type NullableUserReply ¶

type NullableUserReply struct {
	// contains filtered or unexported fields
}

func NewNullableUserReply ¶

func NewNullableUserReply(val *UserReply) *NullableUserReply

func (NullableUserReply) Get ¶

func (v NullableUserReply) Get() *UserReply

func (NullableUserReply) IsSet ¶

func (v NullableUserReply) IsSet() bool

func (NullableUserReply) MarshalJSON ¶

func (v NullableUserReply) MarshalJSON() ([]byte, error)

func (*NullableUserReply) Set ¶

func (v *NullableUserReply) Set(val *UserReply)

func (*NullableUserReply) UnmarshalJSON ¶

func (v *NullableUserReply) UnmarshalJSON(src []byte) error

func (*NullableUserReply) Unset ¶

func (v *NullableUserReply) Unset()

type NullableUserRoleRole ¶

type NullableUserRoleRole struct {
	// contains filtered or unexported fields
}

func NewNullableUserRoleRole ¶

func NewNullableUserRoleRole(val *UserRoleRole) *NullableUserRoleRole

func (NullableUserRoleRole) Get ¶

func (NullableUserRoleRole) IsSet ¶

func (v NullableUserRoleRole) IsSet() bool

func (NullableUserRoleRole) MarshalJSON ¶

func (v NullableUserRoleRole) MarshalJSON() ([]byte, error)

func (*NullableUserRoleRole) Set ¶

func (v *NullableUserRoleRole) Set(val *UserRoleRole)

func (*NullableUserRoleRole) UnmarshalJSON ¶

func (v *NullableUserRoleRole) UnmarshalJSON(src []byte) error

func (*NullableUserRoleRole) Unset ¶

func (v *NullableUserRoleRole) Unset()

type NullableVerifyDockerImageReply ¶

type NullableVerifyDockerImageReply struct {
	// contains filtered or unexported fields
}

func (NullableVerifyDockerImageReply) Get ¶

func (NullableVerifyDockerImageReply) IsSet ¶

func (NullableVerifyDockerImageReply) MarshalJSON ¶

func (v NullableVerifyDockerImageReply) MarshalJSON() ([]byte, error)

func (*NullableVerifyDockerImageReply) Set ¶

func (*NullableVerifyDockerImageReply) UnmarshalJSON ¶

func (v *NullableVerifyDockerImageReply) UnmarshalJSON(src []byte) error

func (*NullableVerifyDockerImageReply) Unset ¶

func (v *NullableVerifyDockerImageReply) Unset()

type NullableVerifyDockerImageReplyErrCode ¶

type NullableVerifyDockerImageReplyErrCode struct {
	// contains filtered or unexported fields
}

func (NullableVerifyDockerImageReplyErrCode) Get ¶

func (NullableVerifyDockerImageReplyErrCode) IsSet ¶

func (NullableVerifyDockerImageReplyErrCode) MarshalJSON ¶

func (v NullableVerifyDockerImageReplyErrCode) MarshalJSON() ([]byte, error)

func (*NullableVerifyDockerImageReplyErrCode) Set ¶

func (*NullableVerifyDockerImageReplyErrCode) UnmarshalJSON ¶

func (v *NullableVerifyDockerImageReplyErrCode) UnmarshalJSON(src []byte) error

func (*NullableVerifyDockerImageReplyErrCode) Unset ¶

type OAuthCallbackReply ¶

type OAuthCallbackReply struct {
	Token *Token `json:"token,omitempty"`
}

OAuthCallbackReply struct for OAuthCallbackReply

func NewOAuthCallbackReply ¶

func NewOAuthCallbackReply() *OAuthCallbackReply

NewOAuthCallbackReply instantiates a new OAuthCallbackReply 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 NewOAuthCallbackReplyWithDefaults ¶

func NewOAuthCallbackReplyWithDefaults() *OAuthCallbackReply

NewOAuthCallbackReplyWithDefaults instantiates a new OAuthCallbackReply 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 (*OAuthCallbackReply) GetToken ¶

func (o *OAuthCallbackReply) GetToken() Token

GetToken returns the Token field value if set, zero value otherwise.

func (*OAuthCallbackReply) GetTokenOk ¶

func (o *OAuthCallbackReply) GetTokenOk() (*Token, bool)

GetTokenOk returns a tuple with the Token field value if set, nil otherwise and a boolean to check if the value has been set.

func (*OAuthCallbackReply) HasToken ¶

func (o *OAuthCallbackReply) HasToken() bool

HasToken returns a boolean if a field has been set.

func (OAuthCallbackReply) MarshalJSON ¶

func (o OAuthCallbackReply) MarshalJSON() ([]byte, error)

func (*OAuthCallbackReply) SetToken ¶

func (o *OAuthCallbackReply) SetToken(v Token)

SetToken gets a reference to the given Token and assigns it to the Token field.

type OAuthCallbackRequest ¶

type OAuthCallbackRequest struct {
	State *string `json:"state,omitempty"`
	Code  *string `json:"code,omitempty"`
}

OAuthCallbackRequest struct for OAuthCallbackRequest

func NewOAuthCallbackRequest ¶

func NewOAuthCallbackRequest() *OAuthCallbackRequest

NewOAuthCallbackRequest instantiates a new OAuthCallbackRequest 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 NewOAuthCallbackRequestWithDefaults ¶

func NewOAuthCallbackRequestWithDefaults() *OAuthCallbackRequest

NewOAuthCallbackRequestWithDefaults instantiates a new OAuthCallbackRequest 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 (*OAuthCallbackRequest) GetCode ¶

func (o *OAuthCallbackRequest) GetCode() string

GetCode returns the Code field value if set, zero value otherwise.

func (*OAuthCallbackRequest) GetCodeOk ¶

func (o *OAuthCallbackRequest) GetCodeOk() (*string, 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 (*OAuthCallbackRequest) GetState ¶

func (o *OAuthCallbackRequest) GetState() string

GetState returns the State field value if set, zero value otherwise.

func (*OAuthCallbackRequest) GetStateOk ¶

func (o *OAuthCallbackRequest) GetStateOk() (*string, 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 (*OAuthCallbackRequest) HasCode ¶

func (o *OAuthCallbackRequest) HasCode() bool

HasCode returns a boolean if a field has been set.

func (*OAuthCallbackRequest) HasState ¶

func (o *OAuthCallbackRequest) HasState() bool

HasState returns a boolean if a field has been set.

func (OAuthCallbackRequest) MarshalJSON ¶

func (o OAuthCallbackRequest) MarshalJSON() ([]byte, error)

func (*OAuthCallbackRequest) SetCode ¶

func (o *OAuthCallbackRequest) SetCode(v string)

SetCode gets a reference to the given string and assigns it to the Code field.

func (*OAuthCallbackRequest) SetState ¶

func (o *OAuthCallbackRequest) SetState(v string)

SetState gets a reference to the given string and assigns it to the State field.

type OAuthProvider ¶

type OAuthProvider struct {
	Id    *string `json:"id,omitempty"`
	Url   *string `json:"url,omitempty"`
	State *string `json:"state,omitempty"`
}

OAuthProvider struct for OAuthProvider

func NewOAuthProvider ¶

func NewOAuthProvider() *OAuthProvider

NewOAuthProvider instantiates a new OAuthProvider 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 NewOAuthProviderWithDefaults ¶

func NewOAuthProviderWithDefaults() *OAuthProvider

NewOAuthProviderWithDefaults instantiates a new OAuthProvider 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 (*OAuthProvider) GetId ¶

func (o *OAuthProvider) GetId() string

GetId returns the Id field value if set, zero value otherwise.

func (*OAuthProvider) GetIdOk ¶

func (o *OAuthProvider) 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 (*OAuthProvider) GetState ¶

func (o *OAuthProvider) GetState() string

GetState returns the State field value if set, zero value otherwise.

func (*OAuthProvider) GetStateOk ¶

func (o *OAuthProvider) GetStateOk() (*string, 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 (*OAuthProvider) GetUrl ¶

func (o *OAuthProvider) GetUrl() string

GetUrl returns the Url field value if set, zero value otherwise.

func (*OAuthProvider) GetUrlOk ¶

func (o *OAuthProvider) 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 (*OAuthProvider) HasId ¶

func (o *OAuthProvider) HasId() bool

HasId returns a boolean if a field has been set.

func (*OAuthProvider) HasState ¶

func (o *OAuthProvider) HasState() bool

HasState returns a boolean if a field has been set.

func (*OAuthProvider) HasUrl ¶

func (o *OAuthProvider) HasUrl() bool

HasUrl returns a boolean if a field has been set.

func (OAuthProvider) MarshalJSON ¶

func (o OAuthProvider) MarshalJSON() ([]byte, error)

func (*OAuthProvider) SetId ¶

func (o *OAuthProvider) SetId(v string)

SetId gets a reference to the given string and assigns it to the Id field.

func (*OAuthProvider) SetState ¶

func (o *OAuthProvider) SetState(v string)

SetState gets a reference to the given string and assigns it to the State field.

func (*OAuthProvider) SetUrl ¶

func (o *OAuthProvider) SetUrl(v string)

SetUrl gets a reference to the given string and assigns it to the Url field.

type Object ¶

type Object struct {
	Id       *string                `json:"id,omitempty"`
	Name     *string                `json:"name,omitempty"`
	Type     *string                `json:"type,omitempty"`
	Metadata map[string]interface{} `json:"metadata,omitempty"`
	Deleted  *bool                  `json:"deleted,omitempty"`
}

Object struct for Object

func NewObject ¶

func NewObject() *Object

NewObject instantiates a new Object 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 NewObjectWithDefaults ¶

func NewObjectWithDefaults() *Object

NewObjectWithDefaults instantiates a new Object 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 (*Object) GetDeleted ¶

func (o *Object) GetDeleted() bool

GetDeleted returns the Deleted field value if set, zero value otherwise.

func (*Object) GetDeletedOk ¶

func (o *Object) GetDeletedOk() (*bool, bool)

GetDeletedOk returns a tuple with the Deleted field value if set, nil otherwise and a boolean to check if the value has been set.

func (*Object) GetId ¶

func (o *Object) GetId() string

GetId returns the Id field value if set, zero value otherwise.

func (*Object) GetIdOk ¶

func (o *Object) 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 (*Object) GetMetadata ¶

func (o *Object) GetMetadata() map[string]interface{}

GetMetadata returns the Metadata field value if set, zero value otherwise.

func (*Object) GetMetadataOk ¶

func (o *Object) GetMetadataOk() (map[string]interface{}, bool)

GetMetadataOk returns a tuple with the Metadata field value if set, nil otherwise and a boolean to check if the value has been set.

func (*Object) GetName ¶

func (o *Object) GetName() string

GetName returns the Name field value if set, zero value otherwise.

func (*Object) GetNameOk ¶

func (o *Object) 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 (*Object) GetType ¶

func (o *Object) GetType() string

GetType returns the Type field value if set, zero value otherwise.

func (*Object) GetTypeOk ¶

func (o *Object) 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 (*Object) HasDeleted ¶

func (o *Object) HasDeleted() bool

HasDeleted returns a boolean if a field has been set.

func (*Object) HasId ¶

func (o *Object) HasId() bool

HasId returns a boolean if a field has been set.

func (*Object) HasMetadata ¶

func (o *Object) HasMetadata() bool

HasMetadata returns a boolean if a field has been set.

func (*Object) HasName ¶

func (o *Object) HasName() bool

HasName returns a boolean if a field has been set.

func (*Object) HasType ¶

func (o *Object) HasType() bool

HasType returns a boolean if a field has been set.

func (Object) MarshalJSON ¶

func (o Object) MarshalJSON() ([]byte, error)

func (*Object) SetDeleted ¶

func (o *Object) SetDeleted(v bool)

SetDeleted gets a reference to the given bool and assigns it to the Deleted field.

func (*Object) SetId ¶

func (o *Object) SetId(v string)

SetId gets a reference to the given string and assigns it to the Id field.

func (*Object) SetMetadata ¶

func (o *Object) SetMetadata(v map[string]interface{})

SetMetadata gets a reference to the given map[string]interface{} and assigns it to the Metadata field.

func (*Object) SetName ¶

func (o *Object) SetName(v string)

SetName gets a reference to the given string and assigns it to the Name field.

func (*Object) SetType ¶

func (o *Object) SetType(v string)

SetType gets a reference to the given string and assigns it to the Type field.

type Organization ¶

type Organization struct {
	Id                    *string                         `json:"id,omitempty"`
	Address1              *string                         `json:"address1,omitempty"`
	Address2              *string                         `json:"address2,omitempty"`
	City                  *string                         `json:"city,omitempty"`
	PostalCode            *string                         `json:"postal_code,omitempty"`
	State                 *string                         `json:"state,omitempty"`
	Country               *string                         `json:"country,omitempty"`
	Company               *bool                           `json:"company,omitempty"`
	VatNumber             *string                         `json:"vat_number,omitempty"`
	BillingName           *string                         `json:"billing_name,omitempty"`
	BillingEmail          *string                         `json:"billing_email,omitempty"`
	Name                  *string                         `json:"name,omitempty"`
	Plan                  *Plan                           `json:"plan,omitempty"`
	PlanUpdatedAt         *time.Time                      `json:"plan_updated_at,omitempty"`
	HasPaymentMethod      *bool                           `json:"has_payment_method,omitempty"`
	SubscriptionId        *string                         `json:"subscription_id,omitempty"`
	CurrentSubscriptionId *string                         `json:"current_subscription_id,omitempty"`
	LatestSubscriptionId  *string                         `json:"latest_subscription_id,omitempty"`
	SignupQualification   map[string]interface{}          `json:"signup_qualification,omitempty"`
	Status                *OrganizationStatus             `json:"status,omitempty"`
	StatusMessage         *OrganizationDetailedStatus     `json:"status_message,omitempty"`
	DeactivationReason    *OrganizationDeactivationReason `json:"deactivation_reason,omitempty"`
	Verified              *bool                           `json:"verified,omitempty"`
	QualifiesForHobby23   *bool                           `json:"qualifies_for_hobby23,omitempty"`
	ReprocessAfter        *time.Time                      `json:"reprocess_after,omitempty"`
}

Organization struct for Organization

func NewOrganization ¶

func NewOrganization() *Organization

NewOrganization instantiates a new Organization 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 NewOrganizationWithDefaults ¶

func NewOrganizationWithDefaults() *Organization

NewOrganizationWithDefaults instantiates a new Organization 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 (*Organization) GetAddress1 ¶

func (o *Organization) GetAddress1() string

GetAddress1 returns the Address1 field value if set, zero value otherwise.

func (*Organization) GetAddress1Ok ¶

func (o *Organization) GetAddress1Ok() (*string, bool)

GetAddress1Ok returns a tuple with the Address1 field value if set, nil otherwise and a boolean to check if the value has been set.

func (*Organization) GetAddress2 ¶

func (o *Organization) GetAddress2() string

GetAddress2 returns the Address2 field value if set, zero value otherwise.

func (*Organization) GetAddress2Ok ¶

func (o *Organization) GetAddress2Ok() (*string, bool)

GetAddress2Ok returns a tuple with the Address2 field value if set, nil otherwise and a boolean to check if the value has been set.

func (*Organization) GetBillingEmail ¶

func (o *Organization) GetBillingEmail() string

GetBillingEmail returns the BillingEmail field value if set, zero value otherwise.

func (*Organization) GetBillingEmailOk ¶

func (o *Organization) GetBillingEmailOk() (*string, bool)

GetBillingEmailOk returns a tuple with the BillingEmail field value if set, nil otherwise and a boolean to check if the value has been set.

func (*Organization) GetBillingName ¶

func (o *Organization) GetBillingName() string

GetBillingName returns the BillingName field value if set, zero value otherwise.

func (*Organization) GetBillingNameOk ¶

func (o *Organization) GetBillingNameOk() (*string, bool)

GetBillingNameOk returns a tuple with the BillingName field value if set, nil otherwise and a boolean to check if the value has been set.

func (*Organization) GetCity ¶

func (o *Organization) GetCity() string

GetCity returns the City field value if set, zero value otherwise.

func (*Organization) GetCityOk ¶

func (o *Organization) GetCityOk() (*string, bool)

GetCityOk returns a tuple with the City field value if set, nil otherwise and a boolean to check if the value has been set.

func (*Organization) GetCompany ¶

func (o *Organization) GetCompany() bool

GetCompany returns the Company field value if set, zero value otherwise.

func (*Organization) GetCompanyOk ¶

func (o *Organization) GetCompanyOk() (*bool, bool)

GetCompanyOk returns a tuple with the Company field value if set, nil otherwise and a boolean to check if the value has been set.

func (*Organization) GetCountry ¶

func (o *Organization) GetCountry() string

GetCountry returns the Country field value if set, zero value otherwise.

func (*Organization) GetCountryOk ¶

func (o *Organization) GetCountryOk() (*string, bool)

GetCountryOk returns a tuple with the Country field value if set, nil otherwise and a boolean to check if the value has been set.

func (*Organization) GetCurrentSubscriptionId ¶

func (o *Organization) GetCurrentSubscriptionId() string

GetCurrentSubscriptionId returns the CurrentSubscriptionId field value if set, zero value otherwise.

func (*Organization) GetCurrentSubscriptionIdOk ¶

func (o *Organization) GetCurrentSubscriptionIdOk() (*string, bool)

GetCurrentSubscriptionIdOk returns a tuple with the CurrentSubscriptionId field value if set, nil otherwise and a boolean to check if the value has been set.

func (*Organization) GetDeactivationReason ¶

func (o *Organization) GetDeactivationReason() OrganizationDeactivationReason

GetDeactivationReason returns the DeactivationReason field value if set, zero value otherwise.

func (*Organization) GetDeactivationReasonOk ¶

func (o *Organization) GetDeactivationReasonOk() (*OrganizationDeactivationReason, bool)

GetDeactivationReasonOk returns a tuple with the DeactivationReason field value if set, nil otherwise and a boolean to check if the value has been set.

func (*Organization) GetHasPaymentMethod ¶

func (o *Organization) GetHasPaymentMethod() bool

GetHasPaymentMethod returns the HasPaymentMethod field value if set, zero value otherwise.

func (*Organization) GetHasPaymentMethodOk ¶

func (o *Organization) GetHasPaymentMethodOk() (*bool, bool)

GetHasPaymentMethodOk returns a tuple with the HasPaymentMethod field value if set, nil otherwise and a boolean to check if the value has been set.

func (*Organization) GetId ¶

func (o *Organization) GetId() string

GetId returns the Id field value if set, zero value otherwise.

func (*Organization) GetIdOk ¶

func (o *Organization) 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 (*Organization) GetLatestSubscriptionId ¶

func (o *Organization) GetLatestSubscriptionId() string

GetLatestSubscriptionId returns the LatestSubscriptionId field value if set, zero value otherwise.

func (*Organization) GetLatestSubscriptionIdOk ¶

func (o *Organization) GetLatestSubscriptionIdOk() (*string, bool)

GetLatestSubscriptionIdOk returns a tuple with the LatestSubscriptionId field value if set, nil otherwise and a boolean to check if the value has been set.

func (*Organization) GetName ¶

func (o *Organization) GetName() string

GetName returns the Name field value if set, zero value otherwise.

func (*Organization) GetNameOk ¶

func (o *Organization) 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 (*Organization) GetPlan ¶

func (o *Organization) GetPlan() Plan

GetPlan returns the Plan field value if set, zero value otherwise.

func (*Organization) GetPlanOk ¶

func (o *Organization) GetPlanOk() (*Plan, bool)

GetPlanOk returns a tuple with the Plan field value if set, nil otherwise and a boolean to check if the value has been set.

func (*Organization) GetPlanUpdatedAt ¶

func (o *Organization) GetPlanUpdatedAt() time.Time

GetPlanUpdatedAt returns the PlanUpdatedAt field value if set, zero value otherwise.

func (*Organization) GetPlanUpdatedAtOk ¶

func (o *Organization) GetPlanUpdatedAtOk() (*time.Time, bool)

GetPlanUpdatedAtOk returns a tuple with the PlanUpdatedAt field value if set, nil otherwise and a boolean to check if the value has been set.

func (*Organization) GetPostalCode ¶

func (o *Organization) GetPostalCode() string

GetPostalCode returns the PostalCode field value if set, zero value otherwise.

func (*Organization) GetPostalCodeOk ¶

func (o *Organization) GetPostalCodeOk() (*string, bool)

GetPostalCodeOk returns a tuple with the PostalCode field value if set, nil otherwise and a boolean to check if the value has been set.

func (*Organization) GetQualifiesForHobby23 ¶

func (o *Organization) GetQualifiesForHobby23() bool

GetQualifiesForHobby23 returns the QualifiesForHobby23 field value if set, zero value otherwise.

func (*Organization) GetQualifiesForHobby23Ok ¶

func (o *Organization) GetQualifiesForHobby23Ok() (*bool, bool)

GetQualifiesForHobby23Ok returns a tuple with the QualifiesForHobby23 field value if set, nil otherwise and a boolean to check if the value has been set.

func (*Organization) GetReprocessAfter ¶

func (o *Organization) GetReprocessAfter() time.Time

GetReprocessAfter returns the ReprocessAfter field value if set, zero value otherwise.

func (*Organization) GetReprocessAfterOk ¶

func (o *Organization) GetReprocessAfterOk() (*time.Time, bool)

GetReprocessAfterOk returns a tuple with the ReprocessAfter field value if set, nil otherwise and a boolean to check if the value has been set.

func (*Organization) GetSignupQualification ¶

func (o *Organization) GetSignupQualification() map[string]interface{}

GetSignupQualification returns the SignupQualification field value if set, zero value otherwise.

func (*Organization) GetSignupQualificationOk ¶

func (o *Organization) GetSignupQualificationOk() (map[string]interface{}, bool)

GetSignupQualificationOk returns a tuple with the SignupQualification field value if set, nil otherwise and a boolean to check if the value has been set.

func (*Organization) GetState ¶

func (o *Organization) GetState() string

GetState returns the State field value if set, zero value otherwise.

func (*Organization) GetStateOk ¶

func (o *Organization) GetStateOk() (*string, 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 (*Organization) GetStatus ¶

func (o *Organization) GetStatus() OrganizationStatus

GetStatus returns the Status field value if set, zero value otherwise.

func (*Organization) GetStatusMessage ¶

func (o *Organization) GetStatusMessage() OrganizationDetailedStatus

GetStatusMessage returns the StatusMessage field value if set, zero value otherwise.

func (*Organization) GetStatusMessageOk ¶

func (o *Organization) GetStatusMessageOk() (*OrganizationDetailedStatus, bool)

GetStatusMessageOk returns a tuple with the StatusMessage field value if set, nil otherwise and a boolean to check if the value has been set.

func (*Organization) GetStatusOk ¶

func (o *Organization) GetStatusOk() (*OrganizationStatus, 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 (*Organization) GetSubscriptionId ¶

func (o *Organization) GetSubscriptionId() string

GetSubscriptionId returns the SubscriptionId field value if set, zero value otherwise.

func (*Organization) GetSubscriptionIdOk ¶

func (o *Organization) GetSubscriptionIdOk() (*string, bool)

GetSubscriptionIdOk returns a tuple with the SubscriptionId field value if set, nil otherwise and a boolean to check if the value has been set.

func (*Organization) GetVatNumber ¶

func (o *Organization) GetVatNumber() string

GetVatNumber returns the VatNumber field value if set, zero value otherwise.

func (*Organization) GetVatNumberOk ¶

func (o *Organization) GetVatNumberOk() (*string, bool)

GetVatNumberOk returns a tuple with the VatNumber field value if set, nil otherwise and a boolean to check if the value has been set.

func (*Organization) GetVerified ¶

func (o *Organization) GetVerified() bool

GetVerified returns the Verified field value if set, zero value otherwise.

func (*Organization) GetVerifiedOk ¶

func (o *Organization) GetVerifiedOk() (*bool, bool)

GetVerifiedOk returns a tuple with the Verified field value if set, nil otherwise and a boolean to check if the value has been set.

func (*Organization) HasAddress1 ¶

func (o *Organization) HasAddress1() bool

HasAddress1 returns a boolean if a field has been set.

func (*Organization) HasAddress2 ¶

func (o *Organization) HasAddress2() bool

HasAddress2 returns a boolean if a field has been set.

func (*Organization) HasBillingEmail ¶

func (o *Organization) HasBillingEmail() bool

HasBillingEmail returns a boolean if a field has been set.

func (*Organization) HasBillingName ¶

func (o *Organization) HasBillingName() bool

HasBillingName returns a boolean if a field has been set.

func (*Organization) HasCity ¶

func (o *Organization) HasCity() bool

HasCity returns a boolean if a field has been set.

func (*Organization) HasCompany ¶

func (o *Organization) HasCompany() bool

HasCompany returns a boolean if a field has been set.

func (*Organization) HasCountry ¶

func (o *Organization) HasCountry() bool

HasCountry returns a boolean if a field has been set.

func (*Organization) HasCurrentSubscriptionId ¶

func (o *Organization) HasCurrentSubscriptionId() bool

HasCurrentSubscriptionId returns a boolean if a field has been set.

func (*Organization) HasDeactivationReason ¶

func (o *Organization) HasDeactivationReason() bool

HasDeactivationReason returns a boolean if a field has been set.

func (*Organization) HasHasPaymentMethod ¶

func (o *Organization) HasHasPaymentMethod() bool

HasHasPaymentMethod returns a boolean if a field has been set.

func (*Organization) HasId ¶

func (o *Organization) HasId() bool

HasId returns a boolean if a field has been set.

func (*Organization) HasLatestSubscriptionId ¶

func (o *Organization) HasLatestSubscriptionId() bool

HasLatestSubscriptionId returns a boolean if a field has been set.

func (*Organization) HasName ¶

func (o *Organization) HasName() bool

HasName returns a boolean if a field has been set.

func (*Organization) HasPlan ¶

func (o *Organization) HasPlan() bool

HasPlan returns a boolean if a field has been set.

func (*Organization) HasPlanUpdatedAt ¶

func (o *Organization) HasPlanUpdatedAt() bool

HasPlanUpdatedAt returns a boolean if a field has been set.

func (*Organization) HasPostalCode ¶

func (o *Organization) HasPostalCode() bool

HasPostalCode returns a boolean if a field has been set.

func (*Organization) HasQualifiesForHobby23 ¶

func (o *Organization) HasQualifiesForHobby23() bool

HasQualifiesForHobby23 returns a boolean if a field has been set.

func (*Organization) HasReprocessAfter ¶

func (o *Organization) HasReprocessAfter() bool

HasReprocessAfter returns a boolean if a field has been set.

func (*Organization) HasSignupQualification ¶

func (o *Organization) HasSignupQualification() bool

HasSignupQualification returns a boolean if a field has been set.

func (*Organization) HasState ¶

func (o *Organization) HasState() bool

HasState returns a boolean if a field has been set.

func (*Organization) HasStatus ¶

func (o *Organization) HasStatus() bool

HasStatus returns a boolean if a field has been set.

func (*Organization) HasStatusMessage ¶

func (o *Organization) HasStatusMessage() bool

HasStatusMessage returns a boolean if a field has been set.

func (*Organization) HasSubscriptionId ¶

func (o *Organization) HasSubscriptionId() bool

HasSubscriptionId returns a boolean if a field has been set.

func (*Organization) HasVatNumber ¶

func (o *Organization) HasVatNumber() bool

HasVatNumber returns a boolean if a field has been set.

func (*Organization) HasVerified ¶

func (o *Organization) HasVerified() bool

HasVerified returns a boolean if a field has been set.

func (Organization) MarshalJSON ¶

func (o Organization) MarshalJSON() ([]byte, error)

func (*Organization) SetAddress1 ¶

func (o *Organization) SetAddress1(v string)

SetAddress1 gets a reference to the given string and assigns it to the Address1 field.

func (*Organization) SetAddress2 ¶

func (o *Organization) SetAddress2(v string)

SetAddress2 gets a reference to the given string and assigns it to the Address2 field.

func (*Organization) SetBillingEmail ¶

func (o *Organization) SetBillingEmail(v string)

SetBillingEmail gets a reference to the given string and assigns it to the BillingEmail field.

func (*Organization) SetBillingName ¶

func (o *Organization) SetBillingName(v string)

SetBillingName gets a reference to the given string and assigns it to the BillingName field.

func (*Organization) SetCity ¶

func (o *Organization) SetCity(v string)

SetCity gets a reference to the given string and assigns it to the City field.

func (*Organization) SetCompany ¶

func (o *Organization) SetCompany(v bool)

SetCompany gets a reference to the given bool and assigns it to the Company field.

func (*Organization) SetCountry ¶

func (o *Organization) SetCountry(v string)

SetCountry gets a reference to the given string and assigns it to the Country field.

func (*Organization) SetCurrentSubscriptionId ¶

func (o *Organization) SetCurrentSubscriptionId(v string)

SetCurrentSubscriptionId gets a reference to the given string and assigns it to the CurrentSubscriptionId field.

func (*Organization) SetDeactivationReason ¶

func (o *Organization) SetDeactivationReason(v OrganizationDeactivationReason)

SetDeactivationReason gets a reference to the given OrganizationDeactivationReason and assigns it to the DeactivationReason field.

func (*Organization) SetHasPaymentMethod ¶

func (o *Organization) SetHasPaymentMethod(v bool)

SetHasPaymentMethod gets a reference to the given bool and assigns it to the HasPaymentMethod field.

func (*Organization) SetId ¶

func (o *Organization) SetId(v string)

SetId gets a reference to the given string and assigns it to the Id field.

func (*Organization) SetLatestSubscriptionId ¶

func (o *Organization) SetLatestSubscriptionId(v string)

SetLatestSubscriptionId gets a reference to the given string and assigns it to the LatestSubscriptionId field.

func (*Organization) SetName ¶

func (o *Organization) SetName(v string)

SetName gets a reference to the given string and assigns it to the Name field.

func (*Organization) SetPlan ¶

func (o *Organization) SetPlan(v Plan)

SetPlan gets a reference to the given Plan and assigns it to the Plan field.

func (*Organization) SetPlanUpdatedAt ¶

func (o *Organization) SetPlanUpdatedAt(v time.Time)

SetPlanUpdatedAt gets a reference to the given time.Time and assigns it to the PlanUpdatedAt field.

func (*Organization) SetPostalCode ¶

func (o *Organization) SetPostalCode(v string)

SetPostalCode gets a reference to the given string and assigns it to the PostalCode field.

func (*Organization) SetQualifiesForHobby23 ¶

func (o *Organization) SetQualifiesForHobby23(v bool)

SetQualifiesForHobby23 gets a reference to the given bool and assigns it to the QualifiesForHobby23 field.

func (*Organization) SetReprocessAfter ¶

func (o *Organization) SetReprocessAfter(v time.Time)

SetReprocessAfter gets a reference to the given time.Time and assigns it to the ReprocessAfter field.

func (*Organization) SetSignupQualification ¶

func (o *Organization) SetSignupQualification(v map[string]interface{})

SetSignupQualification gets a reference to the given map[string]interface{} and assigns it to the SignupQualification field.

func (*Organization) SetState ¶

func (o *Organization) SetState(v string)

SetState gets a reference to the given string and assigns it to the State field.

func (*Organization) SetStatus ¶

func (o *Organization) SetStatus(v OrganizationStatus)

SetStatus gets a reference to the given OrganizationStatus and assigns it to the Status field.

func (*Organization) SetStatusMessage ¶

func (o *Organization) SetStatusMessage(v OrganizationDetailedStatus)

SetStatusMessage gets a reference to the given OrganizationDetailedStatus and assigns it to the StatusMessage field.

func (*Organization) SetSubscriptionId ¶

func (o *Organization) SetSubscriptionId(v string)

SetSubscriptionId gets a reference to the given string and assigns it to the SubscriptionId field.

func (*Organization) SetVatNumber ¶

func (o *Organization) SetVatNumber(v string)

SetVatNumber gets a reference to the given string and assigns it to the VatNumber field.

func (*Organization) SetVerified ¶

func (o *Organization) SetVerified(v bool)

SetVerified gets a reference to the given bool and assigns it to the Verified field.

type OrganizationApi ¶

type OrganizationApi interface {

	/*
		CreateOrganization Create organization

		@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
		@return ApiCreateOrganizationRequest
	*/
	CreateOrganization(ctx context.Context) ApiCreateOrganizationRequest

	// CreateOrganizationExecute executes the request
	//  @return CreateOrganizationReply
	CreateOrganizationExecute(r ApiCreateOrganizationRequest) (*CreateOrganizationReply, *http.Response, error)

	/*
		DeactivateOrganization Deactivate an organization

		@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
		@param id
		@return ApiDeactivateOrganizationRequest
	*/
	DeactivateOrganization(ctx context.Context, id string) ApiDeactivateOrganizationRequest

	// DeactivateOrganizationExecute executes the request
	//  @return DeactivateOrganizationReply
	DeactivateOrganizationExecute(r ApiDeactivateOrganizationRequest) (*DeactivateOrganizationReply, *http.Response, error)

	/*
		DeleteOrganization Delete an organization

		@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
		@param id
		@return ApiDeleteOrganizationRequest
	*/
	DeleteOrganization(ctx context.Context, id string) ApiDeleteOrganizationRequest

	// DeleteOrganizationExecute executes the request
	//  @return DeleteOrganizationReply
	DeleteOrganizationExecute(r ApiDeleteOrganizationRequest) (*DeleteOrganizationReply, *http.Response, error)

	/*
		GetGithubInstallation Fetch github installation configuration

		@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
		@return ApiGetGithubInstallationRequest
	*/
	GetGithubInstallation(ctx context.Context) ApiGetGithubInstallationRequest

	// GetGithubInstallationExecute executes the request
	//  @return GetGithubInstallationReply
	GetGithubInstallationExecute(r ApiGetGithubInstallationRequest) (*GetGithubInstallationReply, *http.Response, error)

	/*
		GetOrganization Get organization

		@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
		@param id
		@return ApiGetOrganizationRequest
	*/
	GetOrganization(ctx context.Context, id string) ApiGetOrganizationRequest

	// GetOrganizationExecute executes the request
	//  @return GetOrganizationReply
	GetOrganizationExecute(r ApiGetOrganizationRequest) (*GetOrganizationReply, *http.Response, error)

	/*
		GithubInstallation Start github installation

		@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
		@return ApiGithubInstallationRequest
	*/
	GithubInstallation(ctx context.Context) ApiGithubInstallationRequest

	// GithubInstallationExecute executes the request
	//  @return GithubInstallationReply
	GithubInstallationExecute(r ApiGithubInstallationRequest) (*GithubInstallationReply, *http.Response, error)

	/*
		GithubInstallationCallback Github callback for app installation

		@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
		@return ApiGithubInstallationCallbackRequest
	*/
	GithubInstallationCallback(ctx context.Context) ApiGithubInstallationCallbackRequest

	// GithubInstallationCallbackExecute executes the request
	//  @return map[string]interface{}
	GithubInstallationCallbackExecute(r ApiGithubInstallationCallbackRequest) (map[string]interface{}, *http.Response, error)

	/*
		ReactivateOrganization Reactivate an organization

		@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
		@param id
		@return ApiReactivateOrganizationRequest
	*/
	ReactivateOrganization(ctx context.Context, id string) ApiReactivateOrganizationRequest

	// ReactivateOrganizationExecute executes the request
	//  @return ReactivateOrganizationReply
	ReactivateOrganizationExecute(r ApiReactivateOrganizationRequest) (*ReactivateOrganizationReply, *http.Response, error)

	/*
		SwitchOrganization Switch organization context

		@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
		@param id
		@return ApiSwitchOrganizationRequest
	*/
	SwitchOrganization(ctx context.Context, id string) ApiSwitchOrganizationRequest

	// SwitchOrganizationExecute executes the request
	//  @return LoginReply
	SwitchOrganizationExecute(r ApiSwitchOrganizationRequest) (*LoginReply, *http.Response, error)

	/*
		UpdateOrganization Update organization

		@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
		@param id
		@return ApiUpdateOrganizationRequest
	*/
	UpdateOrganization(ctx context.Context, id string) ApiUpdateOrganizationRequest

	// UpdateOrganizationExecute executes the request
	//  @return UpdateOrganizationReply
	UpdateOrganizationExecute(r ApiUpdateOrganizationRequest) (*UpdateOrganizationReply, *http.Response, error)

	/*
		UpdateOrganization2 Update organization

		@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
		@param id
		@return ApiUpdateOrganization2Request
	*/
	UpdateOrganization2(ctx context.Context, id string) ApiUpdateOrganization2Request

	// UpdateOrganization2Execute executes the request
	//  @return UpdateOrganizationReply
	UpdateOrganization2Execute(r ApiUpdateOrganization2Request) (*UpdateOrganizationReply, *http.Response, error)

	/*
		UpdateOrganizationPlan Update organization plan

		@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
		@param id
		@return ApiUpdateOrganizationPlanRequest
	*/
	UpdateOrganizationPlan(ctx context.Context, id string) ApiUpdateOrganizationPlanRequest

	// UpdateOrganizationPlanExecute executes the request
	//  @return UpdateOrganizationPlanReply
	UpdateOrganizationPlanExecute(r ApiUpdateOrganizationPlanRequest) (*UpdateOrganizationPlanReply, *http.Response, error)

	/*
		UpsertSignupQualification Upsert organization's signup qualification

		@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
		@param id
		@return ApiUpsertSignupQualificationRequest
	*/
	UpsertSignupQualification(ctx context.Context, id string) ApiUpsertSignupQualificationRequest

	// UpsertSignupQualificationExecute executes the request
	//  @return UpsertSignupQualificationReply
	UpsertSignupQualificationExecute(r ApiUpsertSignupQualificationRequest) (*UpsertSignupQualificationReply, *http.Response, error)
}

type OrganizationApiService ¶

type OrganizationApiService service

OrganizationApiService OrganizationApi service

func (*OrganizationApiService) CreateOrganization ¶

CreateOrganization Create organization

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@return ApiCreateOrganizationRequest

func (*OrganizationApiService) CreateOrganizationExecute ¶

Execute executes the request

@return CreateOrganizationReply

func (*OrganizationApiService) DeactivateOrganization ¶

DeactivateOrganization Deactivate an organization

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param id
@return ApiDeactivateOrganizationRequest

func (*OrganizationApiService) DeactivateOrganizationExecute ¶

Execute executes the request

@return DeactivateOrganizationReply

func (*OrganizationApiService) DeleteOrganization ¶

DeleteOrganization Delete an organization

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param id
@return ApiDeleteOrganizationRequest

func (*OrganizationApiService) DeleteOrganizationExecute ¶

Execute executes the request

@return DeleteOrganizationReply

func (*OrganizationApiService) GetGithubInstallation ¶

GetGithubInstallation Fetch github installation configuration

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@return ApiGetGithubInstallationRequest

func (*OrganizationApiService) GetGithubInstallationExecute ¶

Execute executes the request

@return GetGithubInstallationReply

func (*OrganizationApiService) GetOrganization ¶

GetOrganization Get organization

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param id
@return ApiGetOrganizationRequest

func (*OrganizationApiService) GetOrganizationExecute ¶

Execute executes the request

@return GetOrganizationReply

func (*OrganizationApiService) GithubInstallation ¶

GithubInstallation Start github installation

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@return ApiGithubInstallationRequest

func (*OrganizationApiService) GithubInstallationCallback ¶

GithubInstallationCallback Github callback for app installation

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@return ApiGithubInstallationCallbackRequest

func (*OrganizationApiService) GithubInstallationCallbackExecute ¶

func (a *OrganizationApiService) GithubInstallationCallbackExecute(r ApiGithubInstallationCallbackRequest) (map[string]interface{}, *http.Response, error)

Execute executes the request

@return map[string]interface{}

func (*OrganizationApiService) GithubInstallationExecute ¶

Execute executes the request

@return GithubInstallationReply

func (*OrganizationApiService) ReactivateOrganization ¶

ReactivateOrganization Reactivate an organization

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param id
@return ApiReactivateOrganizationRequest

func (*OrganizationApiService) ReactivateOrganizationExecute ¶

Execute executes the request

@return ReactivateOrganizationReply

func (*OrganizationApiService) SwitchOrganization ¶

SwitchOrganization Switch organization context

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param id
@return ApiSwitchOrganizationRequest

func (*OrganizationApiService) SwitchOrganizationExecute ¶

func (a *OrganizationApiService) SwitchOrganizationExecute(r ApiSwitchOrganizationRequest) (*LoginReply, *http.Response, error)

Execute executes the request

@return LoginReply

func (*OrganizationApiService) UpdateOrganization ¶

UpdateOrganization Update organization

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param id
@return ApiUpdateOrganizationRequest

func (*OrganizationApiService) UpdateOrganization2 ¶

UpdateOrganization2 Update organization

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param id
@return ApiUpdateOrganization2Request

func (*OrganizationApiService) UpdateOrganization2Execute ¶

Execute executes the request

@return UpdateOrganizationReply

func (*OrganizationApiService) UpdateOrganizationExecute ¶

Execute executes the request

@return UpdateOrganizationReply

func (*OrganizationApiService) UpdateOrganizationPlan ¶

UpdateOrganizationPlan Update organization plan

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param id
@return ApiUpdateOrganizationPlanRequest

func (*OrganizationApiService) UpdateOrganizationPlanExecute ¶

Execute executes the request

@return UpdateOrganizationPlanReply

func (*OrganizationApiService) UpsertSignupQualification ¶

UpsertSignupQualification Upsert organization's signup qualification

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param id
@return ApiUpsertSignupQualificationRequest

func (*OrganizationApiService) UpsertSignupQualificationExecute ¶

Execute executes the request

@return UpsertSignupQualificationReply

type OrganizationConfirmationsApi ¶

type OrganizationConfirmationsApi interface {

	/*
		ConfirmOrganizationAction Confirm organization action

		@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
		@param id
		@return ApiConfirmOrganizationActionRequest
	*/
	ConfirmOrganizationAction(ctx context.Context, id string) ApiConfirmOrganizationActionRequest

	// ConfirmOrganizationActionExecute executes the request
	//  @return map[string]interface{}
	ConfirmOrganizationActionExecute(r ApiConfirmOrganizationActionRequest) (map[string]interface{}, *http.Response, error)
}

type OrganizationConfirmationsApiService ¶

type OrganizationConfirmationsApiService service

OrganizationConfirmationsApiService OrganizationConfirmationsApi service

func (*OrganizationConfirmationsApiService) ConfirmOrganizationAction ¶

ConfirmOrganizationAction Confirm organization action

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param id
@return ApiConfirmOrganizationActionRequest

func (*OrganizationConfirmationsApiService) ConfirmOrganizationActionExecute ¶

func (a *OrganizationConfirmationsApiService) ConfirmOrganizationActionExecute(r ApiConfirmOrganizationActionRequest) (map[string]interface{}, *http.Response, error)

Execute executes the request

@return map[string]interface{}

type OrganizationDeactivationReason ¶

type OrganizationDeactivationReason string

OrganizationDeactivationReason the model 'OrganizationDeactivationReason'

const (
	ORGANIZATIONDEACTIVATIONREASON_INVALID                  OrganizationDeactivationReason = "INVALID"
	ORGANIZATIONDEACTIVATIONREASON_REQUESTED_BY_OWNER       OrganizationDeactivationReason = "REQUESTED_BY_OWNER"
	ORGANIZATIONDEACTIVATIONREASON_SUBSCRIPTION_TERMINATION OrganizationDeactivationReason = "SUBSCRIPTION_TERMINATION"
	ORGANIZATIONDEACTIVATIONREASON_LOCKED_BY_ADMIN          OrganizationDeactivationReason = "LOCKED_BY_ADMIN"
	ORGANIZATIONDEACTIVATIONREASON_VERIFICATION_FAILED      OrganizationDeactivationReason = "VERIFICATION_FAILED"
)

List of Organization.DeactivationReason

func NewOrganizationDeactivationReasonFromValue ¶

func NewOrganizationDeactivationReasonFromValue(v string) (*OrganizationDeactivationReason, error)

NewOrganizationDeactivationReasonFromValue returns a pointer to a valid OrganizationDeactivationReason for the value passed as argument, or an error if the value passed is not allowed by the enum

func (OrganizationDeactivationReason) IsValid ¶

IsValid return true if the value is valid for the enum, false otherwise

func (OrganizationDeactivationReason) Ptr ¶

Ptr returns reference to Organization.DeactivationReason value

func (*OrganizationDeactivationReason) UnmarshalJSON ¶

func (v *OrganizationDeactivationReason) UnmarshalJSON(src []byte) error

type OrganizationDetailedStatus ¶

type OrganizationDetailedStatus string

OrganizationDetailedStatus the model 'OrganizationDetailedStatus'

const (
	ORGANIZATIONDETAILEDSTATUS_NEW                   OrganizationDetailedStatus = "NEW"
	ORGANIZATIONDETAILEDSTATUS_EMAIL_NOT_VALIDATED   OrganizationDetailedStatus = "EMAIL_NOT_VALIDATED"
	ORGANIZATIONDETAILEDSTATUS_BILLING_INFO_MISSING  OrganizationDetailedStatus = "BILLING_INFO_MISSING"
	ORGANIZATIONDETAILEDSTATUS_LOCKED                OrganizationDetailedStatus = "LOCKED"
	ORGANIZATIONDETAILEDSTATUS_PAYMENT_FAILURE       OrganizationDetailedStatus = "PAYMENT_FAILURE"
	ORGANIZATIONDETAILEDSTATUS_VALID                 OrganizationDetailedStatus = "VALID"
	ORGANIZATIONDETAILEDSTATUS_PENDING_VERIFICATION  OrganizationDetailedStatus = "PENDING_VERIFICATION"
	ORGANIZATIONDETAILEDSTATUS_VERIFICATION_FAILED   OrganizationDetailedStatus = "VERIFICATION_FAILED"
	ORGANIZATIONDETAILEDSTATUS_REVIEWING_ACCOUNT     OrganizationDetailedStatus = "REVIEWING_ACCOUNT"
	ORGANIZATIONDETAILEDSTATUS_PLAN_UPGRADE_REQUIRED OrganizationDetailedStatus = "PLAN_UPGRADE_REQUIRED"
)

List of OrganizationDetailedStatus

func NewOrganizationDetailedStatusFromValue ¶

func NewOrganizationDetailedStatusFromValue(v string) (*OrganizationDetailedStatus, error)

NewOrganizationDetailedStatusFromValue returns a pointer to a valid OrganizationDetailedStatus for the value passed as argument, or an error if the value passed is not allowed by the enum

func (OrganizationDetailedStatus) IsValid ¶

func (v OrganizationDetailedStatus) IsValid() bool

IsValid return true if the value is valid for the enum, false otherwise

func (OrganizationDetailedStatus) Ptr ¶

Ptr returns reference to OrganizationDetailedStatus value

func (*OrganizationDetailedStatus) UnmarshalJSON ¶

func (v *OrganizationDetailedStatus) UnmarshalJSON(src []byte) error

type OrganizationInvitation ¶

type OrganizationInvitation struct {
	Id             *string                       `json:"id,omitempty"`
	Email          *string                       `json:"email,omitempty"`
	Role           *UserRoleRole                 `json:"role,omitempty"`
	Status         *OrganizationInvitationStatus `json:"status,omitempty"`
	ExpiresAt      *time.Time                    `json:"expires_at,omitempty"`
	OrganizationId *string                       `json:"organization_id,omitempty"`
	Organization   *PublicOrganization           `json:"organization,omitempty"`
	InviteeId      *string                       `json:"invitee_id,omitempty"`
	Invitee        *PublicUser                   `json:"invitee,omitempty"`
	InviterId      *string                       `json:"inviter_id,omitempty"`
	Inviter        *PublicUser                   `json:"inviter,omitempty"`
}

OrganizationInvitation struct for OrganizationInvitation

func NewOrganizationInvitation ¶

func NewOrganizationInvitation() *OrganizationInvitation

NewOrganizationInvitation instantiates a new OrganizationInvitation 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 NewOrganizationInvitationWithDefaults ¶

func NewOrganizationInvitationWithDefaults() *OrganizationInvitation

NewOrganizationInvitationWithDefaults instantiates a new OrganizationInvitation 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 (*OrganizationInvitation) GetEmail ¶

func (o *OrganizationInvitation) GetEmail() string

GetEmail returns the Email field value if set, zero value otherwise.

func (*OrganizationInvitation) GetEmailOk ¶

func (o *OrganizationInvitation) GetEmailOk() (*string, bool)

GetEmailOk returns a tuple with the Email field value if set, nil otherwise and a boolean to check if the value has been set.

func (*OrganizationInvitation) GetExpiresAt ¶

func (o *OrganizationInvitation) GetExpiresAt() time.Time

GetExpiresAt returns the ExpiresAt field value if set, zero value otherwise.

func (*OrganizationInvitation) GetExpiresAtOk ¶

func (o *OrganizationInvitation) GetExpiresAtOk() (*time.Time, bool)

GetExpiresAtOk returns a tuple with the ExpiresAt field value if set, nil otherwise and a boolean to check if the value has been set.

func (*OrganizationInvitation) GetId ¶

func (o *OrganizationInvitation) GetId() string

GetId returns the Id field value if set, zero value otherwise.

func (*OrganizationInvitation) GetIdOk ¶

func (o *OrganizationInvitation) 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 (*OrganizationInvitation) GetInvitee ¶

func (o *OrganizationInvitation) GetInvitee() PublicUser

GetInvitee returns the Invitee field value if set, zero value otherwise.

func (*OrganizationInvitation) GetInviteeId ¶

func (o *OrganizationInvitation) GetInviteeId() string

GetInviteeId returns the InviteeId field value if set, zero value otherwise.

func (*OrganizationInvitation) GetInviteeIdOk ¶

func (o *OrganizationInvitation) GetInviteeIdOk() (*string, bool)

GetInviteeIdOk returns a tuple with the InviteeId field value if set, nil otherwise and a boolean to check if the value has been set.

func (*OrganizationInvitation) GetInviteeOk ¶

func (o *OrganizationInvitation) GetInviteeOk() (*PublicUser, bool)

GetInviteeOk returns a tuple with the Invitee field value if set, nil otherwise and a boolean to check if the value has been set.

func (*OrganizationInvitation) GetInviter ¶

func (o *OrganizationInvitation) GetInviter() PublicUser

GetInviter returns the Inviter field value if set, zero value otherwise.

func (*OrganizationInvitation) GetInviterId ¶

func (o *OrganizationInvitation) GetInviterId() string

GetInviterId returns the InviterId field value if set, zero value otherwise.

func (*OrganizationInvitation) GetInviterIdOk ¶

func (o *OrganizationInvitation) GetInviterIdOk() (*string, bool)

GetInviterIdOk returns a tuple with the InviterId field value if set, nil otherwise and a boolean to check if the value has been set.

func (*OrganizationInvitation) GetInviterOk ¶

func (o *OrganizationInvitation) GetInviterOk() (*PublicUser, bool)

GetInviterOk returns a tuple with the Inviter field value if set, nil otherwise and a boolean to check if the value has been set.

func (*OrganizationInvitation) GetOrganization ¶

func (o *OrganizationInvitation) GetOrganization() PublicOrganization

GetOrganization returns the Organization field value if set, zero value otherwise.

func (*OrganizationInvitation) GetOrganizationId ¶

func (o *OrganizationInvitation) GetOrganizationId() string

GetOrganizationId returns the OrganizationId field value if set, zero value otherwise.

func (*OrganizationInvitation) GetOrganizationIdOk ¶

func (o *OrganizationInvitation) GetOrganizationIdOk() (*string, bool)

GetOrganizationIdOk returns a tuple with the OrganizationId field value if set, nil otherwise and a boolean to check if the value has been set.

func (*OrganizationInvitation) GetOrganizationOk ¶

func (o *OrganizationInvitation) GetOrganizationOk() (*PublicOrganization, bool)

GetOrganizationOk returns a tuple with the Organization field value if set, nil otherwise and a boolean to check if the value has been set.

func (*OrganizationInvitation) GetRole ¶

func (o *OrganizationInvitation) GetRole() UserRoleRole

GetRole returns the Role field value if set, zero value otherwise.

func (*OrganizationInvitation) GetRoleOk ¶

func (o *OrganizationInvitation) GetRoleOk() (*UserRoleRole, bool)

GetRoleOk returns a tuple with the Role field value if set, nil otherwise and a boolean to check if the value has been set.

func (*OrganizationInvitation) GetStatus ¶

GetStatus returns the Status field value if set, zero value otherwise.

func (*OrganizationInvitation) GetStatusOk ¶

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 (*OrganizationInvitation) HasEmail ¶

func (o *OrganizationInvitation) HasEmail() bool

HasEmail returns a boolean if a field has been set.

func (*OrganizationInvitation) HasExpiresAt ¶

func (o *OrganizationInvitation) HasExpiresAt() bool

HasExpiresAt returns a boolean if a field has been set.

func (*OrganizationInvitation) HasId ¶

func (o *OrganizationInvitation) HasId() bool

HasId returns a boolean if a field has been set.

func (*OrganizationInvitation) HasInvitee ¶

func (o *OrganizationInvitation) HasInvitee() bool

HasInvitee returns a boolean if a field has been set.

func (*OrganizationInvitation) HasInviteeId ¶

func (o *OrganizationInvitation) HasInviteeId() bool

HasInviteeId returns a boolean if a field has been set.

func (*OrganizationInvitation) HasInviter ¶

func (o *OrganizationInvitation) HasInviter() bool

HasInviter returns a boolean if a field has been set.

func (*OrganizationInvitation) HasInviterId ¶

func (o *OrganizationInvitation) HasInviterId() bool

HasInviterId returns a boolean if a field has been set.

func (*OrganizationInvitation) HasOrganization ¶

func (o *OrganizationInvitation) HasOrganization() bool

HasOrganization returns a boolean if a field has been set.

func (*OrganizationInvitation) HasOrganizationId ¶

func (o *OrganizationInvitation) HasOrganizationId() bool

HasOrganizationId returns a boolean if a field has been set.

func (*OrganizationInvitation) HasRole ¶

func (o *OrganizationInvitation) HasRole() bool

HasRole returns a boolean if a field has been set.

func (*OrganizationInvitation) HasStatus ¶

func (o *OrganizationInvitation) HasStatus() bool

HasStatus returns a boolean if a field has been set.

func (OrganizationInvitation) MarshalJSON ¶

func (o OrganizationInvitation) MarshalJSON() ([]byte, error)

func (*OrganizationInvitation) SetEmail ¶

func (o *OrganizationInvitation) SetEmail(v string)

SetEmail gets a reference to the given string and assigns it to the Email field.

func (*OrganizationInvitation) SetExpiresAt ¶

func (o *OrganizationInvitation) SetExpiresAt(v time.Time)

SetExpiresAt gets a reference to the given time.Time and assigns it to the ExpiresAt field.

func (*OrganizationInvitation) SetId ¶

func (o *OrganizationInvitation) SetId(v string)

SetId gets a reference to the given string and assigns it to the Id field.

func (*OrganizationInvitation) SetInvitee ¶

func (o *OrganizationInvitation) SetInvitee(v PublicUser)

SetInvitee gets a reference to the given PublicUser and assigns it to the Invitee field.

func (*OrganizationInvitation) SetInviteeId ¶

func (o *OrganizationInvitation) SetInviteeId(v string)

SetInviteeId gets a reference to the given string and assigns it to the InviteeId field.

func (*OrganizationInvitation) SetInviter ¶

func (o *OrganizationInvitation) SetInviter(v PublicUser)

SetInviter gets a reference to the given PublicUser and assigns it to the Inviter field.

func (*OrganizationInvitation) SetInviterId ¶

func (o *OrganizationInvitation) SetInviterId(v string)

SetInviterId gets a reference to the given string and assigns it to the InviterId field.

func (*OrganizationInvitation) SetOrganization ¶

func (o *OrganizationInvitation) SetOrganization(v PublicOrganization)

SetOrganization gets a reference to the given PublicOrganization and assigns it to the Organization field.

func (*OrganizationInvitation) SetOrganizationId ¶

func (o *OrganizationInvitation) SetOrganizationId(v string)

SetOrganizationId gets a reference to the given string and assigns it to the OrganizationId field.

func (*OrganizationInvitation) SetRole ¶

func (o *OrganizationInvitation) SetRole(v UserRoleRole)

SetRole gets a reference to the given UserRoleRole and assigns it to the Role field.

func (*OrganizationInvitation) SetStatus ¶

SetStatus gets a reference to the given OrganizationInvitationStatus and assigns it to the Status field.

type OrganizationInvitationStatus ¶

type OrganizationInvitationStatus string

OrganizationInvitationStatus the model 'OrganizationInvitationStatus'

const (
	ORGANIZATIONINVITATIONSTATUS_INVALID  OrganizationInvitationStatus = "INVALID"
	ORGANIZATIONINVITATIONSTATUS_PENDING  OrganizationInvitationStatus = "PENDING"
	ORGANIZATIONINVITATIONSTATUS_ACCEPTED OrganizationInvitationStatus = "ACCEPTED"
	ORGANIZATIONINVITATIONSTATUS_REFUSED  OrganizationInvitationStatus = "REFUSED"
	ORGANIZATIONINVITATIONSTATUS_EXPIRED  OrganizationInvitationStatus = "EXPIRED"
)

List of OrganizationInvitation.Status

func NewOrganizationInvitationStatusFromValue ¶

func NewOrganizationInvitationStatusFromValue(v string) (*OrganizationInvitationStatus, error)

NewOrganizationInvitationStatusFromValue returns a pointer to a valid OrganizationInvitationStatus for the value passed as argument, or an error if the value passed is not allowed by the enum

func (OrganizationInvitationStatus) IsValid ¶

func (v OrganizationInvitationStatus) IsValid() bool

IsValid return true if the value is valid for the enum, false otherwise

func (OrganizationInvitationStatus) Ptr ¶

Ptr returns reference to OrganizationInvitation.Status value

func (*OrganizationInvitationStatus) UnmarshalJSON ¶

func (v *OrganizationInvitationStatus) UnmarshalJSON(src []byte) error

type OrganizationInvitationsApi ¶

type OrganizationInvitationsApi interface {

	/*
		CreateOrganizationInvitation Method for CreateOrganizationInvitation

		@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
		@return ApiCreateOrganizationInvitationRequest
	*/
	CreateOrganizationInvitation(ctx context.Context) ApiCreateOrganizationInvitationRequest

	// CreateOrganizationInvitationExecute executes the request
	//  @return CreateOrganizationInvitationReply
	CreateOrganizationInvitationExecute(r ApiCreateOrganizationInvitationRequest) (*CreateOrganizationInvitationReply, *http.Response, error)

	/*
		DeleteOrganizationInvitation Method for DeleteOrganizationInvitation

		@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
		@param id The id of the organization invitation to delete
		@return ApiDeleteOrganizationInvitationRequest
	*/
	DeleteOrganizationInvitation(ctx context.Context, id string) ApiDeleteOrganizationInvitationRequest

	// DeleteOrganizationInvitationExecute executes the request
	//  @return map[string]interface{}
	DeleteOrganizationInvitationExecute(r ApiDeleteOrganizationInvitationRequest) (map[string]interface{}, *http.Response, error)

	/*
		GetOrganizationInvitation Method for GetOrganizationInvitation

		@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
		@param id The id of the invitation to get
		@return ApiGetOrganizationInvitationRequest
	*/
	GetOrganizationInvitation(ctx context.Context, id string) ApiGetOrganizationInvitationRequest

	// GetOrganizationInvitationExecute executes the request
	//  @return GetOrganizationInvitationReply
	GetOrganizationInvitationExecute(r ApiGetOrganizationInvitationRequest) (*GetOrganizationInvitationReply, *http.Response, error)

	/*
		ListOrganizationInvitations Method for ListOrganizationInvitations

		@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
		@return ApiListOrganizationInvitationsRequest
	*/
	ListOrganizationInvitations(ctx context.Context) ApiListOrganizationInvitationsRequest

	// ListOrganizationInvitationsExecute executes the request
	//  @return ListOrganizationInvitationsReply
	ListOrganizationInvitationsExecute(r ApiListOrganizationInvitationsRequest) (*ListOrganizationInvitationsReply, *http.Response, error)

	/*
		ResendOrganizationInvitation Method for ResendOrganizationInvitation

		@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
		@param id The id of the organization invitation to resend
		@return ApiResendOrganizationInvitationRequest
	*/
	ResendOrganizationInvitation(ctx context.Context, id string) ApiResendOrganizationInvitationRequest

	// ResendOrganizationInvitationExecute executes the request
	//  @return ResendOrganizationInvitationReply
	ResendOrganizationInvitationExecute(r ApiResendOrganizationInvitationRequest) (*ResendOrganizationInvitationReply, *http.Response, error)
}

type OrganizationInvitationsApiService ¶

type OrganizationInvitationsApiService service

OrganizationInvitationsApiService OrganizationInvitationsApi service

func (*OrganizationInvitationsApiService) CreateOrganizationInvitation ¶

CreateOrganizationInvitation Method for CreateOrganizationInvitation

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@return ApiCreateOrganizationInvitationRequest

func (*OrganizationInvitationsApiService) CreateOrganizationInvitationExecute ¶

Execute executes the request

@return CreateOrganizationInvitationReply

func (*OrganizationInvitationsApiService) DeleteOrganizationInvitation ¶

DeleteOrganizationInvitation Method for DeleteOrganizationInvitation

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param id The id of the organization invitation to delete
@return ApiDeleteOrganizationInvitationRequest

func (*OrganizationInvitationsApiService) DeleteOrganizationInvitationExecute ¶

func (a *OrganizationInvitationsApiService) DeleteOrganizationInvitationExecute(r ApiDeleteOrganizationInvitationRequest) (map[string]interface{}, *http.Response, error)

Execute executes the request

@return map[string]interface{}

func (*OrganizationInvitationsApiService) GetOrganizationInvitation ¶

GetOrganizationInvitation Method for GetOrganizationInvitation

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param id The id of the invitation to get
@return ApiGetOrganizationInvitationRequest

func (*OrganizationInvitationsApiService) GetOrganizationInvitationExecute ¶

Execute executes the request

@return GetOrganizationInvitationReply

func (*OrganizationInvitationsApiService) ListOrganizationInvitations ¶

ListOrganizationInvitations Method for ListOrganizationInvitations

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@return ApiListOrganizationInvitationsRequest

func (*OrganizationInvitationsApiService) ListOrganizationInvitationsExecute ¶

Execute executes the request

@return ListOrganizationInvitationsReply

func (*OrganizationInvitationsApiService) ResendOrganizationInvitation ¶

ResendOrganizationInvitation Method for ResendOrganizationInvitation

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param id The id of the organization invitation to resend
@return ApiResendOrganizationInvitationRequest

func (*OrganizationInvitationsApiService) ResendOrganizationInvitationExecute ¶

Execute executes the request

@return ResendOrganizationInvitationReply

type OrganizationMember ¶

type OrganizationMember struct {
	Id             *string                   `json:"id,omitempty"`
	OrganizationId *string                   `json:"organization_id,omitempty"`
	UserId         *string                   `json:"user_id,omitempty"`
	JoinedAt       *time.Time                `json:"joined_at,omitempty"`
	Role           *UserRoleRole             `json:"role,omitempty"`
	Status         *OrganizationMemberStatus `json:"status,omitempty"`
	User           *PublicUser               `json:"user,omitempty"`
	Organization   *PublicOrganization       `json:"organization,omitempty"`
}

OrganizationMember struct for OrganizationMember

func NewOrganizationMember ¶

func NewOrganizationMember() *OrganizationMember

NewOrganizationMember instantiates a new OrganizationMember 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 NewOrganizationMemberWithDefaults ¶

func NewOrganizationMemberWithDefaults() *OrganizationMember

NewOrganizationMemberWithDefaults instantiates a new OrganizationMember 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 (*OrganizationMember) GetId ¶

func (o *OrganizationMember) GetId() string

GetId returns the Id field value if set, zero value otherwise.

func (*OrganizationMember) GetIdOk ¶

func (o *OrganizationMember) 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 (*OrganizationMember) GetJoinedAt ¶

func (o *OrganizationMember) GetJoinedAt() time.Time

GetJoinedAt returns the JoinedAt field value if set, zero value otherwise.

func (*OrganizationMember) GetJoinedAtOk ¶

func (o *OrganizationMember) GetJoinedAtOk() (*time.Time, bool)

GetJoinedAtOk returns a tuple with the JoinedAt field value if set, nil otherwise and a boolean to check if the value has been set.

func (*OrganizationMember) GetOrganization ¶

func (o *OrganizationMember) GetOrganization() PublicOrganization

GetOrganization returns the Organization field value if set, zero value otherwise.

func (*OrganizationMember) GetOrganizationId ¶

func (o *OrganizationMember) GetOrganizationId() string

GetOrganizationId returns the OrganizationId field value if set, zero value otherwise.

func (*OrganizationMember) GetOrganizationIdOk ¶

func (o *OrganizationMember) GetOrganizationIdOk() (*string, bool)

GetOrganizationIdOk returns a tuple with the OrganizationId field value if set, nil otherwise and a boolean to check if the value has been set.

func (*OrganizationMember) GetOrganizationOk ¶

func (o *OrganizationMember) GetOrganizationOk() (*PublicOrganization, bool)

GetOrganizationOk returns a tuple with the Organization field value if set, nil otherwise and a boolean to check if the value has been set.

func (*OrganizationMember) GetRole ¶

func (o *OrganizationMember) GetRole() UserRoleRole

GetRole returns the Role field value if set, zero value otherwise.

func (*OrganizationMember) GetRoleOk ¶

func (o *OrganizationMember) GetRoleOk() (*UserRoleRole, bool)

GetRoleOk returns a tuple with the Role field value if set, nil otherwise and a boolean to check if the value has been set.

func (*OrganizationMember) GetStatus ¶

GetStatus returns the Status field value if set, zero value otherwise.

func (*OrganizationMember) GetStatusOk ¶

func (o *OrganizationMember) GetStatusOk() (*OrganizationMemberStatus, 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 (*OrganizationMember) GetUser ¶

func (o *OrganizationMember) GetUser() PublicUser

GetUser returns the User field value if set, zero value otherwise.

func (*OrganizationMember) GetUserId ¶

func (o *OrganizationMember) GetUserId() string

GetUserId returns the UserId field value if set, zero value otherwise.

func (*OrganizationMember) GetUserIdOk ¶

func (o *OrganizationMember) GetUserIdOk() (*string, bool)

GetUserIdOk returns a tuple with the UserId field value if set, nil otherwise and a boolean to check if the value has been set.

func (*OrganizationMember) GetUserOk ¶

func (o *OrganizationMember) GetUserOk() (*PublicUser, bool)

GetUserOk returns a tuple with the User field value if set, nil otherwise and a boolean to check if the value has been set.

func (*OrganizationMember) HasId ¶

func (o *OrganizationMember) HasId() bool

HasId returns a boolean if a field has been set.

func (*OrganizationMember) HasJoinedAt ¶

func (o *OrganizationMember) HasJoinedAt() bool

HasJoinedAt returns a boolean if a field has been set.

func (*OrganizationMember) HasOrganization ¶

func (o *OrganizationMember) HasOrganization() bool

HasOrganization returns a boolean if a field has been set.

func (*OrganizationMember) HasOrganizationId ¶

func (o *OrganizationMember) HasOrganizationId() bool

HasOrganizationId returns a boolean if a field has been set.

func (*OrganizationMember) HasRole ¶

func (o *OrganizationMember) HasRole() bool

HasRole returns a boolean if a field has been set.

func (*OrganizationMember) HasStatus ¶

func (o *OrganizationMember) HasStatus() bool

HasStatus returns a boolean if a field has been set.

func (*OrganizationMember) HasUser ¶

func (o *OrganizationMember) HasUser() bool

HasUser returns a boolean if a field has been set.

func (*OrganizationMember) HasUserId ¶

func (o *OrganizationMember) HasUserId() bool

HasUserId returns a boolean if a field has been set.

func (OrganizationMember) MarshalJSON ¶

func (o OrganizationMember) MarshalJSON() ([]byte, error)

func (*OrganizationMember) SetId ¶

func (o *OrganizationMember) SetId(v string)

SetId gets a reference to the given string and assigns it to the Id field.

func (*OrganizationMember) SetJoinedAt ¶

func (o *OrganizationMember) SetJoinedAt(v time.Time)

SetJoinedAt gets a reference to the given time.Time and assigns it to the JoinedAt field.

func (*OrganizationMember) SetOrganization ¶

func (o *OrganizationMember) SetOrganization(v PublicOrganization)

SetOrganization gets a reference to the given PublicOrganization and assigns it to the Organization field.

func (*OrganizationMember) SetOrganizationId ¶

func (o *OrganizationMember) SetOrganizationId(v string)

SetOrganizationId gets a reference to the given string and assigns it to the OrganizationId field.

func (*OrganizationMember) SetRole ¶

func (o *OrganizationMember) SetRole(v UserRoleRole)

SetRole gets a reference to the given UserRoleRole and assigns it to the Role field.

func (*OrganizationMember) SetStatus ¶

SetStatus gets a reference to the given OrganizationMemberStatus and assigns it to the Status field.

func (*OrganizationMember) SetUser ¶

func (o *OrganizationMember) SetUser(v PublicUser)

SetUser gets a reference to the given PublicUser and assigns it to the User field.

func (*OrganizationMember) SetUserId ¶

func (o *OrganizationMember) SetUserId(v string)

SetUserId gets a reference to the given string and assigns it to the UserId field.

type OrganizationMemberStatus ¶

type OrganizationMemberStatus string

OrganizationMemberStatus the model 'OrganizationMemberStatus'

const (
	ORGANIZATIONMEMBERSTATUS_INVALID OrganizationMemberStatus = "INVALID"
	ORGANIZATIONMEMBERSTATUS_ACTIVE  OrganizationMemberStatus = "ACTIVE"
	ORGANIZATIONMEMBERSTATUS_DELETED OrganizationMemberStatus = "DELETED"
)

List of OrganizationMember.Status

func NewOrganizationMemberStatusFromValue ¶

func NewOrganizationMemberStatusFromValue(v string) (*OrganizationMemberStatus, error)

NewOrganizationMemberStatusFromValue returns a pointer to a valid OrganizationMemberStatus for the value passed as argument, or an error if the value passed is not allowed by the enum

func (OrganizationMemberStatus) IsValid ¶

func (v OrganizationMemberStatus) IsValid() bool

IsValid return true if the value is valid for the enum, false otherwise

func (OrganizationMemberStatus) Ptr ¶

Ptr returns reference to OrganizationMember.Status value

func (*OrganizationMemberStatus) UnmarshalJSON ¶

func (v *OrganizationMemberStatus) UnmarshalJSON(src []byte) error

type OrganizationMembersApi ¶

type OrganizationMembersApi interface {

	/*
		ListOrganizationMembers List organization members

		@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
		@return ApiListOrganizationMembersRequest
	*/
	ListOrganizationMembers(ctx context.Context) ApiListOrganizationMembersRequest

	// ListOrganizationMembersExecute executes the request
	//  @return ListOrganizationMembersReply
	ListOrganizationMembersExecute(r ApiListOrganizationMembersRequest) (*ListOrganizationMembersReply, *http.Response, error)

	/*
		RemoveOrganizationMember Remove an organization member

		@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
		@param id
		@return ApiRemoveOrganizationMemberRequest
	*/
	RemoveOrganizationMember(ctx context.Context, id string) ApiRemoveOrganizationMemberRequest

	// RemoveOrganizationMemberExecute executes the request
	//  @return RemoveOrganizationMemberReply
	RemoveOrganizationMemberExecute(r ApiRemoveOrganizationMemberRequest) (*RemoveOrganizationMemberReply, *http.Response, error)
}

type OrganizationMembersApiService ¶

type OrganizationMembersApiService service

OrganizationMembersApiService OrganizationMembersApi service

func (*OrganizationMembersApiService) ListOrganizationMembers ¶

ListOrganizationMembers List organization members

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@return ApiListOrganizationMembersRequest

func (*OrganizationMembersApiService) ListOrganizationMembersExecute ¶

Execute executes the request

@return ListOrganizationMembersReply

func (*OrganizationMembersApiService) RemoveOrganizationMember ¶

RemoveOrganizationMember Remove an organization member

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param id
@return ApiRemoveOrganizationMemberRequest

func (*OrganizationMembersApiService) RemoveOrganizationMemberExecute ¶

Execute executes the request

@return RemoveOrganizationMemberReply

type OrganizationQuotasApi ¶

type OrganizationQuotasApi interface {

	/*
		GetQuotas Method for GetQuotas

		@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
		@param organizationId
		@return ApiGetQuotasRequest
	*/
	GetQuotas(ctx context.Context, organizationId string) ApiGetQuotasRequest

	// GetQuotasExecute executes the request
	//  @return GetQuotasReply
	GetQuotasExecute(r ApiGetQuotasRequest) (*GetQuotasReply, *http.Response, error)
}

type OrganizationQuotasApiService ¶

type OrganizationQuotasApiService service

OrganizationQuotasApiService OrganizationQuotasApi service

func (*OrganizationQuotasApiService) GetQuotas ¶

func (a *OrganizationQuotasApiService) GetQuotas(ctx context.Context, organizationId string) ApiGetQuotasRequest

GetQuotas Method for GetQuotas

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param organizationId
@return ApiGetQuotasRequest

func (*OrganizationQuotasApiService) GetQuotasExecute ¶

Execute executes the request

@return GetQuotasReply

type OrganizationStatus ¶

type OrganizationStatus string

OrganizationStatus the model 'OrganizationStatus'

const (
	ORGANIZATIONSTATUS_WARNING      OrganizationStatus = "WARNING"
	ORGANIZATIONSTATUS_LOCKED       OrganizationStatus = "LOCKED"
	ORGANIZATIONSTATUS_ACTIVE       OrganizationStatus = "ACTIVE"
	ORGANIZATIONSTATUS_DEACTIVATING OrganizationStatus = "DEACTIVATING"
	ORGANIZATIONSTATUS_DEACTIVATED  OrganizationStatus = "DEACTIVATED"
	ORGANIZATIONSTATUS_DELETING     OrganizationStatus = "DELETING"
	ORGANIZATIONSTATUS_DELETED      OrganizationStatus = "DELETED"
)

List of Organization.Status

func NewOrganizationStatusFromValue ¶

func NewOrganizationStatusFromValue(v string) (*OrganizationStatus, error)

NewOrganizationStatusFromValue returns a pointer to a valid OrganizationStatus for the value passed as argument, or an error if the value passed is not allowed by the enum

func (OrganizationStatus) IsValid ¶

func (v OrganizationStatus) IsValid() bool

IsValid return true if the value is valid for the enum, false otherwise

func (OrganizationStatus) Ptr ¶

Ptr returns reference to Organization.Status value

func (*OrganizationStatus) UnmarshalJSON ¶

func (v *OrganizationStatus) UnmarshalJSON(src []byte) error

type OrganizationSummary ¶

type OrganizationSummary struct {
	OrganizationId *string                    `json:"organization_id,omitempty"`
	Instances      *InstancesSummary          `json:"instances,omitempty"`
	Apps           *AppsSummary               `json:"apps,omitempty"`
	Services       *map[string]ServiceSummary `json:"services,omitempty"`
	Domains        *DomainsSummary            `json:"domains,omitempty"`
	Secrets        *SecretsSummary            `json:"secrets,omitempty"`
	NeonPostgres   *NeonPostgresSummary       `json:"neon_postgres,omitempty"`
	Members        *MembersSummary            `json:"members,omitempty"`
}

OrganizationSummary struct for OrganizationSummary

func NewOrganizationSummary ¶

func NewOrganizationSummary() *OrganizationSummary

NewOrganizationSummary instantiates a new OrganizationSummary 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 NewOrganizationSummaryWithDefaults ¶

func NewOrganizationSummaryWithDefaults() *OrganizationSummary

NewOrganizationSummaryWithDefaults instantiates a new OrganizationSummary 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 (*OrganizationSummary) GetApps ¶

func (o *OrganizationSummary) GetApps() AppsSummary

GetApps returns the Apps field value if set, zero value otherwise.

func (*OrganizationSummary) GetAppsOk ¶

func (o *OrganizationSummary) GetAppsOk() (*AppsSummary, bool)

GetAppsOk returns a tuple with the Apps field value if set, nil otherwise and a boolean to check if the value has been set.

func (*OrganizationSummary) GetDomains ¶

func (o *OrganizationSummary) GetDomains() DomainsSummary

GetDomains returns the Domains field value if set, zero value otherwise.

func (*OrganizationSummary) GetDomainsOk ¶

func (o *OrganizationSummary) GetDomainsOk() (*DomainsSummary, bool)

GetDomainsOk returns a tuple with the Domains field value if set, nil otherwise and a boolean to check if the value has been set.

func (*OrganizationSummary) GetInstances ¶

func (o *OrganizationSummary) GetInstances() InstancesSummary

GetInstances returns the Instances field value if set, zero value otherwise.

func (*OrganizationSummary) GetInstancesOk ¶

func (o *OrganizationSummary) GetInstancesOk() (*InstancesSummary, bool)

GetInstancesOk returns a tuple with the Instances field value if set, nil otherwise and a boolean to check if the value has been set.

func (*OrganizationSummary) GetMembers ¶

func (o *OrganizationSummary) GetMembers() MembersSummary

GetMembers returns the Members field value if set, zero value otherwise.

func (*OrganizationSummary) GetMembersOk ¶

func (o *OrganizationSummary) GetMembersOk() (*MembersSummary, bool)

GetMembersOk returns a tuple with the Members field value if set, nil otherwise and a boolean to check if the value has been set.

func (*OrganizationSummary) GetNeonPostgres ¶

func (o *OrganizationSummary) GetNeonPostgres() NeonPostgresSummary

GetNeonPostgres returns the NeonPostgres field value if set, zero value otherwise.

func (*OrganizationSummary) GetNeonPostgresOk ¶

func (o *OrganizationSummary) GetNeonPostgresOk() (*NeonPostgresSummary, bool)

GetNeonPostgresOk returns a tuple with the NeonPostgres field value if set, nil otherwise and a boolean to check if the value has been set.

func (*OrganizationSummary) GetOrganizationId ¶

func (o *OrganizationSummary) GetOrganizationId() string

GetOrganizationId returns the OrganizationId field value if set, zero value otherwise.

func (*OrganizationSummary) GetOrganizationIdOk ¶

func (o *OrganizationSummary) GetOrganizationIdOk() (*string, bool)

GetOrganizationIdOk returns a tuple with the OrganizationId field value if set, nil otherwise and a boolean to check if the value has been set.

func (*OrganizationSummary) GetSecrets ¶

func (o *OrganizationSummary) GetSecrets() SecretsSummary

GetSecrets returns the Secrets field value if set, zero value otherwise.

func (*OrganizationSummary) GetSecretsOk ¶

func (o *OrganizationSummary) GetSecretsOk() (*SecretsSummary, bool)

GetSecretsOk returns a tuple with the Secrets field value if set, nil otherwise and a boolean to check if the value has been set.

func (*OrganizationSummary) GetServices ¶

func (o *OrganizationSummary) GetServices() map[string]ServiceSummary

GetServices returns the Services field value if set, zero value otherwise.

func (*OrganizationSummary) GetServicesOk ¶

func (o *OrganizationSummary) GetServicesOk() (*map[string]ServiceSummary, bool)

GetServicesOk returns a tuple with the Services field value if set, nil otherwise and a boolean to check if the value has been set.

func (*OrganizationSummary) HasApps ¶

func (o *OrganizationSummary) HasApps() bool

HasApps returns a boolean if a field has been set.

func (*OrganizationSummary) HasDomains ¶

func (o *OrganizationSummary) HasDomains() bool

HasDomains returns a boolean if a field has been set.

func (*OrganizationSummary) HasInstances ¶

func (o *OrganizationSummary) HasInstances() bool

HasInstances returns a boolean if a field has been set.

func (*OrganizationSummary) HasMembers ¶

func (o *OrganizationSummary) HasMembers() bool

HasMembers returns a boolean if a field has been set.

func (*OrganizationSummary) HasNeonPostgres ¶

func (o *OrganizationSummary) HasNeonPostgres() bool

HasNeonPostgres returns a boolean if a field has been set.

func (*OrganizationSummary) HasOrganizationId ¶

func (o *OrganizationSummary) HasOrganizationId() bool

HasOrganizationId returns a boolean if a field has been set.

func (*OrganizationSummary) HasSecrets ¶

func (o *OrganizationSummary) HasSecrets() bool

HasSecrets returns a boolean if a field has been set.

func (*OrganizationSummary) HasServices ¶

func (o *OrganizationSummary) HasServices() bool

HasServices returns a boolean if a field has been set.

func (OrganizationSummary) MarshalJSON ¶

func (o OrganizationSummary) MarshalJSON() ([]byte, error)

func (*OrganizationSummary) SetApps ¶

func (o *OrganizationSummary) SetApps(v AppsSummary)

SetApps gets a reference to the given AppsSummary and assigns it to the Apps field.

func (*OrganizationSummary) SetDomains ¶

func (o *OrganizationSummary) SetDomains(v DomainsSummary)

SetDomains gets a reference to the given DomainsSummary and assigns it to the Domains field.

func (*OrganizationSummary) SetInstances ¶

func (o *OrganizationSummary) SetInstances(v InstancesSummary)

SetInstances gets a reference to the given InstancesSummary and assigns it to the Instances field.

func (*OrganizationSummary) SetMembers ¶

func (o *OrganizationSummary) SetMembers(v MembersSummary)

SetMembers gets a reference to the given MembersSummary and assigns it to the Members field.

func (*OrganizationSummary) SetNeonPostgres ¶

func (o *OrganizationSummary) SetNeonPostgres(v NeonPostgresSummary)

SetNeonPostgres gets a reference to the given NeonPostgresSummary and assigns it to the NeonPostgres field.

func (*OrganizationSummary) SetOrganizationId ¶

func (o *OrganizationSummary) SetOrganizationId(v string)

SetOrganizationId gets a reference to the given string and assigns it to the OrganizationId field.

func (*OrganizationSummary) SetSecrets ¶

func (o *OrganizationSummary) SetSecrets(v SecretsSummary)

SetSecrets gets a reference to the given SecretsSummary and assigns it to the Secrets field.

func (*OrganizationSummary) SetServices ¶

func (o *OrganizationSummary) SetServices(v map[string]ServiceSummary)

SetServices gets a reference to the given map[string]ServiceSummary and assigns it to the Services field.

type PaymentMethod ¶

type PaymentMethod struct {
	Id                                           *string              `json:"id,omitempty"`
	CreatedAt                                    *time.Time           `json:"created_at,omitempty"`
	UpdatedAt                                    *time.Time           `json:"updated_at,omitempty"`
	Version                                      *string              `json:"version,omitempty"`
	OrganizationId                               *string              `json:"organization_id,omitempty"`
	Type                                         *string              `json:"type,omitempty"`
	Provider                                     *string              `json:"provider,omitempty"`
	Status                                       *PaymentMethodStatus `json:"status,omitempty"`
	Messages                                     []string             `json:"messages,omitempty"`
	StripePaymentMethodId                        *string              `json:"stripe_payment_method_id,omitempty"`
	AuthorizationVerifiedAt                      *time.Time           `json:"authorization_verified_at,omitempty"`
	AuthorizationCanceledAt                      *time.Time           `json:"authorization_canceled_at,omitempty"`
	AuthorizationStripePaymentIntentId           *string              `json:"authorization_stripe_payment_intent_id,omitempty"`
	AuthorizationStripePaymentIntentClientSecret *string              `json:"authorization_stripe_payment_intent_client_secret,omitempty"`
	CardBrand                                    *string              `json:"card_brand,omitempty"`
	CardCountry                                  *string              `json:"card_country,omitempty"`
	CardFunding                                  *string              `json:"card_funding,omitempty"`
	CardFingerprint                              *string              `json:"card_fingerprint,omitempty"`
	CardLastDigits                               *string              `json:"card_last_digits,omitempty"`
	CardExpirationMonth                          *int64               `json:"card_expiration_month,omitempty"`
	CardExpirationYear                           *int64               `json:"card_expiration_year,omitempty"`
}

PaymentMethod struct for PaymentMethod

func NewPaymentMethod ¶

func NewPaymentMethod() *PaymentMethod

NewPaymentMethod instantiates a new PaymentMethod 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 NewPaymentMethodWithDefaults ¶

func NewPaymentMethodWithDefaults() *PaymentMethod

NewPaymentMethodWithDefaults instantiates a new PaymentMethod 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 (*PaymentMethod) GetAuthorizationCanceledAt ¶

func (o *PaymentMethod) GetAuthorizationCanceledAt() time.Time

GetAuthorizationCanceledAt returns the AuthorizationCanceledAt field value if set, zero value otherwise.

func (*PaymentMethod) GetAuthorizationCanceledAtOk ¶

func (o *PaymentMethod) GetAuthorizationCanceledAtOk() (*time.Time, bool)

GetAuthorizationCanceledAtOk returns a tuple with the AuthorizationCanceledAt field value if set, nil otherwise and a boolean to check if the value has been set.

func (*PaymentMethod) GetAuthorizationStripePaymentIntentClientSecret ¶

func (o *PaymentMethod) GetAuthorizationStripePaymentIntentClientSecret() string

GetAuthorizationStripePaymentIntentClientSecret returns the AuthorizationStripePaymentIntentClientSecret field value if set, zero value otherwise.

func (*PaymentMethod) GetAuthorizationStripePaymentIntentClientSecretOk ¶

func (o *PaymentMethod) GetAuthorizationStripePaymentIntentClientSecretOk() (*string, bool)

GetAuthorizationStripePaymentIntentClientSecretOk returns a tuple with the AuthorizationStripePaymentIntentClientSecret field value if set, nil otherwise and a boolean to check if the value has been set.

func (*PaymentMethod) GetAuthorizationStripePaymentIntentId ¶

func (o *PaymentMethod) GetAuthorizationStripePaymentIntentId() string

GetAuthorizationStripePaymentIntentId returns the AuthorizationStripePaymentIntentId field value if set, zero value otherwise.

func (*PaymentMethod) GetAuthorizationStripePaymentIntentIdOk ¶

func (o *PaymentMethod) GetAuthorizationStripePaymentIntentIdOk() (*string, bool)

GetAuthorizationStripePaymentIntentIdOk returns a tuple with the AuthorizationStripePaymentIntentId field value if set, nil otherwise and a boolean to check if the value has been set.

func (*PaymentMethod) GetAuthorizationVerifiedAt ¶

func (o *PaymentMethod) GetAuthorizationVerifiedAt() time.Time

GetAuthorizationVerifiedAt returns the AuthorizationVerifiedAt field value if set, zero value otherwise.

func (*PaymentMethod) GetAuthorizationVerifiedAtOk ¶

func (o *PaymentMethod) GetAuthorizationVerifiedAtOk() (*time.Time, bool)

GetAuthorizationVerifiedAtOk returns a tuple with the AuthorizationVerifiedAt field value if set, nil otherwise and a boolean to check if the value has been set.

func (*PaymentMethod) GetCardBrand ¶

func (o *PaymentMethod) GetCardBrand() string

GetCardBrand returns the CardBrand field value if set, zero value otherwise.

func (*PaymentMethod) GetCardBrandOk ¶

func (o *PaymentMethod) GetCardBrandOk() (*string, bool)

GetCardBrandOk returns a tuple with the CardBrand field value if set, nil otherwise and a boolean to check if the value has been set.

func (*PaymentMethod) GetCardCountry ¶

func (o *PaymentMethod) GetCardCountry() string

GetCardCountry returns the CardCountry field value if set, zero value otherwise.

func (*PaymentMethod) GetCardCountryOk ¶

func (o *PaymentMethod) GetCardCountryOk() (*string, bool)

GetCardCountryOk returns a tuple with the CardCountry field value if set, nil otherwise and a boolean to check if the value has been set.

func (*PaymentMethod) GetCardExpirationMonth ¶

func (o *PaymentMethod) GetCardExpirationMonth() int64

GetCardExpirationMonth returns the CardExpirationMonth field value if set, zero value otherwise.

func (*PaymentMethod) GetCardExpirationMonthOk ¶

func (o *PaymentMethod) GetCardExpirationMonthOk() (*int64, bool)

GetCardExpirationMonthOk returns a tuple with the CardExpirationMonth field value if set, nil otherwise and a boolean to check if the value has been set.

func (*PaymentMethod) GetCardExpirationYear ¶

func (o *PaymentMethod) GetCardExpirationYear() int64

GetCardExpirationYear returns the CardExpirationYear field value if set, zero value otherwise.

func (*PaymentMethod) GetCardExpirationYearOk ¶

func (o *PaymentMethod) GetCardExpirationYearOk() (*int64, bool)

GetCardExpirationYearOk returns a tuple with the CardExpirationYear field value if set, nil otherwise and a boolean to check if the value has been set.

func (*PaymentMethod) GetCardFingerprint ¶

func (o *PaymentMethod) GetCardFingerprint() string

GetCardFingerprint returns the CardFingerprint field value if set, zero value otherwise.

func (*PaymentMethod) GetCardFingerprintOk ¶

func (o *PaymentMethod) GetCardFingerprintOk() (*string, bool)

GetCardFingerprintOk returns a tuple with the CardFingerprint field value if set, nil otherwise and a boolean to check if the value has been set.

func (*PaymentMethod) GetCardFunding ¶

func (o *PaymentMethod) GetCardFunding() string

GetCardFunding returns the CardFunding field value if set, zero value otherwise.

func (*PaymentMethod) GetCardFundingOk ¶

func (o *PaymentMethod) GetCardFundingOk() (*string, bool)

GetCardFundingOk returns a tuple with the CardFunding field value if set, nil otherwise and a boolean to check if the value has been set.

func (*PaymentMethod) GetCardLastDigits ¶

func (o *PaymentMethod) GetCardLastDigits() string

GetCardLastDigits returns the CardLastDigits field value if set, zero value otherwise.

func (*PaymentMethod) GetCardLastDigitsOk ¶

func (o *PaymentMethod) GetCardLastDigitsOk() (*string, bool)

GetCardLastDigitsOk returns a tuple with the CardLastDigits field value if set, nil otherwise and a boolean to check if the value has been set.

func (*PaymentMethod) GetCreatedAt ¶

func (o *PaymentMethod) GetCreatedAt() time.Time

GetCreatedAt returns the CreatedAt field value if set, zero value otherwise.

func (*PaymentMethod) GetCreatedAtOk ¶

func (o *PaymentMethod) GetCreatedAtOk() (*time.Time, bool)

GetCreatedAtOk returns a tuple with the CreatedAt field value if set, nil otherwise and a boolean to check if the value has been set.

func (*PaymentMethod) GetId ¶

func (o *PaymentMethod) GetId() string

GetId returns the Id field value if set, zero value otherwise.

func (*PaymentMethod) GetIdOk ¶

func (o *PaymentMethod) 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 (*PaymentMethod) GetMessages ¶

func (o *PaymentMethod) GetMessages() []string

GetMessages returns the Messages field value if set, zero value otherwise.

func (*PaymentMethod) GetMessagesOk ¶

func (o *PaymentMethod) GetMessagesOk() ([]string, bool)

GetMessagesOk returns a tuple with the Messages field value if set, nil otherwise and a boolean to check if the value has been set.

func (*PaymentMethod) GetOrganizationId ¶

func (o *PaymentMethod) GetOrganizationId() string

GetOrganizationId returns the OrganizationId field value if set, zero value otherwise.

func (*PaymentMethod) GetOrganizationIdOk ¶

func (o *PaymentMethod) GetOrganizationIdOk() (*string, bool)

GetOrganizationIdOk returns a tuple with the OrganizationId field value if set, nil otherwise and a boolean to check if the value has been set.

func (*PaymentMethod) GetProvider ¶

func (o *PaymentMethod) GetProvider() string

GetProvider returns the Provider field value if set, zero value otherwise.

func (*PaymentMethod) GetProviderOk ¶

func (o *PaymentMethod) GetProviderOk() (*string, bool)

GetProviderOk returns a tuple with the Provider field value if set, nil otherwise and a boolean to check if the value has been set.

func (*PaymentMethod) GetStatus ¶

func (o *PaymentMethod) GetStatus() PaymentMethodStatus

GetStatus returns the Status field value if set, zero value otherwise.

func (*PaymentMethod) GetStatusOk ¶

func (o *PaymentMethod) GetStatusOk() (*PaymentMethodStatus, 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 (*PaymentMethod) GetStripePaymentMethodId ¶

func (o *PaymentMethod) GetStripePaymentMethodId() string

GetStripePaymentMethodId returns the StripePaymentMethodId field value if set, zero value otherwise.

func (*PaymentMethod) GetStripePaymentMethodIdOk ¶

func (o *PaymentMethod) GetStripePaymentMethodIdOk() (*string, bool)

GetStripePaymentMethodIdOk returns a tuple with the StripePaymentMethodId field value if set, nil otherwise and a boolean to check if the value has been set.

func (*PaymentMethod) GetType ¶

func (o *PaymentMethod) GetType() string

GetType returns the Type field value if set, zero value otherwise.

func (*PaymentMethod) GetTypeOk ¶

func (o *PaymentMethod) 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 (*PaymentMethod) GetUpdatedAt ¶

func (o *PaymentMethod) GetUpdatedAt() time.Time

GetUpdatedAt returns the UpdatedAt field value if set, zero value otherwise.

func (*PaymentMethod) GetUpdatedAtOk ¶

func (o *PaymentMethod) GetUpdatedAtOk() (*time.Time, bool)

GetUpdatedAtOk returns a tuple with the UpdatedAt field value if set, nil otherwise and a boolean to check if the value has been set.

func (*PaymentMethod) GetVersion ¶

func (o *PaymentMethod) GetVersion() string

GetVersion returns the Version field value if set, zero value otherwise.

func (*PaymentMethod) GetVersionOk ¶

func (o *PaymentMethod) GetVersionOk() (*string, bool)

GetVersionOk returns a tuple with the Version field value if set, nil otherwise and a boolean to check if the value has been set.

func (*PaymentMethod) HasAuthorizationCanceledAt ¶

func (o *PaymentMethod) HasAuthorizationCanceledAt() bool

HasAuthorizationCanceledAt returns a boolean if a field has been set.

func (*PaymentMethod) HasAuthorizationStripePaymentIntentClientSecret ¶

func (o *PaymentMethod) HasAuthorizationStripePaymentIntentClientSecret() bool

HasAuthorizationStripePaymentIntentClientSecret returns a boolean if a field has been set.

func (*PaymentMethod) HasAuthorizationStripePaymentIntentId ¶

func (o *PaymentMethod) HasAuthorizationStripePaymentIntentId() bool

HasAuthorizationStripePaymentIntentId returns a boolean if a field has been set.

func (*PaymentMethod) HasAuthorizationVerifiedAt ¶

func (o *PaymentMethod) HasAuthorizationVerifiedAt() bool

HasAuthorizationVerifiedAt returns a boolean if a field has been set.

func (*PaymentMethod) HasCardBrand ¶

func (o *PaymentMethod) HasCardBrand() bool

HasCardBrand returns a boolean if a field has been set.

func (*PaymentMethod) HasCardCountry ¶

func (o *PaymentMethod) HasCardCountry() bool

HasCardCountry returns a boolean if a field has been set.

func (*PaymentMethod) HasCardExpirationMonth ¶

func (o *PaymentMethod) HasCardExpirationMonth() bool

HasCardExpirationMonth returns a boolean if a field has been set.

func (*PaymentMethod) HasCardExpirationYear ¶

func (o *PaymentMethod) HasCardExpirationYear() bool

HasCardExpirationYear returns a boolean if a field has been set.

func (*PaymentMethod) HasCardFingerprint ¶

func (o *PaymentMethod) HasCardFingerprint() bool

HasCardFingerprint returns a boolean if a field has been set.

func (*PaymentMethod) HasCardFunding ¶

func (o *PaymentMethod) HasCardFunding() bool

HasCardFunding returns a boolean if a field has been set.

func (*PaymentMethod) HasCardLastDigits ¶

func (o *PaymentMethod) HasCardLastDigits() bool

HasCardLastDigits returns a boolean if a field has been set.

func (*PaymentMethod) HasCreatedAt ¶

func (o *PaymentMethod) HasCreatedAt() bool

HasCreatedAt returns a boolean if a field has been set.

func (*PaymentMethod) HasId ¶

func (o *PaymentMethod) HasId() bool

HasId returns a boolean if a field has been set.

func (*PaymentMethod) HasMessages ¶

func (o *PaymentMethod) HasMessages() bool

HasMessages returns a boolean if a field has been set.

func (*PaymentMethod) HasOrganizationId ¶

func (o *PaymentMethod) HasOrganizationId() bool

HasOrganizationId returns a boolean if a field has been set.

func (*PaymentMethod) HasProvider ¶

func (o *PaymentMethod) HasProvider() bool

HasProvider returns a boolean if a field has been set.

func (*PaymentMethod) HasStatus ¶

func (o *PaymentMethod) HasStatus() bool

HasStatus returns a boolean if a field has been set.

func (*PaymentMethod) HasStripePaymentMethodId ¶

func (o *PaymentMethod) HasStripePaymentMethodId() bool

HasStripePaymentMethodId returns a boolean if a field has been set.

func (*PaymentMethod) HasType ¶

func (o *PaymentMethod) HasType() bool

HasType returns a boolean if a field has been set.

func (*PaymentMethod) HasUpdatedAt ¶

func (o *PaymentMethod) HasUpdatedAt() bool

HasUpdatedAt returns a boolean if a field has been set.

func (*PaymentMethod) HasVersion ¶

func (o *PaymentMethod) HasVersion() bool

HasVersion returns a boolean if a field has been set.

func (PaymentMethod) MarshalJSON ¶

func (o PaymentMethod) MarshalJSON() ([]byte, error)

func (*PaymentMethod) SetAuthorizationCanceledAt ¶

func (o *PaymentMethod) SetAuthorizationCanceledAt(v time.Time)

SetAuthorizationCanceledAt gets a reference to the given time.Time and assigns it to the AuthorizationCanceledAt field.

func (*PaymentMethod) SetAuthorizationStripePaymentIntentClientSecret ¶

func (o *PaymentMethod) SetAuthorizationStripePaymentIntentClientSecret(v string)

SetAuthorizationStripePaymentIntentClientSecret gets a reference to the given string and assigns it to the AuthorizationStripePaymentIntentClientSecret field.

func (*PaymentMethod) SetAuthorizationStripePaymentIntentId ¶

func (o *PaymentMethod) SetAuthorizationStripePaymentIntentId(v string)

SetAuthorizationStripePaymentIntentId gets a reference to the given string and assigns it to the AuthorizationStripePaymentIntentId field.

func (*PaymentMethod) SetAuthorizationVerifiedAt ¶

func (o *PaymentMethod) SetAuthorizationVerifiedAt(v time.Time)

SetAuthorizationVerifiedAt gets a reference to the given time.Time and assigns it to the AuthorizationVerifiedAt field.

func (*PaymentMethod) SetCardBrand ¶

func (o *PaymentMethod) SetCardBrand(v string)

SetCardBrand gets a reference to the given string and assigns it to the CardBrand field.

func (*PaymentMethod) SetCardCountry ¶

func (o *PaymentMethod) SetCardCountry(v string)

SetCardCountry gets a reference to the given string and assigns it to the CardCountry field.

func (*PaymentMethod) SetCardExpirationMonth ¶

func (o *PaymentMethod) SetCardExpirationMonth(v int64)

SetCardExpirationMonth gets a reference to the given int64 and assigns it to the CardExpirationMonth field.

func (*PaymentMethod) SetCardExpirationYear ¶

func (o *PaymentMethod) SetCardExpirationYear(v int64)

SetCardExpirationYear gets a reference to the given int64 and assigns it to the CardExpirationYear field.

func (*PaymentMethod) SetCardFingerprint ¶

func (o *PaymentMethod) SetCardFingerprint(v string)

SetCardFingerprint gets a reference to the given string and assigns it to the CardFingerprint field.

func (*PaymentMethod) SetCardFunding ¶

func (o *PaymentMethod) SetCardFunding(v string)

SetCardFunding gets a reference to the given string and assigns it to the CardFunding field.

func (*PaymentMethod) SetCardLastDigits ¶

func (o *PaymentMethod) SetCardLastDigits(v string)

SetCardLastDigits gets a reference to the given string and assigns it to the CardLastDigits field.

func (*PaymentMethod) SetCreatedAt ¶

func (o *PaymentMethod) SetCreatedAt(v time.Time)

SetCreatedAt gets a reference to the given time.Time and assigns it to the CreatedAt field.

func (*PaymentMethod) SetId ¶

func (o *PaymentMethod) SetId(v string)

SetId gets a reference to the given string and assigns it to the Id field.

func (*PaymentMethod) SetMessages ¶

func (o *PaymentMethod) SetMessages(v []string)

SetMessages gets a reference to the given []string and assigns it to the Messages field.

func (*PaymentMethod) SetOrganizationId ¶

func (o *PaymentMethod) SetOrganizationId(v string)

SetOrganizationId gets a reference to the given string and assigns it to the OrganizationId field.

func (*PaymentMethod) SetProvider ¶

func (o *PaymentMethod) SetProvider(v string)

SetProvider gets a reference to the given string and assigns it to the Provider field.

func (*PaymentMethod) SetStatus ¶

func (o *PaymentMethod) SetStatus(v PaymentMethodStatus)

SetStatus gets a reference to the given PaymentMethodStatus and assigns it to the Status field.

func (*PaymentMethod) SetStripePaymentMethodId ¶

func (o *PaymentMethod) SetStripePaymentMethodId(v string)

SetStripePaymentMethodId gets a reference to the given string and assigns it to the StripePaymentMethodId field.

func (*PaymentMethod) SetType ¶

func (o *PaymentMethod) SetType(v string)

SetType gets a reference to the given string and assigns it to the Type field.

func (*PaymentMethod) SetUpdatedAt ¶

func (o *PaymentMethod) SetUpdatedAt(v time.Time)

SetUpdatedAt gets a reference to the given time.Time and assigns it to the UpdatedAt field.

func (*PaymentMethod) SetVersion ¶

func (o *PaymentMethod) SetVersion(v string)

SetVersion gets a reference to the given string and assigns it to the Version field.

type PaymentMethodStatus ¶

type PaymentMethodStatus string

PaymentMethodStatus the model 'PaymentMethodStatus'

const (
	PAYMENTMETHODSTATUS_INVALID    PaymentMethodStatus = "INVALID"
	PAYMENTMETHODSTATUS_CREATED    PaymentMethodStatus = "CREATED"
	PAYMENTMETHODSTATUS_AUTHORIZED PaymentMethodStatus = "AUTHORIZED"
	PAYMENTMETHODSTATUS_DECLINED   PaymentMethodStatus = "DECLINED"
	PAYMENTMETHODSTATUS_CANCELED   PaymentMethodStatus = "CANCELED"
	PAYMENTMETHODSTATUS_EXPIRED    PaymentMethodStatus = "EXPIRED"
	PAYMENTMETHODSTATUS_UNCHECKED  PaymentMethodStatus = "UNCHECKED"
)

List of PaymentMethod.Status

func NewPaymentMethodStatusFromValue ¶

func NewPaymentMethodStatusFromValue(v string) (*PaymentMethodStatus, error)

NewPaymentMethodStatusFromValue returns a pointer to a valid PaymentMethodStatus for the value passed as argument, or an error if the value passed is not allowed by the enum

func (PaymentMethodStatus) IsValid ¶

func (v PaymentMethodStatus) IsValid() bool

IsValid return true if the value is valid for the enum, false otherwise

func (PaymentMethodStatus) Ptr ¶

Ptr returns reference to PaymentMethod.Status value

func (*PaymentMethodStatus) UnmarshalJSON ¶

func (v *PaymentMethodStatus) UnmarshalJSON(src []byte) error

type PaymentMethodsApi ¶

type PaymentMethodsApi interface {

	/*
		ConfirmPaymentAuthorization Confirm payment authorization

		@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
		@param id
		@return ApiConfirmPaymentAuthorizationRequest
	*/
	ConfirmPaymentAuthorization(ctx context.Context, id string) ApiConfirmPaymentAuthorizationRequest

	// ConfirmPaymentAuthorizationExecute executes the request
	//  @return ConfirmPaymentAuthorizationReply
	ConfirmPaymentAuthorizationExecute(r ApiConfirmPaymentAuthorizationRequest) (*ConfirmPaymentAuthorizationReply, *http.Response, error)

	/*
		CreatePaymentAuthorization Create payment authorization

		@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
		@return ApiCreatePaymentAuthorizationRequest
	*/
	CreatePaymentAuthorization(ctx context.Context) ApiCreatePaymentAuthorizationRequest

	// CreatePaymentAuthorizationExecute executes the request
	//  @return CreatePaymentAuthorizationReply
	CreatePaymentAuthorizationExecute(r ApiCreatePaymentAuthorizationRequest) (*CreatePaymentAuthorizationReply, *http.Response, error)

	/*
		DeletePaymentMethod Delete payment method

		@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
		@param id
		@return ApiDeletePaymentMethodRequest
	*/
	DeletePaymentMethod(ctx context.Context, id string) ApiDeletePaymentMethodRequest

	// DeletePaymentMethodExecute executes the request
	//  @return map[string]interface{}
	DeletePaymentMethodExecute(r ApiDeletePaymentMethodRequest) (map[string]interface{}, *http.Response, error)

	/*
		GetPaymentMethod Get payment method

		@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
		@param id
		@return ApiGetPaymentMethodRequest
	*/
	GetPaymentMethod(ctx context.Context, id string) ApiGetPaymentMethodRequest

	// GetPaymentMethodExecute executes the request
	//  @return GetPaymentMethodReply
	GetPaymentMethodExecute(r ApiGetPaymentMethodRequest) (*GetPaymentMethodReply, *http.Response, error)

	/*
		ListPaymentMethods List payment methods

		@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
		@return ApiListPaymentMethodsRequest
	*/
	ListPaymentMethods(ctx context.Context) ApiListPaymentMethodsRequest

	// ListPaymentMethodsExecute executes the request
	//  @return ListPaymentMethodsReply
	ListPaymentMethodsExecute(r ApiListPaymentMethodsRequest) (*ListPaymentMethodsReply, *http.Response, error)
}

type PaymentMethodsApiService ¶

type PaymentMethodsApiService service

PaymentMethodsApiService PaymentMethodsApi service

func (*PaymentMethodsApiService) ConfirmPaymentAuthorization ¶

ConfirmPaymentAuthorization Confirm payment authorization

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param id
@return ApiConfirmPaymentAuthorizationRequest

func (*PaymentMethodsApiService) ConfirmPaymentAuthorizationExecute ¶

Execute executes the request

@return ConfirmPaymentAuthorizationReply

func (*PaymentMethodsApiService) CreatePaymentAuthorization ¶

CreatePaymentAuthorization Create payment authorization

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@return ApiCreatePaymentAuthorizationRequest

func (*PaymentMethodsApiService) CreatePaymentAuthorizationExecute ¶

Execute executes the request

@return CreatePaymentAuthorizationReply

func (*PaymentMethodsApiService) DeletePaymentMethod ¶

DeletePaymentMethod Delete payment method

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param id
@return ApiDeletePaymentMethodRequest

func (*PaymentMethodsApiService) DeletePaymentMethodExecute ¶

func (a *PaymentMethodsApiService) DeletePaymentMethodExecute(r ApiDeletePaymentMethodRequest) (map[string]interface{}, *http.Response, error)

Execute executes the request

@return map[string]interface{}

func (*PaymentMethodsApiService) GetPaymentMethod ¶

GetPaymentMethod Get payment method

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param id
@return ApiGetPaymentMethodRequest

func (*PaymentMethodsApiService) GetPaymentMethodExecute ¶

Execute executes the request

@return GetPaymentMethodReply

func (*PaymentMethodsApiService) ListPaymentMethods ¶

ListPaymentMethods List payment methods

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@return ApiListPaymentMethodsRequest

func (*PaymentMethodsApiService) ListPaymentMethodsExecute ¶

Execute executes the request

@return ListPaymentMethodsReply

type PeriodUsage ¶

type PeriodUsage struct {
	StartingTime *time.Time `json:"starting_time,omitempty"`
	EndingTime   *time.Time `json:"ending_time,omitempty"`
	Apps         []AppUsage `json:"apps,omitempty"`
}

PeriodUsage struct for PeriodUsage

func NewPeriodUsage ¶

func NewPeriodUsage() *PeriodUsage

NewPeriodUsage instantiates a new PeriodUsage 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 NewPeriodUsageWithDefaults ¶

func NewPeriodUsageWithDefaults() *PeriodUsage

NewPeriodUsageWithDefaults instantiates a new PeriodUsage 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 (*PeriodUsage) GetApps ¶

func (o *PeriodUsage) GetApps() []AppUsage

GetApps returns the Apps field value if set, zero value otherwise.

func (*PeriodUsage) GetAppsOk ¶

func (o *PeriodUsage) GetAppsOk() ([]AppUsage, bool)

GetAppsOk returns a tuple with the Apps field value if set, nil otherwise and a boolean to check if the value has been set.

func (*PeriodUsage) GetEndingTime ¶

func (o *PeriodUsage) GetEndingTime() time.Time

GetEndingTime returns the EndingTime field value if set, zero value otherwise.

func (*PeriodUsage) GetEndingTimeOk ¶

func (o *PeriodUsage) GetEndingTimeOk() (*time.Time, bool)

GetEndingTimeOk returns a tuple with the EndingTime field value if set, nil otherwise and a boolean to check if the value has been set.

func (*PeriodUsage) GetStartingTime ¶

func (o *PeriodUsage) GetStartingTime() time.Time

GetStartingTime returns the StartingTime field value if set, zero value otherwise.

func (*PeriodUsage) GetStartingTimeOk ¶

func (o *PeriodUsage) GetStartingTimeOk() (*time.Time, bool)

GetStartingTimeOk returns a tuple with the StartingTime field value if set, nil otherwise and a boolean to check if the value has been set.

func (*PeriodUsage) HasApps ¶

func (o *PeriodUsage) HasApps() bool

HasApps returns a boolean if a field has been set.

func (*PeriodUsage) HasEndingTime ¶

func (o *PeriodUsage) HasEndingTime() bool

HasEndingTime returns a boolean if a field has been set.

func (*PeriodUsage) HasStartingTime ¶

func (o *PeriodUsage) HasStartingTime() bool

HasStartingTime returns a boolean if a field has been set.

func (PeriodUsage) MarshalJSON ¶

func (o PeriodUsage) MarshalJSON() ([]byte, error)

func (*PeriodUsage) SetApps ¶

func (o *PeriodUsage) SetApps(v []AppUsage)

SetApps gets a reference to the given []AppUsage and assigns it to the Apps field.

func (*PeriodUsage) SetEndingTime ¶

func (o *PeriodUsage) SetEndingTime(v time.Time)

SetEndingTime gets a reference to the given time.Time and assigns it to the EndingTime field.

func (*PeriodUsage) SetStartingTime ¶

func (o *PeriodUsage) SetStartingTime(v time.Time)

SetStartingTime gets a reference to the given time.Time and assigns it to the StartingTime field.

type Plan ¶

type Plan string

Plan the model 'Plan'

const (
	PLAN_HOBBY      Plan = "hobby"
	PLAN_STARTER    Plan = "starter"
	PLAN_STARTUP    Plan = "startup"
	PLAN_BUSINESS   Plan = "business"
	PLAN_ENTERPRISE Plan = "enterprise"
	PLAN_INTERNAL   Plan = "internal"
	PLAN_HOBBY23    Plan = "hobby23"
	PLAN_NO_PLAN    Plan = "no_plan"
)

List of Plan

func NewPlanFromValue ¶

func NewPlanFromValue(v string) (*Plan, error)

NewPlanFromValue returns a pointer to a valid Plan for the value passed as argument, or an error if the value passed is not allowed by the enum

func (Plan) IsValid ¶

func (v Plan) IsValid() bool

IsValid return true if the value is valid for the enum, false otherwise

func (Plan) Ptr ¶

func (v Plan) Ptr() *Plan

Ptr returns reference to Plan value

func (*Plan) UnmarshalJSON ¶

func (v *Plan) UnmarshalJSON(src []byte) error

type Port ¶

type Port struct {
	Port     *int64  `json:"port,omitempty"`
	Protocol *string `json:"protocol,omitempty"`
}

Port struct for Port

func NewPort ¶

func NewPort() *Port

NewPort instantiates a new Port 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 NewPortWithDefaults ¶

func NewPortWithDefaults() *Port

NewPortWithDefaults instantiates a new Port 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 (*Port) GetPort ¶

func (o *Port) GetPort() int64

GetPort returns the Port field value if set, zero value otherwise.

func (*Port) GetPortOk ¶

func (o *Port) GetPortOk() (*int64, 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 (*Port) GetProtocol ¶

func (o *Port) GetProtocol() string

GetProtocol returns the Protocol field value if set, zero value otherwise.

func (*Port) GetProtocolOk ¶

func (o *Port) GetProtocolOk() (*string, bool)

GetProtocolOk returns a tuple with the Protocol field value if set, nil otherwise and a boolean to check if the value has been set.

func (*Port) HasPort ¶

func (o *Port) HasPort() bool

HasPort returns a boolean if a field has been set.

func (*Port) HasProtocol ¶

func (o *Port) HasProtocol() bool

HasProtocol returns a boolean if a field has been set.

func (Port) MarshalJSON ¶

func (o Port) MarshalJSON() ([]byte, error)

func (*Port) SetPort ¶

func (o *Port) SetPort(v int64)

SetPort gets a reference to the given int64 and assigns it to the Port field.

func (*Port) SetProtocol ¶

func (o *Port) SetProtocol(v string)

SetProtocol gets a reference to the given string and assigns it to the Protocol field.

type PrivateRegistryConfiguration ¶

type PrivateRegistryConfiguration struct {
	Username *string `json:"username,omitempty"`
	Password *string `json:"password,omitempty"`
	Url      *string `json:"url,omitempty"`
}

PrivateRegistryConfiguration struct for PrivateRegistryConfiguration

func NewPrivateRegistryConfiguration ¶

func NewPrivateRegistryConfiguration() *PrivateRegistryConfiguration

NewPrivateRegistryConfiguration instantiates a new PrivateRegistryConfiguration 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 NewPrivateRegistryConfigurationWithDefaults ¶

func NewPrivateRegistryConfigurationWithDefaults() *PrivateRegistryConfiguration

NewPrivateRegistryConfigurationWithDefaults instantiates a new PrivateRegistryConfiguration 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 (*PrivateRegistryConfiguration) GetPassword ¶

func (o *PrivateRegistryConfiguration) GetPassword() string

GetPassword returns the Password field value if set, zero value otherwise.

func (*PrivateRegistryConfiguration) GetPasswordOk ¶

func (o *PrivateRegistryConfiguration) GetPasswordOk() (*string, bool)

GetPasswordOk returns a tuple with the Password field value if set, nil otherwise and a boolean to check if the value has been set.

func (*PrivateRegistryConfiguration) GetUrl ¶

GetUrl returns the Url field value if set, zero value otherwise.

func (*PrivateRegistryConfiguration) GetUrlOk ¶

func (o *PrivateRegistryConfiguration) 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 (*PrivateRegistryConfiguration) GetUsername ¶

func (o *PrivateRegistryConfiguration) GetUsername() string

GetUsername returns the Username field value if set, zero value otherwise.

func (*PrivateRegistryConfiguration) GetUsernameOk ¶

func (o *PrivateRegistryConfiguration) GetUsernameOk() (*string, bool)

GetUsernameOk returns a tuple with the Username field value if set, nil otherwise and a boolean to check if the value has been set.

func (*PrivateRegistryConfiguration) HasPassword ¶

func (o *PrivateRegistryConfiguration) HasPassword() bool

HasPassword returns a boolean if a field has been set.

func (*PrivateRegistryConfiguration) HasUrl ¶

func (o *PrivateRegistryConfiguration) HasUrl() bool

HasUrl returns a boolean if a field has been set.

func (*PrivateRegistryConfiguration) HasUsername ¶

func (o *PrivateRegistryConfiguration) HasUsername() bool

HasUsername returns a boolean if a field has been set.

func (PrivateRegistryConfiguration) MarshalJSON ¶

func (o PrivateRegistryConfiguration) MarshalJSON() ([]byte, error)

func (*PrivateRegistryConfiguration) SetPassword ¶

func (o *PrivateRegistryConfiguration) SetPassword(v string)

SetPassword gets a reference to the given string and assigns it to the Password field.

func (*PrivateRegistryConfiguration) SetUrl ¶

func (o *PrivateRegistryConfiguration) SetUrl(v string)

SetUrl gets a reference to the given string and assigns it to the Url field.

func (*PrivateRegistryConfiguration) SetUsername ¶

func (o *PrivateRegistryConfiguration) SetUsername(v string)

SetUsername gets a reference to the given string and assigns it to the Username field.

type ProfileApi ¶

type ProfileApi interface {

	/*
		AcceptOrganizationInvitation Method for AcceptOrganizationInvitation

		@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
		@param id The id of the organization invitation to accept
		@return ApiAcceptOrganizationInvitationRequest
	*/
	AcceptOrganizationInvitation(ctx context.Context, id string) ApiAcceptOrganizationInvitationRequest

	// AcceptOrganizationInvitationExecute executes the request
	//  @return AcceptOrganizationInvitationReply
	AcceptOrganizationInvitationExecute(r ApiAcceptOrganizationInvitationRequest) (*AcceptOrganizationInvitationReply, *http.Response, error)

	/*
		DeclineOrganizationInvitation Method for DeclineOrganizationInvitation

		@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
		@param id The id of the organization invitation to decline
		@return ApiDeclineOrganizationInvitationRequest
	*/
	DeclineOrganizationInvitation(ctx context.Context, id string) ApiDeclineOrganizationInvitationRequest

	// DeclineOrganizationInvitationExecute executes the request
	//  @return DeclineOrganizationInvitationReply
	DeclineOrganizationInvitationExecute(r ApiDeclineOrganizationInvitationRequest) (*DeclineOrganizationInvitationReply, *http.Response, error)

	/*
		GetCurrentOrganization Method for GetCurrentOrganization

		@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
		@return ApiGetCurrentOrganizationRequest
	*/
	GetCurrentOrganization(ctx context.Context) ApiGetCurrentOrganizationRequest

	// GetCurrentOrganizationExecute executes the request
	//  @return GetOrganizationReply
	GetCurrentOrganizationExecute(r ApiGetCurrentOrganizationRequest) (*GetOrganizationReply, *http.Response, error)

	/*
		GetCurrentUser Method for GetCurrentUser

		@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
		@return ApiGetCurrentUserRequest
	*/
	GetCurrentUser(ctx context.Context) ApiGetCurrentUserRequest

	// GetCurrentUserExecute executes the request
	//  @return UserReply
	GetCurrentUserExecute(r ApiGetCurrentUserRequest) (*UserReply, *http.Response, error)

	/*
		GetOAuthOptions Get OAuth Providers

		@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
		@return ApiGetOAuthOptionsRequest
	*/
	GetOAuthOptions(ctx context.Context) ApiGetOAuthOptionsRequest

	// GetOAuthOptionsExecute executes the request
	//  @return GetOAuthOptionsReply
	GetOAuthOptionsExecute(r ApiGetOAuthOptionsRequest) (*GetOAuthOptionsReply, *http.Response, error)

	/*
		GetUserOrganizationInvitation Method for GetUserOrganizationInvitation

		@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
		@param id The id of the organization invitation to get
		@return ApiGetUserOrganizationInvitationRequest
	*/
	GetUserOrganizationInvitation(ctx context.Context, id string) ApiGetUserOrganizationInvitationRequest

	// GetUserOrganizationInvitationExecute executes the request
	//  @return GetUserOrganizationInvitationReply
	GetUserOrganizationInvitationExecute(r ApiGetUserOrganizationInvitationRequest) (*GetUserOrganizationInvitationReply, *http.Response, error)

	/*
		ListUserOrganizationInvitations Method for ListUserOrganizationInvitations

		@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
		@return ApiListUserOrganizationInvitationsRequest
	*/
	ListUserOrganizationInvitations(ctx context.Context) ApiListUserOrganizationInvitationsRequest

	// ListUserOrganizationInvitationsExecute executes the request
	//  @return ListUserOrganizationInvitationsReply
	ListUserOrganizationInvitationsExecute(r ApiListUserOrganizationInvitationsRequest) (*ListUserOrganizationInvitationsReply, *http.Response, error)

	/*
		OAuthCallback Authenticate using OAuth

		@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
		@return ApiOAuthCallbackRequest
	*/
	OAuthCallback(ctx context.Context) ApiOAuthCallbackRequest

	// OAuthCallbackExecute executes the request
	//  @return OAuthCallbackReply
	OAuthCallbackExecute(r ApiOAuthCallbackRequest) (*OAuthCallbackReply, *http.Response, error)

	/*
		ResendEmailValidation Method for ResendEmailValidation

		@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
		@return ApiResendEmailValidationRequest
	*/
	ResendEmailValidation(ctx context.Context) ApiResendEmailValidationRequest

	// ResendEmailValidationExecute executes the request
	//  @return map[string]interface{}
	ResendEmailValidationExecute(r ApiResendEmailValidationRequest) (map[string]interface{}, *http.Response, error)

	/*
		ResetPassword Method for ResetPassword

		@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
		@return ApiResetPasswordRequest
	*/
	ResetPassword(ctx context.Context) ApiResetPasswordRequest

	// ResetPasswordExecute executes the request
	//  @return map[string]interface{}
	ResetPasswordExecute(r ApiResetPasswordRequest) (map[string]interface{}, *http.Response, error)

	/*
		Signup Method for Signup

		@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
		@return ApiSignupRequest
	*/
	Signup(ctx context.Context) ApiSignupRequest

	// SignupExecute executes the request
	//  @return LoginReply
	SignupExecute(r ApiSignupRequest) (*LoginReply, *http.Response, error)

	/*
		UpdatePassword Method for UpdatePassword

		@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
		@return ApiUpdatePasswordRequest
	*/
	UpdatePassword(ctx context.Context) ApiUpdatePasswordRequest

	// UpdatePasswordExecute executes the request
	//  @return LoginReply
	UpdatePasswordExecute(r ApiUpdatePasswordRequest) (*LoginReply, *http.Response, error)

	/*
		UpdateUser Method for UpdateUser

		@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
		@return ApiUpdateUserRequest
	*/
	UpdateUser(ctx context.Context) ApiUpdateUserRequest

	// UpdateUserExecute executes the request
	//  @return UserReply
	UpdateUserExecute(r ApiUpdateUserRequest) (*UserReply, *http.Response, error)

	/*
		UpdateUser2 Method for UpdateUser2

		@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
		@return ApiUpdateUser2Request
	*/
	UpdateUser2(ctx context.Context) ApiUpdateUser2Request

	// UpdateUser2Execute executes the request
	//  @return UserReply
	UpdateUser2Execute(r ApiUpdateUser2Request) (*UserReply, *http.Response, error)

	/*
		Validate Method for Validate

		@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
		@param id
		@return ApiValidateRequest
	*/
	Validate(ctx context.Context, id string) ApiValidateRequest

	// ValidateExecute executes the request
	//  @return LoginReply
	ValidateExecute(r ApiValidateRequest) (*LoginReply, *http.Response, error)
}

type ProfileApiService ¶

type ProfileApiService service

ProfileApiService ProfileApi service

func (*ProfileApiService) AcceptOrganizationInvitation ¶

func (a *ProfileApiService) AcceptOrganizationInvitation(ctx context.Context, id string) ApiAcceptOrganizationInvitationRequest

AcceptOrganizationInvitation Method for AcceptOrganizationInvitation

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param id The id of the organization invitation to accept
@return ApiAcceptOrganizationInvitationRequest

func (*ProfileApiService) AcceptOrganizationInvitationExecute ¶

Execute executes the request

@return AcceptOrganizationInvitationReply

func (*ProfileApiService) DeclineOrganizationInvitation ¶

func (a *ProfileApiService) DeclineOrganizationInvitation(ctx context.Context, id string) ApiDeclineOrganizationInvitationRequest

DeclineOrganizationInvitation Method for DeclineOrganizationInvitation

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param id The id of the organization invitation to decline
@return ApiDeclineOrganizationInvitationRequest

func (*ProfileApiService) DeclineOrganizationInvitationExecute ¶

Execute executes the request

@return DeclineOrganizationInvitationReply

func (*ProfileApiService) GetCurrentOrganization ¶

func (a *ProfileApiService) GetCurrentOrganization(ctx context.Context) ApiGetCurrentOrganizationRequest

GetCurrentOrganization Method for GetCurrentOrganization

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@return ApiGetCurrentOrganizationRequest

func (*ProfileApiService) GetCurrentOrganizationExecute ¶

Execute executes the request

@return GetOrganizationReply

func (*ProfileApiService) GetCurrentUser ¶

GetCurrentUser Method for GetCurrentUser

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@return ApiGetCurrentUserRequest

func (*ProfileApiService) GetCurrentUserExecute ¶

func (a *ProfileApiService) GetCurrentUserExecute(r ApiGetCurrentUserRequest) (*UserReply, *http.Response, error)

Execute executes the request

@return UserReply

func (*ProfileApiService) GetOAuthOptions ¶

GetOAuthOptions Get OAuth Providers

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@return ApiGetOAuthOptionsRequest

func (*ProfileApiService) GetOAuthOptionsExecute ¶

Execute executes the request

@return GetOAuthOptionsReply

func (*ProfileApiService) GetUserOrganizationInvitation ¶

func (a *ProfileApiService) GetUserOrganizationInvitation(ctx context.Context, id string) ApiGetUserOrganizationInvitationRequest

GetUserOrganizationInvitation Method for GetUserOrganizationInvitation

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param id The id of the organization invitation to get
@return ApiGetUserOrganizationInvitationRequest

func (*ProfileApiService) GetUserOrganizationInvitationExecute ¶

Execute executes the request

@return GetUserOrganizationInvitationReply

func (*ProfileApiService) ListUserOrganizationInvitations ¶

func (a *ProfileApiService) ListUserOrganizationInvitations(ctx context.Context) ApiListUserOrganizationInvitationsRequest

ListUserOrganizationInvitations Method for ListUserOrganizationInvitations

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@return ApiListUserOrganizationInvitationsRequest

func (*ProfileApiService) ListUserOrganizationInvitationsExecute ¶

Execute executes the request

@return ListUserOrganizationInvitationsReply

func (*ProfileApiService) OAuthCallback ¶

OAuthCallback Authenticate using OAuth

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@return ApiOAuthCallbackRequest

func (*ProfileApiService) OAuthCallbackExecute ¶

Execute executes the request

@return OAuthCallbackReply

func (*ProfileApiService) ResendEmailValidation ¶

func (a *ProfileApiService) ResendEmailValidation(ctx context.Context) ApiResendEmailValidationRequest

ResendEmailValidation Method for ResendEmailValidation

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@return ApiResendEmailValidationRequest

func (*ProfileApiService) ResendEmailValidationExecute ¶

func (a *ProfileApiService) ResendEmailValidationExecute(r ApiResendEmailValidationRequest) (map[string]interface{}, *http.Response, error)

Execute executes the request

@return map[string]interface{}

func (*ProfileApiService) ResetPassword ¶

ResetPassword Method for ResetPassword

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@return ApiResetPasswordRequest

func (*ProfileApiService) ResetPasswordExecute ¶

func (a *ProfileApiService) ResetPasswordExecute(r ApiResetPasswordRequest) (map[string]interface{}, *http.Response, error)

Execute executes the request

@return map[string]interface{}

func (*ProfileApiService) Signup ¶

Signup Method for Signup

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@return ApiSignupRequest

func (*ProfileApiService) SignupExecute ¶

func (a *ProfileApiService) SignupExecute(r ApiSignupRequest) (*LoginReply, *http.Response, error)

Execute executes the request

@return LoginReply

func (*ProfileApiService) UpdatePassword ¶

UpdatePassword Method for UpdatePassword

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@return ApiUpdatePasswordRequest

func (*ProfileApiService) UpdatePasswordExecute ¶

func (a *ProfileApiService) UpdatePasswordExecute(r ApiUpdatePasswordRequest) (*LoginReply, *http.Response, error)

Execute executes the request

@return LoginReply

func (*ProfileApiService) UpdateUser ¶

UpdateUser Method for UpdateUser

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@return ApiUpdateUserRequest

func (*ProfileApiService) UpdateUser2 ¶

UpdateUser2 Method for UpdateUser2

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@return ApiUpdateUser2Request

func (*ProfileApiService) UpdateUser2Execute ¶

func (a *ProfileApiService) UpdateUser2Execute(r ApiUpdateUser2Request) (*UserReply, *http.Response, error)

Execute executes the request

@return UserReply

func (*ProfileApiService) UpdateUserExecute ¶

func (a *ProfileApiService) UpdateUserExecute(r ApiUpdateUserRequest) (*UserReply, *http.Response, error)

Execute executes the request

@return UserReply

func (*ProfileApiService) Validate ¶

Validate Method for Validate

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param id
@return ApiValidateRequest

func (*ProfileApiService) ValidateExecute ¶

func (a *ProfileApiService) ValidateExecute(r ApiValidateRequest) (*LoginReply, *http.Response, error)

Execute executes the request

@return LoginReply

type PublicOrganization ¶

type PublicOrganization struct {
	Id     *string             `json:"id,omitempty"`
	Name   *string             `json:"name,omitempty"`
	Plan   *Plan               `json:"plan,omitempty"`
	Status *OrganizationStatus `json:"status,omitempty"`
}

PublicOrganization struct for PublicOrganization

func NewPublicOrganization ¶

func NewPublicOrganization() *PublicOrganization

NewPublicOrganization instantiates a new PublicOrganization 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 NewPublicOrganizationWithDefaults ¶

func NewPublicOrganizationWithDefaults() *PublicOrganization

NewPublicOrganizationWithDefaults instantiates a new PublicOrganization 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 (*PublicOrganization) GetId ¶

func (o *PublicOrganization) GetId() string

GetId returns the Id field value if set, zero value otherwise.

func (*PublicOrganization) GetIdOk ¶

func (o *PublicOrganization) 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 (*PublicOrganization) GetName ¶

func (o *PublicOrganization) GetName() string

GetName returns the Name field value if set, zero value otherwise.

func (*PublicOrganization) GetNameOk ¶

func (o *PublicOrganization) 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 (*PublicOrganization) GetPlan ¶

func (o *PublicOrganization) GetPlan() Plan

GetPlan returns the Plan field value if set, zero value otherwise.

func (*PublicOrganization) GetPlanOk ¶

func (o *PublicOrganization) GetPlanOk() (*Plan, bool)

GetPlanOk returns a tuple with the Plan field value if set, nil otherwise and a boolean to check if the value has been set.

func (*PublicOrganization) GetStatus ¶

func (o *PublicOrganization) GetStatus() OrganizationStatus

GetStatus returns the Status field value if set, zero value otherwise.

func (*PublicOrganization) GetStatusOk ¶

func (o *PublicOrganization) GetStatusOk() (*OrganizationStatus, 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 (*PublicOrganization) HasId ¶

func (o *PublicOrganization) HasId() bool

HasId returns a boolean if a field has been set.

func (*PublicOrganization) HasName ¶

func (o *PublicOrganization) HasName() bool

HasName returns a boolean if a field has been set.

func (*PublicOrganization) HasPlan ¶

func (o *PublicOrganization) HasPlan() bool

HasPlan returns a boolean if a field has been set.

func (*PublicOrganization) HasStatus ¶

func (o *PublicOrganization) HasStatus() bool

HasStatus returns a boolean if a field has been set.

func (PublicOrganization) MarshalJSON ¶

func (o PublicOrganization) MarshalJSON() ([]byte, error)

func (*PublicOrganization) SetId ¶

func (o *PublicOrganization) SetId(v string)

SetId gets a reference to the given string and assigns it to the Id field.

func (*PublicOrganization) SetName ¶

func (o *PublicOrganization) SetName(v string)

SetName gets a reference to the given string and assigns it to the Name field.

func (*PublicOrganization) SetPlan ¶

func (o *PublicOrganization) SetPlan(v Plan)

SetPlan gets a reference to the given Plan and assigns it to the Plan field.

func (*PublicOrganization) SetStatus ¶

func (o *PublicOrganization) SetStatus(v OrganizationStatus)

SetStatus gets a reference to the given OrganizationStatus and assigns it to the Status field.

type PublicUser ¶

type PublicUser struct {
	Id         *string `json:"id,omitempty"`
	Email      *string `json:"email,omitempty"`
	Name       *string `json:"name,omitempty"`
	AvatarUrl  *string `json:"avatar_url,omitempty"`
	GithubId   *string `json:"github_id,omitempty"`
	GithubUser *string `json:"github_user,omitempty"`
}

PublicUser struct for PublicUser

func NewPublicUser ¶

func NewPublicUser() *PublicUser

NewPublicUser instantiates a new PublicUser 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 NewPublicUserWithDefaults ¶

func NewPublicUserWithDefaults() *PublicUser

NewPublicUserWithDefaults instantiates a new PublicUser 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 (*PublicUser) GetAvatarUrl ¶

func (o *PublicUser) GetAvatarUrl() string

GetAvatarUrl returns the AvatarUrl field value if set, zero value otherwise.

func (*PublicUser) GetAvatarUrlOk ¶

func (o *PublicUser) GetAvatarUrlOk() (*string, bool)

GetAvatarUrlOk returns a tuple with the AvatarUrl field value if set, nil otherwise and a boolean to check if the value has been set.

func (*PublicUser) GetEmail ¶

func (o *PublicUser) GetEmail() string

GetEmail returns the Email field value if set, zero value otherwise.

func (*PublicUser) GetEmailOk ¶

func (o *PublicUser) GetEmailOk() (*string, bool)

GetEmailOk returns a tuple with the Email field value if set, nil otherwise and a boolean to check if the value has been set.

func (*PublicUser) GetGithubId ¶

func (o *PublicUser) GetGithubId() string

GetGithubId returns the GithubId field value if set, zero value otherwise.

func (*PublicUser) GetGithubIdOk ¶

func (o *PublicUser) GetGithubIdOk() (*string, bool)

GetGithubIdOk returns a tuple with the GithubId field value if set, nil otherwise and a boolean to check if the value has been set.

func (*PublicUser) GetGithubUser ¶

func (o *PublicUser) GetGithubUser() string

GetGithubUser returns the GithubUser field value if set, zero value otherwise.

func (*PublicUser) GetGithubUserOk ¶

func (o *PublicUser) GetGithubUserOk() (*string, bool)

GetGithubUserOk returns a tuple with the GithubUser field value if set, nil otherwise and a boolean to check if the value has been set.

func (*PublicUser) GetId ¶

func (o *PublicUser) GetId() string

GetId returns the Id field value if set, zero value otherwise.

func (*PublicUser) GetIdOk ¶

func (o *PublicUser) 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 (*PublicUser) GetName ¶

func (o *PublicUser) GetName() string

GetName returns the Name field value if set, zero value otherwise.

func (*PublicUser) GetNameOk ¶

func (o *PublicUser) 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 (*PublicUser) HasAvatarUrl ¶

func (o *PublicUser) HasAvatarUrl() bool

HasAvatarUrl returns a boolean if a field has been set.

func (*PublicUser) HasEmail ¶

func (o *PublicUser) HasEmail() bool

HasEmail returns a boolean if a field has been set.

func (*PublicUser) HasGithubId ¶

func (o *PublicUser) HasGithubId() bool

HasGithubId returns a boolean if a field has been set.

func (*PublicUser) HasGithubUser ¶

func (o *PublicUser) HasGithubUser() bool

HasGithubUser returns a boolean if a field has been set.

func (*PublicUser) HasId ¶

func (o *PublicUser) HasId() bool

HasId returns a boolean if a field has been set.

func (*PublicUser) HasName ¶

func (o *PublicUser) HasName() bool

HasName returns a boolean if a field has been set.

func (PublicUser) MarshalJSON ¶

func (o PublicUser) MarshalJSON() ([]byte, error)

func (*PublicUser) SetAvatarUrl ¶

func (o *PublicUser) SetAvatarUrl(v string)

SetAvatarUrl gets a reference to the given string and assigns it to the AvatarUrl field.

func (*PublicUser) SetEmail ¶

func (o *PublicUser) SetEmail(v string)

SetEmail gets a reference to the given string and assigns it to the Email field.

func (*PublicUser) SetGithubId ¶

func (o *PublicUser) SetGithubId(v string)

SetGithubId gets a reference to the given string and assigns it to the GithubId field.

func (*PublicUser) SetGithubUser ¶

func (o *PublicUser) SetGithubUser(v string)

SetGithubUser gets a reference to the given string and assigns it to the GithubUser field.

func (*PublicUser) SetId ¶

func (o *PublicUser) SetId(v string)

SetId gets a reference to the given string and assigns it to the Id field.

func (*PublicUser) SetName ¶

func (o *PublicUser) SetName(v string)

SetName gets a reference to the given string and assigns it to the Name field.

type Quotas ¶

type Quotas struct {
	Apps                           *string            `json:"apps,omitempty"`
	Services                       *string            `json:"services,omitempty"`
	Domains                        *string            `json:"domains,omitempty"`
	ServicesByApp                  *string            `json:"services_by_app,omitempty"`
	ServiceProvisioningConcurrency *string            `json:"service_provisioning_concurrency,omitempty"`
	MemoryMb                       *string            `json:"memory_mb,omitempty"`
	InstanceTypes                  []string           `json:"instance_types,omitempty"`
	Regions                        []string           `json:"regions,omitempty"`
	MaxOrganizationMembers         *string            `json:"max_organization_members,omitempty"`
	MaxInstancesByType             *map[string]string `json:"max_instances_by_type,omitempty"`
}

Quotas struct for Quotas

func NewQuotas ¶

func NewQuotas() *Quotas

NewQuotas instantiates a new Quotas 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 NewQuotasWithDefaults ¶

func NewQuotasWithDefaults() *Quotas

NewQuotasWithDefaults instantiates a new Quotas 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 (*Quotas) GetApps ¶

func (o *Quotas) GetApps() string

GetApps returns the Apps field value if set, zero value otherwise.

func (*Quotas) GetAppsOk ¶

func (o *Quotas) GetAppsOk() (*string, bool)

GetAppsOk returns a tuple with the Apps field value if set, nil otherwise and a boolean to check if the value has been set.

func (*Quotas) GetDomains ¶

func (o *Quotas) GetDomains() string

GetDomains returns the Domains field value if set, zero value otherwise.

func (*Quotas) GetDomainsOk ¶

func (o *Quotas) GetDomainsOk() (*string, bool)

GetDomainsOk returns a tuple with the Domains field value if set, nil otherwise and a boolean to check if the value has been set.

func (*Quotas) GetInstanceTypes ¶

func (o *Quotas) GetInstanceTypes() []string

GetInstanceTypes returns the InstanceTypes field value if set, zero value otherwise.

func (*Quotas) GetInstanceTypesOk ¶

func (o *Quotas) GetInstanceTypesOk() ([]string, bool)

GetInstanceTypesOk returns a tuple with the InstanceTypes field value if set, nil otherwise and a boolean to check if the value has been set.

func (*Quotas) GetMaxInstancesByType ¶

func (o *Quotas) GetMaxInstancesByType() map[string]string

GetMaxInstancesByType returns the MaxInstancesByType field value if set, zero value otherwise.

func (*Quotas) GetMaxInstancesByTypeOk ¶

func (o *Quotas) GetMaxInstancesByTypeOk() (*map[string]string, bool)

GetMaxInstancesByTypeOk returns a tuple with the MaxInstancesByType field value if set, nil otherwise and a boolean to check if the value has been set.

func (*Quotas) GetMaxOrganizationMembers ¶

func (o *Quotas) GetMaxOrganizationMembers() string

GetMaxOrganizationMembers returns the MaxOrganizationMembers field value if set, zero value otherwise.

func (*Quotas) GetMaxOrganizationMembersOk ¶

func (o *Quotas) GetMaxOrganizationMembersOk() (*string, bool)

GetMaxOrganizationMembersOk returns a tuple with the MaxOrganizationMembers field value if set, nil otherwise and a boolean to check if the value has been set.

func (*Quotas) GetMemoryMb ¶

func (o *Quotas) GetMemoryMb() string

GetMemoryMb returns the MemoryMb field value if set, zero value otherwise.

func (*Quotas) GetMemoryMbOk ¶

func (o *Quotas) GetMemoryMbOk() (*string, bool)

GetMemoryMbOk returns a tuple with the MemoryMb field value if set, nil otherwise and a boolean to check if the value has been set.

func (*Quotas) GetRegions ¶

func (o *Quotas) GetRegions() []string

GetRegions returns the Regions field value if set, zero value otherwise.

func (*Quotas) GetRegionsOk ¶

func (o *Quotas) GetRegionsOk() ([]string, bool)

GetRegionsOk returns a tuple with the Regions field value if set, nil otherwise and a boolean to check if the value has been set.

func (*Quotas) GetServiceProvisioningConcurrency ¶

func (o *Quotas) GetServiceProvisioningConcurrency() string

GetServiceProvisioningConcurrency returns the ServiceProvisioningConcurrency field value if set, zero value otherwise.

func (*Quotas) GetServiceProvisioningConcurrencyOk ¶

func (o *Quotas) GetServiceProvisioningConcurrencyOk() (*string, bool)

GetServiceProvisioningConcurrencyOk returns a tuple with the ServiceProvisioningConcurrency field value if set, nil otherwise and a boolean to check if the value has been set.

func (*Quotas) GetServices ¶

func (o *Quotas) GetServices() string

GetServices returns the Services field value if set, zero value otherwise.

func (*Quotas) GetServicesByApp ¶

func (o *Quotas) GetServicesByApp() string

GetServicesByApp returns the ServicesByApp field value if set, zero value otherwise.

func (*Quotas) GetServicesByAppOk ¶

func (o *Quotas) GetServicesByAppOk() (*string, bool)

GetServicesByAppOk returns a tuple with the ServicesByApp field value if set, nil otherwise and a boolean to check if the value has been set.

func (*Quotas) GetServicesOk ¶

func (o *Quotas) GetServicesOk() (*string, bool)

GetServicesOk returns a tuple with the Services field value if set, nil otherwise and a boolean to check if the value has been set.

func (*Quotas) HasApps ¶

func (o *Quotas) HasApps() bool

HasApps returns a boolean if a field has been set.

func (*Quotas) HasDomains ¶

func (o *Quotas) HasDomains() bool

HasDomains returns a boolean if a field has been set.

func (*Quotas) HasInstanceTypes ¶

func (o *Quotas) HasInstanceTypes() bool

HasInstanceTypes returns a boolean if a field has been set.

func (*Quotas) HasMaxInstancesByType ¶

func (o *Quotas) HasMaxInstancesByType() bool

HasMaxInstancesByType returns a boolean if a field has been set.

func (*Quotas) HasMaxOrganizationMembers ¶

func (o *Quotas) HasMaxOrganizationMembers() bool

HasMaxOrganizationMembers returns a boolean if a field has been set.

func (*Quotas) HasMemoryMb ¶

func (o *Quotas) HasMemoryMb() bool

HasMemoryMb returns a boolean if a field has been set.

func (*Quotas) HasRegions ¶

func (o *Quotas) HasRegions() bool

HasRegions returns a boolean if a field has been set.

func (*Quotas) HasServiceProvisioningConcurrency ¶

func (o *Quotas) HasServiceProvisioningConcurrency() bool

HasServiceProvisioningConcurrency returns a boolean if a field has been set.

func (*Quotas) HasServices ¶

func (o *Quotas) HasServices() bool

HasServices returns a boolean if a field has been set.

func (*Quotas) HasServicesByApp ¶

func (o *Quotas) HasServicesByApp() bool

HasServicesByApp returns a boolean if a field has been set.

func (Quotas) MarshalJSON ¶

func (o Quotas) MarshalJSON() ([]byte, error)

func (*Quotas) SetApps ¶

func (o *Quotas) SetApps(v string)

SetApps gets a reference to the given string and assigns it to the Apps field.

func (*Quotas) SetDomains ¶

func (o *Quotas) SetDomains(v string)

SetDomains gets a reference to the given string and assigns it to the Domains field.

func (*Quotas) SetInstanceTypes ¶

func (o *Quotas) SetInstanceTypes(v []string)

SetInstanceTypes gets a reference to the given []string and assigns it to the InstanceTypes field.

func (*Quotas) SetMaxInstancesByType ¶

func (o *Quotas) SetMaxInstancesByType(v map[string]string)

SetMaxInstancesByType gets a reference to the given map[string]string and assigns it to the MaxInstancesByType field.

func (*Quotas) SetMaxOrganizationMembers ¶

func (o *Quotas) SetMaxOrganizationMembers(v string)

SetMaxOrganizationMembers gets a reference to the given string and assigns it to the MaxOrganizationMembers field.

func (*Quotas) SetMemoryMb ¶

func (o *Quotas) SetMemoryMb(v string)

SetMemoryMb gets a reference to the given string and assigns it to the MemoryMb field.

func (*Quotas) SetRegions ¶

func (o *Quotas) SetRegions(v []string)

SetRegions gets a reference to the given []string and assigns it to the Regions field.

func (*Quotas) SetServiceProvisioningConcurrency ¶

func (o *Quotas) SetServiceProvisioningConcurrency(v string)

SetServiceProvisioningConcurrency gets a reference to the given string and assigns it to the ServiceProvisioningConcurrency field.

func (*Quotas) SetServices ¶

func (o *Quotas) SetServices(v string)

SetServices gets a reference to the given string and assigns it to the Services field.

func (*Quotas) SetServicesByApp ¶

func (o *Quotas) SetServicesByApp(v string)

SetServicesByApp gets a reference to the given string and assigns it to the ServicesByApp field.

type QuotasApi ¶

type QuotasApi interface {

	/*
		ReviewOrganizationCapacity Review Organization Capacity

		@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
		@return ApiReviewOrganizationCapacityRequest
	*/
	ReviewOrganizationCapacity(ctx context.Context) ApiReviewOrganizationCapacityRequest

	// ReviewOrganizationCapacityExecute executes the request
	//  @return ReviewOrganizationCapacityReply
	ReviewOrganizationCapacityExecute(r ApiReviewOrganizationCapacityRequest) (*ReviewOrganizationCapacityReply, *http.Response, error)
}

type QuotasApiService ¶

type QuotasApiService service

QuotasApiService QuotasApi service

func (*QuotasApiService) ReviewOrganizationCapacity ¶

func (a *QuotasApiService) ReviewOrganizationCapacity(ctx context.Context) ApiReviewOrganizationCapacityRequest

ReviewOrganizationCapacity Review Organization Capacity

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@return ApiReviewOrganizationCapacityRequest

func (*QuotasApiService) ReviewOrganizationCapacityExecute ¶

Execute executes the request

@return ReviewOrganizationCapacityReply

type ReactivateOrganizationReply ¶

type ReactivateOrganizationReply struct {
	Organization *Organization `json:"organization,omitempty"`
}

ReactivateOrganizationReply struct for ReactivateOrganizationReply

func NewReactivateOrganizationReply ¶

func NewReactivateOrganizationReply() *ReactivateOrganizationReply

NewReactivateOrganizationReply instantiates a new ReactivateOrganizationReply 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 NewReactivateOrganizationReplyWithDefaults ¶

func NewReactivateOrganizationReplyWithDefaults() *ReactivateOrganizationReply

NewReactivateOrganizationReplyWithDefaults instantiates a new ReactivateOrganizationReply 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 (*ReactivateOrganizationReply) GetOrganization ¶

func (o *ReactivateOrganizationReply) GetOrganization() Organization

GetOrganization returns the Organization field value if set, zero value otherwise.

func (*ReactivateOrganizationReply) GetOrganizationOk ¶

func (o *ReactivateOrganizationReply) GetOrganizationOk() (*Organization, bool)

GetOrganizationOk returns a tuple with the Organization field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ReactivateOrganizationReply) HasOrganization ¶

func (o *ReactivateOrganizationReply) HasOrganization() bool

HasOrganization returns a boolean if a field has been set.

func (ReactivateOrganizationReply) MarshalJSON ¶

func (o ReactivateOrganizationReply) MarshalJSON() ([]byte, error)

func (*ReactivateOrganizationReply) SetOrganization ¶

func (o *ReactivateOrganizationReply) SetOrganization(v Organization)

SetOrganization gets a reference to the given Organization and assigns it to the Organization field.

type RedeployReply ¶

type RedeployReply struct {
	Deployment *Deployment `json:"deployment,omitempty"`
}

RedeployReply struct for RedeployReply

func NewRedeployReply ¶

func NewRedeployReply() *RedeployReply

NewRedeployReply instantiates a new RedeployReply 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 NewRedeployReplyWithDefaults ¶

func NewRedeployReplyWithDefaults() *RedeployReply

NewRedeployReplyWithDefaults instantiates a new RedeployReply 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 (*RedeployReply) GetDeployment ¶

func (o *RedeployReply) GetDeployment() Deployment

GetDeployment returns the Deployment field value if set, zero value otherwise.

func (*RedeployReply) GetDeploymentOk ¶

func (o *RedeployReply) GetDeploymentOk() (*Deployment, bool)

GetDeploymentOk returns a tuple with the Deployment field value if set, nil otherwise and a boolean to check if the value has been set.

func (*RedeployReply) HasDeployment ¶

func (o *RedeployReply) HasDeployment() bool

HasDeployment returns a boolean if a field has been set.

func (RedeployReply) MarshalJSON ¶

func (o RedeployReply) MarshalJSON() ([]byte, error)

func (*RedeployReply) SetDeployment ¶

func (o *RedeployReply) SetDeployment(v Deployment)

SetDeployment gets a reference to the given Deployment and assigns it to the Deployment field.

type RedeployRequestInfo ¶

type RedeployRequestInfo struct {
	DeploymentGroup *string `json:"deployment_group,omitempty"`
	Sha             *string `json:"sha,omitempty"`
	UseCache        *bool   `json:"use_cache,omitempty"`
	// If set to true, the build stage will be skipped and the image coming from the last successful build step will be used instead. The call fails if no previous successful builds happened.
	SkipBuild *bool `json:"skip_build,omitempty"`
}

RedeployRequestInfo struct for RedeployRequestInfo

func NewRedeployRequestInfo ¶

func NewRedeployRequestInfo() *RedeployRequestInfo

NewRedeployRequestInfo instantiates a new RedeployRequestInfo 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 NewRedeployRequestInfoWithDefaults ¶

func NewRedeployRequestInfoWithDefaults() *RedeployRequestInfo

NewRedeployRequestInfoWithDefaults instantiates a new RedeployRequestInfo 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 (*RedeployRequestInfo) GetDeploymentGroup ¶

func (o *RedeployRequestInfo) GetDeploymentGroup() string

GetDeploymentGroup returns the DeploymentGroup field value if set, zero value otherwise.

func (*RedeployRequestInfo) GetDeploymentGroupOk ¶

func (o *RedeployRequestInfo) GetDeploymentGroupOk() (*string, bool)

GetDeploymentGroupOk returns a tuple with the DeploymentGroup field value if set, nil otherwise and a boolean to check if the value has been set.

func (*RedeployRequestInfo) GetSha ¶

func (o *RedeployRequestInfo) GetSha() string

GetSha returns the Sha field value if set, zero value otherwise.

func (*RedeployRequestInfo) GetShaOk ¶

func (o *RedeployRequestInfo) GetShaOk() (*string, bool)

GetShaOk returns a tuple with the Sha field value if set, nil otherwise and a boolean to check if the value has been set.

func (*RedeployRequestInfo) GetSkipBuild ¶

func (o *RedeployRequestInfo) GetSkipBuild() bool

GetSkipBuild returns the SkipBuild field value if set, zero value otherwise.

func (*RedeployRequestInfo) GetSkipBuildOk ¶

func (o *RedeployRequestInfo) GetSkipBuildOk() (*bool, bool)

GetSkipBuildOk returns a tuple with the SkipBuild field value if set, nil otherwise and a boolean to check if the value has been set.

func (*RedeployRequestInfo) GetUseCache ¶

func (o *RedeployRequestInfo) GetUseCache() bool

GetUseCache returns the UseCache field value if set, zero value otherwise.

func (*RedeployRequestInfo) GetUseCacheOk ¶

func (o *RedeployRequestInfo) GetUseCacheOk() (*bool, bool)

GetUseCacheOk returns a tuple with the UseCache field value if set, nil otherwise and a boolean to check if the value has been set.

func (*RedeployRequestInfo) HasDeploymentGroup ¶

func (o *RedeployRequestInfo) HasDeploymentGroup() bool

HasDeploymentGroup returns a boolean if a field has been set.

func (*RedeployRequestInfo) HasSha ¶

func (o *RedeployRequestInfo) HasSha() bool

HasSha returns a boolean if a field has been set.

func (*RedeployRequestInfo) HasSkipBuild ¶

func (o *RedeployRequestInfo) HasSkipBuild() bool

HasSkipBuild returns a boolean if a field has been set.

func (*RedeployRequestInfo) HasUseCache ¶

func (o *RedeployRequestInfo) HasUseCache() bool

HasUseCache returns a boolean if a field has been set.

func (RedeployRequestInfo) MarshalJSON ¶

func (o RedeployRequestInfo) MarshalJSON() ([]byte, error)

func (*RedeployRequestInfo) SetDeploymentGroup ¶

func (o *RedeployRequestInfo) SetDeploymentGroup(v string)

SetDeploymentGroup gets a reference to the given string and assigns it to the DeploymentGroup field.

func (*RedeployRequestInfo) SetSha ¶

func (o *RedeployRequestInfo) SetSha(v string)

SetSha gets a reference to the given string and assigns it to the Sha field.

func (*RedeployRequestInfo) SetSkipBuild ¶

func (o *RedeployRequestInfo) SetSkipBuild(v bool)

SetSkipBuild gets a reference to the given bool and assigns it to the SkipBuild field.

func (*RedeployRequestInfo) SetUseCache ¶

func (o *RedeployRequestInfo) SetUseCache(v bool)

SetUseCache gets a reference to the given bool and assigns it to the UseCache field.

type Region ¶

type Region struct {
	Id          *string  `json:"id,omitempty"`
	Name        *string  `json:"name,omitempty"`
	Coordinates []string `json:"coordinates,omitempty"`
	Status      *string  `json:"status,omitempty"`
	Instances   []string `json:"instances,omitempty"`
	Datacenters []string `json:"datacenters,omitempty"`
}

Region struct for Region

func NewRegion ¶

func NewRegion() *Region

NewRegion instantiates a new Region 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 NewRegionWithDefaults ¶

func NewRegionWithDefaults() *Region

NewRegionWithDefaults instantiates a new Region 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 (*Region) GetCoordinates ¶

func (o *Region) GetCoordinates() []string

GetCoordinates returns the Coordinates field value if set, zero value otherwise.

func (*Region) GetCoordinatesOk ¶

func (o *Region) GetCoordinatesOk() ([]string, bool)

GetCoordinatesOk returns a tuple with the Coordinates field value if set, nil otherwise and a boolean to check if the value has been set.

func (*Region) GetDatacenters ¶

func (o *Region) GetDatacenters() []string

GetDatacenters returns the Datacenters field value if set, zero value otherwise.

func (*Region) GetDatacentersOk ¶

func (o *Region) GetDatacentersOk() ([]string, bool)

GetDatacentersOk returns a tuple with the Datacenters field value if set, nil otherwise and a boolean to check if the value has been set.

func (*Region) GetId ¶

func (o *Region) GetId() string

GetId returns the Id field value if set, zero value otherwise.

func (*Region) GetIdOk ¶

func (o *Region) 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 (*Region) GetInstances ¶

func (o *Region) GetInstances() []string

GetInstances returns the Instances field value if set, zero value otherwise.

func (*Region) GetInstancesOk ¶

func (o *Region) GetInstancesOk() ([]string, bool)

GetInstancesOk returns a tuple with the Instances field value if set, nil otherwise and a boolean to check if the value has been set.

func (*Region) GetName ¶

func (o *Region) GetName() string

GetName returns the Name field value if set, zero value otherwise.

func (*Region) GetNameOk ¶

func (o *Region) 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 (*Region) GetStatus ¶

func (o *Region) GetStatus() string

GetStatus returns the Status field value if set, zero value otherwise.

func (*Region) GetStatusOk ¶

func (o *Region) GetStatusOk() (*string, 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 (*Region) HasCoordinates ¶

func (o *Region) HasCoordinates() bool

HasCoordinates returns a boolean if a field has been set.

func (*Region) HasDatacenters ¶

func (o *Region) HasDatacenters() bool

HasDatacenters returns a boolean if a field has been set.

func (*Region) HasId ¶

func (o *Region) HasId() bool

HasId returns a boolean if a field has been set.

func (*Region) HasInstances ¶

func (o *Region) HasInstances() bool

HasInstances returns a boolean if a field has been set.

func (*Region) HasName ¶

func (o *Region) HasName() bool

HasName returns a boolean if a field has been set.

func (*Region) HasStatus ¶

func (o *Region) HasStatus() bool

HasStatus returns a boolean if a field has been set.

func (Region) MarshalJSON ¶

func (o Region) MarshalJSON() ([]byte, error)

func (*Region) SetCoordinates ¶

func (o *Region) SetCoordinates(v []string)

SetCoordinates gets a reference to the given []string and assigns it to the Coordinates field.

func (*Region) SetDatacenters ¶

func (o *Region) SetDatacenters(v []string)

SetDatacenters gets a reference to the given []string and assigns it to the Datacenters field.

func (*Region) SetId ¶

func (o *Region) SetId(v string)

SetId gets a reference to the given string and assigns it to the Id field.

func (*Region) SetInstances ¶

func (o *Region) SetInstances(v []string)

SetInstances gets a reference to the given []string and assigns it to the Instances field.

func (*Region) SetName ¶

func (o *Region) SetName(v string)

SetName gets a reference to the given string and assigns it to the Name field.

func (*Region) SetStatus ¶

func (o *Region) SetStatus(v string)

SetStatus gets a reference to the given string and assigns it to the Status field.

type RegionListItem ¶

type RegionListItem struct {
	Id          *string  `json:"id,omitempty"`
	Name        *string  `json:"name,omitempty"`
	Coordinates []string `json:"coordinates,omitempty"`
	Status      *string  `json:"status,omitempty"`
	Instances   []string `json:"instances,omitempty"`
	Datacenters []string `json:"datacenters,omitempty"`
}

RegionListItem struct for RegionListItem

func NewRegionListItem ¶

func NewRegionListItem() *RegionListItem

NewRegionListItem instantiates a new RegionListItem 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 NewRegionListItemWithDefaults ¶

func NewRegionListItemWithDefaults() *RegionListItem

NewRegionListItemWithDefaults instantiates a new RegionListItem 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 (*RegionListItem) GetCoordinates ¶

func (o *RegionListItem) GetCoordinates() []string

GetCoordinates returns the Coordinates field value if set, zero value otherwise.

func (*RegionListItem) GetCoordinatesOk ¶

func (o *RegionListItem) GetCoordinatesOk() ([]string, bool)

GetCoordinatesOk returns a tuple with the Coordinates field value if set, nil otherwise and a boolean to check if the value has been set.

func (*RegionListItem) GetDatacenters ¶

func (o *RegionListItem) GetDatacenters() []string

GetDatacenters returns the Datacenters field value if set, zero value otherwise.

func (*RegionListItem) GetDatacentersOk ¶

func (o *RegionListItem) GetDatacentersOk() ([]string, bool)

GetDatacentersOk returns a tuple with the Datacenters field value if set, nil otherwise and a boolean to check if the value has been set.

func (*RegionListItem) GetId ¶

func (o *RegionListItem) GetId() string

GetId returns the Id field value if set, zero value otherwise.

func (*RegionListItem) GetIdOk ¶

func (o *RegionListItem) 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 (*RegionListItem) GetInstances ¶

func (o *RegionListItem) GetInstances() []string

GetInstances returns the Instances field value if set, zero value otherwise.

func (*RegionListItem) GetInstancesOk ¶

func (o *RegionListItem) GetInstancesOk() ([]string, bool)

GetInstancesOk returns a tuple with the Instances field value if set, nil otherwise and a boolean to check if the value has been set.

func (*RegionListItem) GetName ¶

func (o *RegionListItem) GetName() string

GetName returns the Name field value if set, zero value otherwise.

func (*RegionListItem) GetNameOk ¶

func (o *RegionListItem) 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 (*RegionListItem) GetStatus ¶

func (o *RegionListItem) GetStatus() string

GetStatus returns the Status field value if set, zero value otherwise.

func (*RegionListItem) GetStatusOk ¶

func (o *RegionListItem) GetStatusOk() (*string, 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 (*RegionListItem) HasCoordinates ¶

func (o *RegionListItem) HasCoordinates() bool

HasCoordinates returns a boolean if a field has been set.

func (*RegionListItem) HasDatacenters ¶

func (o *RegionListItem) HasDatacenters() bool

HasDatacenters returns a boolean if a field has been set.

func (*RegionListItem) HasId ¶

func (o *RegionListItem) HasId() bool

HasId returns a boolean if a field has been set.

func (*RegionListItem) HasInstances ¶

func (o *RegionListItem) HasInstances() bool

HasInstances returns a boolean if a field has been set.

func (*RegionListItem) HasName ¶

func (o *RegionListItem) HasName() bool

HasName returns a boolean if a field has been set.

func (*RegionListItem) HasStatus ¶

func (o *RegionListItem) HasStatus() bool

HasStatus returns a boolean if a field has been set.

func (RegionListItem) MarshalJSON ¶

func (o RegionListItem) MarshalJSON() ([]byte, error)

func (*RegionListItem) SetCoordinates ¶

func (o *RegionListItem) SetCoordinates(v []string)

SetCoordinates gets a reference to the given []string and assigns it to the Coordinates field.

func (*RegionListItem) SetDatacenters ¶

func (o *RegionListItem) SetDatacenters(v []string)

SetDatacenters gets a reference to the given []string and assigns it to the Datacenters field.

func (*RegionListItem) SetId ¶

func (o *RegionListItem) SetId(v string)

SetId gets a reference to the given string and assigns it to the Id field.

func (*RegionListItem) SetInstances ¶

func (o *RegionListItem) SetInstances(v []string)

SetInstances gets a reference to the given []string and assigns it to the Instances field.

func (*RegionListItem) SetName ¶

func (o *RegionListItem) SetName(v string)

SetName gets a reference to the given string and assigns it to the Name field.

func (*RegionListItem) SetStatus ¶

func (o *RegionListItem) SetStatus(v string)

SetStatus gets a reference to the given string and assigns it to the Status field.

type RegionUsage ¶

type RegionUsage struct {
	Instances *map[string]InstanceUsage `json:"instances,omitempty"`
}

RegionUsage struct for RegionUsage

func NewRegionUsage ¶

func NewRegionUsage() *RegionUsage

NewRegionUsage instantiates a new RegionUsage 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 NewRegionUsageWithDefaults ¶

func NewRegionUsageWithDefaults() *RegionUsage

NewRegionUsageWithDefaults instantiates a new RegionUsage 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 (*RegionUsage) GetInstances ¶

func (o *RegionUsage) GetInstances() map[string]InstanceUsage

GetInstances returns the Instances field value if set, zero value otherwise.

func (*RegionUsage) GetInstancesOk ¶

func (o *RegionUsage) GetInstancesOk() (*map[string]InstanceUsage, bool)

GetInstancesOk returns a tuple with the Instances field value if set, nil otherwise and a boolean to check if the value has been set.

func (*RegionUsage) HasInstances ¶

func (o *RegionUsage) HasInstances() bool

HasInstances returns a boolean if a field has been set.

func (RegionUsage) MarshalJSON ¶

func (o RegionUsage) MarshalJSON() ([]byte, error)

func (*RegionUsage) SetInstances ¶

func (o *RegionUsage) SetInstances(v map[string]InstanceUsage)

SetInstances gets a reference to the given map[string]InstanceUsage and assigns it to the Instances field.

type RegionalDeployment ¶

type RegionalDeployment struct {
	Id               *string                       `json:"id,omitempty"`
	CreatedAt        *time.Time                    `json:"created_at,omitempty"`
	UpdatedAt        *time.Time                    `json:"updated_at,omitempty"`
	AllocatedAt      *time.Time                    `json:"allocated_at,omitempty"`
	StartedAt        *time.Time                    `json:"started_at,omitempty"`
	SucceededAt      *time.Time                    `json:"succeeded_at,omitempty"`
	TerminatedAt     *time.Time                    `json:"terminated_at,omitempty"`
	OrganizationId   *string                       `json:"organization_id,omitempty"`
	AppId            *string                       `json:"app_id,omitempty"`
	ServiceId        *string                       `json:"service_id,omitempty"`
	Region           *string                       `json:"region,omitempty"`
	ParentId         *string                       `json:"parent_id,omitempty"`
	ChildId          *string                       `json:"child_id,omitempty"`
	Status           *RegionalDeploymentStatus     `json:"status,omitempty"`
	Messages         []string                      `json:"messages,omitempty"`
	Definition       *RegionalDeploymentDefinition `json:"definition,omitempty"`
	Datacenters      []string                      `json:"datacenters,omitempty"`
	Metadata         *RegionalDeploymentMetadata   `json:"metadata,omitempty"`
	ProvisioningInfo *DeploymentProvisioningInfo   `json:"provisioning_info,omitempty"`
	UseKumaV2        *bool                         `json:"use_kuma_v2,omitempty"`
	Version          *string                       `json:"version,omitempty"`
	DeploymentGroup  *string                       `json:"deployment_group,omitempty"`
	DeploymentId     *string                       `json:"deployment_id,omitempty"`
}

RegionalDeployment struct for RegionalDeployment

func NewRegionalDeployment ¶

func NewRegionalDeployment() *RegionalDeployment

NewRegionalDeployment instantiates a new RegionalDeployment 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 NewRegionalDeploymentWithDefaults ¶

func NewRegionalDeploymentWithDefaults() *RegionalDeployment

NewRegionalDeploymentWithDefaults instantiates a new RegionalDeployment 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 (*RegionalDeployment) GetAllocatedAt ¶

func (o *RegionalDeployment) GetAllocatedAt() time.Time

GetAllocatedAt returns the AllocatedAt field value if set, zero value otherwise.

func (*RegionalDeployment) GetAllocatedAtOk ¶

func (o *RegionalDeployment) GetAllocatedAtOk() (*time.Time, bool)

GetAllocatedAtOk returns a tuple with the AllocatedAt field value if set, nil otherwise and a boolean to check if the value has been set.

func (*RegionalDeployment) GetAppId ¶

func (o *RegionalDeployment) GetAppId() string

GetAppId returns the AppId field value if set, zero value otherwise.

func (*RegionalDeployment) GetAppIdOk ¶

func (o *RegionalDeployment) GetAppIdOk() (*string, bool)

GetAppIdOk returns a tuple with the AppId field value if set, nil otherwise and a boolean to check if the value has been set.

func (*RegionalDeployment) GetChildId ¶

func (o *RegionalDeployment) GetChildId() string

GetChildId returns the ChildId field value if set, zero value otherwise.

func (*RegionalDeployment) GetChildIdOk ¶

func (o *RegionalDeployment) GetChildIdOk() (*string, bool)

GetChildIdOk returns a tuple with the ChildId field value if set, nil otherwise and a boolean to check if the value has been set.

func (*RegionalDeployment) GetCreatedAt ¶

func (o *RegionalDeployment) GetCreatedAt() time.Time

GetCreatedAt returns the CreatedAt field value if set, zero value otherwise.

func (*RegionalDeployment) GetCreatedAtOk ¶

func (o *RegionalDeployment) GetCreatedAtOk() (*time.Time, bool)

GetCreatedAtOk returns a tuple with the CreatedAt field value if set, nil otherwise and a boolean to check if the value has been set.

func (*RegionalDeployment) GetDatacenters ¶

func (o *RegionalDeployment) GetDatacenters() []string

GetDatacenters returns the Datacenters field value if set, zero value otherwise.

func (*RegionalDeployment) GetDatacentersOk ¶

func (o *RegionalDeployment) GetDatacentersOk() ([]string, bool)

GetDatacentersOk returns a tuple with the Datacenters field value if set, nil otherwise and a boolean to check if the value has been set.

func (*RegionalDeployment) GetDefinition ¶

GetDefinition returns the Definition field value if set, zero value otherwise.

func (*RegionalDeployment) GetDefinitionOk ¶

func (o *RegionalDeployment) GetDefinitionOk() (*RegionalDeploymentDefinition, bool)

GetDefinitionOk returns a tuple with the Definition field value if set, nil otherwise and a boolean to check if the value has been set.

func (*RegionalDeployment) GetDeploymentGroup ¶

func (o *RegionalDeployment) GetDeploymentGroup() string

GetDeploymentGroup returns the DeploymentGroup field value if set, zero value otherwise.

func (*RegionalDeployment) GetDeploymentGroupOk ¶

func (o *RegionalDeployment) GetDeploymentGroupOk() (*string, bool)

GetDeploymentGroupOk returns a tuple with the DeploymentGroup field value if set, nil otherwise and a boolean to check if the value has been set.

func (*RegionalDeployment) GetDeploymentId ¶

func (o *RegionalDeployment) GetDeploymentId() string

GetDeploymentId returns the DeploymentId field value if set, zero value otherwise.

func (*RegionalDeployment) GetDeploymentIdOk ¶

func (o *RegionalDeployment) GetDeploymentIdOk() (*string, bool)

GetDeploymentIdOk returns a tuple with the DeploymentId field value if set, nil otherwise and a boolean to check if the value has been set.

func (*RegionalDeployment) GetId ¶

func (o *RegionalDeployment) GetId() string

GetId returns the Id field value if set, zero value otherwise.

func (*RegionalDeployment) GetIdOk ¶

func (o *RegionalDeployment) 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 (*RegionalDeployment) GetMessages ¶

func (o *RegionalDeployment) GetMessages() []string

GetMessages returns the Messages field value if set, zero value otherwise.

func (*RegionalDeployment) GetMessagesOk ¶

func (o *RegionalDeployment) GetMessagesOk() ([]string, bool)

GetMessagesOk returns a tuple with the Messages field value if set, nil otherwise and a boolean to check if the value has been set.

func (*RegionalDeployment) GetMetadata ¶

GetMetadata returns the Metadata field value if set, zero value otherwise.

func (*RegionalDeployment) GetMetadataOk ¶

func (o *RegionalDeployment) GetMetadataOk() (*RegionalDeploymentMetadata, bool)

GetMetadataOk returns a tuple with the Metadata field value if set, nil otherwise and a boolean to check if the value has been set.

func (*RegionalDeployment) GetOrganizationId ¶

func (o *RegionalDeployment) GetOrganizationId() string

GetOrganizationId returns the OrganizationId field value if set, zero value otherwise.

func (*RegionalDeployment) GetOrganizationIdOk ¶

func (o *RegionalDeployment) GetOrganizationIdOk() (*string, bool)

GetOrganizationIdOk returns a tuple with the OrganizationId field value if set, nil otherwise and a boolean to check if the value has been set.

func (*RegionalDeployment) GetParentId ¶

func (o *RegionalDeployment) GetParentId() string

GetParentId returns the ParentId field value if set, zero value otherwise.

func (*RegionalDeployment) GetParentIdOk ¶

func (o *RegionalDeployment) GetParentIdOk() (*string, bool)

GetParentIdOk returns a tuple with the ParentId field value if set, nil otherwise and a boolean to check if the value has been set.

func (*RegionalDeployment) GetProvisioningInfo ¶

func (o *RegionalDeployment) GetProvisioningInfo() DeploymentProvisioningInfo

GetProvisioningInfo returns the ProvisioningInfo field value if set, zero value otherwise.

func (*RegionalDeployment) GetProvisioningInfoOk ¶

func (o *RegionalDeployment) GetProvisioningInfoOk() (*DeploymentProvisioningInfo, bool)

GetProvisioningInfoOk returns a tuple with the ProvisioningInfo field value if set, nil otherwise and a boolean to check if the value has been set.

func (*RegionalDeployment) GetRegion ¶

func (o *RegionalDeployment) GetRegion() string

GetRegion returns the Region field value if set, zero value otherwise.

func (*RegionalDeployment) GetRegionOk ¶

func (o *RegionalDeployment) GetRegionOk() (*string, bool)

GetRegionOk returns a tuple with the Region field value if set, nil otherwise and a boolean to check if the value has been set.

func (*RegionalDeployment) GetServiceId ¶

func (o *RegionalDeployment) GetServiceId() string

GetServiceId returns the ServiceId field value if set, zero value otherwise.

func (*RegionalDeployment) GetServiceIdOk ¶

func (o *RegionalDeployment) GetServiceIdOk() (*string, bool)

GetServiceIdOk returns a tuple with the ServiceId field value if set, nil otherwise and a boolean to check if the value has been set.

func (*RegionalDeployment) GetStartedAt ¶

func (o *RegionalDeployment) GetStartedAt() time.Time

GetStartedAt returns the StartedAt field value if set, zero value otherwise.

func (*RegionalDeployment) GetStartedAtOk ¶

func (o *RegionalDeployment) GetStartedAtOk() (*time.Time, bool)

GetStartedAtOk returns a tuple with the StartedAt field value if set, nil otherwise and a boolean to check if the value has been set.

func (*RegionalDeployment) GetStatus ¶

GetStatus returns the Status field value if set, zero value otherwise.

func (*RegionalDeployment) GetStatusOk ¶

func (o *RegionalDeployment) GetStatusOk() (*RegionalDeploymentStatus, 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 (*RegionalDeployment) GetSucceededAt ¶

func (o *RegionalDeployment) GetSucceededAt() time.Time

GetSucceededAt returns the SucceededAt field value if set, zero value otherwise.

func (*RegionalDeployment) GetSucceededAtOk ¶

func (o *RegionalDeployment) GetSucceededAtOk() (*time.Time, bool)

GetSucceededAtOk returns a tuple with the SucceededAt field value if set, nil otherwise and a boolean to check if the value has been set.

func (*RegionalDeployment) GetTerminatedAt ¶

func (o *RegionalDeployment) GetTerminatedAt() time.Time

GetTerminatedAt returns the TerminatedAt field value if set, zero value otherwise.

func (*RegionalDeployment) GetTerminatedAtOk ¶

func (o *RegionalDeployment) GetTerminatedAtOk() (*time.Time, bool)

GetTerminatedAtOk returns a tuple with the TerminatedAt field value if set, nil otherwise and a boolean to check if the value has been set.

func (*RegionalDeployment) GetUpdatedAt ¶

func (o *RegionalDeployment) GetUpdatedAt() time.Time

GetUpdatedAt returns the UpdatedAt field value if set, zero value otherwise.

func (*RegionalDeployment) GetUpdatedAtOk ¶

func (o *RegionalDeployment) GetUpdatedAtOk() (*time.Time, bool)

GetUpdatedAtOk returns a tuple with the UpdatedAt field value if set, nil otherwise and a boolean to check if the value has been set.

func (*RegionalDeployment) GetUseKumaV2 ¶

func (o *RegionalDeployment) GetUseKumaV2() bool

GetUseKumaV2 returns the UseKumaV2 field value if set, zero value otherwise.

func (*RegionalDeployment) GetUseKumaV2Ok ¶

func (o *RegionalDeployment) GetUseKumaV2Ok() (*bool, bool)

GetUseKumaV2Ok returns a tuple with the UseKumaV2 field value if set, nil otherwise and a boolean to check if the value has been set.

func (*RegionalDeployment) GetVersion ¶

func (o *RegionalDeployment) GetVersion() string

GetVersion returns the Version field value if set, zero value otherwise.

func (*RegionalDeployment) GetVersionOk ¶

func (o *RegionalDeployment) GetVersionOk() (*string, bool)

GetVersionOk returns a tuple with the Version field value if set, nil otherwise and a boolean to check if the value has been set.

func (*RegionalDeployment) HasAllocatedAt ¶

func (o *RegionalDeployment) HasAllocatedAt() bool

HasAllocatedAt returns a boolean if a field has been set.

func (*RegionalDeployment) HasAppId ¶

func (o *RegionalDeployment) HasAppId() bool

HasAppId returns a boolean if a field has been set.

func (*RegionalDeployment) HasChildId ¶

func (o *RegionalDeployment) HasChildId() bool

HasChildId returns a boolean if a field has been set.

func (*RegionalDeployment) HasCreatedAt ¶

func (o *RegionalDeployment) HasCreatedAt() bool

HasCreatedAt returns a boolean if a field has been set.

func (*RegionalDeployment) HasDatacenters ¶

func (o *RegionalDeployment) HasDatacenters() bool

HasDatacenters returns a boolean if a field has been set.

func (*RegionalDeployment) HasDefinition ¶

func (o *RegionalDeployment) HasDefinition() bool

HasDefinition returns a boolean if a field has been set.

func (*RegionalDeployment) HasDeploymentGroup ¶

func (o *RegionalDeployment) HasDeploymentGroup() bool

HasDeploymentGroup returns a boolean if a field has been set.

func (*RegionalDeployment) HasDeploymentId ¶

func (o *RegionalDeployment) HasDeploymentId() bool

HasDeploymentId returns a boolean if a field has been set.

func (*RegionalDeployment) HasId ¶

func (o *RegionalDeployment) HasId() bool

HasId returns a boolean if a field has been set.

func (*RegionalDeployment) HasMessages ¶

func (o *RegionalDeployment) HasMessages() bool

HasMessages returns a boolean if a field has been set.

func (*RegionalDeployment) HasMetadata ¶

func (o *RegionalDeployment) HasMetadata() bool

HasMetadata returns a boolean if a field has been set.

func (*RegionalDeployment) HasOrganizationId ¶

func (o *RegionalDeployment) HasOrganizationId() bool

HasOrganizationId returns a boolean if a field has been set.

func (*RegionalDeployment) HasParentId ¶

func (o *RegionalDeployment) HasParentId() bool

HasParentId returns a boolean if a field has been set.

func (*RegionalDeployment) HasProvisioningInfo ¶

func (o *RegionalDeployment) HasProvisioningInfo() bool

HasProvisioningInfo returns a boolean if a field has been set.

func (*RegionalDeployment) HasRegion ¶

func (o *RegionalDeployment) HasRegion() bool

HasRegion returns a boolean if a field has been set.

func (*RegionalDeployment) HasServiceId ¶

func (o *RegionalDeployment) HasServiceId() bool

HasServiceId returns a boolean if a field has been set.

func (*RegionalDeployment) HasStartedAt ¶

func (o *RegionalDeployment) HasStartedAt() bool

HasStartedAt returns a boolean if a field has been set.

func (*RegionalDeployment) HasStatus ¶

func (o *RegionalDeployment) HasStatus() bool

HasStatus returns a boolean if a field has been set.

func (*RegionalDeployment) HasSucceededAt ¶

func (o *RegionalDeployment) HasSucceededAt() bool

HasSucceededAt returns a boolean if a field has been set.

func (*RegionalDeployment) HasTerminatedAt ¶

func (o *RegionalDeployment) HasTerminatedAt() bool

HasTerminatedAt returns a boolean if a field has been set.

func (*RegionalDeployment) HasUpdatedAt ¶

func (o *RegionalDeployment) HasUpdatedAt() bool

HasUpdatedAt returns a boolean if a field has been set.

func (*RegionalDeployment) HasUseKumaV2 ¶

func (o *RegionalDeployment) HasUseKumaV2() bool

HasUseKumaV2 returns a boolean if a field has been set.

func (*RegionalDeployment) HasVersion ¶

func (o *RegionalDeployment) HasVersion() bool

HasVersion returns a boolean if a field has been set.

func (RegionalDeployment) MarshalJSON ¶

func (o RegionalDeployment) MarshalJSON() ([]byte, error)

func (*RegionalDeployment) SetAllocatedAt ¶

func (o *RegionalDeployment) SetAllocatedAt(v time.Time)

SetAllocatedAt gets a reference to the given time.Time and assigns it to the AllocatedAt field.

func (*RegionalDeployment) SetAppId ¶

func (o *RegionalDeployment) SetAppId(v string)

SetAppId gets a reference to the given string and assigns it to the AppId field.

func (*RegionalDeployment) SetChildId ¶

func (o *RegionalDeployment) SetChildId(v string)

SetChildId gets a reference to the given string and assigns it to the ChildId field.

func (*RegionalDeployment) SetCreatedAt ¶

func (o *RegionalDeployment) SetCreatedAt(v time.Time)

SetCreatedAt gets a reference to the given time.Time and assigns it to the CreatedAt field.

func (*RegionalDeployment) SetDatacenters ¶

func (o *RegionalDeployment) SetDatacenters(v []string)

SetDatacenters gets a reference to the given []string and assigns it to the Datacenters field.

func (*RegionalDeployment) SetDefinition ¶

SetDefinition gets a reference to the given RegionalDeploymentDefinition and assigns it to the Definition field.

func (*RegionalDeployment) SetDeploymentGroup ¶

func (o *RegionalDeployment) SetDeploymentGroup(v string)

SetDeploymentGroup gets a reference to the given string and assigns it to the DeploymentGroup field.

func (*RegionalDeployment) SetDeploymentId ¶

func (o *RegionalDeployment) SetDeploymentId(v string)

SetDeploymentId gets a reference to the given string and assigns it to the DeploymentId field.

func (*RegionalDeployment) SetId ¶

func (o *RegionalDeployment) SetId(v string)

SetId gets a reference to the given string and assigns it to the Id field.

func (*RegionalDeployment) SetMessages ¶

func (o *RegionalDeployment) SetMessages(v []string)

SetMessages gets a reference to the given []string and assigns it to the Messages field.

func (*RegionalDeployment) SetMetadata ¶

SetMetadata gets a reference to the given RegionalDeploymentMetadata and assigns it to the Metadata field.

func (*RegionalDeployment) SetOrganizationId ¶

func (o *RegionalDeployment) SetOrganizationId(v string)

SetOrganizationId gets a reference to the given string and assigns it to the OrganizationId field.

func (*RegionalDeployment) SetParentId ¶

func (o *RegionalDeployment) SetParentId(v string)

SetParentId gets a reference to the given string and assigns it to the ParentId field.

func (*RegionalDeployment) SetProvisioningInfo ¶

func (o *RegionalDeployment) SetProvisioningInfo(v DeploymentProvisioningInfo)

SetProvisioningInfo gets a reference to the given DeploymentProvisioningInfo and assigns it to the ProvisioningInfo field.

func (*RegionalDeployment) SetRegion ¶

func (o *RegionalDeployment) SetRegion(v string)

SetRegion gets a reference to the given string and assigns it to the Region field.

func (*RegionalDeployment) SetServiceId ¶

func (o *RegionalDeployment) SetServiceId(v string)

SetServiceId gets a reference to the given string and assigns it to the ServiceId field.

func (*RegionalDeployment) SetStartedAt ¶

func (o *RegionalDeployment) SetStartedAt(v time.Time)

SetStartedAt gets a reference to the given time.Time and assigns it to the StartedAt field.

func (*RegionalDeployment) SetStatus ¶

SetStatus gets a reference to the given RegionalDeploymentStatus and assigns it to the Status field.

func (*RegionalDeployment) SetSucceededAt ¶

func (o *RegionalDeployment) SetSucceededAt(v time.Time)

SetSucceededAt gets a reference to the given time.Time and assigns it to the SucceededAt field.

func (*RegionalDeployment) SetTerminatedAt ¶

func (o *RegionalDeployment) SetTerminatedAt(v time.Time)

SetTerminatedAt gets a reference to the given time.Time and assigns it to the TerminatedAt field.

func (*RegionalDeployment) SetUpdatedAt ¶

func (o *RegionalDeployment) SetUpdatedAt(v time.Time)

SetUpdatedAt gets a reference to the given time.Time and assigns it to the UpdatedAt field.

func (*RegionalDeployment) SetUseKumaV2 ¶

func (o *RegionalDeployment) SetUseKumaV2(v bool)

SetUseKumaV2 gets a reference to the given bool and assigns it to the UseKumaV2 field.

func (*RegionalDeployment) SetVersion ¶

func (o *RegionalDeployment) SetVersion(v string)

SetVersion gets a reference to the given string and assigns it to the Version field.

type RegionalDeploymentDefinition ¶

type RegionalDeploymentDefinition struct {
	Name            *string                           `json:"name,omitempty"`
	Type            *RegionalDeploymentDefinitionType `json:"type,omitempty"`
	Routes          []Route                           `json:"routes,omitempty"`
	Ports           []Port                            `json:"ports,omitempty"`
	Env             []Env                             `json:"env,omitempty"`
	Region          *string                           `json:"region,omitempty"`
	Scaling         *Scaling                          `json:"scaling,omitempty"`
	InstanceType    *string                           `json:"instance_type,omitempty"`
	DeploymentGroup *string                           `json:"deployment_group,omitempty"`
	HealthChecks    []DeploymentHealthCheck           `json:"health_checks,omitempty"`
	SkipCache       *bool                             `json:"skip_cache,omitempty"`
	UseKumaV2       *bool                             `json:"use_kuma_v2,omitempty"`
	Docker          *DockerSource                     `json:"docker,omitempty"`
	Git             *GitSource                        `json:"git,omitempty"`
}

RegionalDeploymentDefinition struct for RegionalDeploymentDefinition

func NewRegionalDeploymentDefinition ¶

func NewRegionalDeploymentDefinition() *RegionalDeploymentDefinition

NewRegionalDeploymentDefinition instantiates a new RegionalDeploymentDefinition 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 NewRegionalDeploymentDefinitionWithDefaults ¶

func NewRegionalDeploymentDefinitionWithDefaults() *RegionalDeploymentDefinition

NewRegionalDeploymentDefinitionWithDefaults instantiates a new RegionalDeploymentDefinition 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 (*RegionalDeploymentDefinition) GetDeploymentGroup ¶

func (o *RegionalDeploymentDefinition) GetDeploymentGroup() string

GetDeploymentGroup returns the DeploymentGroup field value if set, zero value otherwise.

func (*RegionalDeploymentDefinition) GetDeploymentGroupOk ¶

func (o *RegionalDeploymentDefinition) GetDeploymentGroupOk() (*string, bool)

GetDeploymentGroupOk returns a tuple with the DeploymentGroup field value if set, nil otherwise and a boolean to check if the value has been set.

func (*RegionalDeploymentDefinition) GetDocker ¶

GetDocker returns the Docker field value if set, zero value otherwise.

func (*RegionalDeploymentDefinition) GetDockerOk ¶

func (o *RegionalDeploymentDefinition) GetDockerOk() (*DockerSource, bool)

GetDockerOk returns a tuple with the Docker field value if set, nil otherwise and a boolean to check if the value has been set.

func (*RegionalDeploymentDefinition) GetEnv ¶

func (o *RegionalDeploymentDefinition) GetEnv() []Env

GetEnv returns the Env field value if set, zero value otherwise.

func (*RegionalDeploymentDefinition) GetEnvOk ¶

func (o *RegionalDeploymentDefinition) GetEnvOk() ([]Env, bool)

GetEnvOk returns a tuple with the Env field value if set, nil otherwise and a boolean to check if the value has been set.

func (*RegionalDeploymentDefinition) GetGit ¶

GetGit returns the Git field value if set, zero value otherwise.

func (*RegionalDeploymentDefinition) GetGitOk ¶

func (o *RegionalDeploymentDefinition) GetGitOk() (*GitSource, bool)

GetGitOk returns a tuple with the Git field value if set, nil otherwise and a boolean to check if the value has been set.

func (*RegionalDeploymentDefinition) GetHealthChecks ¶

func (o *RegionalDeploymentDefinition) GetHealthChecks() []DeploymentHealthCheck

GetHealthChecks returns the HealthChecks field value if set, zero value otherwise.

func (*RegionalDeploymentDefinition) GetHealthChecksOk ¶

func (o *RegionalDeploymentDefinition) GetHealthChecksOk() ([]DeploymentHealthCheck, bool)

GetHealthChecksOk returns a tuple with the HealthChecks field value if set, nil otherwise and a boolean to check if the value has been set.

func (*RegionalDeploymentDefinition) GetInstanceType ¶

func (o *RegionalDeploymentDefinition) GetInstanceType() string

GetInstanceType returns the InstanceType field value if set, zero value otherwise.

func (*RegionalDeploymentDefinition) GetInstanceTypeOk ¶

func (o *RegionalDeploymentDefinition) GetInstanceTypeOk() (*string, bool)

GetInstanceTypeOk returns a tuple with the InstanceType field value if set, nil otherwise and a boolean to check if the value has been set.

func (*RegionalDeploymentDefinition) GetName ¶

func (o *RegionalDeploymentDefinition) GetName() string

GetName returns the Name field value if set, zero value otherwise.

func (*RegionalDeploymentDefinition) GetNameOk ¶

func (o *RegionalDeploymentDefinition) 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 (*RegionalDeploymentDefinition) GetPorts ¶

func (o *RegionalDeploymentDefinition) GetPorts() []Port

GetPorts returns the Ports field value if set, zero value otherwise.

func (*RegionalDeploymentDefinition) GetPortsOk ¶

func (o *RegionalDeploymentDefinition) GetPortsOk() ([]Port, bool)

GetPortsOk returns a tuple with the Ports field value if set, nil otherwise and a boolean to check if the value has been set.

func (*RegionalDeploymentDefinition) GetRegion ¶

func (o *RegionalDeploymentDefinition) GetRegion() string

GetRegion returns the Region field value if set, zero value otherwise.

func (*RegionalDeploymentDefinition) GetRegionOk ¶

func (o *RegionalDeploymentDefinition) GetRegionOk() (*string, bool)

GetRegionOk returns a tuple with the Region field value if set, nil otherwise and a boolean to check if the value has been set.

func (*RegionalDeploymentDefinition) GetRoutes ¶

func (o *RegionalDeploymentDefinition) GetRoutes() []Route

GetRoutes returns the Routes field value if set, zero value otherwise.

func (*RegionalDeploymentDefinition) GetRoutesOk ¶

func (o *RegionalDeploymentDefinition) GetRoutesOk() ([]Route, bool)

GetRoutesOk returns a tuple with the Routes field value if set, nil otherwise and a boolean to check if the value has been set.

func (*RegionalDeploymentDefinition) GetScaling ¶

func (o *RegionalDeploymentDefinition) GetScaling() Scaling

GetScaling returns the Scaling field value if set, zero value otherwise.

func (*RegionalDeploymentDefinition) GetScalingOk ¶

func (o *RegionalDeploymentDefinition) GetScalingOk() (*Scaling, bool)

GetScalingOk returns a tuple with the Scaling field value if set, nil otherwise and a boolean to check if the value has been set.

func (*RegionalDeploymentDefinition) GetSkipCache ¶

func (o *RegionalDeploymentDefinition) GetSkipCache() bool

GetSkipCache returns the SkipCache field value if set, zero value otherwise.

func (*RegionalDeploymentDefinition) GetSkipCacheOk ¶

func (o *RegionalDeploymentDefinition) GetSkipCacheOk() (*bool, bool)

GetSkipCacheOk returns a tuple with the SkipCache field value if set, nil otherwise and a boolean to check if the value has been set.

func (*RegionalDeploymentDefinition) GetType ¶

GetType returns the Type field value if set, zero value otherwise.

func (*RegionalDeploymentDefinition) GetTypeOk ¶

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 (*RegionalDeploymentDefinition) GetUseKumaV2 ¶

func (o *RegionalDeploymentDefinition) GetUseKumaV2() bool

GetUseKumaV2 returns the UseKumaV2 field value if set, zero value otherwise.

func (*RegionalDeploymentDefinition) GetUseKumaV2Ok ¶

func (o *RegionalDeploymentDefinition) GetUseKumaV2Ok() (*bool, bool)

GetUseKumaV2Ok returns a tuple with the UseKumaV2 field value if set, nil otherwise and a boolean to check if the value has been set.

func (*RegionalDeploymentDefinition) HasDeploymentGroup ¶

func (o *RegionalDeploymentDefinition) HasDeploymentGroup() bool

HasDeploymentGroup returns a boolean if a field has been set.

func (*RegionalDeploymentDefinition) HasDocker ¶

func (o *RegionalDeploymentDefinition) HasDocker() bool

HasDocker returns a boolean if a field has been set.

func (*RegionalDeploymentDefinition) HasEnv ¶

func (o *RegionalDeploymentDefinition) HasEnv() bool

HasEnv returns a boolean if a field has been set.

func (*RegionalDeploymentDefinition) HasGit ¶

func (o *RegionalDeploymentDefinition) HasGit() bool

HasGit returns a boolean if a field has been set.

func (*RegionalDeploymentDefinition) HasHealthChecks ¶

func (o *RegionalDeploymentDefinition) HasHealthChecks() bool

HasHealthChecks returns a boolean if a field has been set.

func (*RegionalDeploymentDefinition) HasInstanceType ¶

func (o *RegionalDeploymentDefinition) HasInstanceType() bool

HasInstanceType returns a boolean if a field has been set.

func (*RegionalDeploymentDefinition) HasName ¶

func (o *RegionalDeploymentDefinition) HasName() bool

HasName returns a boolean if a field has been set.

func (*RegionalDeploymentDefinition) HasPorts ¶

func (o *RegionalDeploymentDefinition) HasPorts() bool

HasPorts returns a boolean if a field has been set.

func (*RegionalDeploymentDefinition) HasRegion ¶

func (o *RegionalDeploymentDefinition) HasRegion() bool

HasRegion returns a boolean if a field has been set.

func (*RegionalDeploymentDefinition) HasRoutes ¶

func (o *RegionalDeploymentDefinition) HasRoutes() bool

HasRoutes returns a boolean if a field has been set.

func (*RegionalDeploymentDefinition) HasScaling ¶

func (o *RegionalDeploymentDefinition) HasScaling() bool

HasScaling returns a boolean if a field has been set.

func (*RegionalDeploymentDefinition) HasSkipCache ¶

func (o *RegionalDeploymentDefinition) HasSkipCache() bool

HasSkipCache returns a boolean if a field has been set.

func (*RegionalDeploymentDefinition) HasType ¶

func (o *RegionalDeploymentDefinition) HasType() bool

HasType returns a boolean if a field has been set.

func (*RegionalDeploymentDefinition) HasUseKumaV2 ¶

func (o *RegionalDeploymentDefinition) HasUseKumaV2() bool

HasUseKumaV2 returns a boolean if a field has been set.

func (RegionalDeploymentDefinition) MarshalJSON ¶

func (o RegionalDeploymentDefinition) MarshalJSON() ([]byte, error)

func (*RegionalDeploymentDefinition) SetDeploymentGroup ¶

func (o *RegionalDeploymentDefinition) SetDeploymentGroup(v string)

SetDeploymentGroup gets a reference to the given string and assigns it to the DeploymentGroup field.

func (*RegionalDeploymentDefinition) SetDocker ¶

SetDocker gets a reference to the given DockerSource and assigns it to the Docker field.

func (*RegionalDeploymentDefinition) SetEnv ¶

func (o *RegionalDeploymentDefinition) SetEnv(v []Env)

SetEnv gets a reference to the given []Env and assigns it to the Env field.

func (*RegionalDeploymentDefinition) SetGit ¶

SetGit gets a reference to the given GitSource and assigns it to the Git field.

func (*RegionalDeploymentDefinition) SetHealthChecks ¶

func (o *RegionalDeploymentDefinition) SetHealthChecks(v []DeploymentHealthCheck)

SetHealthChecks gets a reference to the given []DeploymentHealthCheck and assigns it to the HealthChecks field.

func (*RegionalDeploymentDefinition) SetInstanceType ¶

func (o *RegionalDeploymentDefinition) SetInstanceType(v string)

SetInstanceType gets a reference to the given string and assigns it to the InstanceType field.

func (*RegionalDeploymentDefinition) SetName ¶

func (o *RegionalDeploymentDefinition) SetName(v string)

SetName gets a reference to the given string and assigns it to the Name field.

func (*RegionalDeploymentDefinition) SetPorts ¶

func (o *RegionalDeploymentDefinition) SetPorts(v []Port)

SetPorts gets a reference to the given []Port and assigns it to the Ports field.

func (*RegionalDeploymentDefinition) SetRegion ¶

func (o *RegionalDeploymentDefinition) SetRegion(v string)

SetRegion gets a reference to the given string and assigns it to the Region field.

func (*RegionalDeploymentDefinition) SetRoutes ¶

func (o *RegionalDeploymentDefinition) SetRoutes(v []Route)

SetRoutes gets a reference to the given []Route and assigns it to the Routes field.

func (*RegionalDeploymentDefinition) SetScaling ¶

func (o *RegionalDeploymentDefinition) SetScaling(v Scaling)

SetScaling gets a reference to the given Scaling and assigns it to the Scaling field.

func (*RegionalDeploymentDefinition) SetSkipCache ¶

func (o *RegionalDeploymentDefinition) SetSkipCache(v bool)

SetSkipCache gets a reference to the given bool and assigns it to the SkipCache field.

func (*RegionalDeploymentDefinition) SetType ¶

SetType gets a reference to the given RegionalDeploymentDefinitionType and assigns it to the Type field.

func (*RegionalDeploymentDefinition) SetUseKumaV2 ¶

func (o *RegionalDeploymentDefinition) SetUseKumaV2(v bool)

SetUseKumaV2 gets a reference to the given bool and assigns it to the UseKumaV2 field.

type RegionalDeploymentDefinitionType ¶

type RegionalDeploymentDefinitionType string

RegionalDeploymentDefinitionType the model 'RegionalDeploymentDefinitionType'

const (
	REGIONALDEPLOYMENTDEFINITIONTYPE_INVALID RegionalDeploymentDefinitionType = "INVALID"
	REGIONALDEPLOYMENTDEFINITIONTYPE_WEB     RegionalDeploymentDefinitionType = "WEB"
	REGIONALDEPLOYMENTDEFINITIONTYPE_WORKER  RegionalDeploymentDefinitionType = "WORKER"
)

List of RegionalDeploymentDefinition.Type

func NewRegionalDeploymentDefinitionTypeFromValue ¶

func NewRegionalDeploymentDefinitionTypeFromValue(v string) (*RegionalDeploymentDefinitionType, error)

NewRegionalDeploymentDefinitionTypeFromValue returns a pointer to a valid RegionalDeploymentDefinitionType for the value passed as argument, or an error if the value passed is not allowed by the enum

func (RegionalDeploymentDefinitionType) IsValid ¶

IsValid return true if the value is valid for the enum, false otherwise

func (RegionalDeploymentDefinitionType) Ptr ¶

Ptr returns reference to RegionalDeploymentDefinition.Type value

func (*RegionalDeploymentDefinitionType) UnmarshalJSON ¶

func (v *RegionalDeploymentDefinitionType) UnmarshalJSON(src []byte) error

type RegionalDeploymentEvent ¶

type RegionalDeploymentEvent struct {
	Id                   *string                `json:"id,omitempty"`
	When                 *time.Time             `json:"when,omitempty"`
	OrganizationId       *string                `json:"organization_id,omitempty"`
	RegionalDeploymentId *string                `json:"regional_deployment_id,omitempty"`
	Type                 *string                `json:"type,omitempty"`
	Message              *string                `json:"message,omitempty"`
	Metadata             map[string]interface{} `json:"metadata,omitempty"`
}

RegionalDeploymentEvent struct for RegionalDeploymentEvent

func NewRegionalDeploymentEvent ¶

func NewRegionalDeploymentEvent() *RegionalDeploymentEvent

NewRegionalDeploymentEvent instantiates a new RegionalDeploymentEvent 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 NewRegionalDeploymentEventWithDefaults ¶

func NewRegionalDeploymentEventWithDefaults() *RegionalDeploymentEvent

NewRegionalDeploymentEventWithDefaults instantiates a new RegionalDeploymentEvent 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 (*RegionalDeploymentEvent) GetId ¶

func (o *RegionalDeploymentEvent) GetId() string

GetId returns the Id field value if set, zero value otherwise.

func (*RegionalDeploymentEvent) GetIdOk ¶

func (o *RegionalDeploymentEvent) 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 (*RegionalDeploymentEvent) GetMessage ¶

func (o *RegionalDeploymentEvent) GetMessage() string

GetMessage returns the Message field value if set, zero value otherwise.

func (*RegionalDeploymentEvent) GetMessageOk ¶

func (o *RegionalDeploymentEvent) 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 (*RegionalDeploymentEvent) GetMetadata ¶

func (o *RegionalDeploymentEvent) GetMetadata() map[string]interface{}

GetMetadata returns the Metadata field value if set, zero value otherwise.

func (*RegionalDeploymentEvent) GetMetadataOk ¶

func (o *RegionalDeploymentEvent) GetMetadataOk() (map[string]interface{}, bool)

GetMetadataOk returns a tuple with the Metadata field value if set, nil otherwise and a boolean to check if the value has been set.

func (*RegionalDeploymentEvent) GetOrganizationId ¶

func (o *RegionalDeploymentEvent) GetOrganizationId() string

GetOrganizationId returns the OrganizationId field value if set, zero value otherwise.

func (*RegionalDeploymentEvent) GetOrganizationIdOk ¶

func (o *RegionalDeploymentEvent) GetOrganizationIdOk() (*string, bool)

GetOrganizationIdOk returns a tuple with the OrganizationId field value if set, nil otherwise and a boolean to check if the value has been set.

func (*RegionalDeploymentEvent) GetRegionalDeploymentId ¶

func (o *RegionalDeploymentEvent) GetRegionalDeploymentId() string

GetRegionalDeploymentId returns the RegionalDeploymentId field value if set, zero value otherwise.

func (*RegionalDeploymentEvent) GetRegionalDeploymentIdOk ¶

func (o *RegionalDeploymentEvent) GetRegionalDeploymentIdOk() (*string, bool)

GetRegionalDeploymentIdOk returns a tuple with the RegionalDeploymentId field value if set, nil otherwise and a boolean to check if the value has been set.

func (*RegionalDeploymentEvent) GetType ¶

func (o *RegionalDeploymentEvent) GetType() string

GetType returns the Type field value if set, zero value otherwise.

func (*RegionalDeploymentEvent) GetTypeOk ¶

func (o *RegionalDeploymentEvent) 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 (*RegionalDeploymentEvent) GetWhen ¶

func (o *RegionalDeploymentEvent) GetWhen() time.Time

GetWhen returns the When field value if set, zero value otherwise.

func (*RegionalDeploymentEvent) GetWhenOk ¶

func (o *RegionalDeploymentEvent) GetWhenOk() (*time.Time, bool)

GetWhenOk returns a tuple with the When field value if set, nil otherwise and a boolean to check if the value has been set.

func (*RegionalDeploymentEvent) HasId ¶

func (o *RegionalDeploymentEvent) HasId() bool

HasId returns a boolean if a field has been set.

func (*RegionalDeploymentEvent) HasMessage ¶

func (o *RegionalDeploymentEvent) HasMessage() bool

HasMessage returns a boolean if a field has been set.

func (*RegionalDeploymentEvent) HasMetadata ¶

func (o *RegionalDeploymentEvent) HasMetadata() bool

HasMetadata returns a boolean if a field has been set.

func (*RegionalDeploymentEvent) HasOrganizationId ¶

func (o *RegionalDeploymentEvent) HasOrganizationId() bool

HasOrganizationId returns a boolean if a field has been set.

func (*RegionalDeploymentEvent) HasRegionalDeploymentId ¶

func (o *RegionalDeploymentEvent) HasRegionalDeploymentId() bool

HasRegionalDeploymentId returns a boolean if a field has been set.

func (*RegionalDeploymentEvent) HasType ¶

func (o *RegionalDeploymentEvent) HasType() bool

HasType returns a boolean if a field has been set.

func (*RegionalDeploymentEvent) HasWhen ¶

func (o *RegionalDeploymentEvent) HasWhen() bool

HasWhen returns a boolean if a field has been set.

func (RegionalDeploymentEvent) MarshalJSON ¶

func (o RegionalDeploymentEvent) MarshalJSON() ([]byte, error)

func (*RegionalDeploymentEvent) SetId ¶

func (o *RegionalDeploymentEvent) SetId(v string)

SetId gets a reference to the given string and assigns it to the Id field.

func (*RegionalDeploymentEvent) SetMessage ¶

func (o *RegionalDeploymentEvent) SetMessage(v string)

SetMessage gets a reference to the given string and assigns it to the Message field.

func (*RegionalDeploymentEvent) SetMetadata ¶

func (o *RegionalDeploymentEvent) SetMetadata(v map[string]interface{})

SetMetadata gets a reference to the given map[string]interface{} and assigns it to the Metadata field.

func (*RegionalDeploymentEvent) SetOrganizationId ¶

func (o *RegionalDeploymentEvent) SetOrganizationId(v string)

SetOrganizationId gets a reference to the given string and assigns it to the OrganizationId field.

func (*RegionalDeploymentEvent) SetRegionalDeploymentId ¶

func (o *RegionalDeploymentEvent) SetRegionalDeploymentId(v string)

SetRegionalDeploymentId gets a reference to the given string and assigns it to the RegionalDeploymentId field.

func (*RegionalDeploymentEvent) SetType ¶

func (o *RegionalDeploymentEvent) SetType(v string)

SetType gets a reference to the given string and assigns it to the Type field.

func (*RegionalDeploymentEvent) SetWhen ¶

func (o *RegionalDeploymentEvent) SetWhen(v time.Time)

SetWhen gets a reference to the given time.Time and assigns it to the When field.

type RegionalDeploymentListItem ¶

type RegionalDeploymentListItem struct {
	Id         *string                       `json:"id,omitempty"`
	CreatedAt  *time.Time                    `json:"created_at,omitempty"`
	UpdatedAt  *time.Time                    `json:"updated_at,omitempty"`
	Region     *string                       `json:"region,omitempty"`
	Status     *RegionalDeploymentStatus     `json:"status,omitempty"`
	Messages   []string                      `json:"messages,omitempty"`
	Definition *RegionalDeploymentDefinition `json:"definition,omitempty"`
	UseKumaV2  *bool                         `json:"use_kuma_v2,omitempty"`
}

RegionalDeploymentListItem struct for RegionalDeploymentListItem

func NewRegionalDeploymentListItem ¶

func NewRegionalDeploymentListItem() *RegionalDeploymentListItem

NewRegionalDeploymentListItem instantiates a new RegionalDeploymentListItem 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 NewRegionalDeploymentListItemWithDefaults ¶

func NewRegionalDeploymentListItemWithDefaults() *RegionalDeploymentListItem

NewRegionalDeploymentListItemWithDefaults instantiates a new RegionalDeploymentListItem 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 (*RegionalDeploymentListItem) GetCreatedAt ¶

func (o *RegionalDeploymentListItem) GetCreatedAt() time.Time

GetCreatedAt returns the CreatedAt field value if set, zero value otherwise.

func (*RegionalDeploymentListItem) GetCreatedAtOk ¶

func (o *RegionalDeploymentListItem) GetCreatedAtOk() (*time.Time, bool)

GetCreatedAtOk returns a tuple with the CreatedAt field value if set, nil otherwise and a boolean to check if the value has been set.

func (*RegionalDeploymentListItem) GetDefinition ¶

GetDefinition returns the Definition field value if set, zero value otherwise.

func (*RegionalDeploymentListItem) GetDefinitionOk ¶

GetDefinitionOk returns a tuple with the Definition field value if set, nil otherwise and a boolean to check if the value has been set.

func (*RegionalDeploymentListItem) GetId ¶

GetId returns the Id field value if set, zero value otherwise.

func (*RegionalDeploymentListItem) GetIdOk ¶

func (o *RegionalDeploymentListItem) 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 (*RegionalDeploymentListItem) GetMessages ¶

func (o *RegionalDeploymentListItem) GetMessages() []string

GetMessages returns the Messages field value if set, zero value otherwise.

func (*RegionalDeploymentListItem) GetMessagesOk ¶

func (o *RegionalDeploymentListItem) GetMessagesOk() ([]string, bool)

GetMessagesOk returns a tuple with the Messages field value if set, nil otherwise and a boolean to check if the value has been set.

func (*RegionalDeploymentListItem) GetRegion ¶

func (o *RegionalDeploymentListItem) GetRegion() string

GetRegion returns the Region field value if set, zero value otherwise.

func (*RegionalDeploymentListItem) GetRegionOk ¶

func (o *RegionalDeploymentListItem) GetRegionOk() (*string, bool)

GetRegionOk returns a tuple with the Region field value if set, nil otherwise and a boolean to check if the value has been set.

func (*RegionalDeploymentListItem) GetStatus ¶

GetStatus returns the Status field value if set, zero value otherwise.

func (*RegionalDeploymentListItem) GetStatusOk ¶

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 (*RegionalDeploymentListItem) GetUpdatedAt ¶

func (o *RegionalDeploymentListItem) GetUpdatedAt() time.Time

GetUpdatedAt returns the UpdatedAt field value if set, zero value otherwise.

func (*RegionalDeploymentListItem) GetUpdatedAtOk ¶

func (o *RegionalDeploymentListItem) GetUpdatedAtOk() (*time.Time, bool)

GetUpdatedAtOk returns a tuple with the UpdatedAt field value if set, nil otherwise and a boolean to check if the value has been set.

func (*RegionalDeploymentListItem) GetUseKumaV2 ¶

func (o *RegionalDeploymentListItem) GetUseKumaV2() bool

GetUseKumaV2 returns the UseKumaV2 field value if set, zero value otherwise.

func (*RegionalDeploymentListItem) GetUseKumaV2Ok ¶

func (o *RegionalDeploymentListItem) GetUseKumaV2Ok() (*bool, bool)

GetUseKumaV2Ok returns a tuple with the UseKumaV2 field value if set, nil otherwise and a boolean to check if the value has been set.

func (*RegionalDeploymentListItem) HasCreatedAt ¶

func (o *RegionalDeploymentListItem) HasCreatedAt() bool

HasCreatedAt returns a boolean if a field has been set.

func (*RegionalDeploymentListItem) HasDefinition ¶

func (o *RegionalDeploymentListItem) HasDefinition() bool

HasDefinition returns a boolean if a field has been set.

func (*RegionalDeploymentListItem) HasId ¶

func (o *RegionalDeploymentListItem) HasId() bool

HasId returns a boolean if a field has been set.

func (*RegionalDeploymentListItem) HasMessages ¶

func (o *RegionalDeploymentListItem) HasMessages() bool

HasMessages returns a boolean if a field has been set.

func (*RegionalDeploymentListItem) HasRegion ¶

func (o *RegionalDeploymentListItem) HasRegion() bool

HasRegion returns a boolean if a field has been set.

func (*RegionalDeploymentListItem) HasStatus ¶

func (o *RegionalDeploymentListItem) HasStatus() bool

HasStatus returns a boolean if a field has been set.

func (*RegionalDeploymentListItem) HasUpdatedAt ¶

func (o *RegionalDeploymentListItem) HasUpdatedAt() bool

HasUpdatedAt returns a boolean if a field has been set.

func (*RegionalDeploymentListItem) HasUseKumaV2 ¶

func (o *RegionalDeploymentListItem) HasUseKumaV2() bool

HasUseKumaV2 returns a boolean if a field has been set.

func (RegionalDeploymentListItem) MarshalJSON ¶

func (o RegionalDeploymentListItem) MarshalJSON() ([]byte, error)

func (*RegionalDeploymentListItem) SetCreatedAt ¶

func (o *RegionalDeploymentListItem) SetCreatedAt(v time.Time)

SetCreatedAt gets a reference to the given time.Time and assigns it to the CreatedAt field.

func (*RegionalDeploymentListItem) SetDefinition ¶

SetDefinition gets a reference to the given RegionalDeploymentDefinition and assigns it to the Definition field.

func (*RegionalDeploymentListItem) SetId ¶

func (o *RegionalDeploymentListItem) SetId(v string)

SetId gets a reference to the given string and assigns it to the Id field.

func (*RegionalDeploymentListItem) SetMessages ¶

func (o *RegionalDeploymentListItem) SetMessages(v []string)

SetMessages gets a reference to the given []string and assigns it to the Messages field.

func (*RegionalDeploymentListItem) SetRegion ¶

func (o *RegionalDeploymentListItem) SetRegion(v string)

SetRegion gets a reference to the given string and assigns it to the Region field.

func (*RegionalDeploymentListItem) SetStatus ¶

SetStatus gets a reference to the given RegionalDeploymentStatus and assigns it to the Status field.

func (*RegionalDeploymentListItem) SetUpdatedAt ¶

func (o *RegionalDeploymentListItem) SetUpdatedAt(v time.Time)

SetUpdatedAt gets a reference to the given time.Time and assigns it to the UpdatedAt field.

func (*RegionalDeploymentListItem) SetUseKumaV2 ¶

func (o *RegionalDeploymentListItem) SetUseKumaV2(v bool)

SetUseKumaV2 gets a reference to the given bool and assigns it to the UseKumaV2 field.

type RegionalDeploymentMetadata ¶

type RegionalDeploymentMetadata struct {
	RuntimeJobId *string `json:"runtime_job_id,omitempty"`
}

RegionalDeploymentMetadata struct for RegionalDeploymentMetadata

func NewRegionalDeploymentMetadata ¶

func NewRegionalDeploymentMetadata() *RegionalDeploymentMetadata

NewRegionalDeploymentMetadata instantiates a new RegionalDeploymentMetadata 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 NewRegionalDeploymentMetadataWithDefaults ¶

func NewRegionalDeploymentMetadataWithDefaults() *RegionalDeploymentMetadata

NewRegionalDeploymentMetadataWithDefaults instantiates a new RegionalDeploymentMetadata 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 (*RegionalDeploymentMetadata) GetRuntimeJobId ¶

func (o *RegionalDeploymentMetadata) GetRuntimeJobId() string

GetRuntimeJobId returns the RuntimeJobId field value if set, zero value otherwise.

func (*RegionalDeploymentMetadata) GetRuntimeJobIdOk ¶

func (o *RegionalDeploymentMetadata) GetRuntimeJobIdOk() (*string, bool)

GetRuntimeJobIdOk returns a tuple with the RuntimeJobId field value if set, nil otherwise and a boolean to check if the value has been set.

func (*RegionalDeploymentMetadata) HasRuntimeJobId ¶

func (o *RegionalDeploymentMetadata) HasRuntimeJobId() bool

HasRuntimeJobId returns a boolean if a field has been set.

func (RegionalDeploymentMetadata) MarshalJSON ¶

func (o RegionalDeploymentMetadata) MarshalJSON() ([]byte, error)

func (*RegionalDeploymentMetadata) SetRuntimeJobId ¶

func (o *RegionalDeploymentMetadata) SetRuntimeJobId(v string)

SetRuntimeJobId gets a reference to the given string and assigns it to the RuntimeJobId field.

type RegionalDeploymentStatus ¶

type RegionalDeploymentStatus string

RegionalDeploymentStatus the model 'RegionalDeploymentStatus'

const (
	REGIONALDEPLOYMENTSTATUS_PENDING      RegionalDeploymentStatus = "PENDING"
	REGIONALDEPLOYMENTSTATUS_PROVISIONING RegionalDeploymentStatus = "PROVISIONING"
	REGIONALDEPLOYMENTSTATUS_SCHEDULED    RegionalDeploymentStatus = "SCHEDULED"
	REGIONALDEPLOYMENTSTATUS_CANCELING    RegionalDeploymentStatus = "CANCELING"
	REGIONALDEPLOYMENTSTATUS_CANCELED     RegionalDeploymentStatus = "CANCELED"
	REGIONALDEPLOYMENTSTATUS_ALLOCATING   RegionalDeploymentStatus = "ALLOCATING"
	REGIONALDEPLOYMENTSTATUS_STARTING     RegionalDeploymentStatus = "STARTING"
	REGIONALDEPLOYMENTSTATUS_HEALTHY      RegionalDeploymentStatus = "HEALTHY"
	REGIONALDEPLOYMENTSTATUS_DEGRADED     RegionalDeploymentStatus = "DEGRADED"
	REGIONALDEPLOYMENTSTATUS_UNHEALTHY    RegionalDeploymentStatus = "UNHEALTHY"
	REGIONALDEPLOYMENTSTATUS_STOPPING     RegionalDeploymentStatus = "STOPPING"
	REGIONALDEPLOYMENTSTATUS_STOPPED      RegionalDeploymentStatus = "STOPPED"
	REGIONALDEPLOYMENTSTATUS_ERRORING     RegionalDeploymentStatus = "ERRORING"
	REGIONALDEPLOYMENTSTATUS_ERROR        RegionalDeploymentStatus = "ERROR"
)

List of RegionalDeployment.Status

func NewRegionalDeploymentStatusFromValue ¶

func NewRegionalDeploymentStatusFromValue(v string) (*RegionalDeploymentStatus, error)

NewRegionalDeploymentStatusFromValue returns a pointer to a valid RegionalDeploymentStatus for the value passed as argument, or an error if the value passed is not allowed by the enum

func (RegionalDeploymentStatus) IsValid ¶

func (v RegionalDeploymentStatus) IsValid() bool

IsValid return true if the value is valid for the enum, false otherwise

func (RegionalDeploymentStatus) Ptr ¶

Ptr returns reference to RegionalDeployment.Status value

func (*RegionalDeploymentStatus) UnmarshalJSON ¶

func (v *RegionalDeploymentStatus) UnmarshalJSON(src []byte) error

type RegionalDeploymentsApi ¶

type RegionalDeploymentsApi interface {

	/*
		GetRegionalDeployment Experimental: Get regional deployment Use at your own risk

		@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
		@param id The id of the regional deployment
		@return ApiGetRegionalDeploymentRequest
	*/
	GetRegionalDeployment(ctx context.Context, id string) ApiGetRegionalDeploymentRequest

	// GetRegionalDeploymentExecute executes the request
	//  @return GetRegionalDeploymentReply
	GetRegionalDeploymentExecute(r ApiGetRegionalDeploymentRequest) (*GetRegionalDeploymentReply, *http.Response, error)

	/*
		ListRegionalDeploymentEvents List Regional Deployment events

		@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
		@return ApiListRegionalDeploymentEventsRequest
	*/
	ListRegionalDeploymentEvents(ctx context.Context) ApiListRegionalDeploymentEventsRequest

	// ListRegionalDeploymentEventsExecute executes the request
	//  @return ListRegionalDeploymentEventsReply
	ListRegionalDeploymentEventsExecute(r ApiListRegionalDeploymentEventsRequest) (*ListRegionalDeploymentEventsReply, *http.Response, error)

	/*
		ListRegionalDeployments Experimental: List regional deployments Use at your own risk

		@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
		@return ApiListRegionalDeploymentsRequest
	*/
	ListRegionalDeployments(ctx context.Context) ApiListRegionalDeploymentsRequest

	// ListRegionalDeploymentsExecute executes the request
	//  @return ListRegionalDeploymentsReply
	ListRegionalDeploymentsExecute(r ApiListRegionalDeploymentsRequest) (*ListRegionalDeploymentsReply, *http.Response, error)
}

type RegionalDeploymentsApiService ¶

type RegionalDeploymentsApiService service

RegionalDeploymentsApiService RegionalDeploymentsApi service

func (*RegionalDeploymentsApiService) GetRegionalDeployment ¶

GetRegionalDeployment Experimental: Get regional deployment Use at your own risk

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param id The id of the regional deployment
@return ApiGetRegionalDeploymentRequest

func (*RegionalDeploymentsApiService) GetRegionalDeploymentExecute ¶

Execute executes the request

@return GetRegionalDeploymentReply

func (*RegionalDeploymentsApiService) ListRegionalDeploymentEvents ¶

ListRegionalDeploymentEvents List Regional Deployment events

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@return ApiListRegionalDeploymentEventsRequest

func (*RegionalDeploymentsApiService) ListRegionalDeploymentEventsExecute ¶

Execute executes the request

@return ListRegionalDeploymentEventsReply

func (*RegionalDeploymentsApiService) ListRegionalDeployments ¶

ListRegionalDeployments Experimental: List regional deployments Use at your own risk

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@return ApiListRegionalDeploymentsRequest

func (*RegionalDeploymentsApiService) ListRegionalDeploymentsExecute ¶

Execute executes the request

@return ListRegionalDeploymentsReply

type RemoveOrganizationMemberReply ¶

type RemoveOrganizationMemberReply struct {
	Member *OrganizationMember `json:"member,omitempty"`
}

RemoveOrganizationMemberReply struct for RemoveOrganizationMemberReply

func NewRemoveOrganizationMemberReply ¶

func NewRemoveOrganizationMemberReply() *RemoveOrganizationMemberReply

NewRemoveOrganizationMemberReply instantiates a new RemoveOrganizationMemberReply 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 NewRemoveOrganizationMemberReplyWithDefaults ¶

func NewRemoveOrganizationMemberReplyWithDefaults() *RemoveOrganizationMemberReply

NewRemoveOrganizationMemberReplyWithDefaults instantiates a new RemoveOrganizationMemberReply 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 (*RemoveOrganizationMemberReply) GetMember ¶

GetMember returns the Member field value if set, zero value otherwise.

func (*RemoveOrganizationMemberReply) GetMemberOk ¶

GetMemberOk returns a tuple with the Member field value if set, nil otherwise and a boolean to check if the value has been set.

func (*RemoveOrganizationMemberReply) HasMember ¶

func (o *RemoveOrganizationMemberReply) HasMember() bool

HasMember returns a boolean if a field has been set.

func (RemoveOrganizationMemberReply) MarshalJSON ¶

func (o RemoveOrganizationMemberReply) MarshalJSON() ([]byte, error)

func (*RemoveOrganizationMemberReply) SetMember ¶

SetMember gets a reference to the given OrganizationMember and assigns it to the Member field.

type RepositoriesApi ¶

type RepositoriesApi interface {

	/*
		ListBranches Method for ListBranches

		@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
		@return ApiListBranchesRequest
	*/
	ListBranches(ctx context.Context) ApiListBranchesRequest

	// ListBranchesExecute executes the request
	//  @return KgitproxyListBranchesReply
	ListBranchesExecute(r ApiListBranchesRequest) (*KgitproxyListBranchesReply, *http.Response, error)

	/*
		ListRepositories Method for ListRepositories

		@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
		@return ApiListRepositoriesRequest
	*/
	ListRepositories(ctx context.Context) ApiListRepositoriesRequest

	// ListRepositoriesExecute executes the request
	//  @return KgitproxyListRepositoriesReply
	ListRepositoriesExecute(r ApiListRepositoriesRequest) (*KgitproxyListRepositoriesReply, *http.Response, error)

	/*
		ResyncOrganization Method for ResyncOrganization

		@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
		@param organizationId
		@return ApiResyncOrganizationRequest
	*/
	ResyncOrganization(ctx context.Context, organizationId string) ApiResyncOrganizationRequest

	// ResyncOrganizationExecute executes the request
	//  @return map[string]interface{}
	ResyncOrganizationExecute(r ApiResyncOrganizationRequest) (map[string]interface{}, *http.Response, error)
}

type RepositoriesApiService ¶

type RepositoriesApiService service

RepositoriesApiService RepositoriesApi service

func (*RepositoriesApiService) ListBranches ¶

ListBranches Method for ListBranches

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@return ApiListBranchesRequest

func (*RepositoriesApiService) ListBranchesExecute ¶

Execute executes the request

@return KgitproxyListBranchesReply

func (*RepositoriesApiService) ListRepositories ¶

ListRepositories Method for ListRepositories

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@return ApiListRepositoriesRequest

func (*RepositoriesApiService) ListRepositoriesExecute ¶

Execute executes the request

@return KgitproxyListRepositoriesReply

func (*RepositoriesApiService) ResyncOrganization ¶

func (a *RepositoriesApiService) ResyncOrganization(ctx context.Context, organizationId string) ApiResyncOrganizationRequest

ResyncOrganization Method for ResyncOrganization

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param organizationId
@return ApiResyncOrganizationRequest

func (*RepositoriesApiService) ResyncOrganizationExecute ¶

func (a *RepositoriesApiService) ResyncOrganizationExecute(r ApiResyncOrganizationRequest) (map[string]interface{}, *http.Response, error)

Execute executes the request

@return map[string]interface{}

type ResendOrganizationInvitationReply ¶

type ResendOrganizationInvitationReply struct {
	Invitation *OrganizationInvitation `json:"invitation,omitempty"`
}

ResendOrganizationInvitationReply struct for ResendOrganizationInvitationReply

func NewResendOrganizationInvitationReply ¶

func NewResendOrganizationInvitationReply() *ResendOrganizationInvitationReply

NewResendOrganizationInvitationReply instantiates a new ResendOrganizationInvitationReply 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 NewResendOrganizationInvitationReplyWithDefaults ¶

func NewResendOrganizationInvitationReplyWithDefaults() *ResendOrganizationInvitationReply

NewResendOrganizationInvitationReplyWithDefaults instantiates a new ResendOrganizationInvitationReply 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 (*ResendOrganizationInvitationReply) GetInvitation ¶

GetInvitation returns the Invitation field value if set, zero value otherwise.

func (*ResendOrganizationInvitationReply) GetInvitationOk ¶

GetInvitationOk returns a tuple with the Invitation field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ResendOrganizationInvitationReply) HasInvitation ¶

func (o *ResendOrganizationInvitationReply) HasInvitation() bool

HasInvitation returns a boolean if a field has been set.

func (ResendOrganizationInvitationReply) MarshalJSON ¶

func (o ResendOrganizationInvitationReply) MarshalJSON() ([]byte, error)

func (*ResendOrganizationInvitationReply) SetInvitation ¶

SetInvitation gets a reference to the given OrganizationInvitation and assigns it to the Invitation field.

type ResetPasswordRequest ¶

type ResetPasswordRequest struct {
	Email *string `json:"email,omitempty"`
}

ResetPasswordRequest struct for ResetPasswordRequest

func NewResetPasswordRequest ¶

func NewResetPasswordRequest() *ResetPasswordRequest

NewResetPasswordRequest instantiates a new ResetPasswordRequest 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 NewResetPasswordRequestWithDefaults ¶

func NewResetPasswordRequestWithDefaults() *ResetPasswordRequest

NewResetPasswordRequestWithDefaults instantiates a new ResetPasswordRequest 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 (*ResetPasswordRequest) GetEmail ¶

func (o *ResetPasswordRequest) GetEmail() string

GetEmail returns the Email field value if set, zero value otherwise.

func (*ResetPasswordRequest) GetEmailOk ¶

func (o *ResetPasswordRequest) GetEmailOk() (*string, bool)

GetEmailOk returns a tuple with the Email field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ResetPasswordRequest) HasEmail ¶

func (o *ResetPasswordRequest) HasEmail() bool

HasEmail returns a boolean if a field has been set.

func (ResetPasswordRequest) MarshalJSON ¶

func (o ResetPasswordRequest) MarshalJSON() ([]byte, error)

func (*ResetPasswordRequest) SetEmail ¶

func (o *ResetPasswordRequest) SetEmail(v string)

SetEmail gets a reference to the given string and assigns it to the Email field.

type RevealSecretReply ¶

type RevealSecretReply struct {
	Value map[string]interface{} `json:"value,omitempty"`
}

RevealSecretReply struct for RevealSecretReply

func NewRevealSecretReply ¶

func NewRevealSecretReply() *RevealSecretReply

NewRevealSecretReply instantiates a new RevealSecretReply 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 NewRevealSecretReplyWithDefaults ¶

func NewRevealSecretReplyWithDefaults() *RevealSecretReply

NewRevealSecretReplyWithDefaults instantiates a new RevealSecretReply 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 (*RevealSecretReply) GetValue ¶

func (o *RevealSecretReply) GetValue() map[string]interface{}

GetValue returns the Value field value if set, zero value otherwise.

func (*RevealSecretReply) GetValueOk ¶

func (o *RevealSecretReply) GetValueOk() (map[string]interface{}, bool)

GetValueOk returns a tuple with the Value field value if set, nil otherwise and a boolean to check if the value has been set.

func (*RevealSecretReply) HasValue ¶

func (o *RevealSecretReply) HasValue() bool

HasValue returns a boolean if a field has been set.

func (RevealSecretReply) MarshalJSON ¶

func (o RevealSecretReply) MarshalJSON() ([]byte, error)

func (*RevealSecretReply) SetValue ¶

func (o *RevealSecretReply) SetValue(v map[string]interface{})

SetValue gets a reference to the given map[string]interface{} and assigns it to the Value field.

type ReviewOrganizationCapacityReply ¶

type ReviewOrganizationCapacityReply struct {
	HasCapacity *bool `json:"has_capacity,omitempty"`
}

ReviewOrganizationCapacityReply struct for ReviewOrganizationCapacityReply

func NewReviewOrganizationCapacityReply ¶

func NewReviewOrganizationCapacityReply() *ReviewOrganizationCapacityReply

NewReviewOrganizationCapacityReply instantiates a new ReviewOrganizationCapacityReply 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 NewReviewOrganizationCapacityReplyWithDefaults ¶

func NewReviewOrganizationCapacityReplyWithDefaults() *ReviewOrganizationCapacityReply

NewReviewOrganizationCapacityReplyWithDefaults instantiates a new ReviewOrganizationCapacityReply 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 (*ReviewOrganizationCapacityReply) GetHasCapacity ¶

func (o *ReviewOrganizationCapacityReply) GetHasCapacity() bool

GetHasCapacity returns the HasCapacity field value if set, zero value otherwise.

func (*ReviewOrganizationCapacityReply) GetHasCapacityOk ¶

func (o *ReviewOrganizationCapacityReply) GetHasCapacityOk() (*bool, bool)

GetHasCapacityOk returns a tuple with the HasCapacity field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ReviewOrganizationCapacityReply) HasHasCapacity ¶

func (o *ReviewOrganizationCapacityReply) HasHasCapacity() bool

HasHasCapacity returns a boolean if a field has been set.

func (ReviewOrganizationCapacityReply) MarshalJSON ¶

func (o ReviewOrganizationCapacityReply) MarshalJSON() ([]byte, error)

func (*ReviewOrganizationCapacityReply) SetHasCapacity ¶

func (o *ReviewOrganizationCapacityReply) SetHasCapacity(v bool)

SetHasCapacity gets a reference to the given bool and assigns it to the HasCapacity field.

type ReviewOrganizationCapacityRequest ¶

type ReviewOrganizationCapacityRequest struct {
	Plan *string `json:"plan,omitempty"`
}

ReviewOrganizationCapacityRequest struct for ReviewOrganizationCapacityRequest

func NewReviewOrganizationCapacityRequest ¶

func NewReviewOrganizationCapacityRequest() *ReviewOrganizationCapacityRequest

NewReviewOrganizationCapacityRequest instantiates a new ReviewOrganizationCapacityRequest 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 NewReviewOrganizationCapacityRequestWithDefaults ¶

func NewReviewOrganizationCapacityRequestWithDefaults() *ReviewOrganizationCapacityRequest

NewReviewOrganizationCapacityRequestWithDefaults instantiates a new ReviewOrganizationCapacityRequest 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 (*ReviewOrganizationCapacityRequest) GetPlan ¶

GetPlan returns the Plan field value if set, zero value otherwise.

func (*ReviewOrganizationCapacityRequest) GetPlanOk ¶

func (o *ReviewOrganizationCapacityRequest) GetPlanOk() (*string, bool)

GetPlanOk returns a tuple with the Plan field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ReviewOrganizationCapacityRequest) HasPlan ¶

HasPlan returns a boolean if a field has been set.

func (ReviewOrganizationCapacityRequest) MarshalJSON ¶

func (o ReviewOrganizationCapacityRequest) MarshalJSON() ([]byte, error)

func (*ReviewOrganizationCapacityRequest) SetPlan ¶

SetPlan gets a reference to the given string and assigns it to the Plan field.

type Route ¶

type Route struct {
	Port *int64  `json:"port,omitempty"`
	Path *string `json:"path,omitempty"`
}

Route struct for Route

func NewRoute ¶

func NewRoute() *Route

NewRoute instantiates a new Route 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 NewRouteWithDefaults ¶

func NewRouteWithDefaults() *Route

NewRouteWithDefaults instantiates a new Route 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 (*Route) GetPath ¶

func (o *Route) GetPath() string

GetPath returns the Path field value if set, zero value otherwise.

func (*Route) GetPathOk ¶

func (o *Route) GetPathOk() (*string, bool)

GetPathOk returns a tuple with the Path field value if set, nil otherwise and a boolean to check if the value has been set.

func (*Route) GetPort ¶

func (o *Route) GetPort() int64

GetPort returns the Port field value if set, zero value otherwise.

func (*Route) GetPortOk ¶

func (o *Route) GetPortOk() (*int64, 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 (*Route) HasPath ¶

func (o *Route) HasPath() bool

HasPath returns a boolean if a field has been set.

func (*Route) HasPort ¶

func (o *Route) HasPort() bool

HasPort returns a boolean if a field has been set.

func (Route) MarshalJSON ¶

func (o Route) MarshalJSON() ([]byte, error)

func (*Route) SetPath ¶

func (o *Route) SetPath(v string)

SetPath gets a reference to the given string and assigns it to the Path field.

func (*Route) SetPort ¶

func (o *Route) SetPort(v int64)

SetPort gets a reference to the given int64 and assigns it to the Port field.

type Sample ¶

type Sample struct {
	Timestamp *string  `json:"timestamp,omitempty"`
	Value     *float64 `json:"value,omitempty"`
}

Sample struct for Sample

func NewSample ¶

func NewSample() *Sample

NewSample instantiates a new Sample 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 NewSampleWithDefaults ¶

func NewSampleWithDefaults() *Sample

NewSampleWithDefaults instantiates a new Sample 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 (*Sample) GetTimestamp ¶

func (o *Sample) GetTimestamp() string

GetTimestamp returns the Timestamp field value if set, zero value otherwise.

func (*Sample) GetTimestampOk ¶

func (o *Sample) 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 (*Sample) GetValue ¶

func (o *Sample) GetValue() float64

GetValue returns the Value field value if set, zero value otherwise.

func (*Sample) GetValueOk ¶

func (o *Sample) GetValueOk() (*float64, bool)

GetValueOk returns a tuple with the Value field value if set, nil otherwise and a boolean to check if the value has been set.

func (*Sample) HasTimestamp ¶

func (o *Sample) HasTimestamp() bool

HasTimestamp returns a boolean if a field has been set.

func (*Sample) HasValue ¶

func (o *Sample) HasValue() bool

HasValue returns a boolean if a field has been set.

func (Sample) MarshalJSON ¶

func (o Sample) MarshalJSON() ([]byte, error)

func (*Sample) SetTimestamp ¶

func (o *Sample) SetTimestamp(v string)

SetTimestamp gets a reference to the given string and assigns it to the Timestamp field.

func (*Sample) SetValue ¶

func (o *Sample) SetValue(v float64)

SetValue gets a reference to the given float64 and assigns it to the Value field.

type Scaling ¶

type Scaling struct {
	Min     *int64                    `json:"min,omitempty"`
	Max     *int64                    `json:"max,omitempty"`
	Targets []DeploymentScalingTarget `json:"targets,omitempty"`
}

Scaling struct for Scaling

func NewScaling ¶

func NewScaling() *Scaling

NewScaling instantiates a new Scaling 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 NewScalingWithDefaults ¶

func NewScalingWithDefaults() *Scaling

NewScalingWithDefaults instantiates a new Scaling 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 (*Scaling) GetMax ¶

func (o *Scaling) GetMax() int64

GetMax returns the Max field value if set, zero value otherwise.

func (*Scaling) GetMaxOk ¶

func (o *Scaling) GetMaxOk() (*int64, bool)

GetMaxOk returns a tuple with the Max field value if set, nil otherwise and a boolean to check if the value has been set.

func (*Scaling) GetMin ¶

func (o *Scaling) GetMin() int64

GetMin returns the Min field value if set, zero value otherwise.

func (*Scaling) GetMinOk ¶

func (o *Scaling) GetMinOk() (*int64, bool)

GetMinOk returns a tuple with the Min field value if set, nil otherwise and a boolean to check if the value has been set.

func (*Scaling) GetTargets ¶

func (o *Scaling) GetTargets() []DeploymentScalingTarget

GetTargets returns the Targets field value if set, zero value otherwise.

func (*Scaling) GetTargetsOk ¶

func (o *Scaling) GetTargetsOk() ([]DeploymentScalingTarget, bool)

GetTargetsOk returns a tuple with the Targets field value if set, nil otherwise and a boolean to check if the value has been set.

func (*Scaling) HasMax ¶

func (o *Scaling) HasMax() bool

HasMax returns a boolean if a field has been set.

func (*Scaling) HasMin ¶

func (o *Scaling) HasMin() bool

HasMin returns a boolean if a field has been set.

func (*Scaling) HasTargets ¶

func (o *Scaling) HasTargets() bool

HasTargets returns a boolean if a field has been set.

func (Scaling) MarshalJSON ¶

func (o Scaling) MarshalJSON() ([]byte, error)

func (*Scaling) SetMax ¶

func (o *Scaling) SetMax(v int64)

SetMax gets a reference to the given int64 and assigns it to the Max field.

func (*Scaling) SetMin ¶

func (o *Scaling) SetMin(v int64)

SetMin gets a reference to the given int64 and assigns it to the Min field.

func (*Scaling) SetTargets ¶

func (o *Scaling) SetTargets(v []DeploymentScalingTarget)

SetTargets gets a reference to the given []DeploymentScalingTarget and assigns it to the Targets field.

type SearchApi ¶

type SearchApi interface {

	/*
		Search Search

		@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
		@return ApiSearchRequest
	*/
	Search(ctx context.Context) ApiSearchRequest

	// SearchExecute executes the request
	//  @return KsearchSearchReply
	SearchExecute(r ApiSearchRequest) (*KsearchSearchReply, *http.Response, error)
}

type SearchApiService ¶

type SearchApiService service

SearchApiService SearchApi service

func (*SearchApiService) Search ¶

Search Search

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@return ApiSearchRequest

func (*SearchApiService) SearchExecute ¶

Execute executes the request

@return KsearchSearchReply

type Secret ¶

type Secret struct {
	Id                     *string                              `json:"id,omitempty"`
	Name                   *string                              `json:"name,omitempty"`
	OrganizationId         *string                              `json:"organization_id,omitempty"`
	Type                   *SecretType                          `json:"type,omitempty"`
	UpdatedAt              *time.Time                           `json:"updated_at,omitempty"`
	CreatedAt              *time.Time                           `json:"created_at,omitempty"`
	Value                  *string                              `json:"value,omitempty"`
	DockerHubRegistry      *DockerHubRegistryConfiguration      `json:"docker_hub_registry,omitempty"`
	PrivateRegistry        *PrivateRegistryConfiguration        `json:"private_registry,omitempty"`
	DigitalOceanRegistry   *DigitalOceanRegistryConfiguration   `json:"digital_ocean_registry,omitempty"`
	GithubRegistry         *GitHubRegistryConfiguration         `json:"github_registry,omitempty"`
	GitlabRegistry         *GitLabRegistryConfiguration         `json:"gitlab_registry,omitempty"`
	GcpContainerRegistry   *GCPContainerRegistryConfiguration   `json:"gcp_container_registry,omitempty"`
	AzureContainerRegistry *AzureContainerRegistryConfiguration `json:"azure_container_registry,omitempty"`
	DatabaseRolePassword   *DatabaseRolePassword                `json:"database_role_password,omitempty"`
}

Secret struct for Secret

func NewSecret ¶

func NewSecret() *Secret

NewSecret instantiates a new Secret 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 NewSecretWithDefaults ¶

func NewSecretWithDefaults() *Secret

NewSecretWithDefaults instantiates a new Secret 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 (*Secret) GetAzureContainerRegistry ¶

func (o *Secret) GetAzureContainerRegistry() AzureContainerRegistryConfiguration

GetAzureContainerRegistry returns the AzureContainerRegistry field value if set, zero value otherwise.

func (*Secret) GetAzureContainerRegistryOk ¶

func (o *Secret) GetAzureContainerRegistryOk() (*AzureContainerRegistryConfiguration, bool)

GetAzureContainerRegistryOk returns a tuple with the AzureContainerRegistry field value if set, nil otherwise and a boolean to check if the value has been set.

func (*Secret) GetCreatedAt ¶

func (o *Secret) GetCreatedAt() time.Time

GetCreatedAt returns the CreatedAt field value if set, zero value otherwise.

func (*Secret) GetCreatedAtOk ¶

func (o *Secret) GetCreatedAtOk() (*time.Time, bool)

GetCreatedAtOk returns a tuple with the CreatedAt field value if set, nil otherwise and a boolean to check if the value has been set.

func (*Secret) GetDatabaseRolePassword ¶

func (o *Secret) GetDatabaseRolePassword() DatabaseRolePassword

GetDatabaseRolePassword returns the DatabaseRolePassword field value if set, zero value otherwise.

func (*Secret) GetDatabaseRolePasswordOk ¶

func (o *Secret) GetDatabaseRolePasswordOk() (*DatabaseRolePassword, bool)

GetDatabaseRolePasswordOk returns a tuple with the DatabaseRolePassword field value if set, nil otherwise and a boolean to check if the value has been set.

func (*Secret) GetDigitalOceanRegistry ¶

func (o *Secret) GetDigitalOceanRegistry() DigitalOceanRegistryConfiguration

GetDigitalOceanRegistry returns the DigitalOceanRegistry field value if set, zero value otherwise.

func (*Secret) GetDigitalOceanRegistryOk ¶

func (o *Secret) GetDigitalOceanRegistryOk() (*DigitalOceanRegistryConfiguration, bool)

GetDigitalOceanRegistryOk returns a tuple with the DigitalOceanRegistry field value if set, nil otherwise and a boolean to check if the value has been set.

func (*Secret) GetDockerHubRegistry ¶

func (o *Secret) GetDockerHubRegistry() DockerHubRegistryConfiguration

GetDockerHubRegistry returns the DockerHubRegistry field value if set, zero value otherwise.

func (*Secret) GetDockerHubRegistryOk ¶

func (o *Secret) GetDockerHubRegistryOk() (*DockerHubRegistryConfiguration, bool)

GetDockerHubRegistryOk returns a tuple with the DockerHubRegistry field value if set, nil otherwise and a boolean to check if the value has been set.

func (*Secret) GetGcpContainerRegistry ¶

func (o *Secret) GetGcpContainerRegistry() GCPContainerRegistryConfiguration

GetGcpContainerRegistry returns the GcpContainerRegistry field value if set, zero value otherwise.

func (*Secret) GetGcpContainerRegistryOk ¶

func (o *Secret) GetGcpContainerRegistryOk() (*GCPContainerRegistryConfiguration, bool)

GetGcpContainerRegistryOk returns a tuple with the GcpContainerRegistry field value if set, nil otherwise and a boolean to check if the value has been set.

func (*Secret) GetGithubRegistry ¶

func (o *Secret) GetGithubRegistry() GitHubRegistryConfiguration

GetGithubRegistry returns the GithubRegistry field value if set, zero value otherwise.

func (*Secret) GetGithubRegistryOk ¶

func (o *Secret) GetGithubRegistryOk() (*GitHubRegistryConfiguration, bool)

GetGithubRegistryOk returns a tuple with the GithubRegistry field value if set, nil otherwise and a boolean to check if the value has been set.

func (*Secret) GetGitlabRegistry ¶

func (o *Secret) GetGitlabRegistry() GitLabRegistryConfiguration

GetGitlabRegistry returns the GitlabRegistry field value if set, zero value otherwise.

func (*Secret) GetGitlabRegistryOk ¶

func (o *Secret) GetGitlabRegistryOk() (*GitLabRegistryConfiguration, bool)

GetGitlabRegistryOk returns a tuple with the GitlabRegistry field value if set, nil otherwise and a boolean to check if the value has been set.

func (*Secret) GetId ¶

func (o *Secret) GetId() string

GetId returns the Id field value if set, zero value otherwise.

func (*Secret) GetIdOk ¶

func (o *Secret) 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 (*Secret) GetName ¶

func (o *Secret) GetName() string

GetName returns the Name field value if set, zero value otherwise.

func (*Secret) GetNameOk ¶

func (o *Secret) 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 (*Secret) GetOrganizationId ¶

func (o *Secret) GetOrganizationId() string

GetOrganizationId returns the OrganizationId field value if set, zero value otherwise.

func (*Secret) GetOrganizationIdOk ¶

func (o *Secret) GetOrganizationIdOk() (*string, bool)

GetOrganizationIdOk returns a tuple with the OrganizationId field value if set, nil otherwise and a boolean to check if the value has been set.

func (*Secret) GetPrivateRegistry ¶

func (o *Secret) GetPrivateRegistry() PrivateRegistryConfiguration

GetPrivateRegistry returns the PrivateRegistry field value if set, zero value otherwise.

func (*Secret) GetPrivateRegistryOk ¶

func (o *Secret) GetPrivateRegistryOk() (*PrivateRegistryConfiguration, bool)

GetPrivateRegistryOk returns a tuple with the PrivateRegistry field value if set, nil otherwise and a boolean to check if the value has been set.

func (*Secret) GetType ¶

func (o *Secret) GetType() SecretType

GetType returns the Type field value if set, zero value otherwise.

func (*Secret) GetTypeOk ¶

func (o *Secret) GetTypeOk() (*SecretType, 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 (*Secret) GetUpdatedAt ¶

func (o *Secret) GetUpdatedAt() time.Time

GetUpdatedAt returns the UpdatedAt field value if set, zero value otherwise.

func (*Secret) GetUpdatedAtOk ¶

func (o *Secret) GetUpdatedAtOk() (*time.Time, bool)

GetUpdatedAtOk returns a tuple with the UpdatedAt field value if set, nil otherwise and a boolean to check if the value has been set.

func (*Secret) GetValue ¶

func (o *Secret) GetValue() string

GetValue returns the Value field value if set, zero value otherwise.

func (*Secret) GetValueOk ¶

func (o *Secret) GetValueOk() (*string, bool)

GetValueOk returns a tuple with the Value field value if set, nil otherwise and a boolean to check if the value has been set.

func (*Secret) HasAzureContainerRegistry ¶

func (o *Secret) HasAzureContainerRegistry() bool

HasAzureContainerRegistry returns a boolean if a field has been set.

func (*Secret) HasCreatedAt ¶

func (o *Secret) HasCreatedAt() bool

HasCreatedAt returns a boolean if a field has been set.

func (*Secret) HasDatabaseRolePassword ¶

func (o *Secret) HasDatabaseRolePassword() bool

HasDatabaseRolePassword returns a boolean if a field has been set.

func (*Secret) HasDigitalOceanRegistry ¶

func (o *Secret) HasDigitalOceanRegistry() bool

HasDigitalOceanRegistry returns a boolean if a field has been set.

func (*Secret) HasDockerHubRegistry ¶

func (o *Secret) HasDockerHubRegistry() bool

HasDockerHubRegistry returns a boolean if a field has been set.

func (*Secret) HasGcpContainerRegistry ¶

func (o *Secret) HasGcpContainerRegistry() bool

HasGcpContainerRegistry returns a boolean if a field has been set.

func (*Secret) HasGithubRegistry ¶

func (o *Secret) HasGithubRegistry() bool

HasGithubRegistry returns a boolean if a field has been set.

func (*Secret) HasGitlabRegistry ¶

func (o *Secret) HasGitlabRegistry() bool

HasGitlabRegistry returns a boolean if a field has been set.

func (*Secret) HasId ¶

func (o *Secret) HasId() bool

HasId returns a boolean if a field has been set.

func (*Secret) HasName ¶

func (o *Secret) HasName() bool

HasName returns a boolean if a field has been set.

func (*Secret) HasOrganizationId ¶

func (o *Secret) HasOrganizationId() bool

HasOrganizationId returns a boolean if a field has been set.

func (*Secret) HasPrivateRegistry ¶

func (o *Secret) HasPrivateRegistry() bool

HasPrivateRegistry returns a boolean if a field has been set.

func (*Secret) HasType ¶

func (o *Secret) HasType() bool

HasType returns a boolean if a field has been set.

func (*Secret) HasUpdatedAt ¶

func (o *Secret) HasUpdatedAt() bool

HasUpdatedAt returns a boolean if a field has been set.

func (*Secret) HasValue ¶

func (o *Secret) HasValue() bool

HasValue returns a boolean if a field has been set.

func (Secret) MarshalJSON ¶

func (o Secret) MarshalJSON() ([]byte, error)

func (*Secret) SetAzureContainerRegistry ¶

func (o *Secret) SetAzureContainerRegistry(v AzureContainerRegistryConfiguration)

SetAzureContainerRegistry gets a reference to the given AzureContainerRegistryConfiguration and assigns it to the AzureContainerRegistry field.

func (*Secret) SetCreatedAt ¶

func (o *Secret) SetCreatedAt(v time.Time)

SetCreatedAt gets a reference to the given time.Time and assigns it to the CreatedAt field.

func (*Secret) SetDatabaseRolePassword ¶

func (o *Secret) SetDatabaseRolePassword(v DatabaseRolePassword)

SetDatabaseRolePassword gets a reference to the given DatabaseRolePassword and assigns it to the DatabaseRolePassword field.

func (*Secret) SetDigitalOceanRegistry ¶

func (o *Secret) SetDigitalOceanRegistry(v DigitalOceanRegistryConfiguration)

SetDigitalOceanRegistry gets a reference to the given DigitalOceanRegistryConfiguration and assigns it to the DigitalOceanRegistry field.

func (*Secret) SetDockerHubRegistry ¶

func (o *Secret) SetDockerHubRegistry(v DockerHubRegistryConfiguration)

SetDockerHubRegistry gets a reference to the given DockerHubRegistryConfiguration and assigns it to the DockerHubRegistry field.

func (*Secret) SetGcpContainerRegistry ¶

func (o *Secret) SetGcpContainerRegistry(v GCPContainerRegistryConfiguration)

SetGcpContainerRegistry gets a reference to the given GCPContainerRegistryConfiguration and assigns it to the GcpContainerRegistry field.

func (*Secret) SetGithubRegistry ¶

func (o *Secret) SetGithubRegistry(v GitHubRegistryConfiguration)

SetGithubRegistry gets a reference to the given GitHubRegistryConfiguration and assigns it to the GithubRegistry field.

func (*Secret) SetGitlabRegistry ¶

func (o *Secret) SetGitlabRegistry(v GitLabRegistryConfiguration)

SetGitlabRegistry gets a reference to the given GitLabRegistryConfiguration and assigns it to the GitlabRegistry field.

func (*Secret) SetId ¶

func (o *Secret) SetId(v string)

SetId gets a reference to the given string and assigns it to the Id field.

func (*Secret) SetName ¶

func (o *Secret) SetName(v string)

SetName gets a reference to the given string and assigns it to the Name field.

func (*Secret) SetOrganizationId ¶

func (o *Secret) SetOrganizationId(v string)

SetOrganizationId gets a reference to the given string and assigns it to the OrganizationId field.

func (*Secret) SetPrivateRegistry ¶

func (o *Secret) SetPrivateRegistry(v PrivateRegistryConfiguration)

SetPrivateRegistry gets a reference to the given PrivateRegistryConfiguration and assigns it to the PrivateRegistry field.

func (*Secret) SetType ¶

func (o *Secret) SetType(v SecretType)

SetType gets a reference to the given SecretType and assigns it to the Type field.

func (*Secret) SetUpdatedAt ¶

func (o *Secret) SetUpdatedAt(v time.Time)

SetUpdatedAt gets a reference to the given time.Time and assigns it to the UpdatedAt field.

func (*Secret) SetValue ¶

func (o *Secret) SetValue(v string)

SetValue gets a reference to the given string and assigns it to the Value field.

type SecretType ¶

type SecretType string

SecretType the model 'SecretType'

const (
	SECRETTYPE_SIMPLE   SecretType = "SIMPLE"
	SECRETTYPE_REGISTRY SecretType = "REGISTRY"
	SECRETTYPE_MANAGED  SecretType = "MANAGED"
)

List of SecretType

func NewSecretTypeFromValue ¶

func NewSecretTypeFromValue(v string) (*SecretType, error)

NewSecretTypeFromValue returns a pointer to a valid SecretType for the value passed as argument, or an error if the value passed is not allowed by the enum

func (SecretType) IsValid ¶

func (v SecretType) IsValid() bool

IsValid return true if the value is valid for the enum, false otherwise

func (SecretType) Ptr ¶

func (v SecretType) Ptr() *SecretType

Ptr returns reference to SecretType value

func (*SecretType) UnmarshalJSON ¶

func (v *SecretType) UnmarshalJSON(src []byte) error

type SecretsApi ¶

type SecretsApi interface {

	/*
		CreateSecret Method for CreateSecret

		@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
		@return ApiCreateSecretRequest
	*/
	CreateSecret(ctx context.Context) ApiCreateSecretRequest

	// CreateSecretExecute executes the request
	//  @return CreateSecretReply
	CreateSecretExecute(r ApiCreateSecretRequest) (*CreateSecretReply, *http.Response, error)

	/*
		DeleteSecret Method for DeleteSecret

		@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
		@param id
		@return ApiDeleteSecretRequest
	*/
	DeleteSecret(ctx context.Context, id string) ApiDeleteSecretRequest

	// DeleteSecretExecute executes the request
	//  @return map[string]interface{}
	DeleteSecretExecute(r ApiDeleteSecretRequest) (map[string]interface{}, *http.Response, error)

	/*
		GetSecret Method for GetSecret

		@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
		@param id
		@return ApiGetSecretRequest
	*/
	GetSecret(ctx context.Context, id string) ApiGetSecretRequest

	// GetSecretExecute executes the request
	//  @return GetSecretReply
	GetSecretExecute(r ApiGetSecretRequest) (*GetSecretReply, *http.Response, error)

	/*
		ListSecrets Method for ListSecrets

		@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
		@return ApiListSecretsRequest
	*/
	ListSecrets(ctx context.Context) ApiListSecretsRequest

	// ListSecretsExecute executes the request
	//  @return ListSecretsReply
	ListSecretsExecute(r ApiListSecretsRequest) (*ListSecretsReply, *http.Response, error)

	/*
		RevealSecret Method for RevealSecret

		@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
		@param id
		@return ApiRevealSecretRequest
	*/
	RevealSecret(ctx context.Context, id string) ApiRevealSecretRequest

	// RevealSecretExecute executes the request
	//  @return RevealSecretReply
	RevealSecretExecute(r ApiRevealSecretRequest) (*RevealSecretReply, *http.Response, error)

	/*
		UpdateSecret Method for UpdateSecret

		@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
		@param id
		@return ApiUpdateSecretRequest
	*/
	UpdateSecret(ctx context.Context, id string) ApiUpdateSecretRequest

	// UpdateSecretExecute executes the request
	//  @return UpdateSecretReply
	UpdateSecretExecute(r ApiUpdateSecretRequest) (*UpdateSecretReply, *http.Response, error)

	/*
		UpdateSecret2 Method for UpdateSecret2

		@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
		@param id
		@return ApiUpdateSecret2Request
	*/
	UpdateSecret2(ctx context.Context, id string) ApiUpdateSecret2Request

	// UpdateSecret2Execute executes the request
	//  @return UpdateSecretReply
	UpdateSecret2Execute(r ApiUpdateSecret2Request) (*UpdateSecretReply, *http.Response, error)
}

type SecretsApiService ¶

type SecretsApiService service

SecretsApiService SecretsApi service

func (*SecretsApiService) CreateSecret ¶

CreateSecret Method for CreateSecret

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@return ApiCreateSecretRequest

func (*SecretsApiService) CreateSecretExecute ¶

Execute executes the request

@return CreateSecretReply

func (*SecretsApiService) DeleteSecret ¶

DeleteSecret Method for DeleteSecret

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param id
@return ApiDeleteSecretRequest

func (*SecretsApiService) DeleteSecretExecute ¶

func (a *SecretsApiService) DeleteSecretExecute(r ApiDeleteSecretRequest) (map[string]interface{}, *http.Response, error)

Execute executes the request

@return map[string]interface{}

func (*SecretsApiService) GetSecret ¶

GetSecret Method for GetSecret

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param id
@return ApiGetSecretRequest

func (*SecretsApiService) GetSecretExecute ¶

Execute executes the request

@return GetSecretReply

func (*SecretsApiService) ListSecrets ¶

ListSecrets Method for ListSecrets

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@return ApiListSecretsRequest

func (*SecretsApiService) ListSecretsExecute ¶

Execute executes the request

@return ListSecretsReply

func (*SecretsApiService) RevealSecret ¶

RevealSecret Method for RevealSecret

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param id
@return ApiRevealSecretRequest

func (*SecretsApiService) RevealSecretExecute ¶

Execute executes the request

@return RevealSecretReply

func (*SecretsApiService) UpdateSecret ¶

UpdateSecret Method for UpdateSecret

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param id
@return ApiUpdateSecretRequest

func (*SecretsApiService) UpdateSecret2 ¶

UpdateSecret2 Method for UpdateSecret2

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param id
@return ApiUpdateSecret2Request

func (*SecretsApiService) UpdateSecret2Execute ¶

Execute executes the request

@return UpdateSecretReply

func (*SecretsApiService) UpdateSecretExecute ¶

Execute executes the request

@return UpdateSecretReply

type SecretsSummary ¶

type SecretsSummary struct {
	Total  *string            `json:"total,omitempty"`
	ByType *map[string]string `json:"by_type,omitempty"`
}

SecretsSummary struct for SecretsSummary

func NewSecretsSummary ¶

func NewSecretsSummary() *SecretsSummary

NewSecretsSummary instantiates a new SecretsSummary 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 NewSecretsSummaryWithDefaults ¶

func NewSecretsSummaryWithDefaults() *SecretsSummary

NewSecretsSummaryWithDefaults instantiates a new SecretsSummary 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 (*SecretsSummary) GetByType ¶

func (o *SecretsSummary) GetByType() map[string]string

GetByType returns the ByType field value if set, zero value otherwise.

func (*SecretsSummary) GetByTypeOk ¶

func (o *SecretsSummary) GetByTypeOk() (*map[string]string, bool)

GetByTypeOk returns a tuple with the ByType field value if set, nil otherwise and a boolean to check if the value has been set.

func (*SecretsSummary) GetTotal ¶

func (o *SecretsSummary) GetTotal() string

GetTotal returns the Total field value if set, zero value otherwise.

func (*SecretsSummary) GetTotalOk ¶

func (o *SecretsSummary) GetTotalOk() (*string, bool)

GetTotalOk returns a tuple with the Total field value if set, nil otherwise and a boolean to check if the value has been set.

func (*SecretsSummary) HasByType ¶

func (o *SecretsSummary) HasByType() bool

HasByType returns a boolean if a field has been set.

func (*SecretsSummary) HasTotal ¶

func (o *SecretsSummary) HasTotal() bool

HasTotal returns a boolean if a field has been set.

func (SecretsSummary) MarshalJSON ¶

func (o SecretsSummary) MarshalJSON() ([]byte, error)

func (*SecretsSummary) SetByType ¶

func (o *SecretsSummary) SetByType(v map[string]string)

SetByType gets a reference to the given map[string]string and assigns it to the ByType field.

func (*SecretsSummary) SetTotal ¶

func (o *SecretsSummary) SetTotal(v string)

SetTotal gets a reference to the given string and assigns it to the Total field.

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 Service ¶

type Service struct {
	Id                          *string        `json:"id,omitempty"`
	CreatedAt                   *time.Time     `json:"created_at,omitempty"`
	UpdatedAt                   *time.Time     `json:"updated_at,omitempty"`
	StartedAt                   *time.Time     `json:"started_at,omitempty"`
	SucceededAt                 *time.Time     `json:"succeeded_at,omitempty"`
	PausedAt                    *time.Time     `json:"paused_at,omitempty"`
	ResumedAt                   *time.Time     `json:"resumed_at,omitempty"`
	TerminatedAt                *time.Time     `json:"terminated_at,omitempty"`
	Name                        *string        `json:"name,omitempty"`
	Type                        *ServiceType   `json:"type,omitempty"`
	OrganizationId              *string        `json:"organization_id,omitempty"`
	AppId                       *string        `json:"app_id,omitempty"`
	Status                      *ServiceStatus `json:"status,omitempty"`
	Messages                    []string       `json:"messages,omitempty"`
	Version                     *string        `json:"version,omitempty"`
	ActiveDeploymentId          *string        `json:"active_deployment_id,omitempty"`
	LatestDeploymentId          *string        `json:"latest_deployment_id,omitempty"`
	LastProvisionedDeploymentId *string        `json:"last_provisioned_deployment_id,omitempty"`
	State                       *ServiceState  `json:"state,omitempty"`
}

Service struct for Service

func NewService ¶

func NewService() *Service

NewService instantiates a new Service 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 NewServiceWithDefaults ¶

func NewServiceWithDefaults() *Service

NewServiceWithDefaults instantiates a new Service 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 (*Service) GetActiveDeploymentId ¶

func (o *Service) GetActiveDeploymentId() string

GetActiveDeploymentId returns the ActiveDeploymentId field value if set, zero value otherwise.

func (*Service) GetActiveDeploymentIdOk ¶

func (o *Service) GetActiveDeploymentIdOk() (*string, bool)

GetActiveDeploymentIdOk returns a tuple with the ActiveDeploymentId field value if set, nil otherwise and a boolean to check if the value has been set.

func (*Service) GetAppId ¶

func (o *Service) GetAppId() string

GetAppId returns the AppId field value if set, zero value otherwise.

func (*Service) GetAppIdOk ¶

func (o *Service) GetAppIdOk() (*string, bool)

GetAppIdOk returns a tuple with the AppId field value if set, nil otherwise and a boolean to check if the value has been set.

func (*Service) GetCreatedAt ¶

func (o *Service) GetCreatedAt() time.Time

GetCreatedAt returns the CreatedAt field value if set, zero value otherwise.

func (*Service) GetCreatedAtOk ¶

func (o *Service) GetCreatedAtOk() (*time.Time, bool)

GetCreatedAtOk returns a tuple with the CreatedAt field value if set, nil otherwise and a boolean to check if the value has been set.

func (*Service) GetId ¶

func (o *Service) GetId() string

GetId returns the Id field value if set, zero value otherwise.

func (*Service) GetIdOk ¶

func (o *Service) 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 (*Service) GetLastProvisionedDeploymentId ¶

func (o *Service) GetLastProvisionedDeploymentId() string

GetLastProvisionedDeploymentId returns the LastProvisionedDeploymentId field value if set, zero value otherwise.

func (*Service) GetLastProvisionedDeploymentIdOk ¶

func (o *Service) GetLastProvisionedDeploymentIdOk() (*string, bool)

GetLastProvisionedDeploymentIdOk returns a tuple with the LastProvisionedDeploymentId field value if set, nil otherwise and a boolean to check if the value has been set.

func (*Service) GetLatestDeploymentId ¶

func (o *Service) GetLatestDeploymentId() string

GetLatestDeploymentId returns the LatestDeploymentId field value if set, zero value otherwise.

func (*Service) GetLatestDeploymentIdOk ¶

func (o *Service) GetLatestDeploymentIdOk() (*string, bool)

GetLatestDeploymentIdOk returns a tuple with the LatestDeploymentId field value if set, nil otherwise and a boolean to check if the value has been set.

func (*Service) GetMessages ¶

func (o *Service) GetMessages() []string

GetMessages returns the Messages field value if set, zero value otherwise.

func (*Service) GetMessagesOk ¶

func (o *Service) GetMessagesOk() ([]string, bool)

GetMessagesOk returns a tuple with the Messages field value if set, nil otherwise and a boolean to check if the value has been set.

func (*Service) GetName ¶

func (o *Service) GetName() string

GetName returns the Name field value if set, zero value otherwise.

func (*Service) GetNameOk ¶

func (o *Service) 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 (*Service) GetOrganizationId ¶

func (o *Service) GetOrganizationId() string

GetOrganizationId returns the OrganizationId field value if set, zero value otherwise.

func (*Service) GetOrganizationIdOk ¶

func (o *Service) GetOrganizationIdOk() (*string, bool)

GetOrganizationIdOk returns a tuple with the OrganizationId field value if set, nil otherwise and a boolean to check if the value has been set.

func (*Service) GetPausedAt ¶

func (o *Service) GetPausedAt() time.Time

GetPausedAt returns the PausedAt field value if set, zero value otherwise.

func (*Service) GetPausedAtOk ¶

func (o *Service) GetPausedAtOk() (*time.Time, bool)

GetPausedAtOk returns a tuple with the PausedAt field value if set, nil otherwise and a boolean to check if the value has been set.

func (*Service) GetResumedAt ¶

func (o *Service) GetResumedAt() time.Time

GetResumedAt returns the ResumedAt field value if set, zero value otherwise.

func (*Service) GetResumedAtOk ¶

func (o *Service) GetResumedAtOk() (*time.Time, bool)

GetResumedAtOk returns a tuple with the ResumedAt field value if set, nil otherwise and a boolean to check if the value has been set.

func (*Service) GetStartedAt ¶

func (o *Service) GetStartedAt() time.Time

GetStartedAt returns the StartedAt field value if set, zero value otherwise.

func (*Service) GetStartedAtOk ¶

func (o *Service) GetStartedAtOk() (*time.Time, bool)

GetStartedAtOk returns a tuple with the StartedAt field value if set, nil otherwise and a boolean to check if the value has been set.

func (*Service) GetState ¶

func (o *Service) GetState() ServiceState

GetState returns the State field value if set, zero value otherwise.

func (*Service) GetStateOk ¶

func (o *Service) GetStateOk() (*ServiceState, 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 (*Service) GetStatus ¶

func (o *Service) GetStatus() ServiceStatus

GetStatus returns the Status field value if set, zero value otherwise.

func (*Service) GetStatusOk ¶

func (o *Service) GetStatusOk() (*ServiceStatus, 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 (*Service) GetSucceededAt ¶

func (o *Service) GetSucceededAt() time.Time

GetSucceededAt returns the SucceededAt field value if set, zero value otherwise.

func (*Service) GetSucceededAtOk ¶

func (o *Service) GetSucceededAtOk() (*time.Time, bool)

GetSucceededAtOk returns a tuple with the SucceededAt field value if set, nil otherwise and a boolean to check if the value has been set.

func (*Service) GetTerminatedAt ¶

func (o *Service) GetTerminatedAt() time.Time

GetTerminatedAt returns the TerminatedAt field value if set, zero value otherwise.

func (*Service) GetTerminatedAtOk ¶

func (o *Service) GetTerminatedAtOk() (*time.Time, bool)

GetTerminatedAtOk returns a tuple with the TerminatedAt field value if set, nil otherwise and a boolean to check if the value has been set.

func (*Service) GetType ¶

func (o *Service) GetType() ServiceType

GetType returns the Type field value if set, zero value otherwise.

func (*Service) GetTypeOk ¶

func (o *Service) GetTypeOk() (*ServiceType, 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 (*Service) GetUpdatedAt ¶

func (o *Service) GetUpdatedAt() time.Time

GetUpdatedAt returns the UpdatedAt field value if set, zero value otherwise.

func (*Service) GetUpdatedAtOk ¶

func (o *Service) GetUpdatedAtOk() (*time.Time, bool)

GetUpdatedAtOk returns a tuple with the UpdatedAt field value if set, nil otherwise and a boolean to check if the value has been set.

func (*Service) GetVersion ¶

func (o *Service) GetVersion() string

GetVersion returns the Version field value if set, zero value otherwise.

func (*Service) GetVersionOk ¶

func (o *Service) GetVersionOk() (*string, bool)

GetVersionOk returns a tuple with the Version field value if set, nil otherwise and a boolean to check if the value has been set.

func (*Service) HasActiveDeploymentId ¶

func (o *Service) HasActiveDeploymentId() bool

HasActiveDeploymentId returns a boolean if a field has been set.

func (*Service) HasAppId ¶

func (o *Service) HasAppId() bool

HasAppId returns a boolean if a field has been set.

func (*Service) HasCreatedAt ¶

func (o *Service) HasCreatedAt() bool

HasCreatedAt returns a boolean if a field has been set.

func (*Service) HasId ¶

func (o *Service) HasId() bool

HasId returns a boolean if a field has been set.

func (*Service) HasLastProvisionedDeploymentId ¶

func (o *Service) HasLastProvisionedDeploymentId() bool

HasLastProvisionedDeploymentId returns a boolean if a field has been set.

func (*Service) HasLatestDeploymentId ¶

func (o *Service) HasLatestDeploymentId() bool

HasLatestDeploymentId returns a boolean if a field has been set.

func (*Service) HasMessages ¶

func (o *Service) HasMessages() bool

HasMessages returns a boolean if a field has been set.

func (*Service) HasName ¶

func (o *Service) HasName() bool

HasName returns a boolean if a field has been set.

func (*Service) HasOrganizationId ¶

func (o *Service) HasOrganizationId() bool

HasOrganizationId returns a boolean if a field has been set.

func (*Service) HasPausedAt ¶

func (o *Service) HasPausedAt() bool

HasPausedAt returns a boolean if a field has been set.

func (*Service) HasResumedAt ¶

func (o *Service) HasResumedAt() bool

HasResumedAt returns a boolean if a field has been set.

func (*Service) HasStartedAt ¶

func (o *Service) HasStartedAt() bool

HasStartedAt returns a boolean if a field has been set.

func (*Service) HasState ¶

func (o *Service) HasState() bool

HasState returns a boolean if a field has been set.

func (*Service) HasStatus ¶

func (o *Service) HasStatus() bool

HasStatus returns a boolean if a field has been set.

func (*Service) HasSucceededAt ¶

func (o *Service) HasSucceededAt() bool

HasSucceededAt returns a boolean if a field has been set.

func (*Service) HasTerminatedAt ¶

func (o *Service) HasTerminatedAt() bool

HasTerminatedAt returns a boolean if a field has been set.

func (*Service) HasType ¶

func (o *Service) HasType() bool

HasType returns a boolean if a field has been set.

func (*Service) HasUpdatedAt ¶

func (o *Service) HasUpdatedAt() bool

HasUpdatedAt returns a boolean if a field has been set.

func (*Service) HasVersion ¶

func (o *Service) HasVersion() bool

HasVersion returns a boolean if a field has been set.

func (Service) MarshalJSON ¶

func (o Service) MarshalJSON() ([]byte, error)

func (*Service) SetActiveDeploymentId ¶

func (o *Service) SetActiveDeploymentId(v string)

SetActiveDeploymentId gets a reference to the given string and assigns it to the ActiveDeploymentId field.

func (*Service) SetAppId ¶

func (o *Service) SetAppId(v string)

SetAppId gets a reference to the given string and assigns it to the AppId field.

func (*Service) SetCreatedAt ¶

func (o *Service) SetCreatedAt(v time.Time)

SetCreatedAt gets a reference to the given time.Time and assigns it to the CreatedAt field.

func (*Service) SetId ¶

func (o *Service) SetId(v string)

SetId gets a reference to the given string and assigns it to the Id field.

func (*Service) SetLastProvisionedDeploymentId ¶

func (o *Service) SetLastProvisionedDeploymentId(v string)

SetLastProvisionedDeploymentId gets a reference to the given string and assigns it to the LastProvisionedDeploymentId field.

func (*Service) SetLatestDeploymentId ¶

func (o *Service) SetLatestDeploymentId(v string)

SetLatestDeploymentId gets a reference to the given string and assigns it to the LatestDeploymentId field.

func (*Service) SetMessages ¶

func (o *Service) SetMessages(v []string)

SetMessages gets a reference to the given []string and assigns it to the Messages field.

func (*Service) SetName ¶

func (o *Service) SetName(v string)

SetName gets a reference to the given string and assigns it to the Name field.

func (*Service) SetOrganizationId ¶

func (o *Service) SetOrganizationId(v string)

SetOrganizationId gets a reference to the given string and assigns it to the OrganizationId field.

func (*Service) SetPausedAt ¶

func (o *Service) SetPausedAt(v time.Time)

SetPausedAt gets a reference to the given time.Time and assigns it to the PausedAt field.

func (*Service) SetResumedAt ¶

func (o *Service) SetResumedAt(v time.Time)

SetResumedAt gets a reference to the given time.Time and assigns it to the ResumedAt field.

func (*Service) SetStartedAt ¶

func (o *Service) SetStartedAt(v time.Time)

SetStartedAt gets a reference to the given time.Time and assigns it to the StartedAt field.

func (*Service) SetState ¶

func (o *Service) SetState(v ServiceState)

SetState gets a reference to the given ServiceState and assigns it to the State field.

func (*Service) SetStatus ¶

func (o *Service) SetStatus(v ServiceStatus)

SetStatus gets a reference to the given ServiceStatus and assigns it to the Status field.

func (*Service) SetSucceededAt ¶

func (o *Service) SetSucceededAt(v time.Time)

SetSucceededAt gets a reference to the given time.Time and assigns it to the SucceededAt field.

func (*Service) SetTerminatedAt ¶

func (o *Service) SetTerminatedAt(v time.Time)

SetTerminatedAt gets a reference to the given time.Time and assigns it to the TerminatedAt field.

func (*Service) SetType ¶

func (o *Service) SetType(v ServiceType)

SetType gets a reference to the given ServiceType and assigns it to the Type field.

func (*Service) SetUpdatedAt ¶

func (o *Service) SetUpdatedAt(v time.Time)

SetUpdatedAt gets a reference to the given time.Time and assigns it to the UpdatedAt field.

func (*Service) SetVersion ¶

func (o *Service) SetVersion(v string)

SetVersion gets a reference to the given string and assigns it to the Version field.

type ServiceEvent ¶

type ServiceEvent struct {
	Id             *string                `json:"id,omitempty"`
	When           *time.Time             `json:"when,omitempty"`
	OrganizationId *string                `json:"organization_id,omitempty"`
	ServiceId      *string                `json:"service_id,omitempty"`
	Type           *string                `json:"type,omitempty"`
	Message        *string                `json:"message,omitempty"`
	Metadata       map[string]interface{} `json:"metadata,omitempty"`
}

ServiceEvent struct for ServiceEvent

func NewServiceEvent ¶

func NewServiceEvent() *ServiceEvent

NewServiceEvent instantiates a new ServiceEvent 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 NewServiceEventWithDefaults ¶

func NewServiceEventWithDefaults() *ServiceEvent

NewServiceEventWithDefaults instantiates a new ServiceEvent 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 (*ServiceEvent) GetId ¶

func (o *ServiceEvent) GetId() string

GetId returns the Id field value if set, zero value otherwise.

func (*ServiceEvent) GetIdOk ¶

func (o *ServiceEvent) 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 (*ServiceEvent) GetMessage ¶

func (o *ServiceEvent) GetMessage() string

GetMessage returns the Message field value if set, zero value otherwise.

func (*ServiceEvent) GetMessageOk ¶

func (o *ServiceEvent) 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 (*ServiceEvent) GetMetadata ¶

func (o *ServiceEvent) GetMetadata() map[string]interface{}

GetMetadata returns the Metadata field value if set, zero value otherwise.

func (*ServiceEvent) GetMetadataOk ¶

func (o *ServiceEvent) GetMetadataOk() (map[string]interface{}, bool)

GetMetadataOk returns a tuple with the Metadata field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ServiceEvent) GetOrganizationId ¶

func (o *ServiceEvent) GetOrganizationId() string

GetOrganizationId returns the OrganizationId field value if set, zero value otherwise.

func (*ServiceEvent) GetOrganizationIdOk ¶

func (o *ServiceEvent) GetOrganizationIdOk() (*string, bool)

GetOrganizationIdOk returns a tuple with the OrganizationId field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ServiceEvent) GetServiceId ¶

func (o *ServiceEvent) GetServiceId() string

GetServiceId returns the ServiceId field value if set, zero value otherwise.

func (*ServiceEvent) GetServiceIdOk ¶

func (o *ServiceEvent) GetServiceIdOk() (*string, bool)

GetServiceIdOk returns a tuple with the ServiceId field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ServiceEvent) GetType ¶

func (o *ServiceEvent) GetType() string

GetType returns the Type field value if set, zero value otherwise.

func (*ServiceEvent) GetTypeOk ¶

func (o *ServiceEvent) 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 (*ServiceEvent) GetWhen ¶

func (o *ServiceEvent) GetWhen() time.Time

GetWhen returns the When field value if set, zero value otherwise.

func (*ServiceEvent) GetWhenOk ¶

func (o *ServiceEvent) GetWhenOk() (*time.Time, bool)

GetWhenOk returns a tuple with the When field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ServiceEvent) HasId ¶

func (o *ServiceEvent) HasId() bool

HasId returns a boolean if a field has been set.

func (*ServiceEvent) HasMessage ¶

func (o *ServiceEvent) HasMessage() bool

HasMessage returns a boolean if a field has been set.

func (*ServiceEvent) HasMetadata ¶

func (o *ServiceEvent) HasMetadata() bool

HasMetadata returns a boolean if a field has been set.

func (*ServiceEvent) HasOrganizationId ¶

func (o *ServiceEvent) HasOrganizationId() bool

HasOrganizationId returns a boolean if a field has been set.

func (*ServiceEvent) HasServiceId ¶

func (o *ServiceEvent) HasServiceId() bool

HasServiceId returns a boolean if a field has been set.

func (*ServiceEvent) HasType ¶

func (o *ServiceEvent) HasType() bool

HasType returns a boolean if a field has been set.

func (*ServiceEvent) HasWhen ¶

func (o *ServiceEvent) HasWhen() bool

HasWhen returns a boolean if a field has been set.

func (ServiceEvent) MarshalJSON ¶

func (o ServiceEvent) MarshalJSON() ([]byte, error)

func (*ServiceEvent) SetId ¶

func (o *ServiceEvent) SetId(v string)

SetId gets a reference to the given string and assigns it to the Id field.

func (*ServiceEvent) SetMessage ¶

func (o *ServiceEvent) SetMessage(v string)

SetMessage gets a reference to the given string and assigns it to the Message field.

func (*ServiceEvent) SetMetadata ¶

func (o *ServiceEvent) SetMetadata(v map[string]interface{})

SetMetadata gets a reference to the given map[string]interface{} and assigns it to the Metadata field.

func (*ServiceEvent) SetOrganizationId ¶

func (o *ServiceEvent) SetOrganizationId(v string)

SetOrganizationId gets a reference to the given string and assigns it to the OrganizationId field.

func (*ServiceEvent) SetServiceId ¶

func (o *ServiceEvent) SetServiceId(v string)

SetServiceId gets a reference to the given string and assigns it to the ServiceId field.

func (*ServiceEvent) SetType ¶

func (o *ServiceEvent) SetType(v string)

SetType gets a reference to the given string and assigns it to the Type field.

func (*ServiceEvent) SetWhen ¶

func (o *ServiceEvent) SetWhen(v time.Time)

SetWhen gets a reference to the given time.Time and assigns it to the When field.

type ServiceListItem ¶

type ServiceListItem struct {
	Id                 *string        `json:"id,omitempty"`
	Name               *string        `json:"name,omitempty"`
	Type               *ServiceType   `json:"type,omitempty"`
	OrganizationId     *string        `json:"organization_id,omitempty"`
	AppId              *string        `json:"app_id,omitempty"`
	UpdatedAt          *time.Time     `json:"updated_at,omitempty"`
	CreatedAt          *time.Time     `json:"created_at,omitempty"`
	Status             *ServiceStatus `json:"status,omitempty"`
	Messages           []string       `json:"messages,omitempty"`
	Version            *string        `json:"version,omitempty"`
	State              *ServiceState  `json:"state,omitempty"`
	ActiveDeploymentId *string        `json:"active_deployment_id,omitempty"`
	LatestDeploymentId *string        `json:"latest_deployment_id,omitempty"`
}

ServiceListItem struct for ServiceListItem

func NewServiceListItem ¶

func NewServiceListItem() *ServiceListItem

NewServiceListItem instantiates a new ServiceListItem 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 NewServiceListItemWithDefaults ¶

func NewServiceListItemWithDefaults() *ServiceListItem

NewServiceListItemWithDefaults instantiates a new ServiceListItem 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 (*ServiceListItem) GetActiveDeploymentId ¶

func (o *ServiceListItem) GetActiveDeploymentId() string

GetActiveDeploymentId returns the ActiveDeploymentId field value if set, zero value otherwise.

func (*ServiceListItem) GetActiveDeploymentIdOk ¶

func (o *ServiceListItem) GetActiveDeploymentIdOk() (*string, bool)

GetActiveDeploymentIdOk returns a tuple with the ActiveDeploymentId field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ServiceListItem) GetAppId ¶

func (o *ServiceListItem) GetAppId() string

GetAppId returns the AppId field value if set, zero value otherwise.

func (*ServiceListItem) GetAppIdOk ¶

func (o *ServiceListItem) GetAppIdOk() (*string, bool)

GetAppIdOk returns a tuple with the AppId field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ServiceListItem) GetCreatedAt ¶

func (o *ServiceListItem) GetCreatedAt() time.Time

GetCreatedAt returns the CreatedAt field value if set, zero value otherwise.

func (*ServiceListItem) GetCreatedAtOk ¶

func (o *ServiceListItem) GetCreatedAtOk() (*time.Time, bool)

GetCreatedAtOk returns a tuple with the CreatedAt field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ServiceListItem) GetId ¶

func (o *ServiceListItem) GetId() string

GetId returns the Id field value if set, zero value otherwise.

func (*ServiceListItem) GetIdOk ¶

func (o *ServiceListItem) 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 (*ServiceListItem) GetLatestDeploymentId ¶

func (o *ServiceListItem) GetLatestDeploymentId() string

GetLatestDeploymentId returns the LatestDeploymentId field value if set, zero value otherwise.

func (*ServiceListItem) GetLatestDeploymentIdOk ¶

func (o *ServiceListItem) GetLatestDeploymentIdOk() (*string, bool)

GetLatestDeploymentIdOk returns a tuple with the LatestDeploymentId field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ServiceListItem) GetMessages ¶

func (o *ServiceListItem) GetMessages() []string

GetMessages returns the Messages field value if set, zero value otherwise.

func (*ServiceListItem) GetMessagesOk ¶

func (o *ServiceListItem) GetMessagesOk() ([]string, bool)

GetMessagesOk returns a tuple with the Messages field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ServiceListItem) GetName ¶

func (o *ServiceListItem) GetName() string

GetName returns the Name field value if set, zero value otherwise.

func (*ServiceListItem) GetNameOk ¶

func (o *ServiceListItem) 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 (*ServiceListItem) GetOrganizationId ¶

func (o *ServiceListItem) GetOrganizationId() string

GetOrganizationId returns the OrganizationId field value if set, zero value otherwise.

func (*ServiceListItem) GetOrganizationIdOk ¶

func (o *ServiceListItem) GetOrganizationIdOk() (*string, bool)

GetOrganizationIdOk returns a tuple with the OrganizationId field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ServiceListItem) GetState ¶

func (o *ServiceListItem) GetState() ServiceState

GetState returns the State field value if set, zero value otherwise.

func (*ServiceListItem) GetStateOk ¶

func (o *ServiceListItem) GetStateOk() (*ServiceState, 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 (*ServiceListItem) GetStatus ¶

func (o *ServiceListItem) GetStatus() ServiceStatus

GetStatus returns the Status field value if set, zero value otherwise.

func (*ServiceListItem) GetStatusOk ¶

func (o *ServiceListItem) GetStatusOk() (*ServiceStatus, 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 (*ServiceListItem) GetType ¶

func (o *ServiceListItem) GetType() ServiceType

GetType returns the Type field value if set, zero value otherwise.

func (*ServiceListItem) GetTypeOk ¶

func (o *ServiceListItem) GetTypeOk() (*ServiceType, 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 (*ServiceListItem) GetUpdatedAt ¶

func (o *ServiceListItem) GetUpdatedAt() time.Time

GetUpdatedAt returns the UpdatedAt field value if set, zero value otherwise.

func (*ServiceListItem) GetUpdatedAtOk ¶

func (o *ServiceListItem) GetUpdatedAtOk() (*time.Time, bool)

GetUpdatedAtOk returns a tuple with the UpdatedAt field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ServiceListItem) GetVersion ¶

func (o *ServiceListItem) GetVersion() string

GetVersion returns the Version field value if set, zero value otherwise.

func (*ServiceListItem) GetVersionOk ¶

func (o *ServiceListItem) GetVersionOk() (*string, bool)

GetVersionOk returns a tuple with the Version field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ServiceListItem) HasActiveDeploymentId ¶

func (o *ServiceListItem) HasActiveDeploymentId() bool

HasActiveDeploymentId returns a boolean if a field has been set.

func (*ServiceListItem) HasAppId ¶

func (o *ServiceListItem) HasAppId() bool

HasAppId returns a boolean if a field has been set.

func (*ServiceListItem) HasCreatedAt ¶

func (o *ServiceListItem) HasCreatedAt() bool

HasCreatedAt returns a boolean if a field has been set.

func (*ServiceListItem) HasId ¶

func (o *ServiceListItem) HasId() bool

HasId returns a boolean if a field has been set.

func (*ServiceListItem) HasLatestDeploymentId ¶

func (o *ServiceListItem) HasLatestDeploymentId() bool

HasLatestDeploymentId returns a boolean if a field has been set.

func (*ServiceListItem) HasMessages ¶

func (o *ServiceListItem) HasMessages() bool

HasMessages returns a boolean if a field has been set.

func (*ServiceListItem) HasName ¶

func (o *ServiceListItem) HasName() bool

HasName returns a boolean if a field has been set.

func (*ServiceListItem) HasOrganizationId ¶

func (o *ServiceListItem) HasOrganizationId() bool

HasOrganizationId returns a boolean if a field has been set.

func (*ServiceListItem) HasState ¶

func (o *ServiceListItem) HasState() bool

HasState returns a boolean if a field has been set.

func (*ServiceListItem) HasStatus ¶

func (o *ServiceListItem) HasStatus() bool

HasStatus returns a boolean if a field has been set.

func (*ServiceListItem) HasType ¶

func (o *ServiceListItem) HasType() bool

HasType returns a boolean if a field has been set.

func (*ServiceListItem) HasUpdatedAt ¶

func (o *ServiceListItem) HasUpdatedAt() bool

HasUpdatedAt returns a boolean if a field has been set.

func (*ServiceListItem) HasVersion ¶

func (o *ServiceListItem) HasVersion() bool

HasVersion returns a boolean if a field has been set.

func (ServiceListItem) MarshalJSON ¶

func (o ServiceListItem) MarshalJSON() ([]byte, error)

func (*ServiceListItem) SetActiveDeploymentId ¶

func (o *ServiceListItem) SetActiveDeploymentId(v string)

SetActiveDeploymentId gets a reference to the given string and assigns it to the ActiveDeploymentId field.

func (*ServiceListItem) SetAppId ¶

func (o *ServiceListItem) SetAppId(v string)

SetAppId gets a reference to the given string and assigns it to the AppId field.

func (*ServiceListItem) SetCreatedAt ¶

func (o *ServiceListItem) SetCreatedAt(v time.Time)

SetCreatedAt gets a reference to the given time.Time and assigns it to the CreatedAt field.

func (*ServiceListItem) SetId ¶

func (o *ServiceListItem) SetId(v string)

SetId gets a reference to the given string and assigns it to the Id field.

func (*ServiceListItem) SetLatestDeploymentId ¶

func (o *ServiceListItem) SetLatestDeploymentId(v string)

SetLatestDeploymentId gets a reference to the given string and assigns it to the LatestDeploymentId field.

func (*ServiceListItem) SetMessages ¶

func (o *ServiceListItem) SetMessages(v []string)

SetMessages gets a reference to the given []string and assigns it to the Messages field.

func (*ServiceListItem) SetName ¶

func (o *ServiceListItem) SetName(v string)

SetName gets a reference to the given string and assigns it to the Name field.

func (*ServiceListItem) SetOrganizationId ¶

func (o *ServiceListItem) SetOrganizationId(v string)

SetOrganizationId gets a reference to the given string and assigns it to the OrganizationId field.

func (*ServiceListItem) SetState ¶

func (o *ServiceListItem) SetState(v ServiceState)

SetState gets a reference to the given ServiceState and assigns it to the State field.

func (*ServiceListItem) SetStatus ¶

func (o *ServiceListItem) SetStatus(v ServiceStatus)

SetStatus gets a reference to the given ServiceStatus and assigns it to the Status field.

func (*ServiceListItem) SetType ¶

func (o *ServiceListItem) SetType(v ServiceType)

SetType gets a reference to the given ServiceType and assigns it to the Type field.

func (*ServiceListItem) SetUpdatedAt ¶

func (o *ServiceListItem) SetUpdatedAt(v time.Time)

SetUpdatedAt gets a reference to the given time.Time and assigns it to the UpdatedAt field.

func (*ServiceListItem) SetVersion ¶

func (o *ServiceListItem) SetVersion(v string)

SetVersion gets a reference to the given string and assigns it to the Version field.

type ServiceState ¶

type ServiceState struct {
	DesiredDeployment *DesiredDeployment `json:"desired_deployment,omitempty"`
	AutoRelease       *AutoRelease       `json:"auto_release,omitempty"`
}

ServiceState struct for ServiceState

func NewServiceState ¶

func NewServiceState() *ServiceState

NewServiceState instantiates a new ServiceState 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 NewServiceStateWithDefaults ¶

func NewServiceStateWithDefaults() *ServiceState

NewServiceStateWithDefaults instantiates a new ServiceState 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 (*ServiceState) GetAutoRelease ¶

func (o *ServiceState) GetAutoRelease() AutoRelease

GetAutoRelease returns the AutoRelease field value if set, zero value otherwise.

func (*ServiceState) GetAutoReleaseOk ¶

func (o *ServiceState) GetAutoReleaseOk() (*AutoRelease, bool)

GetAutoReleaseOk returns a tuple with the AutoRelease field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ServiceState) GetDesiredDeployment ¶

func (o *ServiceState) GetDesiredDeployment() DesiredDeployment

GetDesiredDeployment returns the DesiredDeployment field value if set, zero value otherwise.

func (*ServiceState) GetDesiredDeploymentOk ¶

func (o *ServiceState) GetDesiredDeploymentOk() (*DesiredDeployment, bool)

GetDesiredDeploymentOk returns a tuple with the DesiredDeployment field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ServiceState) HasAutoRelease ¶

func (o *ServiceState) HasAutoRelease() bool

HasAutoRelease returns a boolean if a field has been set.

func (*ServiceState) HasDesiredDeployment ¶

func (o *ServiceState) HasDesiredDeployment() bool

HasDesiredDeployment returns a boolean if a field has been set.

func (ServiceState) MarshalJSON ¶

func (o ServiceState) MarshalJSON() ([]byte, error)

func (*ServiceState) SetAutoRelease ¶

func (o *ServiceState) SetAutoRelease(v AutoRelease)

SetAutoRelease gets a reference to the given AutoRelease and assigns it to the AutoRelease field.

func (*ServiceState) SetDesiredDeployment ¶

func (o *ServiceState) SetDesiredDeployment(v DesiredDeployment)

SetDesiredDeployment gets a reference to the given DesiredDeployment and assigns it to the DesiredDeployment field.

type ServiceStatus ¶

type ServiceStatus string

ServiceStatus the model 'ServiceStatus'

const (
	SERVICESTATUS_STARTING  ServiceStatus = "STARTING"
	SERVICESTATUS_HEALTHY   ServiceStatus = "HEALTHY"
	SERVICESTATUS_DEGRADED  ServiceStatus = "DEGRADED"
	SERVICESTATUS_UNHEALTHY ServiceStatus = "UNHEALTHY"
	SERVICESTATUS_DELETING  ServiceStatus = "DELETING"
	SERVICESTATUS_DELETED   ServiceStatus = "DELETED"
	SERVICESTATUS_PAUSING   ServiceStatus = "PAUSING"
	SERVICESTATUS_PAUSED    ServiceStatus = "PAUSED"
	SERVICESTATUS_RESUMING  ServiceStatus = "RESUMING"
)

List of Service.Status

func NewServiceStatusFromValue ¶

func NewServiceStatusFromValue(v string) (*ServiceStatus, error)

NewServiceStatusFromValue returns a pointer to a valid ServiceStatus for the value passed as argument, or an error if the value passed is not allowed by the enum

func (ServiceStatus) IsValid ¶

func (v ServiceStatus) IsValid() bool

IsValid return true if the value is valid for the enum, false otherwise

func (ServiceStatus) Ptr ¶

func (v ServiceStatus) Ptr() *ServiceStatus

Ptr returns reference to Service.Status value

func (*ServiceStatus) UnmarshalJSON ¶

func (v *ServiceStatus) UnmarshalJSON(src []byte) error

type ServiceSummary ¶

type ServiceSummary struct {
	Total    *string            `json:"total,omitempty"`
	ByStatus *map[string]string `json:"by_status,omitempty"`
}

ServiceSummary struct for ServiceSummary

func NewServiceSummary ¶

func NewServiceSummary() *ServiceSummary

NewServiceSummary instantiates a new ServiceSummary 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 NewServiceSummaryWithDefaults ¶

func NewServiceSummaryWithDefaults() *ServiceSummary

NewServiceSummaryWithDefaults instantiates a new ServiceSummary 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 (*ServiceSummary) GetByStatus ¶

func (o *ServiceSummary) GetByStatus() map[string]string

GetByStatus returns the ByStatus field value if set, zero value otherwise.

func (*ServiceSummary) GetByStatusOk ¶

func (o *ServiceSummary) GetByStatusOk() (*map[string]string, bool)

GetByStatusOk returns a tuple with the ByStatus field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ServiceSummary) GetTotal ¶

func (o *ServiceSummary) GetTotal() string

GetTotal returns the Total field value if set, zero value otherwise.

func (*ServiceSummary) GetTotalOk ¶

func (o *ServiceSummary) GetTotalOk() (*string, bool)

GetTotalOk returns a tuple with the Total field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ServiceSummary) HasByStatus ¶

func (o *ServiceSummary) HasByStatus() bool

HasByStatus returns a boolean if a field has been set.

func (*ServiceSummary) HasTotal ¶

func (o *ServiceSummary) HasTotal() bool

HasTotal returns a boolean if a field has been set.

func (ServiceSummary) MarshalJSON ¶

func (o ServiceSummary) MarshalJSON() ([]byte, error)

func (*ServiceSummary) SetByStatus ¶

func (o *ServiceSummary) SetByStatus(v map[string]string)

SetByStatus gets a reference to the given map[string]string and assigns it to the ByStatus field.

func (*ServiceSummary) SetTotal ¶

func (o *ServiceSummary) SetTotal(v string)

SetTotal gets a reference to the given string and assigns it to the Total field.

type ServiceType ¶

type ServiceType string

ServiceType the model 'ServiceType'

const (
	SERVICETYPE_INVALID_TYPE ServiceType = "INVALID_TYPE"
	SERVICETYPE_WEB          ServiceType = "WEB"
	SERVICETYPE_WORKER       ServiceType = "WORKER"
	SERVICETYPE_DATABASE     ServiceType = "DATABASE"
)

List of Service.Type

func NewServiceTypeFromValue ¶

func NewServiceTypeFromValue(v string) (*ServiceType, error)

NewServiceTypeFromValue returns a pointer to a valid ServiceType for the value passed as argument, or an error if the value passed is not allowed by the enum

func (ServiceType) IsValid ¶

func (v ServiceType) IsValid() bool

IsValid return true if the value is valid for the enum, false otherwise

func (ServiceType) Ptr ¶

func (v ServiceType) Ptr() *ServiceType

Ptr returns reference to Service.Type value

func (*ServiceType) UnmarshalJSON ¶

func (v *ServiceType) UnmarshalJSON(src []byte) error

type ServiceUsage ¶

type ServiceUsage struct {
	ServiceId   *string                 `json:"service_id,omitempty"`
	ServiceName *string                 `json:"service_name,omitempty"`
	Regions     *map[string]RegionUsage `json:"regions,omitempty"`
}

ServiceUsage struct for ServiceUsage

func NewServiceUsage ¶

func NewServiceUsage() *ServiceUsage

NewServiceUsage instantiates a new ServiceUsage 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 NewServiceUsageWithDefaults ¶

func NewServiceUsageWithDefaults() *ServiceUsage

NewServiceUsageWithDefaults instantiates a new ServiceUsage 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 (*ServiceUsage) GetRegions ¶

func (o *ServiceUsage) GetRegions() map[string]RegionUsage

GetRegions returns the Regions field value if set, zero value otherwise.

func (*ServiceUsage) GetRegionsOk ¶

func (o *ServiceUsage) GetRegionsOk() (*map[string]RegionUsage, bool)

GetRegionsOk returns a tuple with the Regions field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ServiceUsage) GetServiceId ¶

func (o *ServiceUsage) GetServiceId() string

GetServiceId returns the ServiceId field value if set, zero value otherwise.

func (*ServiceUsage) GetServiceIdOk ¶

func (o *ServiceUsage) GetServiceIdOk() (*string, bool)

GetServiceIdOk returns a tuple with the ServiceId field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ServiceUsage) GetServiceName ¶

func (o *ServiceUsage) GetServiceName() string

GetServiceName returns the ServiceName field value if set, zero value otherwise.

func (*ServiceUsage) GetServiceNameOk ¶

func (o *ServiceUsage) 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 (*ServiceUsage) HasRegions ¶

func (o *ServiceUsage) HasRegions() bool

HasRegions returns a boolean if a field has been set.

func (*ServiceUsage) HasServiceId ¶

func (o *ServiceUsage) HasServiceId() bool

HasServiceId returns a boolean if a field has been set.

func (*ServiceUsage) HasServiceName ¶

func (o *ServiceUsage) HasServiceName() bool

HasServiceName returns a boolean if a field has been set.

func (ServiceUsage) MarshalJSON ¶

func (o ServiceUsage) MarshalJSON() ([]byte, error)

func (*ServiceUsage) SetRegions ¶

func (o *ServiceUsage) SetRegions(v map[string]RegionUsage)

SetRegions gets a reference to the given map[string]RegionUsage and assigns it to the Regions field.

func (*ServiceUsage) SetServiceId ¶

func (o *ServiceUsage) SetServiceId(v string)

SetServiceId gets a reference to the given string and assigns it to the ServiceId field.

func (*ServiceUsage) SetServiceName ¶

func (o *ServiceUsage) SetServiceName(v string)

SetServiceName gets a reference to the given string and assigns it to the ServiceName field.

type ServicesApi ¶

type ServicesApi interface {

	/*
		CreateService Create Service

		@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
		@return ApiCreateServiceRequest
	*/
	CreateService(ctx context.Context) ApiCreateServiceRequest

	// CreateServiceExecute executes the request
	//  @return CreateServiceReply
	CreateServiceExecute(r ApiCreateServiceRequest) (*CreateServiceReply, *http.Response, error)

	/*
		DeleteService Delete Service

		Service deletion is allowed for all status.

		@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
		@param id The id of the entity to delete
		@return ApiDeleteServiceRequest
	*/
	DeleteService(ctx context.Context, id string) ApiDeleteServiceRequest

	// DeleteServiceExecute executes the request
	//  @return map[string]interface{}
	DeleteServiceExecute(r ApiDeleteServiceRequest) (map[string]interface{}, *http.Response, error)

	/*
		GetService Get Service

		@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
		@param id The id of the Service
		@return ApiGetServiceRequest
	*/
	GetService(ctx context.Context, id string) ApiGetServiceRequest

	// GetServiceExecute executes the request
	//  @return GetServiceReply
	GetServiceExecute(r ApiGetServiceRequest) (*GetServiceReply, *http.Response, error)

	/*
		ListServiceEvents List Service events

		@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
		@return ApiListServiceEventsRequest
	*/
	ListServiceEvents(ctx context.Context) ApiListServiceEventsRequest

	// ListServiceEventsExecute executes the request
	//  @return ListServiceEventsReply
	ListServiceEventsExecute(r ApiListServiceEventsRequest) (*ListServiceEventsReply, *http.Response, error)

	/*
		ListServices List Services

		@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
		@return ApiListServicesRequest
	*/
	ListServices(ctx context.Context) ApiListServicesRequest

	// ListServicesExecute executes the request
	//  @return ListServicesReply
	ListServicesExecute(r ApiListServicesRequest) (*ListServicesReply, *http.Response, error)

	/*
		PauseService Pause Service

		Service pause action is allowed for the following status:
	 - starting
	 - healthy
	 - degraded
	 - unhealthy
	 - resuming

		@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
		@param id The id of the service to pause.
		@return ApiPauseServiceRequest
	*/
	PauseService(ctx context.Context, id string) ApiPauseServiceRequest

	// PauseServiceExecute executes the request
	//  @return map[string]interface{}
	PauseServiceExecute(r ApiPauseServiceRequest) (map[string]interface{}, *http.Response, error)

	/*
		ReDeploy ReDeploy Service

		@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
		@param id
		@return ApiReDeployRequest
	*/
	ReDeploy(ctx context.Context, id string) ApiReDeployRequest

	// ReDeployExecute executes the request
	//  @return RedeployReply
	ReDeployExecute(r ApiReDeployRequest) (*RedeployReply, *http.Response, error)

	/*
		ResumeService Resume Service

		Service resume action is allowed for the following status:
	 - paused

		@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
		@param id The id of the service to pause.
		@return ApiResumeServiceRequest
	*/
	ResumeService(ctx context.Context, id string) ApiResumeServiceRequest

	// ResumeServiceExecute executes the request
	//  @return map[string]interface{}
	ResumeServiceExecute(r ApiResumeServiceRequest) (map[string]interface{}, *http.Response, error)

	/*
		UpdateService Update Service

		@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
		@param id The id of the entity to update
		@return ApiUpdateServiceRequest
	*/
	UpdateService(ctx context.Context, id string) ApiUpdateServiceRequest

	// UpdateServiceExecute executes the request
	//  @return UpdateServiceReply
	UpdateServiceExecute(r ApiUpdateServiceRequest) (*UpdateServiceReply, *http.Response, error)

	/*
		UpdateService2 Update Service

		@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
		@param id The id of the entity to update
		@return ApiUpdateService2Request
	*/
	UpdateService2(ctx context.Context, id string) ApiUpdateService2Request

	// UpdateService2Execute executes the request
	//  @return UpdateServiceReply
	UpdateService2Execute(r ApiUpdateService2Request) (*UpdateServiceReply, *http.Response, error)
}

type ServicesApiService ¶

type ServicesApiService service

ServicesApiService ServicesApi service

func (*ServicesApiService) CreateService ¶

CreateService Create Service

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@return ApiCreateServiceRequest

func (*ServicesApiService) CreateServiceExecute ¶

Execute executes the request

@return CreateServiceReply

func (*ServicesApiService) DeleteService ¶

DeleteService Delete Service

Service deletion is allowed for all status.

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param id The id of the entity to delete
@return ApiDeleteServiceRequest

func (*ServicesApiService) DeleteServiceExecute ¶

func (a *ServicesApiService) DeleteServiceExecute(r ApiDeleteServiceRequest) (map[string]interface{}, *http.Response, error)

Execute executes the request

@return map[string]interface{}

func (*ServicesApiService) GetService ¶

GetService Get Service

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param id The id of the Service
@return ApiGetServiceRequest

func (*ServicesApiService) GetServiceExecute ¶

Execute executes the request

@return GetServiceReply

func (*ServicesApiService) ListServiceEvents ¶

ListServiceEvents List Service events

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@return ApiListServiceEventsRequest

func (*ServicesApiService) ListServiceEventsExecute ¶

Execute executes the request

@return ListServiceEventsReply

func (*ServicesApiService) ListServices ¶

ListServices List Services

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@return ApiListServicesRequest

func (*ServicesApiService) ListServicesExecute ¶

Execute executes the request

@return ListServicesReply

func (*ServicesApiService) PauseService ¶

PauseService Pause Service

Service pause action is allowed for the following status:

  • starting

  • healthy

  • degraded

  • unhealthy

  • resuming

    @param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background(). @param id The id of the service to pause. @return ApiPauseServiceRequest

func (*ServicesApiService) PauseServiceExecute ¶

func (a *ServicesApiService) PauseServiceExecute(r ApiPauseServiceRequest) (map[string]interface{}, *http.Response, error)

Execute executes the request

@return map[string]interface{}

func (*ServicesApiService) ReDeploy ¶

ReDeploy ReDeploy Service

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param id
@return ApiReDeployRequest

func (*ServicesApiService) ReDeployExecute ¶

Execute executes the request

@return RedeployReply

func (*ServicesApiService) ResumeService ¶

ResumeService Resume Service

Service resume action is allowed for the following status:

  • paused

    @param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background(). @param id The id of the service to pause. @return ApiResumeServiceRequest

func (*ServicesApiService) ResumeServiceExecute ¶

func (a *ServicesApiService) ResumeServiceExecute(r ApiResumeServiceRequest) (map[string]interface{}, *http.Response, error)

Execute executes the request

@return map[string]interface{}

func (*ServicesApiService) UpdateService ¶

UpdateService Update Service

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param id The id of the entity to update
@return ApiUpdateServiceRequest

func (*ServicesApiService) UpdateService2 ¶

UpdateService2 Update Service

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param id The id of the entity to update
@return ApiUpdateService2Request

func (*ServicesApiService) UpdateService2Execute ¶

Execute executes the request

@return UpdateServiceReply

func (*ServicesApiService) UpdateServiceExecute ¶

Execute executes the request

@return UpdateServiceReply

type SessionsApi ¶

type SessionsApi interface {

	/*
		Login Login user

		@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
		@return ApiLoginRequest
	*/
	Login(ctx context.Context) ApiLoginRequest

	// LoginExecute executes the request
	//  @return LoginReply
	LoginExecute(r ApiLoginRequest) (*LoginReply, *http.Response, error)

	/*
		Logout Logout user

		@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
		@return ApiLogoutRequest
	*/
	Logout(ctx context.Context) ApiLogoutRequest

	// LogoutExecute executes the request
	//  @return map[string]interface{}
	LogoutExecute(r ApiLogoutRequest) (map[string]interface{}, *http.Response, error)

	/*
		NewSession New session

		Creates a new session without an organization for current user.
	NOTE: If you want a session linked to another organization, please use "Switch organization".

		@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
		@return ApiNewSessionRequest
	*/
	NewSession(ctx context.Context) ApiNewSessionRequest

	// NewSessionExecute executes the request
	//  @return LoginReply
	NewSessionExecute(r ApiNewSessionRequest) (*LoginReply, *http.Response, error)

	/*
		RefreshToken Refresh token

		@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
		@return ApiRefreshTokenRequest
	*/
	RefreshToken(ctx context.Context) ApiRefreshTokenRequest

	// RefreshTokenExecute executes the request
	//  @return LoginReply
	RefreshTokenExecute(r ApiRefreshTokenRequest) (*LoginReply, *http.Response, error)
}

type SessionsApiService ¶

type SessionsApiService service

SessionsApiService SessionsApi service

func (*SessionsApiService) Login ¶

Login Login user

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@return ApiLoginRequest

func (*SessionsApiService) LoginExecute ¶

Execute executes the request

@return LoginReply

func (*SessionsApiService) Logout ¶

Logout Logout user

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@return ApiLogoutRequest

func (*SessionsApiService) LogoutExecute ¶

func (a *SessionsApiService) LogoutExecute(r ApiLogoutRequest) (map[string]interface{}, *http.Response, error)

Execute executes the request

@return map[string]interface{}

func (*SessionsApiService) NewSession ¶

NewSession New session

Creates a new session without an organization for current user. NOTE: If you want a session linked to another organization, please use "Switch organization".

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@return ApiNewSessionRequest

func (*SessionsApiService) NewSessionExecute ¶

func (a *SessionsApiService) NewSessionExecute(r ApiNewSessionRequest) (*LoginReply, *http.Response, error)

Execute executes the request

@return LoginReply

func (*SessionsApiService) RefreshToken ¶

RefreshToken Refresh token

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@return ApiRefreshTokenRequest

func (*SessionsApiService) RefreshTokenExecute ¶

func (a *SessionsApiService) RefreshTokenExecute(r ApiRefreshTokenRequest) (*LoginReply, *http.Response, error)

Execute executes the request

@return LoginReply

type SsoApi ¶

type SsoApi interface {

	/*
		CannyAuth Method for CannyAuth

		@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
		@return ApiCannyAuthRequest
	*/
	CannyAuth(ctx context.Context) ApiCannyAuthRequest

	// CannyAuthExecute executes the request
	//  @return CannyAuthReply
	CannyAuthExecute(r ApiCannyAuthRequest) (*CannyAuthReply, *http.Response, error)

	/*
		DiscourseAuth Method for DiscourseAuth

		@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
		@return ApiDiscourseAuthRequest
	*/
	DiscourseAuth(ctx context.Context) ApiDiscourseAuthRequest

	// DiscourseAuthExecute executes the request
	//  @return DiscourseAuthReply
	DiscourseAuthExecute(r ApiDiscourseAuthRequest) (*DiscourseAuthReply, *http.Response, error)
}

type SsoApiService ¶

type SsoApiService service

SsoApiService SsoApi service

func (*SsoApiService) CannyAuth ¶

CannyAuth Method for CannyAuth

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@return ApiCannyAuthRequest

func (*SsoApiService) CannyAuthExecute ¶

func (a *SsoApiService) CannyAuthExecute(r ApiCannyAuthRequest) (*CannyAuthReply, *http.Response, error)

Execute executes the request

@return CannyAuthReply

func (*SsoApiService) DiscourseAuth ¶

func (a *SsoApiService) DiscourseAuth(ctx context.Context) ApiDiscourseAuthRequest

DiscourseAuth Method for DiscourseAuth

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@return ApiDiscourseAuthRequest

func (*SsoApiService) DiscourseAuthExecute ¶

Execute executes the request

@return DiscourseAuthReply

type StreamResultOfExecCommandReply ¶

type StreamResultOfExecCommandReply struct {
	Result *ExecCommandReply `json:"result,omitempty"`
	Error  *GoogleRpcStatus  `json:"error,omitempty"`
}

StreamResultOfExecCommandReply struct for StreamResultOfExecCommandReply

func NewStreamResultOfExecCommandReply ¶

func NewStreamResultOfExecCommandReply() *StreamResultOfExecCommandReply

NewStreamResultOfExecCommandReply instantiates a new StreamResultOfExecCommandReply 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 NewStreamResultOfExecCommandReplyWithDefaults ¶

func NewStreamResultOfExecCommandReplyWithDefaults() *StreamResultOfExecCommandReply

NewStreamResultOfExecCommandReplyWithDefaults instantiates a new StreamResultOfExecCommandReply 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 (*StreamResultOfExecCommandReply) GetError ¶

GetError returns the Error field value if set, zero value otherwise.

func (*StreamResultOfExecCommandReply) GetErrorOk ¶

GetErrorOk returns a tuple with the Error field value if set, nil otherwise and a boolean to check if the value has been set.

func (*StreamResultOfExecCommandReply) GetResult ¶

GetResult returns the Result field value if set, zero value otherwise.

func (*StreamResultOfExecCommandReply) GetResultOk ¶

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 (*StreamResultOfExecCommandReply) HasError ¶

func (o *StreamResultOfExecCommandReply) HasError() bool

HasError returns a boolean if a field has been set.

func (*StreamResultOfExecCommandReply) HasResult ¶

func (o *StreamResultOfExecCommandReply) HasResult() bool

HasResult returns a boolean if a field has been set.

func (StreamResultOfExecCommandReply) MarshalJSON ¶

func (o StreamResultOfExecCommandReply) MarshalJSON() ([]byte, error)

func (*StreamResultOfExecCommandReply) SetError ¶

SetError gets a reference to the given GoogleRpcStatus and assigns it to the Error field.

func (*StreamResultOfExecCommandReply) SetResult ¶

SetResult gets a reference to the given ExecCommandReply and assigns it to the Result field.

type StreamResultOfLogEntry ¶

type StreamResultOfLogEntry struct {
	Result *LogEntry        `json:"result,omitempty"`
	Error  *GoogleRpcStatus `json:"error,omitempty"`
}

StreamResultOfLogEntry struct for StreamResultOfLogEntry

func NewStreamResultOfLogEntry ¶

func NewStreamResultOfLogEntry() *StreamResultOfLogEntry

NewStreamResultOfLogEntry instantiates a new StreamResultOfLogEntry 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 NewStreamResultOfLogEntryWithDefaults ¶

func NewStreamResultOfLogEntryWithDefaults() *StreamResultOfLogEntry

NewStreamResultOfLogEntryWithDefaults instantiates a new StreamResultOfLogEntry 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 (*StreamResultOfLogEntry) GetError ¶

GetError returns the Error field value if set, zero value otherwise.

func (*StreamResultOfLogEntry) GetErrorOk ¶

func (o *StreamResultOfLogEntry) GetErrorOk() (*GoogleRpcStatus, bool)

GetErrorOk returns a tuple with the Error field value if set, nil otherwise and a boolean to check if the value has been set.

func (*StreamResultOfLogEntry) GetResult ¶

func (o *StreamResultOfLogEntry) GetResult() LogEntry

GetResult returns the Result field value if set, zero value otherwise.

func (*StreamResultOfLogEntry) GetResultOk ¶

func (o *StreamResultOfLogEntry) GetResultOk() (*LogEntry, 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 (*StreamResultOfLogEntry) HasError ¶

func (o *StreamResultOfLogEntry) HasError() bool

HasError returns a boolean if a field has been set.

func (*StreamResultOfLogEntry) HasResult ¶

func (o *StreamResultOfLogEntry) HasResult() bool

HasResult returns a boolean if a field has been set.

func (StreamResultOfLogEntry) MarshalJSON ¶

func (o StreamResultOfLogEntry) MarshalJSON() ([]byte, error)

func (*StreamResultOfLogEntry) SetError ¶

func (o *StreamResultOfLogEntry) SetError(v GoogleRpcStatus)

SetError gets a reference to the given GoogleRpcStatus and assigns it to the Error field.

func (*StreamResultOfLogEntry) SetResult ¶

func (o *StreamResultOfLogEntry) SetResult(v LogEntry)

SetResult gets a reference to the given LogEntry and assigns it to the Result field.

type Subscription ¶

type Subscription struct {
	Id                     *string                     `json:"id,omitempty"`
	CreatedAt              *time.Time                  `json:"created_at,omitempty"`
	UpdatedAt              *time.Time                  `json:"updated_at,omitempty"`
	Version                *string                     `json:"version,omitempty"`
	OrganizationId         *string                     `json:"organization_id,omitempty"`
	StripeSubscriptionId   *string                     `json:"stripe_subscription_id,omitempty"`
	Status                 *SubscriptionStatus         `json:"status,omitempty"`
	Messages               []string                    `json:"messages,omitempty"`
	HasPendingUpdate       *bool                       `json:"has_pending_update,omitempty"`
	StripePendingInvoiceId *string                     `json:"stripe_pending_invoice_id,omitempty"`
	TerminateAt            *time.Time                  `json:"terminate_at,omitempty"`
	CanceledAt             *time.Time                  `json:"canceled_at,omitempty"`
	TerminatedAt           *time.Time                  `json:"terminated_at,omitempty"`
	CurrentPeriodStart     *time.Time                  `json:"current_period_start,omitempty"`
	CurrentPeriodEnd       *time.Time                  `json:"current_period_end,omitempty"`
	Currency               *string                     `json:"currency,omitempty"`
	AmountPayable          *string                     `json:"amount_payable,omitempty"`
	AmountPaid             *string                     `json:"amount_paid,omitempty"`
	AmountRemaining        *string                     `json:"amount_remaining,omitempty"`
	PaymentFailure         *SubscriptionPaymentFailure `json:"payment_failure,omitempty"`
}

Subscription struct for Subscription

func NewSubscription ¶

func NewSubscription() *Subscription

NewSubscription instantiates a new Subscription 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 NewSubscriptionWithDefaults ¶

func NewSubscriptionWithDefaults() *Subscription

NewSubscriptionWithDefaults instantiates a new Subscription 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 (*Subscription) GetAmountPaid ¶

func (o *Subscription) GetAmountPaid() string

GetAmountPaid returns the AmountPaid field value if set, zero value otherwise.

func (*Subscription) GetAmountPaidOk ¶

func (o *Subscription) GetAmountPaidOk() (*string, bool)

GetAmountPaidOk returns a tuple with the AmountPaid field value if set, nil otherwise and a boolean to check if the value has been set.

func (*Subscription) GetAmountPayable ¶

func (o *Subscription) GetAmountPayable() string

GetAmountPayable returns the AmountPayable field value if set, zero value otherwise.

func (*Subscription) GetAmountPayableOk ¶

func (o *Subscription) GetAmountPayableOk() (*string, bool)

GetAmountPayableOk returns a tuple with the AmountPayable field value if set, nil otherwise and a boolean to check if the value has been set.

func (*Subscription) GetAmountRemaining ¶

func (o *Subscription) GetAmountRemaining() string

GetAmountRemaining returns the AmountRemaining field value if set, zero value otherwise.

func (*Subscription) GetAmountRemainingOk ¶

func (o *Subscription) GetAmountRemainingOk() (*string, bool)

GetAmountRemainingOk returns a tuple with the AmountRemaining field value if set, nil otherwise and a boolean to check if the value has been set.

func (*Subscription) GetCanceledAt ¶

func (o *Subscription) GetCanceledAt() time.Time

GetCanceledAt returns the CanceledAt field value if set, zero value otherwise.

func (*Subscription) GetCanceledAtOk ¶

func (o *Subscription) GetCanceledAtOk() (*time.Time, bool)

GetCanceledAtOk returns a tuple with the CanceledAt field value if set, nil otherwise and a boolean to check if the value has been set.

func (*Subscription) GetCreatedAt ¶

func (o *Subscription) GetCreatedAt() time.Time

GetCreatedAt returns the CreatedAt field value if set, zero value otherwise.

func (*Subscription) GetCreatedAtOk ¶

func (o *Subscription) GetCreatedAtOk() (*time.Time, bool)

GetCreatedAtOk returns a tuple with the CreatedAt field value if set, nil otherwise and a boolean to check if the value has been set.

func (*Subscription) GetCurrency ¶

func (o *Subscription) GetCurrency() string

GetCurrency returns the Currency field value if set, zero value otherwise.

func (*Subscription) GetCurrencyOk ¶

func (o *Subscription) GetCurrencyOk() (*string, bool)

GetCurrencyOk returns a tuple with the Currency field value if set, nil otherwise and a boolean to check if the value has been set.

func (*Subscription) GetCurrentPeriodEnd ¶

func (o *Subscription) GetCurrentPeriodEnd() time.Time

GetCurrentPeriodEnd returns the CurrentPeriodEnd field value if set, zero value otherwise.

func (*Subscription) GetCurrentPeriodEndOk ¶

func (o *Subscription) GetCurrentPeriodEndOk() (*time.Time, bool)

GetCurrentPeriodEndOk returns a tuple with the CurrentPeriodEnd field value if set, nil otherwise and a boolean to check if the value has been set.

func (*Subscription) GetCurrentPeriodStart ¶

func (o *Subscription) GetCurrentPeriodStart() time.Time

GetCurrentPeriodStart returns the CurrentPeriodStart field value if set, zero value otherwise.

func (*Subscription) GetCurrentPeriodStartOk ¶

func (o *Subscription) GetCurrentPeriodStartOk() (*time.Time, bool)

GetCurrentPeriodStartOk returns a tuple with the CurrentPeriodStart field value if set, nil otherwise and a boolean to check if the value has been set.

func (*Subscription) GetHasPendingUpdate ¶

func (o *Subscription) GetHasPendingUpdate() bool

GetHasPendingUpdate returns the HasPendingUpdate field value if set, zero value otherwise.

func (*Subscription) GetHasPendingUpdateOk ¶

func (o *Subscription) GetHasPendingUpdateOk() (*bool, bool)

GetHasPendingUpdateOk returns a tuple with the HasPendingUpdate field value if set, nil otherwise and a boolean to check if the value has been set.

func (*Subscription) GetId ¶

func (o *Subscription) GetId() string

GetId returns the Id field value if set, zero value otherwise.

func (*Subscription) GetIdOk ¶

func (o *Subscription) 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 (*Subscription) GetMessages ¶

func (o *Subscription) GetMessages() []string

GetMessages returns the Messages field value if set, zero value otherwise.

func (*Subscription) GetMessagesOk ¶

func (o *Subscription) GetMessagesOk() ([]string, bool)

GetMessagesOk returns a tuple with the Messages field value if set, nil otherwise and a boolean to check if the value has been set.

func (*Subscription) GetOrganizationId ¶

func (o *Subscription) GetOrganizationId() string

GetOrganizationId returns the OrganizationId field value if set, zero value otherwise.

func (*Subscription) GetOrganizationIdOk ¶

func (o *Subscription) GetOrganizationIdOk() (*string, bool)

GetOrganizationIdOk returns a tuple with the OrganizationId field value if set, nil otherwise and a boolean to check if the value has been set.

func (*Subscription) GetPaymentFailure ¶

func (o *Subscription) GetPaymentFailure() SubscriptionPaymentFailure

GetPaymentFailure returns the PaymentFailure field value if set, zero value otherwise.

func (*Subscription) GetPaymentFailureOk ¶

func (o *Subscription) GetPaymentFailureOk() (*SubscriptionPaymentFailure, bool)

GetPaymentFailureOk returns a tuple with the PaymentFailure field value if set, nil otherwise and a boolean to check if the value has been set.

func (*Subscription) GetStatus ¶

func (o *Subscription) GetStatus() SubscriptionStatus

GetStatus returns the Status field value if set, zero value otherwise.

func (*Subscription) GetStatusOk ¶

func (o *Subscription) GetStatusOk() (*SubscriptionStatus, 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 (*Subscription) GetStripePendingInvoiceId ¶

func (o *Subscription) GetStripePendingInvoiceId() string

GetStripePendingInvoiceId returns the StripePendingInvoiceId field value if set, zero value otherwise.

func (*Subscription) GetStripePendingInvoiceIdOk ¶

func (o *Subscription) GetStripePendingInvoiceIdOk() (*string, bool)

GetStripePendingInvoiceIdOk returns a tuple with the StripePendingInvoiceId field value if set, nil otherwise and a boolean to check if the value has been set.

func (*Subscription) GetStripeSubscriptionId ¶

func (o *Subscription) GetStripeSubscriptionId() string

GetStripeSubscriptionId returns the StripeSubscriptionId field value if set, zero value otherwise.

func (*Subscription) GetStripeSubscriptionIdOk ¶

func (o *Subscription) GetStripeSubscriptionIdOk() (*string, bool)

GetStripeSubscriptionIdOk returns a tuple with the StripeSubscriptionId field value if set, nil otherwise and a boolean to check if the value has been set.

func (*Subscription) GetTerminateAt ¶

func (o *Subscription) GetTerminateAt() time.Time

GetTerminateAt returns the TerminateAt field value if set, zero value otherwise.

func (*Subscription) GetTerminateAtOk ¶

func (o *Subscription) GetTerminateAtOk() (*time.Time, bool)

GetTerminateAtOk returns a tuple with the TerminateAt field value if set, nil otherwise and a boolean to check if the value has been set.

func (*Subscription) GetTerminatedAt ¶

func (o *Subscription) GetTerminatedAt() time.Time

GetTerminatedAt returns the TerminatedAt field value if set, zero value otherwise.

func (*Subscription) GetTerminatedAtOk ¶

func (o *Subscription) GetTerminatedAtOk() (*time.Time, bool)

GetTerminatedAtOk returns a tuple with the TerminatedAt field value if set, nil otherwise and a boolean to check if the value has been set.

func (*Subscription) GetUpdatedAt ¶

func (o *Subscription) GetUpdatedAt() time.Time

GetUpdatedAt returns the UpdatedAt field value if set, zero value otherwise.

func (*Subscription) GetUpdatedAtOk ¶

func (o *Subscription) GetUpdatedAtOk() (*time.Time, bool)

GetUpdatedAtOk returns a tuple with the UpdatedAt field value if set, nil otherwise and a boolean to check if the value has been set.

func (*Subscription) GetVersion ¶

func (o *Subscription) GetVersion() string

GetVersion returns the Version field value if set, zero value otherwise.

func (*Subscription) GetVersionOk ¶

func (o *Subscription) GetVersionOk() (*string, bool)

GetVersionOk returns a tuple with the Version field value if set, nil otherwise and a boolean to check if the value has been set.

func (*Subscription) HasAmountPaid ¶

func (o *Subscription) HasAmountPaid() bool

HasAmountPaid returns a boolean if a field has been set.

func (*Subscription) HasAmountPayable ¶

func (o *Subscription) HasAmountPayable() bool

HasAmountPayable returns a boolean if a field has been set.

func (*Subscription) HasAmountRemaining ¶

func (o *Subscription) HasAmountRemaining() bool

HasAmountRemaining returns a boolean if a field has been set.

func (*Subscription) HasCanceledAt ¶

func (o *Subscription) HasCanceledAt() bool

HasCanceledAt returns a boolean if a field has been set.

func (*Subscription) HasCreatedAt ¶

func (o *Subscription) HasCreatedAt() bool

HasCreatedAt returns a boolean if a field has been set.

func (*Subscription) HasCurrency ¶

func (o *Subscription) HasCurrency() bool

HasCurrency returns a boolean if a field has been set.

func (*Subscription) HasCurrentPeriodEnd ¶

func (o *Subscription) HasCurrentPeriodEnd() bool

HasCurrentPeriodEnd returns a boolean if a field has been set.

func (*Subscription) HasCurrentPeriodStart ¶

func (o *Subscription) HasCurrentPeriodStart() bool

HasCurrentPeriodStart returns a boolean if a field has been set.

func (*Subscription) HasHasPendingUpdate ¶

func (o *Subscription) HasHasPendingUpdate() bool

HasHasPendingUpdate returns a boolean if a field has been set.

func (*Subscription) HasId ¶

func (o *Subscription) HasId() bool

HasId returns a boolean if a field has been set.

func (*Subscription) HasMessages ¶

func (o *Subscription) HasMessages() bool

HasMessages returns a boolean if a field has been set.

func (*Subscription) HasOrganizationId ¶

func (o *Subscription) HasOrganizationId() bool

HasOrganizationId returns a boolean if a field has been set.

func (*Subscription) HasPaymentFailure ¶

func (o *Subscription) HasPaymentFailure() bool

HasPaymentFailure returns a boolean if a field has been set.

func (*Subscription) HasStatus ¶

func (o *Subscription) HasStatus() bool

HasStatus returns a boolean if a field has been set.

func (*Subscription) HasStripePendingInvoiceId ¶

func (o *Subscription) HasStripePendingInvoiceId() bool

HasStripePendingInvoiceId returns a boolean if a field has been set.

func (*Subscription) HasStripeSubscriptionId ¶

func (o *Subscription) HasStripeSubscriptionId() bool

HasStripeSubscriptionId returns a boolean if a field has been set.

func (*Subscription) HasTerminateAt ¶

func (o *Subscription) HasTerminateAt() bool

HasTerminateAt returns a boolean if a field has been set.

func (*Subscription) HasTerminatedAt ¶

func (o *Subscription) HasTerminatedAt() bool

HasTerminatedAt returns a boolean if a field has been set.

func (*Subscription) HasUpdatedAt ¶

func (o *Subscription) HasUpdatedAt() bool

HasUpdatedAt returns a boolean if a field has been set.

func (*Subscription) HasVersion ¶

func (o *Subscription) HasVersion() bool

HasVersion returns a boolean if a field has been set.

func (Subscription) MarshalJSON ¶

func (o Subscription) MarshalJSON() ([]byte, error)

func (*Subscription) SetAmountPaid ¶

func (o *Subscription) SetAmountPaid(v string)

SetAmountPaid gets a reference to the given string and assigns it to the AmountPaid field.

func (*Subscription) SetAmountPayable ¶

func (o *Subscription) SetAmountPayable(v string)

SetAmountPayable gets a reference to the given string and assigns it to the AmountPayable field.

func (*Subscription) SetAmountRemaining ¶

func (o *Subscription) SetAmountRemaining(v string)

SetAmountRemaining gets a reference to the given string and assigns it to the AmountRemaining field.

func (*Subscription) SetCanceledAt ¶

func (o *Subscription) SetCanceledAt(v time.Time)

SetCanceledAt gets a reference to the given time.Time and assigns it to the CanceledAt field.

func (*Subscription) SetCreatedAt ¶

func (o *Subscription) SetCreatedAt(v time.Time)

SetCreatedAt gets a reference to the given time.Time and assigns it to the CreatedAt field.

func (*Subscription) SetCurrency ¶

func (o *Subscription) SetCurrency(v string)

SetCurrency gets a reference to the given string and assigns it to the Currency field.

func (*Subscription) SetCurrentPeriodEnd ¶

func (o *Subscription) SetCurrentPeriodEnd(v time.Time)

SetCurrentPeriodEnd gets a reference to the given time.Time and assigns it to the CurrentPeriodEnd field.

func (*Subscription) SetCurrentPeriodStart ¶

func (o *Subscription) SetCurrentPeriodStart(v time.Time)

SetCurrentPeriodStart gets a reference to the given time.Time and assigns it to the CurrentPeriodStart field.

func (*Subscription) SetHasPendingUpdate ¶

func (o *Subscription) SetHasPendingUpdate(v bool)

SetHasPendingUpdate gets a reference to the given bool and assigns it to the HasPendingUpdate field.

func (*Subscription) SetId ¶

func (o *Subscription) SetId(v string)

SetId gets a reference to the given string and assigns it to the Id field.

func (*Subscription) SetMessages ¶

func (o *Subscription) SetMessages(v []string)

SetMessages gets a reference to the given []string and assigns it to the Messages field.

func (*Subscription) SetOrganizationId ¶

func (o *Subscription) SetOrganizationId(v string)

SetOrganizationId gets a reference to the given string and assigns it to the OrganizationId field.

func (*Subscription) SetPaymentFailure ¶

func (o *Subscription) SetPaymentFailure(v SubscriptionPaymentFailure)

SetPaymentFailure gets a reference to the given SubscriptionPaymentFailure and assigns it to the PaymentFailure field.

func (*Subscription) SetStatus ¶

func (o *Subscription) SetStatus(v SubscriptionStatus)

SetStatus gets a reference to the given SubscriptionStatus and assigns it to the Status field.

func (*Subscription) SetStripePendingInvoiceId ¶

func (o *Subscription) SetStripePendingInvoiceId(v string)

SetStripePendingInvoiceId gets a reference to the given string and assigns it to the StripePendingInvoiceId field.

func (*Subscription) SetStripeSubscriptionId ¶

func (o *Subscription) SetStripeSubscriptionId(v string)

SetStripeSubscriptionId gets a reference to the given string and assigns it to the StripeSubscriptionId field.

func (*Subscription) SetTerminateAt ¶

func (o *Subscription) SetTerminateAt(v time.Time)

SetTerminateAt gets a reference to the given time.Time and assigns it to the TerminateAt field.

func (*Subscription) SetTerminatedAt ¶

func (o *Subscription) SetTerminatedAt(v time.Time)

SetTerminatedAt gets a reference to the given time.Time and assigns it to the TerminatedAt field.

func (*Subscription) SetUpdatedAt ¶

func (o *Subscription) SetUpdatedAt(v time.Time)

SetUpdatedAt gets a reference to the given time.Time and assigns it to the UpdatedAt field.

func (*Subscription) SetVersion ¶

func (o *Subscription) SetVersion(v string)

SetVersion gets a reference to the given string and assigns it to the Version field.

type SubscriptionPaymentFailure ¶

type SubscriptionPaymentFailure struct {
	FailedAt              *time.Time                           `json:"failed_at,omitempty"`
	NextAttempt           *time.Time                           `json:"next_attempt,omitempty"`
	AttemptCount          *string                              `json:"attempt_count,omitempty"`
	ErrorCode             *string                              `json:"error_code,omitempty"`
	ErrorReason           *string                              `json:"error_reason,omitempty"`
	ErrorType             *string                              `json:"error_type,omitempty"`
	ErrorMessage          *string                              `json:"error_message,omitempty"`
	PaymentMethodRequired *bool                                `json:"payment_method_required,omitempty"`
	RedirectUrl           *string                              `json:"redirect_url,omitempty"`
	StripeSdk             *SubscriptionPaymentFailureStripeSDK `json:"stripe_sdk,omitempty"`
}

SubscriptionPaymentFailure struct for SubscriptionPaymentFailure

func NewSubscriptionPaymentFailure ¶

func NewSubscriptionPaymentFailure() *SubscriptionPaymentFailure

NewSubscriptionPaymentFailure instantiates a new SubscriptionPaymentFailure 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 NewSubscriptionPaymentFailureWithDefaults ¶

func NewSubscriptionPaymentFailureWithDefaults() *SubscriptionPaymentFailure

NewSubscriptionPaymentFailureWithDefaults instantiates a new SubscriptionPaymentFailure 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 (*SubscriptionPaymentFailure) GetAttemptCount ¶

func (o *SubscriptionPaymentFailure) GetAttemptCount() string

GetAttemptCount returns the AttemptCount field value if set, zero value otherwise.

func (*SubscriptionPaymentFailure) GetAttemptCountOk ¶

func (o *SubscriptionPaymentFailure) GetAttemptCountOk() (*string, bool)

GetAttemptCountOk returns a tuple with the AttemptCount field value if set, nil otherwise and a boolean to check if the value has been set.

func (*SubscriptionPaymentFailure) GetErrorCode ¶

func (o *SubscriptionPaymentFailure) GetErrorCode() string

GetErrorCode returns the ErrorCode field value if set, zero value otherwise.

func (*SubscriptionPaymentFailure) GetErrorCodeOk ¶

func (o *SubscriptionPaymentFailure) GetErrorCodeOk() (*string, bool)

GetErrorCodeOk returns a tuple with the ErrorCode field value if set, nil otherwise and a boolean to check if the value has been set.

func (*SubscriptionPaymentFailure) GetErrorMessage ¶

func (o *SubscriptionPaymentFailure) GetErrorMessage() string

GetErrorMessage returns the ErrorMessage field value if set, zero value otherwise.

func (*SubscriptionPaymentFailure) GetErrorMessageOk ¶

func (o *SubscriptionPaymentFailure) GetErrorMessageOk() (*string, bool)

GetErrorMessageOk returns a tuple with the ErrorMessage field value if set, nil otherwise and a boolean to check if the value has been set.

func (*SubscriptionPaymentFailure) GetErrorReason ¶

func (o *SubscriptionPaymentFailure) GetErrorReason() string

GetErrorReason returns the ErrorReason field value if set, zero value otherwise.

func (*SubscriptionPaymentFailure) GetErrorReasonOk ¶

func (o *SubscriptionPaymentFailure) GetErrorReasonOk() (*string, bool)

GetErrorReasonOk returns a tuple with the ErrorReason field value if set, nil otherwise and a boolean to check if the value has been set.

func (*SubscriptionPaymentFailure) GetErrorType ¶

func (o *SubscriptionPaymentFailure) GetErrorType() string

GetErrorType returns the ErrorType field value if set, zero value otherwise.

func (*SubscriptionPaymentFailure) GetErrorTypeOk ¶

func (o *SubscriptionPaymentFailure) GetErrorTypeOk() (*string, bool)

GetErrorTypeOk returns a tuple with the ErrorType field value if set, nil otherwise and a boolean to check if the value has been set.

func (*SubscriptionPaymentFailure) GetFailedAt ¶

func (o *SubscriptionPaymentFailure) GetFailedAt() time.Time

GetFailedAt returns the FailedAt field value if set, zero value otherwise.

func (*SubscriptionPaymentFailure) GetFailedAtOk ¶

func (o *SubscriptionPaymentFailure) GetFailedAtOk() (*time.Time, bool)

GetFailedAtOk returns a tuple with the FailedAt field value if set, nil otherwise and a boolean to check if the value has been set.

func (*SubscriptionPaymentFailure) GetNextAttempt ¶

func (o *SubscriptionPaymentFailure) GetNextAttempt() time.Time

GetNextAttempt returns the NextAttempt field value if set, zero value otherwise.

func (*SubscriptionPaymentFailure) GetNextAttemptOk ¶

func (o *SubscriptionPaymentFailure) GetNextAttemptOk() (*time.Time, bool)

GetNextAttemptOk returns a tuple with the NextAttempt field value if set, nil otherwise and a boolean to check if the value has been set.

func (*SubscriptionPaymentFailure) GetPaymentMethodRequired ¶

func (o *SubscriptionPaymentFailure) GetPaymentMethodRequired() bool

GetPaymentMethodRequired returns the PaymentMethodRequired field value if set, zero value otherwise.

func (*SubscriptionPaymentFailure) GetPaymentMethodRequiredOk ¶

func (o *SubscriptionPaymentFailure) GetPaymentMethodRequiredOk() (*bool, bool)

GetPaymentMethodRequiredOk returns a tuple with the PaymentMethodRequired field value if set, nil otherwise and a boolean to check if the value has been set.

func (*SubscriptionPaymentFailure) GetRedirectUrl ¶

func (o *SubscriptionPaymentFailure) GetRedirectUrl() string

GetRedirectUrl returns the RedirectUrl field value if set, zero value otherwise.

func (*SubscriptionPaymentFailure) GetRedirectUrlOk ¶

func (o *SubscriptionPaymentFailure) GetRedirectUrlOk() (*string, bool)

GetRedirectUrlOk returns a tuple with the RedirectUrl field value if set, nil otherwise and a boolean to check if the value has been set.

func (*SubscriptionPaymentFailure) GetStripeSdk ¶

GetStripeSdk returns the StripeSdk field value if set, zero value otherwise.

func (*SubscriptionPaymentFailure) GetStripeSdkOk ¶

GetStripeSdkOk returns a tuple with the StripeSdk field value if set, nil otherwise and a boolean to check if the value has been set.

func (*SubscriptionPaymentFailure) HasAttemptCount ¶

func (o *SubscriptionPaymentFailure) HasAttemptCount() bool

HasAttemptCount returns a boolean if a field has been set.

func (*SubscriptionPaymentFailure) HasErrorCode ¶

func (o *SubscriptionPaymentFailure) HasErrorCode() bool

HasErrorCode returns a boolean if a field has been set.

func (*SubscriptionPaymentFailure) HasErrorMessage ¶

func (o *SubscriptionPaymentFailure) HasErrorMessage() bool

HasErrorMessage returns a boolean if a field has been set.

func (*SubscriptionPaymentFailure) HasErrorReason ¶

func (o *SubscriptionPaymentFailure) HasErrorReason() bool

HasErrorReason returns a boolean if a field has been set.

func (*SubscriptionPaymentFailure) HasErrorType ¶

func (o *SubscriptionPaymentFailure) HasErrorType() bool

HasErrorType returns a boolean if a field has been set.

func (*SubscriptionPaymentFailure) HasFailedAt ¶

func (o *SubscriptionPaymentFailure) HasFailedAt() bool

HasFailedAt returns a boolean if a field has been set.

func (*SubscriptionPaymentFailure) HasNextAttempt ¶

func (o *SubscriptionPaymentFailure) HasNextAttempt() bool

HasNextAttempt returns a boolean if a field has been set.

func (*SubscriptionPaymentFailure) HasPaymentMethodRequired ¶

func (o *SubscriptionPaymentFailure) HasPaymentMethodRequired() bool

HasPaymentMethodRequired returns a boolean if a field has been set.

func (*SubscriptionPaymentFailure) HasRedirectUrl ¶

func (o *SubscriptionPaymentFailure) HasRedirectUrl() bool

HasRedirectUrl returns a boolean if a field has been set.

func (*SubscriptionPaymentFailure) HasStripeSdk ¶

func (o *SubscriptionPaymentFailure) HasStripeSdk() bool

HasStripeSdk returns a boolean if a field has been set.

func (SubscriptionPaymentFailure) MarshalJSON ¶

func (o SubscriptionPaymentFailure) MarshalJSON() ([]byte, error)

func (*SubscriptionPaymentFailure) SetAttemptCount ¶

func (o *SubscriptionPaymentFailure) SetAttemptCount(v string)

SetAttemptCount gets a reference to the given string and assigns it to the AttemptCount field.

func (*SubscriptionPaymentFailure) SetErrorCode ¶

func (o *SubscriptionPaymentFailure) SetErrorCode(v string)

SetErrorCode gets a reference to the given string and assigns it to the ErrorCode field.

func (*SubscriptionPaymentFailure) SetErrorMessage ¶

func (o *SubscriptionPaymentFailure) SetErrorMessage(v string)

SetErrorMessage gets a reference to the given string and assigns it to the ErrorMessage field.

func (*SubscriptionPaymentFailure) SetErrorReason ¶

func (o *SubscriptionPaymentFailure) SetErrorReason(v string)

SetErrorReason gets a reference to the given string and assigns it to the ErrorReason field.

func (*SubscriptionPaymentFailure) SetErrorType ¶

func (o *SubscriptionPaymentFailure) SetErrorType(v string)

SetErrorType gets a reference to the given string and assigns it to the ErrorType field.

func (*SubscriptionPaymentFailure) SetFailedAt ¶

func (o *SubscriptionPaymentFailure) SetFailedAt(v time.Time)

SetFailedAt gets a reference to the given time.Time and assigns it to the FailedAt field.

func (*SubscriptionPaymentFailure) SetNextAttempt ¶

func (o *SubscriptionPaymentFailure) SetNextAttempt(v time.Time)

SetNextAttempt gets a reference to the given time.Time and assigns it to the NextAttempt field.

func (*SubscriptionPaymentFailure) SetPaymentMethodRequired ¶

func (o *SubscriptionPaymentFailure) SetPaymentMethodRequired(v bool)

SetPaymentMethodRequired gets a reference to the given bool and assigns it to the PaymentMethodRequired field.

func (*SubscriptionPaymentFailure) SetRedirectUrl ¶

func (o *SubscriptionPaymentFailure) SetRedirectUrl(v string)

SetRedirectUrl gets a reference to the given string and assigns it to the RedirectUrl field.

func (*SubscriptionPaymentFailure) SetStripeSdk ¶

SetStripeSdk gets a reference to the given SubscriptionPaymentFailureStripeSDK and assigns it to the StripeSdk field.

type SubscriptionPaymentFailureStripeSDK ¶

type SubscriptionPaymentFailureStripeSDK struct {
	ClientSecretKey *string `json:"client_secret_key,omitempty"`
	RawJson         *string `json:"raw_json,omitempty"`
}

SubscriptionPaymentFailureStripeSDK struct for SubscriptionPaymentFailureStripeSDK

func NewSubscriptionPaymentFailureStripeSDK ¶

func NewSubscriptionPaymentFailureStripeSDK() *SubscriptionPaymentFailureStripeSDK

NewSubscriptionPaymentFailureStripeSDK instantiates a new SubscriptionPaymentFailureStripeSDK 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 NewSubscriptionPaymentFailureStripeSDKWithDefaults ¶

func NewSubscriptionPaymentFailureStripeSDKWithDefaults() *SubscriptionPaymentFailureStripeSDK

NewSubscriptionPaymentFailureStripeSDKWithDefaults instantiates a new SubscriptionPaymentFailureStripeSDK 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 (*SubscriptionPaymentFailureStripeSDK) GetClientSecretKey ¶

func (o *SubscriptionPaymentFailureStripeSDK) GetClientSecretKey() string

GetClientSecretKey returns the ClientSecretKey field value if set, zero value otherwise.

func (*SubscriptionPaymentFailureStripeSDK) GetClientSecretKeyOk ¶

func (o *SubscriptionPaymentFailureStripeSDK) GetClientSecretKeyOk() (*string, bool)

GetClientSecretKeyOk returns a tuple with the ClientSecretKey field value if set, nil otherwise and a boolean to check if the value has been set.

func (*SubscriptionPaymentFailureStripeSDK) GetRawJson ¶

GetRawJson returns the RawJson field value if set, zero value otherwise.

func (*SubscriptionPaymentFailureStripeSDK) GetRawJsonOk ¶

func (o *SubscriptionPaymentFailureStripeSDK) GetRawJsonOk() (*string, bool)

GetRawJsonOk returns a tuple with the RawJson field value if set, nil otherwise and a boolean to check if the value has been set.

func (*SubscriptionPaymentFailureStripeSDK) HasClientSecretKey ¶

func (o *SubscriptionPaymentFailureStripeSDK) HasClientSecretKey() bool

HasClientSecretKey returns a boolean if a field has been set.

func (*SubscriptionPaymentFailureStripeSDK) HasRawJson ¶

func (o *SubscriptionPaymentFailureStripeSDK) HasRawJson() bool

HasRawJson returns a boolean if a field has been set.

func (SubscriptionPaymentFailureStripeSDK) MarshalJSON ¶

func (o SubscriptionPaymentFailureStripeSDK) MarshalJSON() ([]byte, error)

func (*SubscriptionPaymentFailureStripeSDK) SetClientSecretKey ¶

func (o *SubscriptionPaymentFailureStripeSDK) SetClientSecretKey(v string)

SetClientSecretKey gets a reference to the given string and assigns it to the ClientSecretKey field.

func (*SubscriptionPaymentFailureStripeSDK) SetRawJson ¶

SetRawJson gets a reference to the given string and assigns it to the RawJson field.

type SubscriptionStatus ¶

type SubscriptionStatus string

SubscriptionStatus the model 'SubscriptionStatus'

const (
	SUBSCRIPTIONSTATUS_INVALID     SubscriptionStatus = "INVALID"
	SUBSCRIPTIONSTATUS_CREATED     SubscriptionStatus = "CREATED"
	SUBSCRIPTIONSTATUS_ACTIVE      SubscriptionStatus = "ACTIVE"
	SUBSCRIPTIONSTATUS_WARNING     SubscriptionStatus = "WARNING"
	SUBSCRIPTIONSTATUS_URGENT      SubscriptionStatus = "URGENT"
	SUBSCRIPTIONSTATUS_CANCELING   SubscriptionStatus = "CANCELING"
	SUBSCRIPTIONSTATUS_CANCELED    SubscriptionStatus = "CANCELED"
	SUBSCRIPTIONSTATUS_TERMINATING SubscriptionStatus = "TERMINATING"
	SUBSCRIPTIONSTATUS_TERMINATED  SubscriptionStatus = "TERMINATED"
)

List of Subscription.Status

func NewSubscriptionStatusFromValue ¶

func NewSubscriptionStatusFromValue(v string) (*SubscriptionStatus, error)

NewSubscriptionStatusFromValue returns a pointer to a valid SubscriptionStatus for the value passed as argument, or an error if the value passed is not allowed by the enum

func (SubscriptionStatus) IsValid ¶

func (v SubscriptionStatus) IsValid() bool

IsValid return true if the value is valid for the enum, false otherwise

func (SubscriptionStatus) Ptr ¶

Ptr returns reference to Subscription.Status value

func (*SubscriptionStatus) UnmarshalJSON ¶

func (v *SubscriptionStatus) UnmarshalJSON(src []byte) error

type SubscriptionsApi ¶

type SubscriptionsApi interface {

	/*
		GetSubscription Get Subscription

		@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
		@param id The id of the instance
		@return ApiGetSubscriptionRequest
	*/
	GetSubscription(ctx context.Context, id string) ApiGetSubscriptionRequest

	// GetSubscriptionExecute executes the request
	//  @return GetSubscriptionReply
	GetSubscriptionExecute(r ApiGetSubscriptionRequest) (*GetSubscriptionReply, *http.Response, error)
}

type SubscriptionsApiService ¶

type SubscriptionsApiService service

SubscriptionsApiService SubscriptionsApi service

func (*SubscriptionsApiService) GetSubscription ¶

GetSubscription Get Subscription

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param id The id of the instance
@return ApiGetSubscriptionRequest

func (*SubscriptionsApiService) GetSubscriptionExecute ¶

Execute executes the request

@return GetSubscriptionReply

type SummaryApi ¶

type SummaryApi interface {

	/*
		GetOrganizationSummary Get organization usage summary

		@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
		@param organizationId Organization ID
		@return ApiGetOrganizationSummaryRequest
	*/
	GetOrganizationSummary(ctx context.Context, organizationId string) ApiGetOrganizationSummaryRequest

	// GetOrganizationSummaryExecute executes the request
	//  @return GetOrganizationSummaryReply
	GetOrganizationSummaryExecute(r ApiGetOrganizationSummaryRequest) (*GetOrganizationSummaryReply, *http.Response, error)
}

type SummaryApiService ¶

type SummaryApiService service

SummaryApiService SummaryApi service

func (*SummaryApiService) GetOrganizationSummary ¶

func (a *SummaryApiService) GetOrganizationSummary(ctx context.Context, organizationId string) ApiGetOrganizationSummaryRequest

GetOrganizationSummary Get organization usage summary

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param organizationId Organization ID
@return ApiGetOrganizationSummaryRequest

func (*SummaryApiService) GetOrganizationSummaryExecute ¶

Execute executes the request

@return GetOrganizationSummaryReply

type TCPHealthCheck ¶

type TCPHealthCheck struct {
	Port *int64 `json:"port,omitempty"`
}

TCPHealthCheck struct for TCPHealthCheck

func NewTCPHealthCheck ¶

func NewTCPHealthCheck() *TCPHealthCheck

NewTCPHealthCheck instantiates a new TCPHealthCheck 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 NewTCPHealthCheckWithDefaults ¶

func NewTCPHealthCheckWithDefaults() *TCPHealthCheck

NewTCPHealthCheckWithDefaults instantiates a new TCPHealthCheck 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 (*TCPHealthCheck) GetPort ¶

func (o *TCPHealthCheck) GetPort() int64

GetPort returns the Port field value if set, zero value otherwise.

func (*TCPHealthCheck) GetPortOk ¶

func (o *TCPHealthCheck) GetPortOk() (*int64, 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 (*TCPHealthCheck) HasPort ¶

func (o *TCPHealthCheck) HasPort() bool

HasPort returns a boolean if a field has been set.

func (TCPHealthCheck) MarshalJSON ¶

func (o TCPHealthCheck) MarshalJSON() ([]byte, error)

func (*TCPHealthCheck) SetPort ¶

func (o *TCPHealthCheck) SetPort(v int64)

SetPort gets a reference to the given int64 and assigns it to the Port field.

type Token ¶

type Token struct {
	Id             *string    `json:"id,omitempty"`
	UserId         *string    `json:"user_id,omitempty"`
	OrganizationId *string    `json:"organization_id,omitempty"`
	ExpiresAt      *time.Time `json:"expires_at,omitempty"`
}

Token struct for Token

func NewToken ¶

func NewToken() *Token

NewToken instantiates a new Token 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 NewTokenWithDefaults ¶

func NewTokenWithDefaults() *Token

NewTokenWithDefaults instantiates a new Token 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 (*Token) GetExpiresAt ¶

func (o *Token) GetExpiresAt() time.Time

GetExpiresAt returns the ExpiresAt field value if set, zero value otherwise.

func (*Token) GetExpiresAtOk ¶

func (o *Token) GetExpiresAtOk() (*time.Time, bool)

GetExpiresAtOk returns a tuple with the ExpiresAt field value if set, nil otherwise and a boolean to check if the value has been set.

func (*Token) GetId ¶

func (o *Token) GetId() string

GetId returns the Id field value if set, zero value otherwise.

func (*Token) GetIdOk ¶

func (o *Token) 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 (*Token) GetOrganizationId ¶

func (o *Token) GetOrganizationId() string

GetOrganizationId returns the OrganizationId field value if set, zero value otherwise.

func (*Token) GetOrganizationIdOk ¶

func (o *Token) GetOrganizationIdOk() (*string, bool)

GetOrganizationIdOk returns a tuple with the OrganizationId field value if set, nil otherwise and a boolean to check if the value has been set.

func (*Token) GetUserId ¶

func (o *Token) GetUserId() string

GetUserId returns the UserId field value if set, zero value otherwise.

func (*Token) GetUserIdOk ¶

func (o *Token) GetUserIdOk() (*string, bool)

GetUserIdOk returns a tuple with the UserId field value if set, nil otherwise and a boolean to check if the value has been set.

func (*Token) HasExpiresAt ¶

func (o *Token) HasExpiresAt() bool

HasExpiresAt returns a boolean if a field has been set.

func (*Token) HasId ¶

func (o *Token) HasId() bool

HasId returns a boolean if a field has been set.

func (*Token) HasOrganizationId ¶

func (o *Token) HasOrganizationId() bool

HasOrganizationId returns a boolean if a field has been set.

func (*Token) HasUserId ¶

func (o *Token) HasUserId() bool

HasUserId returns a boolean if a field has been set.

func (Token) MarshalJSON ¶

func (o Token) MarshalJSON() ([]byte, error)

func (*Token) SetExpiresAt ¶

func (o *Token) SetExpiresAt(v time.Time)

SetExpiresAt gets a reference to the given time.Time and assigns it to the ExpiresAt field.

func (*Token) SetId ¶

func (o *Token) SetId(v string)

SetId gets a reference to the given string and assigns it to the Id field.

func (*Token) SetOrganizationId ¶

func (o *Token) SetOrganizationId(v string)

SetOrganizationId gets a reference to the given string and assigns it to the OrganizationId field.

func (*Token) SetUserId ¶

func (o *Token) SetUserId(v string)

SetUserId gets a reference to the given string and assigns it to the UserId field.

type TriggerDeploymentMetadata ¶

type TriggerDeploymentMetadata struct {
	Type  *TriggerDeploymentMetadataTriggerType `json:"type,omitempty"`
	Actor *TriggerDeploymentMetadataActorType   `json:"actor,omitempty"`
	Git   *TriggerGitDeploymentMetadata         `json:"git,omitempty"`
}

TriggerDeploymentMetadata struct for TriggerDeploymentMetadata

func NewTriggerDeploymentMetadata ¶

func NewTriggerDeploymentMetadata() *TriggerDeploymentMetadata

NewTriggerDeploymentMetadata instantiates a new TriggerDeploymentMetadata 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 NewTriggerDeploymentMetadataWithDefaults ¶

func NewTriggerDeploymentMetadataWithDefaults() *TriggerDeploymentMetadata

NewTriggerDeploymentMetadataWithDefaults instantiates a new TriggerDeploymentMetadata 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 (*TriggerDeploymentMetadata) GetActor ¶

GetActor returns the Actor field value if set, zero value otherwise.

func (*TriggerDeploymentMetadata) GetActorOk ¶

GetActorOk returns a tuple with the Actor field value if set, nil otherwise and a boolean to check if the value has been set.

func (*TriggerDeploymentMetadata) GetGit ¶

GetGit returns the Git field value if set, zero value otherwise.

func (*TriggerDeploymentMetadata) GetGitOk ¶

GetGitOk returns a tuple with the Git field value if set, nil otherwise and a boolean to check if the value has been set.

func (*TriggerDeploymentMetadata) GetType ¶

GetType returns the Type field value if set, zero value otherwise.

func (*TriggerDeploymentMetadata) GetTypeOk ¶

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 (*TriggerDeploymentMetadata) HasActor ¶

func (o *TriggerDeploymentMetadata) HasActor() bool

HasActor returns a boolean if a field has been set.

func (*TriggerDeploymentMetadata) HasGit ¶

func (o *TriggerDeploymentMetadata) HasGit() bool

HasGit returns a boolean if a field has been set.

func (*TriggerDeploymentMetadata) HasType ¶

func (o *TriggerDeploymentMetadata) HasType() bool

HasType returns a boolean if a field has been set.

func (TriggerDeploymentMetadata) MarshalJSON ¶

func (o TriggerDeploymentMetadata) MarshalJSON() ([]byte, error)

func (*TriggerDeploymentMetadata) SetActor ¶

SetActor gets a reference to the given TriggerDeploymentMetadataActorType and assigns it to the Actor field.

func (*TriggerDeploymentMetadata) SetGit ¶

SetGit gets a reference to the given TriggerGitDeploymentMetadata and assigns it to the Git field.

func (*TriggerDeploymentMetadata) SetType ¶

SetType gets a reference to the given TriggerDeploymentMetadataTriggerType and assigns it to the Type field.

type TriggerDeploymentMetadataActorType ¶

type TriggerDeploymentMetadataActorType string

TriggerDeploymentMetadataActorType the model 'TriggerDeploymentMetadataActorType'

const (
	TRIGGERDEPLOYMENTMETADATAACTORTYPE_UNKNOWN_ACTOR TriggerDeploymentMetadataActorType = "UNKNOWN_ACTOR"
	TRIGGERDEPLOYMENTMETADATAACTORTYPE_USER          TriggerDeploymentMetadataActorType = "USER"
	TRIGGERDEPLOYMENTMETADATAACTORTYPE_SYSTEM        TriggerDeploymentMetadataActorType = "SYSTEM"
)

List of TriggerDeploymentMetadata.ActorType

func NewTriggerDeploymentMetadataActorTypeFromValue ¶

func NewTriggerDeploymentMetadataActorTypeFromValue(v string) (*TriggerDeploymentMetadataActorType, error)

NewTriggerDeploymentMetadataActorTypeFromValue returns a pointer to a valid TriggerDeploymentMetadataActorType for the value passed as argument, or an error if the value passed is not allowed by the enum

func (TriggerDeploymentMetadataActorType) IsValid ¶

IsValid return true if the value is valid for the enum, false otherwise

func (TriggerDeploymentMetadataActorType) Ptr ¶

Ptr returns reference to TriggerDeploymentMetadata.ActorType value

func (*TriggerDeploymentMetadataActorType) UnmarshalJSON ¶

func (v *TriggerDeploymentMetadataActorType) UnmarshalJSON(src []byte) error

type TriggerDeploymentMetadataTriggerType ¶

type TriggerDeploymentMetadataTriggerType string

TriggerDeploymentMetadataTriggerType the model 'TriggerDeploymentMetadataTriggerType'

const (
	TRIGGERDEPLOYMENTMETADATATRIGGERTYPE_UNKNOWN_TYPE  TriggerDeploymentMetadataTriggerType = "UNKNOWN_TYPE"
	TRIGGERDEPLOYMENTMETADATATRIGGERTYPE_GIT           TriggerDeploymentMetadataTriggerType = "GIT"
	TRIGGERDEPLOYMENTMETADATATRIGGERTYPE_RESUME        TriggerDeploymentMetadataTriggerType = "RESUME"
	TRIGGERDEPLOYMENTMETADATATRIGGERTYPE_DATABASE_SYNC TriggerDeploymentMetadataTriggerType = "DATABASE_SYNC"
)

List of TriggerDeploymentMetadata.TriggerType

func NewTriggerDeploymentMetadataTriggerTypeFromValue ¶

func NewTriggerDeploymentMetadataTriggerTypeFromValue(v string) (*TriggerDeploymentMetadataTriggerType, error)

NewTriggerDeploymentMetadataTriggerTypeFromValue returns a pointer to a valid TriggerDeploymentMetadataTriggerType for the value passed as argument, or an error if the value passed is not allowed by the enum

func (TriggerDeploymentMetadataTriggerType) IsValid ¶

IsValid return true if the value is valid for the enum, false otherwise

func (TriggerDeploymentMetadataTriggerType) Ptr ¶

Ptr returns reference to TriggerDeploymentMetadata.TriggerType value

func (*TriggerDeploymentMetadataTriggerType) UnmarshalJSON ¶

func (v *TriggerDeploymentMetadataTriggerType) UnmarshalJSON(src []byte) error

type TriggerGitDeploymentMetadata ¶

type TriggerGitDeploymentMetadata struct {
	Provider         *TriggerGitDeploymentMetadataProvider `json:"provider,omitempty"`
	Repository       *string                               `json:"repository,omitempty"`
	Branch           *string                               `json:"branch,omitempty"`
	Sha              *string                               `json:"sha,omitempty"`
	Message          *string                               `json:"message,omitempty"`
	SenderUsername   *string                               `json:"sender_username,omitempty"`
	SenderAvatarUrl  *string                               `json:"sender_avatar_url,omitempty"`
	SenderProfileUrl *string                               `json:"sender_profile_url,omitempty"`
}

TriggerGitDeploymentMetadata struct for TriggerGitDeploymentMetadata

func NewTriggerGitDeploymentMetadata ¶

func NewTriggerGitDeploymentMetadata() *TriggerGitDeploymentMetadata

NewTriggerGitDeploymentMetadata instantiates a new TriggerGitDeploymentMetadata 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 NewTriggerGitDeploymentMetadataWithDefaults ¶

func NewTriggerGitDeploymentMetadataWithDefaults() *TriggerGitDeploymentMetadata

NewTriggerGitDeploymentMetadataWithDefaults instantiates a new TriggerGitDeploymentMetadata 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 (*TriggerGitDeploymentMetadata) GetBranch ¶

func (o *TriggerGitDeploymentMetadata) GetBranch() string

GetBranch returns the Branch field value if set, zero value otherwise.

func (*TriggerGitDeploymentMetadata) GetBranchOk ¶

func (o *TriggerGitDeploymentMetadata) GetBranchOk() (*string, bool)

GetBranchOk returns a tuple with the Branch field value if set, nil otherwise and a boolean to check if the value has been set.

func (*TriggerGitDeploymentMetadata) GetMessage ¶

func (o *TriggerGitDeploymentMetadata) GetMessage() string

GetMessage returns the Message field value if set, zero value otherwise.

func (*TriggerGitDeploymentMetadata) GetMessageOk ¶

func (o *TriggerGitDeploymentMetadata) 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 (*TriggerGitDeploymentMetadata) GetProvider ¶

GetProvider returns the Provider field value if set, zero value otherwise.

func (*TriggerGitDeploymentMetadata) GetProviderOk ¶

GetProviderOk returns a tuple with the Provider field value if set, nil otherwise and a boolean to check if the value has been set.

func (*TriggerGitDeploymentMetadata) GetRepository ¶

func (o *TriggerGitDeploymentMetadata) GetRepository() string

GetRepository returns the Repository field value if set, zero value otherwise.

func (*TriggerGitDeploymentMetadata) GetRepositoryOk ¶

func (o *TriggerGitDeploymentMetadata) GetRepositoryOk() (*string, bool)

GetRepositoryOk returns a tuple with the Repository field value if set, nil otherwise and a boolean to check if the value has been set.

func (*TriggerGitDeploymentMetadata) GetSenderAvatarUrl ¶

func (o *TriggerGitDeploymentMetadata) GetSenderAvatarUrl() string

GetSenderAvatarUrl returns the SenderAvatarUrl field value if set, zero value otherwise.

func (*TriggerGitDeploymentMetadata) GetSenderAvatarUrlOk ¶

func (o *TriggerGitDeploymentMetadata) GetSenderAvatarUrlOk() (*string, bool)

GetSenderAvatarUrlOk returns a tuple with the SenderAvatarUrl field value if set, nil otherwise and a boolean to check if the value has been set.

func (*TriggerGitDeploymentMetadata) GetSenderProfileUrl ¶

func (o *TriggerGitDeploymentMetadata) GetSenderProfileUrl() string

GetSenderProfileUrl returns the SenderProfileUrl field value if set, zero value otherwise.

func (*TriggerGitDeploymentMetadata) GetSenderProfileUrlOk ¶

func (o *TriggerGitDeploymentMetadata) GetSenderProfileUrlOk() (*string, bool)

GetSenderProfileUrlOk returns a tuple with the SenderProfileUrl field value if set, nil otherwise and a boolean to check if the value has been set.

func (*TriggerGitDeploymentMetadata) GetSenderUsername ¶

func (o *TriggerGitDeploymentMetadata) GetSenderUsername() string

GetSenderUsername returns the SenderUsername field value if set, zero value otherwise.

func (*TriggerGitDeploymentMetadata) GetSenderUsernameOk ¶

func (o *TriggerGitDeploymentMetadata) GetSenderUsernameOk() (*string, bool)

GetSenderUsernameOk returns a tuple with the SenderUsername field value if set, nil otherwise and a boolean to check if the value has been set.

func (*TriggerGitDeploymentMetadata) GetSha ¶

GetSha returns the Sha field value if set, zero value otherwise.

func (*TriggerGitDeploymentMetadata) GetShaOk ¶

func (o *TriggerGitDeploymentMetadata) GetShaOk() (*string, bool)

GetShaOk returns a tuple with the Sha field value if set, nil otherwise and a boolean to check if the value has been set.

func (*TriggerGitDeploymentMetadata) HasBranch ¶

func (o *TriggerGitDeploymentMetadata) HasBranch() bool

HasBranch returns a boolean if a field has been set.

func (*TriggerGitDeploymentMetadata) HasMessage ¶

func (o *TriggerGitDeploymentMetadata) HasMessage() bool

HasMessage returns a boolean if a field has been set.

func (*TriggerGitDeploymentMetadata) HasProvider ¶

func (o *TriggerGitDeploymentMetadata) HasProvider() bool

HasProvider returns a boolean if a field has been set.

func (*TriggerGitDeploymentMetadata) HasRepository ¶

func (o *TriggerGitDeploymentMetadata) HasRepository() bool

HasRepository returns a boolean if a field has been set.

func (*TriggerGitDeploymentMetadata) HasSenderAvatarUrl ¶

func (o *TriggerGitDeploymentMetadata) HasSenderAvatarUrl() bool

HasSenderAvatarUrl returns a boolean if a field has been set.

func (*TriggerGitDeploymentMetadata) HasSenderProfileUrl ¶

func (o *TriggerGitDeploymentMetadata) HasSenderProfileUrl() bool

HasSenderProfileUrl returns a boolean if a field has been set.

func (*TriggerGitDeploymentMetadata) HasSenderUsername ¶

func (o *TriggerGitDeploymentMetadata) HasSenderUsername() bool

HasSenderUsername returns a boolean if a field has been set.

func (*TriggerGitDeploymentMetadata) HasSha ¶

func (o *TriggerGitDeploymentMetadata) HasSha() bool

HasSha returns a boolean if a field has been set.

func (TriggerGitDeploymentMetadata) MarshalJSON ¶

func (o TriggerGitDeploymentMetadata) MarshalJSON() ([]byte, error)

func (*TriggerGitDeploymentMetadata) SetBranch ¶

func (o *TriggerGitDeploymentMetadata) SetBranch(v string)

SetBranch gets a reference to the given string and assigns it to the Branch field.

func (*TriggerGitDeploymentMetadata) SetMessage ¶

func (o *TriggerGitDeploymentMetadata) SetMessage(v string)

SetMessage gets a reference to the given string and assigns it to the Message field.

func (*TriggerGitDeploymentMetadata) SetProvider ¶

SetProvider gets a reference to the given TriggerGitDeploymentMetadataProvider and assigns it to the Provider field.

func (*TriggerGitDeploymentMetadata) SetRepository ¶

func (o *TriggerGitDeploymentMetadata) SetRepository(v string)

SetRepository gets a reference to the given string and assigns it to the Repository field.

func (*TriggerGitDeploymentMetadata) SetSenderAvatarUrl ¶

func (o *TriggerGitDeploymentMetadata) SetSenderAvatarUrl(v string)

SetSenderAvatarUrl gets a reference to the given string and assigns it to the SenderAvatarUrl field.

func (*TriggerGitDeploymentMetadata) SetSenderProfileUrl ¶

func (o *TriggerGitDeploymentMetadata) SetSenderProfileUrl(v string)

SetSenderProfileUrl gets a reference to the given string and assigns it to the SenderProfileUrl field.

func (*TriggerGitDeploymentMetadata) SetSenderUsername ¶

func (o *TriggerGitDeploymentMetadata) SetSenderUsername(v string)

SetSenderUsername gets a reference to the given string and assigns it to the SenderUsername field.

func (*TriggerGitDeploymentMetadata) SetSha ¶

func (o *TriggerGitDeploymentMetadata) SetSha(v string)

SetSha gets a reference to the given string and assigns it to the Sha field.

type TriggerGitDeploymentMetadataProvider ¶

type TriggerGitDeploymentMetadataProvider string

TriggerGitDeploymentMetadataProvider the model 'TriggerGitDeploymentMetadataProvider'

const (
	TRIGGERGITDEPLOYMENTMETADATAPROVIDER_UNKNOWN TriggerGitDeploymentMetadataProvider = "UNKNOWN"
	TRIGGERGITDEPLOYMENTMETADATAPROVIDER_GITHUB  TriggerGitDeploymentMetadataProvider = "GITHUB"
)

List of TriggerGitDeploymentMetadata.Provider

func NewTriggerGitDeploymentMetadataProviderFromValue ¶

func NewTriggerGitDeploymentMetadataProviderFromValue(v string) (*TriggerGitDeploymentMetadataProvider, error)

NewTriggerGitDeploymentMetadataProviderFromValue returns a pointer to a valid TriggerGitDeploymentMetadataProvider for the value passed as argument, or an error if the value passed is not allowed by the enum

func (TriggerGitDeploymentMetadataProvider) IsValid ¶

IsValid return true if the value is valid for the enum, false otherwise

func (TriggerGitDeploymentMetadataProvider) Ptr ¶

Ptr returns reference to TriggerGitDeploymentMetadata.Provider value

func (*TriggerGitDeploymentMetadataProvider) UnmarshalJSON ¶

func (v *TriggerGitDeploymentMetadataProvider) UnmarshalJSON(src []byte) error

type UpdateApp ¶

type UpdateApp struct {
	Name *string `json:"name,omitempty"`
}

UpdateApp struct for UpdateApp

func NewUpdateApp ¶

func NewUpdateApp() *UpdateApp

NewUpdateApp instantiates a new UpdateApp 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 NewUpdateAppWithDefaults ¶

func NewUpdateAppWithDefaults() *UpdateApp

NewUpdateAppWithDefaults instantiates a new UpdateApp 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 (*UpdateApp) GetName ¶

func (o *UpdateApp) GetName() string

GetName returns the Name field value if set, zero value otherwise.

func (*UpdateApp) GetNameOk ¶

func (o *UpdateApp) 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 (*UpdateApp) HasName ¶

func (o *UpdateApp) HasName() bool

HasName returns a boolean if a field has been set.

func (UpdateApp) MarshalJSON ¶

func (o UpdateApp) MarshalJSON() ([]byte, error)

func (*UpdateApp) SetName ¶

func (o *UpdateApp) SetName(v string)

SetName gets a reference to the given string and assigns it to the Name field.

type UpdateAppReply ¶

type UpdateAppReply struct {
	App *App `json:"app,omitempty"`
}

UpdateAppReply struct for UpdateAppReply

func NewUpdateAppReply ¶

func NewUpdateAppReply() *UpdateAppReply

NewUpdateAppReply instantiates a new UpdateAppReply 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 NewUpdateAppReplyWithDefaults ¶

func NewUpdateAppReplyWithDefaults() *UpdateAppReply

NewUpdateAppReplyWithDefaults instantiates a new UpdateAppReply 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 (*UpdateAppReply) GetApp ¶

func (o *UpdateAppReply) GetApp() App

GetApp returns the App field value if set, zero value otherwise.

func (*UpdateAppReply) GetAppOk ¶

func (o *UpdateAppReply) GetAppOk() (*App, bool)

GetAppOk returns a tuple with the App field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UpdateAppReply) HasApp ¶

func (o *UpdateAppReply) HasApp() bool

HasApp returns a boolean if a field has been set.

func (UpdateAppReply) MarshalJSON ¶

func (o UpdateAppReply) MarshalJSON() ([]byte, error)

func (*UpdateAppReply) SetApp ¶

func (o *UpdateAppReply) SetApp(v App)

SetApp gets a reference to the given App and assigns it to the App field.

type UpdateCredentialReply ¶

type UpdateCredentialReply struct {
	Credential *Credential `json:"credential,omitempty"`
}

UpdateCredentialReply struct for UpdateCredentialReply

func NewUpdateCredentialReply ¶

func NewUpdateCredentialReply() *UpdateCredentialReply

NewUpdateCredentialReply instantiates a new UpdateCredentialReply 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 NewUpdateCredentialReplyWithDefaults ¶

func NewUpdateCredentialReplyWithDefaults() *UpdateCredentialReply

NewUpdateCredentialReplyWithDefaults instantiates a new UpdateCredentialReply 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 (*UpdateCredentialReply) GetCredential ¶

func (o *UpdateCredentialReply) GetCredential() Credential

GetCredential returns the Credential field value if set, zero value otherwise.

func (*UpdateCredentialReply) GetCredentialOk ¶

func (o *UpdateCredentialReply) GetCredentialOk() (*Credential, bool)

GetCredentialOk returns a tuple with the Credential field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UpdateCredentialReply) HasCredential ¶

func (o *UpdateCredentialReply) HasCredential() bool

HasCredential returns a boolean if a field has been set.

func (UpdateCredentialReply) MarshalJSON ¶

func (o UpdateCredentialReply) MarshalJSON() ([]byte, error)

func (*UpdateCredentialReply) SetCredential ¶

func (o *UpdateCredentialReply) SetCredential(v Credential)

SetCredential gets a reference to the given Credential and assigns it to the Credential field.

type UpdateDomain ¶

type UpdateDomain struct {
	AppId *string `json:"app_id,omitempty"`
}

UpdateDomain struct for UpdateDomain

func NewUpdateDomain ¶

func NewUpdateDomain() *UpdateDomain

NewUpdateDomain instantiates a new UpdateDomain 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 NewUpdateDomainWithDefaults ¶

func NewUpdateDomainWithDefaults() *UpdateDomain

NewUpdateDomainWithDefaults instantiates a new UpdateDomain 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 (*UpdateDomain) GetAppId ¶

func (o *UpdateDomain) GetAppId() string

GetAppId returns the AppId field value if set, zero value otherwise.

func (*UpdateDomain) GetAppIdOk ¶

func (o *UpdateDomain) GetAppIdOk() (*string, bool)

GetAppIdOk returns a tuple with the AppId field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UpdateDomain) HasAppId ¶

func (o *UpdateDomain) HasAppId() bool

HasAppId returns a boolean if a field has been set.

func (UpdateDomain) MarshalJSON ¶

func (o UpdateDomain) MarshalJSON() ([]byte, error)

func (*UpdateDomain) SetAppId ¶

func (o *UpdateDomain) SetAppId(v string)

SetAppId gets a reference to the given string and assigns it to the AppId field.

type UpdateDomainReply ¶

type UpdateDomainReply struct {
	Domain *Domain `json:"domain,omitempty"`
}

UpdateDomainReply struct for UpdateDomainReply

func NewUpdateDomainReply ¶

func NewUpdateDomainReply() *UpdateDomainReply

NewUpdateDomainReply instantiates a new UpdateDomainReply 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 NewUpdateDomainReplyWithDefaults ¶

func NewUpdateDomainReplyWithDefaults() *UpdateDomainReply

NewUpdateDomainReplyWithDefaults instantiates a new UpdateDomainReply 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 (*UpdateDomainReply) GetDomain ¶

func (o *UpdateDomainReply) GetDomain() Domain

GetDomain returns the Domain field value if set, zero value otherwise.

func (*UpdateDomainReply) GetDomainOk ¶

func (o *UpdateDomainReply) GetDomainOk() (*Domain, bool)

GetDomainOk returns a tuple with the Domain field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UpdateDomainReply) HasDomain ¶

func (o *UpdateDomainReply) HasDomain() bool

HasDomain returns a boolean if a field has been set.

func (UpdateDomainReply) MarshalJSON ¶

func (o UpdateDomainReply) MarshalJSON() ([]byte, error)

func (*UpdateDomainReply) SetDomain ¶

func (o *UpdateDomainReply) SetDomain(v Domain)

SetDomain gets a reference to the given Domain and assigns it to the Domain field.

type UpdateOrganizationPlanReply ¶

type UpdateOrganizationPlanReply struct {
	Organization *Organization `json:"organization,omitempty"`
}

UpdateOrganizationPlanReply struct for UpdateOrganizationPlanReply

func NewUpdateOrganizationPlanReply ¶

func NewUpdateOrganizationPlanReply() *UpdateOrganizationPlanReply

NewUpdateOrganizationPlanReply instantiates a new UpdateOrganizationPlanReply 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 NewUpdateOrganizationPlanReplyWithDefaults ¶

func NewUpdateOrganizationPlanReplyWithDefaults() *UpdateOrganizationPlanReply

NewUpdateOrganizationPlanReplyWithDefaults instantiates a new UpdateOrganizationPlanReply 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 (*UpdateOrganizationPlanReply) GetOrganization ¶

func (o *UpdateOrganizationPlanReply) GetOrganization() Organization

GetOrganization returns the Organization field value if set, zero value otherwise.

func (*UpdateOrganizationPlanReply) GetOrganizationOk ¶

func (o *UpdateOrganizationPlanReply) GetOrganizationOk() (*Organization, bool)

GetOrganizationOk returns a tuple with the Organization field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UpdateOrganizationPlanReply) HasOrganization ¶

func (o *UpdateOrganizationPlanReply) HasOrganization() bool

HasOrganization returns a boolean if a field has been set.

func (UpdateOrganizationPlanReply) MarshalJSON ¶

func (o UpdateOrganizationPlanReply) MarshalJSON() ([]byte, error)

func (*UpdateOrganizationPlanReply) SetOrganization ¶

func (o *UpdateOrganizationPlanReply) SetOrganization(v Organization)

SetOrganization gets a reference to the given Organization and assigns it to the Organization field.

type UpdateOrganizationPlanRequest ¶

type UpdateOrganizationPlanRequest struct {
	Plan *Plan `json:"plan,omitempty"`
}

UpdateOrganizationPlanRequest struct for UpdateOrganizationPlanRequest

func NewUpdateOrganizationPlanRequest ¶

func NewUpdateOrganizationPlanRequest() *UpdateOrganizationPlanRequest

NewUpdateOrganizationPlanRequest instantiates a new UpdateOrganizationPlanRequest 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 NewUpdateOrganizationPlanRequestWithDefaults ¶

func NewUpdateOrganizationPlanRequestWithDefaults() *UpdateOrganizationPlanRequest

NewUpdateOrganizationPlanRequestWithDefaults instantiates a new UpdateOrganizationPlanRequest 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 (*UpdateOrganizationPlanRequest) GetPlan ¶

func (o *UpdateOrganizationPlanRequest) GetPlan() Plan

GetPlan returns the Plan field value if set, zero value otherwise.

func (*UpdateOrganizationPlanRequest) GetPlanOk ¶

func (o *UpdateOrganizationPlanRequest) GetPlanOk() (*Plan, bool)

GetPlanOk returns a tuple with the Plan field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UpdateOrganizationPlanRequest) HasPlan ¶

func (o *UpdateOrganizationPlanRequest) HasPlan() bool

HasPlan returns a boolean if a field has been set.

func (UpdateOrganizationPlanRequest) MarshalJSON ¶

func (o UpdateOrganizationPlanRequest) MarshalJSON() ([]byte, error)

func (*UpdateOrganizationPlanRequest) SetPlan ¶

func (o *UpdateOrganizationPlanRequest) SetPlan(v Plan)

SetPlan gets a reference to the given Plan and assigns it to the Plan field.

type UpdateOrganizationReply ¶

type UpdateOrganizationReply struct {
	Organization *Organization `json:"organization,omitempty"`
}

UpdateOrganizationReply struct for UpdateOrganizationReply

func NewUpdateOrganizationReply ¶

func NewUpdateOrganizationReply() *UpdateOrganizationReply

NewUpdateOrganizationReply instantiates a new UpdateOrganizationReply 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 NewUpdateOrganizationReplyWithDefaults ¶

func NewUpdateOrganizationReplyWithDefaults() *UpdateOrganizationReply

NewUpdateOrganizationReplyWithDefaults instantiates a new UpdateOrganizationReply 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 (*UpdateOrganizationReply) GetOrganization ¶

func (o *UpdateOrganizationReply) GetOrganization() Organization

GetOrganization returns the Organization field value if set, zero value otherwise.

func (*UpdateOrganizationReply) GetOrganizationOk ¶

func (o *UpdateOrganizationReply) GetOrganizationOk() (*Organization, bool)

GetOrganizationOk returns a tuple with the Organization field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UpdateOrganizationReply) HasOrganization ¶

func (o *UpdateOrganizationReply) HasOrganization() bool

HasOrganization returns a boolean if a field has been set.

func (UpdateOrganizationReply) MarshalJSON ¶

func (o UpdateOrganizationReply) MarshalJSON() ([]byte, error)

func (*UpdateOrganizationReply) SetOrganization ¶

func (o *UpdateOrganizationReply) SetOrganization(v Organization)

SetOrganization gets a reference to the given Organization and assigns it to the Organization field.

type UpdatePasswordRequest ¶

type UpdatePasswordRequest struct {
	Id       *string `json:"id,omitempty"`
	Password *string `json:"password,omitempty"`
}

UpdatePasswordRequest struct for UpdatePasswordRequest

func NewUpdatePasswordRequest ¶

func NewUpdatePasswordRequest() *UpdatePasswordRequest

NewUpdatePasswordRequest instantiates a new UpdatePasswordRequest 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 NewUpdatePasswordRequestWithDefaults ¶

func NewUpdatePasswordRequestWithDefaults() *UpdatePasswordRequest

NewUpdatePasswordRequestWithDefaults instantiates a new UpdatePasswordRequest 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 (*UpdatePasswordRequest) GetId ¶

func (o *UpdatePasswordRequest) GetId() string

GetId returns the Id field value if set, zero value otherwise.

func (*UpdatePasswordRequest) GetIdOk ¶

func (o *UpdatePasswordRequest) 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 (*UpdatePasswordRequest) GetPassword ¶

func (o *UpdatePasswordRequest) GetPassword() string

GetPassword returns the Password field value if set, zero value otherwise.

func (*UpdatePasswordRequest) GetPasswordOk ¶

func (o *UpdatePasswordRequest) GetPasswordOk() (*string, bool)

GetPasswordOk returns a tuple with the Password field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UpdatePasswordRequest) HasId ¶

func (o *UpdatePasswordRequest) HasId() bool

HasId returns a boolean if a field has been set.

func (*UpdatePasswordRequest) HasPassword ¶

func (o *UpdatePasswordRequest) HasPassword() bool

HasPassword returns a boolean if a field has been set.

func (UpdatePasswordRequest) MarshalJSON ¶

func (o UpdatePasswordRequest) MarshalJSON() ([]byte, error)

func (*UpdatePasswordRequest) SetId ¶

func (o *UpdatePasswordRequest) SetId(v string)

SetId gets a reference to the given string and assigns it to the Id field.

func (*UpdatePasswordRequest) SetPassword ¶

func (o *UpdatePasswordRequest) SetPassword(v string)

SetPassword gets a reference to the given string and assigns it to the Password field.

type UpdateSecretReply ¶

type UpdateSecretReply struct {
	Secret *Secret `json:"secret,omitempty"`
}

UpdateSecretReply struct for UpdateSecretReply

func NewUpdateSecretReply ¶

func NewUpdateSecretReply() *UpdateSecretReply

NewUpdateSecretReply instantiates a new UpdateSecretReply 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 NewUpdateSecretReplyWithDefaults ¶

func NewUpdateSecretReplyWithDefaults() *UpdateSecretReply

NewUpdateSecretReplyWithDefaults instantiates a new UpdateSecretReply 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 (*UpdateSecretReply) GetSecret ¶

func (o *UpdateSecretReply) GetSecret() Secret

GetSecret returns the Secret field value if set, zero value otherwise.

func (*UpdateSecretReply) GetSecretOk ¶

func (o *UpdateSecretReply) GetSecretOk() (*Secret, bool)

GetSecretOk returns a tuple with the Secret field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UpdateSecretReply) HasSecret ¶

func (o *UpdateSecretReply) HasSecret() bool

HasSecret returns a boolean if a field has been set.

func (UpdateSecretReply) MarshalJSON ¶

func (o UpdateSecretReply) MarshalJSON() ([]byte, error)

func (*UpdateSecretReply) SetSecret ¶

func (o *UpdateSecretReply) SetSecret(v Secret)

SetSecret gets a reference to the given Secret and assigns it to the Secret field.

type UpdateService ¶

type UpdateService struct {
	Definition *DeploymentDefinition `json:"definition,omitempty"`
	Metadata   *DeploymentMetadata   `json:"metadata,omitempty"`
	// If set to true, the build stage will be skipped and the image coming from the last successful build step will be used instead. The call fails if no previous successful builds happened.
	SkipBuild *bool `json:"skip_build,omitempty"`
	SaveOnly  *bool `json:"save_only,omitempty"`
}

UpdateService struct for UpdateService

func NewUpdateService ¶

func NewUpdateService() *UpdateService

NewUpdateService instantiates a new UpdateService 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 NewUpdateServiceWithDefaults ¶

func NewUpdateServiceWithDefaults() *UpdateService

NewUpdateServiceWithDefaults instantiates a new UpdateService 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 (*UpdateService) GetDefinition ¶

func (o *UpdateService) GetDefinition() DeploymentDefinition

GetDefinition returns the Definition field value if set, zero value otherwise.

func (*UpdateService) GetDefinitionOk ¶

func (o *UpdateService) GetDefinitionOk() (*DeploymentDefinition, bool)

GetDefinitionOk returns a tuple with the Definition field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UpdateService) GetMetadata ¶

func (o *UpdateService) GetMetadata() DeploymentMetadata

GetMetadata returns the Metadata field value if set, zero value otherwise.

func (*UpdateService) GetMetadataOk ¶

func (o *UpdateService) GetMetadataOk() (*DeploymentMetadata, bool)

GetMetadataOk returns a tuple with the Metadata field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UpdateService) GetSaveOnly ¶

func (o *UpdateService) GetSaveOnly() bool

GetSaveOnly returns the SaveOnly field value if set, zero value otherwise.

func (*UpdateService) GetSaveOnlyOk ¶

func (o *UpdateService) GetSaveOnlyOk() (*bool, bool)

GetSaveOnlyOk returns a tuple with the SaveOnly field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UpdateService) GetSkipBuild ¶

func (o *UpdateService) GetSkipBuild() bool

GetSkipBuild returns the SkipBuild field value if set, zero value otherwise.

func (*UpdateService) GetSkipBuildOk ¶

func (o *UpdateService) GetSkipBuildOk() (*bool, bool)

GetSkipBuildOk returns a tuple with the SkipBuild field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UpdateService) HasDefinition ¶

func (o *UpdateService) HasDefinition() bool

HasDefinition returns a boolean if a field has been set.

func (*UpdateService) HasMetadata ¶

func (o *UpdateService) HasMetadata() bool

HasMetadata returns a boolean if a field has been set.

func (*UpdateService) HasSaveOnly ¶

func (o *UpdateService) HasSaveOnly() bool

HasSaveOnly returns a boolean if a field has been set.

func (*UpdateService) HasSkipBuild ¶

func (o *UpdateService) HasSkipBuild() bool

HasSkipBuild returns a boolean if a field has been set.

func (UpdateService) MarshalJSON ¶

func (o UpdateService) MarshalJSON() ([]byte, error)

func (*UpdateService) SetDefinition ¶

func (o *UpdateService) SetDefinition(v DeploymentDefinition)

SetDefinition gets a reference to the given DeploymentDefinition and assigns it to the Definition field.

func (*UpdateService) SetMetadata ¶

func (o *UpdateService) SetMetadata(v DeploymentMetadata)

SetMetadata gets a reference to the given DeploymentMetadata and assigns it to the Metadata field.

func (*UpdateService) SetSaveOnly ¶

func (o *UpdateService) SetSaveOnly(v bool)

SetSaveOnly gets a reference to the given bool and assigns it to the SaveOnly field.

func (*UpdateService) SetSkipBuild ¶

func (o *UpdateService) SetSkipBuild(v bool)

SetSkipBuild gets a reference to the given bool and assigns it to the SkipBuild field.

type UpdateServiceReply ¶

type UpdateServiceReply struct {
	Service *Service `json:"service,omitempty"`
}

UpdateServiceReply struct for UpdateServiceReply

func NewUpdateServiceReply ¶

func NewUpdateServiceReply() *UpdateServiceReply

NewUpdateServiceReply instantiates a new UpdateServiceReply 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 NewUpdateServiceReplyWithDefaults ¶

func NewUpdateServiceReplyWithDefaults() *UpdateServiceReply

NewUpdateServiceReplyWithDefaults instantiates a new UpdateServiceReply 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 (*UpdateServiceReply) GetService ¶

func (o *UpdateServiceReply) GetService() Service

GetService returns the Service field value if set, zero value otherwise.

func (*UpdateServiceReply) GetServiceOk ¶

func (o *UpdateServiceReply) GetServiceOk() (*Service, bool)

GetServiceOk returns a tuple with the Service field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UpdateServiceReply) HasService ¶

func (o *UpdateServiceReply) HasService() bool

HasService returns a boolean if a field has been set.

func (UpdateServiceReply) MarshalJSON ¶

func (o UpdateServiceReply) MarshalJSON() ([]byte, error)

func (*UpdateServiceReply) SetService ¶

func (o *UpdateServiceReply) SetService(v Service)

SetService gets a reference to the given Service and assigns it to the Service field.

type UpdateUserRequestUserUpdateBody ¶

type UpdateUserRequestUserUpdateBody struct {
	Id                   *string `json:"id,omitempty"`
	Email                *string `json:"email,omitempty"`
	CurrentPassword      *string `json:"current_password,omitempty"`
	Password             *string `json:"password,omitempty"`
	NewsletterSubscribed *bool   `json:"newsletter_subscribed,omitempty"`
	Name                 *string `json:"name,omitempty"`
}

UpdateUserRequestUserUpdateBody struct for UpdateUserRequestUserUpdateBody

func NewUpdateUserRequestUserUpdateBody ¶

func NewUpdateUserRequestUserUpdateBody() *UpdateUserRequestUserUpdateBody

NewUpdateUserRequestUserUpdateBody instantiates a new UpdateUserRequestUserUpdateBody 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 NewUpdateUserRequestUserUpdateBodyWithDefaults ¶

func NewUpdateUserRequestUserUpdateBodyWithDefaults() *UpdateUserRequestUserUpdateBody

NewUpdateUserRequestUserUpdateBodyWithDefaults instantiates a new UpdateUserRequestUserUpdateBody 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 (*UpdateUserRequestUserUpdateBody) GetCurrentPassword ¶

func (o *UpdateUserRequestUserUpdateBody) GetCurrentPassword() string

GetCurrentPassword returns the CurrentPassword field value if set, zero value otherwise.

func (*UpdateUserRequestUserUpdateBody) GetCurrentPasswordOk ¶

func (o *UpdateUserRequestUserUpdateBody) GetCurrentPasswordOk() (*string, bool)

GetCurrentPasswordOk returns a tuple with the CurrentPassword field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UpdateUserRequestUserUpdateBody) GetEmail ¶

GetEmail returns the Email field value if set, zero value otherwise.

func (*UpdateUserRequestUserUpdateBody) GetEmailOk ¶

func (o *UpdateUserRequestUserUpdateBody) GetEmailOk() (*string, bool)

GetEmailOk returns a tuple with the Email field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UpdateUserRequestUserUpdateBody) GetId ¶

GetId returns the Id field value if set, zero value otherwise.

func (*UpdateUserRequestUserUpdateBody) GetIdOk ¶

func (o *UpdateUserRequestUserUpdateBody) 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 (*UpdateUserRequestUserUpdateBody) GetName ¶

GetName returns the Name field value if set, zero value otherwise.

func (*UpdateUserRequestUserUpdateBody) GetNameOk ¶

func (o *UpdateUserRequestUserUpdateBody) 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 (*UpdateUserRequestUserUpdateBody) GetNewsletterSubscribed ¶

func (o *UpdateUserRequestUserUpdateBody) GetNewsletterSubscribed() bool

GetNewsletterSubscribed returns the NewsletterSubscribed field value if set, zero value otherwise.

func (*UpdateUserRequestUserUpdateBody) GetNewsletterSubscribedOk ¶

func (o *UpdateUserRequestUserUpdateBody) GetNewsletterSubscribedOk() (*bool, bool)

GetNewsletterSubscribedOk returns a tuple with the NewsletterSubscribed field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UpdateUserRequestUserUpdateBody) GetPassword ¶

func (o *UpdateUserRequestUserUpdateBody) GetPassword() string

GetPassword returns the Password field value if set, zero value otherwise.

func (*UpdateUserRequestUserUpdateBody) GetPasswordOk ¶

func (o *UpdateUserRequestUserUpdateBody) GetPasswordOk() (*string, bool)

GetPasswordOk returns a tuple with the Password field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UpdateUserRequestUserUpdateBody) HasCurrentPassword ¶

func (o *UpdateUserRequestUserUpdateBody) HasCurrentPassword() bool

HasCurrentPassword returns a boolean if a field has been set.

func (*UpdateUserRequestUserUpdateBody) HasEmail ¶

func (o *UpdateUserRequestUserUpdateBody) HasEmail() bool

HasEmail returns a boolean if a field has been set.

func (*UpdateUserRequestUserUpdateBody) HasId ¶

HasId returns a boolean if a field has been set.

func (*UpdateUserRequestUserUpdateBody) HasName ¶

HasName returns a boolean if a field has been set.

func (*UpdateUserRequestUserUpdateBody) HasNewsletterSubscribed ¶

func (o *UpdateUserRequestUserUpdateBody) HasNewsletterSubscribed() bool

HasNewsletterSubscribed returns a boolean if a field has been set.

func (*UpdateUserRequestUserUpdateBody) HasPassword ¶

func (o *UpdateUserRequestUserUpdateBody) HasPassword() bool

HasPassword returns a boolean if a field has been set.

func (UpdateUserRequestUserUpdateBody) MarshalJSON ¶

func (o UpdateUserRequestUserUpdateBody) MarshalJSON() ([]byte, error)

func (*UpdateUserRequestUserUpdateBody) SetCurrentPassword ¶

func (o *UpdateUserRequestUserUpdateBody) SetCurrentPassword(v string)

SetCurrentPassword gets a reference to the given string and assigns it to the CurrentPassword field.

func (*UpdateUserRequestUserUpdateBody) SetEmail ¶

func (o *UpdateUserRequestUserUpdateBody) SetEmail(v string)

SetEmail gets a reference to the given string and assigns it to the Email field.

func (*UpdateUserRequestUserUpdateBody) SetId ¶

SetId gets a reference to the given string and assigns it to the Id field.

func (*UpdateUserRequestUserUpdateBody) SetName ¶

SetName gets a reference to the given string and assigns it to the Name field.

func (*UpdateUserRequestUserUpdateBody) SetNewsletterSubscribed ¶

func (o *UpdateUserRequestUserUpdateBody) SetNewsletterSubscribed(v bool)

SetNewsletterSubscribed gets a reference to the given bool and assigns it to the NewsletterSubscribed field.

func (*UpdateUserRequestUserUpdateBody) SetPassword ¶

func (o *UpdateUserRequestUserUpdateBody) SetPassword(v string)

SetPassword gets a reference to the given string and assigns it to the Password field.

type UpsertSignupQualificationReply ¶

type UpsertSignupQualificationReply struct {
	Organization *Organization `json:"organization,omitempty"`
}

UpsertSignupQualificationReply struct for UpsertSignupQualificationReply

func NewUpsertSignupQualificationReply ¶

func NewUpsertSignupQualificationReply() *UpsertSignupQualificationReply

NewUpsertSignupQualificationReply instantiates a new UpsertSignupQualificationReply 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 NewUpsertSignupQualificationReplyWithDefaults ¶

func NewUpsertSignupQualificationReplyWithDefaults() *UpsertSignupQualificationReply

NewUpsertSignupQualificationReplyWithDefaults instantiates a new UpsertSignupQualificationReply 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 (*UpsertSignupQualificationReply) GetOrganization ¶

func (o *UpsertSignupQualificationReply) GetOrganization() Organization

GetOrganization returns the Organization field value if set, zero value otherwise.

func (*UpsertSignupQualificationReply) GetOrganizationOk ¶

func (o *UpsertSignupQualificationReply) GetOrganizationOk() (*Organization, bool)

GetOrganizationOk returns a tuple with the Organization field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UpsertSignupQualificationReply) HasOrganization ¶

func (o *UpsertSignupQualificationReply) HasOrganization() bool

HasOrganization returns a boolean if a field has been set.

func (UpsertSignupQualificationReply) MarshalJSON ¶

func (o UpsertSignupQualificationReply) MarshalJSON() ([]byte, error)

func (*UpsertSignupQualificationReply) SetOrganization ¶

func (o *UpsertSignupQualificationReply) SetOrganization(v Organization)

SetOrganization gets a reference to the given Organization and assigns it to the Organization field.

type UpsertSignupQualificationRequest ¶

type UpsertSignupQualificationRequest struct {
	SignupQualification map[string]interface{} `json:"signup_qualification,omitempty"`
}

UpsertSignupQualificationRequest struct for UpsertSignupQualificationRequest

func NewUpsertSignupQualificationRequest ¶

func NewUpsertSignupQualificationRequest() *UpsertSignupQualificationRequest

NewUpsertSignupQualificationRequest instantiates a new UpsertSignupQualificationRequest 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 NewUpsertSignupQualificationRequestWithDefaults ¶

func NewUpsertSignupQualificationRequestWithDefaults() *UpsertSignupQualificationRequest

NewUpsertSignupQualificationRequestWithDefaults instantiates a new UpsertSignupQualificationRequest 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 (*UpsertSignupQualificationRequest) GetSignupQualification ¶

func (o *UpsertSignupQualificationRequest) GetSignupQualification() map[string]interface{}

GetSignupQualification returns the SignupQualification field value if set, zero value otherwise.

func (*UpsertSignupQualificationRequest) GetSignupQualificationOk ¶

func (o *UpsertSignupQualificationRequest) GetSignupQualificationOk() (map[string]interface{}, bool)

GetSignupQualificationOk returns a tuple with the SignupQualification field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UpsertSignupQualificationRequest) HasSignupQualification ¶

func (o *UpsertSignupQualificationRequest) HasSignupQualification() bool

HasSignupQualification returns a boolean if a field has been set.

func (UpsertSignupQualificationRequest) MarshalJSON ¶

func (o UpsertSignupQualificationRequest) MarshalJSON() ([]byte, error)

func (*UpsertSignupQualificationRequest) SetSignupQualification ¶

func (o *UpsertSignupQualificationRequest) SetSignupQualification(v map[string]interface{})

SetSignupQualification gets a reference to the given map[string]interface{} and assigns it to the SignupQualification field.

type Usage ¶

type Usage struct {
	OrganizationId *string                 `json:"organization_id,omitempty"`
	Periods        *map[string]PeriodUsage `json:"periods,omitempty"`
}

Usage struct for Usage

func NewUsage ¶

func NewUsage() *Usage

NewUsage instantiates a new Usage 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 NewUsageWithDefaults ¶

func NewUsageWithDefaults() *Usage

NewUsageWithDefaults instantiates a new Usage 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 (*Usage) GetOrganizationId ¶

func (o *Usage) GetOrganizationId() string

GetOrganizationId returns the OrganizationId field value if set, zero value otherwise.

func (*Usage) GetOrganizationIdOk ¶

func (o *Usage) GetOrganizationIdOk() (*string, bool)

GetOrganizationIdOk returns a tuple with the OrganizationId field value if set, nil otherwise and a boolean to check if the value has been set.

func (*Usage) GetPeriods ¶

func (o *Usage) GetPeriods() map[string]PeriodUsage

GetPeriods returns the Periods field value if set, zero value otherwise.

func (*Usage) GetPeriodsOk ¶

func (o *Usage) GetPeriodsOk() (*map[string]PeriodUsage, bool)

GetPeriodsOk returns a tuple with the Periods field value if set, nil otherwise and a boolean to check if the value has been set.

func (*Usage) HasOrganizationId ¶

func (o *Usage) HasOrganizationId() bool

HasOrganizationId returns a boolean if a field has been set.

func (*Usage) HasPeriods ¶

func (o *Usage) HasPeriods() bool

HasPeriods returns a boolean if a field has been set.

func (Usage) MarshalJSON ¶

func (o Usage) MarshalJSON() ([]byte, error)

func (*Usage) SetOrganizationId ¶

func (o *Usage) SetOrganizationId(v string)

SetOrganizationId gets a reference to the given string and assigns it to the OrganizationId field.

func (*Usage) SetPeriods ¶

func (o *Usage) SetPeriods(v map[string]PeriodUsage)

SetPeriods gets a reference to the given map[string]PeriodUsage and assigns it to the Periods field.

type UsageDetails ¶

type UsageDetails struct {
	OrganizationId       *string    `json:"organization_id,omitempty"`
	InstanceId           *string    `json:"instance_id,omitempty"`
	AppId                *string    `json:"app_id,omitempty"`
	AppName              *string    `json:"app_name,omitempty"`
	ServiceId            *string    `json:"service_id,omitempty"`
	ServiceName          *string    `json:"service_name,omitempty"`
	RegionalDeploymentId *string    `json:"regional_deployment_id,omitempty"`
	Region               *string    `json:"region,omitempty"`
	DeploymentId         *string    `json:"deployment_id,omitempty"`
	InstanceType         *string    `json:"instance_type,omitempty"`
	DurationSeconds      *int64     `json:"duration_seconds,omitempty"`
	StartedAt            *time.Time `json:"started_at,omitempty"`
	TerminatedAt         *time.Time `json:"terminated_at,omitempty"`
}

UsageDetails struct for UsageDetails

func NewUsageDetails ¶

func NewUsageDetails() *UsageDetails

NewUsageDetails instantiates a new UsageDetails 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 NewUsageDetailsWithDefaults ¶

func NewUsageDetailsWithDefaults() *UsageDetails

NewUsageDetailsWithDefaults instantiates a new UsageDetails 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 (*UsageDetails) GetAppId ¶

func (o *UsageDetails) GetAppId() string

GetAppId returns the AppId field value if set, zero value otherwise.

func (*UsageDetails) GetAppIdOk ¶

func (o *UsageDetails) GetAppIdOk() (*string, bool)

GetAppIdOk returns a tuple with the AppId field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UsageDetails) GetAppName ¶

func (o *UsageDetails) GetAppName() string

GetAppName returns the AppName field value if set, zero value otherwise.

func (*UsageDetails) GetAppNameOk ¶

func (o *UsageDetails) GetAppNameOk() (*string, bool)

GetAppNameOk returns a tuple with the AppName field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UsageDetails) GetDeploymentId ¶

func (o *UsageDetails) GetDeploymentId() string

GetDeploymentId returns the DeploymentId field value if set, zero value otherwise.

func (*UsageDetails) GetDeploymentIdOk ¶

func (o *UsageDetails) GetDeploymentIdOk() (*string, bool)

GetDeploymentIdOk returns a tuple with the DeploymentId field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UsageDetails) GetDurationSeconds ¶

func (o *UsageDetails) GetDurationSeconds() int64

GetDurationSeconds returns the DurationSeconds field value if set, zero value otherwise.

func (*UsageDetails) GetDurationSecondsOk ¶

func (o *UsageDetails) GetDurationSecondsOk() (*int64, bool)

GetDurationSecondsOk returns a tuple with the DurationSeconds field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UsageDetails) GetInstanceId ¶

func (o *UsageDetails) GetInstanceId() string

GetInstanceId returns the InstanceId field value if set, zero value otherwise.

func (*UsageDetails) GetInstanceIdOk ¶

func (o *UsageDetails) GetInstanceIdOk() (*string, bool)

GetInstanceIdOk returns a tuple with the InstanceId field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UsageDetails) GetInstanceType ¶

func (o *UsageDetails) GetInstanceType() string

GetInstanceType returns the InstanceType field value if set, zero value otherwise.

func (*UsageDetails) GetInstanceTypeOk ¶

func (o *UsageDetails) GetInstanceTypeOk() (*string, bool)

GetInstanceTypeOk returns a tuple with the InstanceType field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UsageDetails) GetOrganizationId ¶

func (o *UsageDetails) GetOrganizationId() string

GetOrganizationId returns the OrganizationId field value if set, zero value otherwise.

func (*UsageDetails) GetOrganizationIdOk ¶

func (o *UsageDetails) GetOrganizationIdOk() (*string, bool)

GetOrganizationIdOk returns a tuple with the OrganizationId field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UsageDetails) GetRegion ¶

func (o *UsageDetails) GetRegion() string

GetRegion returns the Region field value if set, zero value otherwise.

func (*UsageDetails) GetRegionOk ¶

func (o *UsageDetails) GetRegionOk() (*string, bool)

GetRegionOk returns a tuple with the Region field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UsageDetails) GetRegionalDeploymentId ¶

func (o *UsageDetails) GetRegionalDeploymentId() string

GetRegionalDeploymentId returns the RegionalDeploymentId field value if set, zero value otherwise.

func (*UsageDetails) GetRegionalDeploymentIdOk ¶

func (o *UsageDetails) GetRegionalDeploymentIdOk() (*string, bool)

GetRegionalDeploymentIdOk returns a tuple with the RegionalDeploymentId field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UsageDetails) GetServiceId ¶

func (o *UsageDetails) GetServiceId() string

GetServiceId returns the ServiceId field value if set, zero value otherwise.

func (*UsageDetails) GetServiceIdOk ¶

func (o *UsageDetails) GetServiceIdOk() (*string, bool)

GetServiceIdOk returns a tuple with the ServiceId field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UsageDetails) GetServiceName ¶

func (o *UsageDetails) GetServiceName() string

GetServiceName returns the ServiceName field value if set, zero value otherwise.

func (*UsageDetails) GetServiceNameOk ¶

func (o *UsageDetails) 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 (*UsageDetails) GetStartedAt ¶

func (o *UsageDetails) GetStartedAt() time.Time

GetStartedAt returns the StartedAt field value if set, zero value otherwise.

func (*UsageDetails) GetStartedAtOk ¶

func (o *UsageDetails) GetStartedAtOk() (*time.Time, bool)

GetStartedAtOk returns a tuple with the StartedAt field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UsageDetails) GetTerminatedAt ¶

func (o *UsageDetails) GetTerminatedAt() time.Time

GetTerminatedAt returns the TerminatedAt field value if set, zero value otherwise.

func (*UsageDetails) GetTerminatedAtOk ¶

func (o *UsageDetails) GetTerminatedAtOk() (*time.Time, bool)

GetTerminatedAtOk returns a tuple with the TerminatedAt field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UsageDetails) HasAppId ¶

func (o *UsageDetails) HasAppId() bool

HasAppId returns a boolean if a field has been set.

func (*UsageDetails) HasAppName ¶

func (o *UsageDetails) HasAppName() bool

HasAppName returns a boolean if a field has been set.

func (*UsageDetails) HasDeploymentId ¶

func (o *UsageDetails) HasDeploymentId() bool

HasDeploymentId returns a boolean if a field has been set.

func (*UsageDetails) HasDurationSeconds ¶

func (o *UsageDetails) HasDurationSeconds() bool

HasDurationSeconds returns a boolean if a field has been set.

func (*UsageDetails) HasInstanceId ¶

func (o *UsageDetails) HasInstanceId() bool

HasInstanceId returns a boolean if a field has been set.

func (*UsageDetails) HasInstanceType ¶

func (o *UsageDetails) HasInstanceType() bool

HasInstanceType returns a boolean if a field has been set.

func (*UsageDetails) HasOrganizationId ¶

func (o *UsageDetails) HasOrganizationId() bool

HasOrganizationId returns a boolean if a field has been set.

func (*UsageDetails) HasRegion ¶

func (o *UsageDetails) HasRegion() bool

HasRegion returns a boolean if a field has been set.

func (*UsageDetails) HasRegionalDeploymentId ¶

func (o *UsageDetails) HasRegionalDeploymentId() bool

HasRegionalDeploymentId returns a boolean if a field has been set.

func (*UsageDetails) HasServiceId ¶

func (o *UsageDetails) HasServiceId() bool

HasServiceId returns a boolean if a field has been set.

func (*UsageDetails) HasServiceName ¶

func (o *UsageDetails) HasServiceName() bool

HasServiceName returns a boolean if a field has been set.

func (*UsageDetails) HasStartedAt ¶

func (o *UsageDetails) HasStartedAt() bool

HasStartedAt returns a boolean if a field has been set.

func (*UsageDetails) HasTerminatedAt ¶

func (o *UsageDetails) HasTerminatedAt() bool

HasTerminatedAt returns a boolean if a field has been set.

func (UsageDetails) MarshalJSON ¶

func (o UsageDetails) MarshalJSON() ([]byte, error)

func (*UsageDetails) SetAppId ¶

func (o *UsageDetails) SetAppId(v string)

SetAppId gets a reference to the given string and assigns it to the AppId field.

func (*UsageDetails) SetAppName ¶

func (o *UsageDetails) SetAppName(v string)

SetAppName gets a reference to the given string and assigns it to the AppName field.

func (*UsageDetails) SetDeploymentId ¶

func (o *UsageDetails) SetDeploymentId(v string)

SetDeploymentId gets a reference to the given string and assigns it to the DeploymentId field.

func (*UsageDetails) SetDurationSeconds ¶

func (o *UsageDetails) SetDurationSeconds(v int64)

SetDurationSeconds gets a reference to the given int64 and assigns it to the DurationSeconds field.

func (*UsageDetails) SetInstanceId ¶

func (o *UsageDetails) SetInstanceId(v string)

SetInstanceId gets a reference to the given string and assigns it to the InstanceId field.

func (*UsageDetails) SetInstanceType ¶

func (o *UsageDetails) SetInstanceType(v string)

SetInstanceType gets a reference to the given string and assigns it to the InstanceType field.

func (*UsageDetails) SetOrganizationId ¶

func (o *UsageDetails) SetOrganizationId(v string)

SetOrganizationId gets a reference to the given string and assigns it to the OrganizationId field.

func (*UsageDetails) SetRegion ¶

func (o *UsageDetails) SetRegion(v string)

SetRegion gets a reference to the given string and assigns it to the Region field.

func (*UsageDetails) SetRegionalDeploymentId ¶

func (o *UsageDetails) SetRegionalDeploymentId(v string)

SetRegionalDeploymentId gets a reference to the given string and assigns it to the RegionalDeploymentId field.

func (*UsageDetails) SetServiceId ¶

func (o *UsageDetails) SetServiceId(v string)

SetServiceId gets a reference to the given string and assigns it to the ServiceId field.

func (*UsageDetails) SetServiceName ¶

func (o *UsageDetails) SetServiceName(v string)

SetServiceName gets a reference to the given string and assigns it to the ServiceName field.

func (*UsageDetails) SetStartedAt ¶

func (o *UsageDetails) SetStartedAt(v time.Time)

SetStartedAt gets a reference to the given time.Time and assigns it to the StartedAt field.

func (*UsageDetails) SetTerminatedAt ¶

func (o *UsageDetails) SetTerminatedAt(v time.Time)

SetTerminatedAt gets a reference to the given time.Time and assigns it to the TerminatedAt field.

type UsagesApi ¶

type UsagesApi interface {

	/*
		GetOrganizationUsage Get organization usage

		@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
		@return ApiGetOrganizationUsageRequest
	*/
	GetOrganizationUsage(ctx context.Context) ApiGetOrganizationUsageRequest

	// GetOrganizationUsageExecute executes the request
	//  @return GetOrganizationUsageReply
	GetOrganizationUsageExecute(r ApiGetOrganizationUsageRequest) (*GetOrganizationUsageReply, *http.Response, error)

	/*
		GetOrganizationUsageDetails Get organization usage details

		@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
		@return ApiGetOrganizationUsageDetailsRequest
	*/
	GetOrganizationUsageDetails(ctx context.Context) ApiGetOrganizationUsageDetailsRequest

	// GetOrganizationUsageDetailsExecute executes the request
	//  @return GetOrganizationUsageDetailsReply
	GetOrganizationUsageDetailsExecute(r ApiGetOrganizationUsageDetailsRequest) (*GetOrganizationUsageDetailsReply, *http.Response, error)
}

type UsagesApiService ¶

type UsagesApiService service

UsagesApiService UsagesApi service

func (*UsagesApiService) GetOrganizationUsage ¶

func (a *UsagesApiService) GetOrganizationUsage(ctx context.Context) ApiGetOrganizationUsageRequest

GetOrganizationUsage Get organization usage

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@return ApiGetOrganizationUsageRequest

func (*UsagesApiService) GetOrganizationUsageDetails ¶

func (a *UsagesApiService) GetOrganizationUsageDetails(ctx context.Context) ApiGetOrganizationUsageDetailsRequest

GetOrganizationUsageDetails Get organization usage details

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@return ApiGetOrganizationUsageDetailsRequest

func (*UsagesApiService) GetOrganizationUsageDetailsExecute ¶

Execute executes the request

@return GetOrganizationUsageDetailsReply

func (*UsagesApiService) GetOrganizationUsageExecute ¶

Execute executes the request

@return GetOrganizationUsageReply

type User ¶

type User struct {
	Id                      *string     `json:"id,omitempty"`
	Email                   *string     `json:"email,omitempty"`
	AvatarUrl               *string     `json:"avatar_url,omitempty"`
	TwoFactorAuthentication *bool       `json:"two_factor_authentication,omitempty"`
	LastLogin               *time.Time  `json:"last_login,omitempty"`
	LastLoginIp             *string     `json:"last_login_ip,omitempty"`
	UpdatedAt               *time.Time  `json:"updated_at,omitempty"`
	CreatedAt               *time.Time  `json:"created_at,omitempty"`
	NewsletterSubscribed    *bool       `json:"newsletter_subscribed,omitempty"`
	GithubId                *string     `json:"github_id,omitempty"`
	GithubUser              *string     `json:"github_user,omitempty"`
	Flags                   []UserFlags `json:"flags,omitempty"`
	Name                    *string     `json:"name,omitempty"`
	EmailValidated          *bool       `json:"email_validated,omitempty"`
}

User struct for User

func NewUser ¶

func NewUser() *User

NewUser instantiates a new User 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 NewUserWithDefaults ¶

func NewUserWithDefaults() *User

NewUserWithDefaults instantiates a new User 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 (*User) GetAvatarUrl ¶

func (o *User) GetAvatarUrl() string

GetAvatarUrl returns the AvatarUrl field value if set, zero value otherwise.

func (*User) GetAvatarUrlOk ¶

func (o *User) GetAvatarUrlOk() (*string, bool)

GetAvatarUrlOk returns a tuple with the AvatarUrl field value if set, nil otherwise and a boolean to check if the value has been set.

func (*User) GetCreatedAt ¶

func (o *User) GetCreatedAt() time.Time

GetCreatedAt returns the CreatedAt field value if set, zero value otherwise.

func (*User) GetCreatedAtOk ¶

func (o *User) GetCreatedAtOk() (*time.Time, bool)

GetCreatedAtOk returns a tuple with the CreatedAt field value if set, nil otherwise and a boolean to check if the value has been set.

func (*User) GetEmail ¶

func (o *User) GetEmail() string

GetEmail returns the Email field value if set, zero value otherwise.

func (*User) GetEmailOk ¶

func (o *User) GetEmailOk() (*string, bool)

GetEmailOk returns a tuple with the Email field value if set, nil otherwise and a boolean to check if the value has been set.

func (*User) GetEmailValidated ¶

func (o *User) GetEmailValidated() bool

GetEmailValidated returns the EmailValidated field value if set, zero value otherwise.

func (*User) GetEmailValidatedOk ¶

func (o *User) GetEmailValidatedOk() (*bool, bool)

GetEmailValidatedOk returns a tuple with the EmailValidated field value if set, nil otherwise and a boolean to check if the value has been set.

func (*User) GetFlags ¶

func (o *User) GetFlags() []UserFlags

GetFlags returns the Flags field value if set, zero value otherwise.

func (*User) GetFlagsOk ¶

func (o *User) GetFlagsOk() ([]UserFlags, bool)

GetFlagsOk returns a tuple with the Flags field value if set, nil otherwise and a boolean to check if the value has been set.

func (*User) GetGithubId ¶

func (o *User) GetGithubId() string

GetGithubId returns the GithubId field value if set, zero value otherwise.

func (*User) GetGithubIdOk ¶

func (o *User) GetGithubIdOk() (*string, bool)

GetGithubIdOk returns a tuple with the GithubId field value if set, nil otherwise and a boolean to check if the value has been set.

func (*User) GetGithubUser ¶

func (o *User) GetGithubUser() string

GetGithubUser returns the GithubUser field value if set, zero value otherwise.

func (*User) GetGithubUserOk ¶

func (o *User) GetGithubUserOk() (*string, bool)

GetGithubUserOk returns a tuple with the GithubUser field value if set, nil otherwise and a boolean to check if the value has been set.

func (*User) GetId ¶

func (o *User) GetId() string

GetId returns the Id field value if set, zero value otherwise.

func (*User) GetIdOk ¶

func (o *User) 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 (*User) GetLastLogin ¶

func (o *User) GetLastLogin() time.Time

GetLastLogin returns the LastLogin field value if set, zero value otherwise.

func (*User) GetLastLoginIp ¶

func (o *User) GetLastLoginIp() string

GetLastLoginIp returns the LastLoginIp field value if set, zero value otherwise.

func (*User) GetLastLoginIpOk ¶

func (o *User) GetLastLoginIpOk() (*string, bool)

GetLastLoginIpOk returns a tuple with the LastLoginIp field value if set, nil otherwise and a boolean to check if the value has been set.

func (*User) GetLastLoginOk ¶

func (o *User) GetLastLoginOk() (*time.Time, bool)

GetLastLoginOk returns a tuple with the LastLogin field value if set, nil otherwise and a boolean to check if the value has been set.

func (*User) GetName ¶

func (o *User) GetName() string

GetName returns the Name field value if set, zero value otherwise.

func (*User) GetNameOk ¶

func (o *User) 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 (*User) GetNewsletterSubscribed ¶

func (o *User) GetNewsletterSubscribed() bool

GetNewsletterSubscribed returns the NewsletterSubscribed field value if set, zero value otherwise.

func (*User) GetNewsletterSubscribedOk ¶

func (o *User) GetNewsletterSubscribedOk() (*bool, bool)

GetNewsletterSubscribedOk returns a tuple with the NewsletterSubscribed field value if set, nil otherwise and a boolean to check if the value has been set.

func (*User) GetTwoFactorAuthentication ¶

func (o *User) GetTwoFactorAuthentication() bool

GetTwoFactorAuthentication returns the TwoFactorAuthentication field value if set, zero value otherwise.

func (*User) GetTwoFactorAuthenticationOk ¶

func (o *User) GetTwoFactorAuthenticationOk() (*bool, bool)

GetTwoFactorAuthenticationOk returns a tuple with the TwoFactorAuthentication field value if set, nil otherwise and a boolean to check if the value has been set.

func (*User) GetUpdatedAt ¶

func (o *User) GetUpdatedAt() time.Time

GetUpdatedAt returns the UpdatedAt field value if set, zero value otherwise.

func (*User) GetUpdatedAtOk ¶

func (o *User) GetUpdatedAtOk() (*time.Time, bool)

GetUpdatedAtOk returns a tuple with the UpdatedAt field value if set, nil otherwise and a boolean to check if the value has been set.

func (*User) HasAvatarUrl ¶

func (o *User) HasAvatarUrl() bool

HasAvatarUrl returns a boolean if a field has been set.

func (*User) HasCreatedAt ¶

func (o *User) HasCreatedAt() bool

HasCreatedAt returns a boolean if a field has been set.

func (*User) HasEmail ¶

func (o *User) HasEmail() bool

HasEmail returns a boolean if a field has been set.

func (*User) HasEmailValidated ¶

func (o *User) HasEmailValidated() bool

HasEmailValidated returns a boolean if a field has been set.

func (*User) HasFlags ¶

func (o *User) HasFlags() bool

HasFlags returns a boolean if a field has been set.

func (*User) HasGithubId ¶

func (o *User) HasGithubId() bool

HasGithubId returns a boolean if a field has been set.

func (*User) HasGithubUser ¶

func (o *User) HasGithubUser() bool

HasGithubUser returns a boolean if a field has been set.

func (*User) HasId ¶

func (o *User) HasId() bool

HasId returns a boolean if a field has been set.

func (*User) HasLastLogin ¶

func (o *User) HasLastLogin() bool

HasLastLogin returns a boolean if a field has been set.

func (*User) HasLastLoginIp ¶

func (o *User) HasLastLoginIp() bool

HasLastLoginIp returns a boolean if a field has been set.

func (*User) HasName ¶

func (o *User) HasName() bool

HasName returns a boolean if a field has been set.

func (*User) HasNewsletterSubscribed ¶

func (o *User) HasNewsletterSubscribed() bool

HasNewsletterSubscribed returns a boolean if a field has been set.

func (*User) HasTwoFactorAuthentication ¶

func (o *User) HasTwoFactorAuthentication() bool

HasTwoFactorAuthentication returns a boolean if a field has been set.

func (*User) HasUpdatedAt ¶

func (o *User) HasUpdatedAt() bool

HasUpdatedAt returns a boolean if a field has been set.

func (User) MarshalJSON ¶

func (o User) MarshalJSON() ([]byte, error)

func (*User) SetAvatarUrl ¶

func (o *User) SetAvatarUrl(v string)

SetAvatarUrl gets a reference to the given string and assigns it to the AvatarUrl field.

func (*User) SetCreatedAt ¶

func (o *User) SetCreatedAt(v time.Time)

SetCreatedAt gets a reference to the given time.Time and assigns it to the CreatedAt field.

func (*User) SetEmail ¶

func (o *User) SetEmail(v string)

SetEmail gets a reference to the given string and assigns it to the Email field.

func (*User) SetEmailValidated ¶

func (o *User) SetEmailValidated(v bool)

SetEmailValidated gets a reference to the given bool and assigns it to the EmailValidated field.

func (*User) SetFlags ¶

func (o *User) SetFlags(v []UserFlags)

SetFlags gets a reference to the given []UserFlags and assigns it to the Flags field.

func (*User) SetGithubId ¶

func (o *User) SetGithubId(v string)

SetGithubId gets a reference to the given string and assigns it to the GithubId field.

func (*User) SetGithubUser ¶

func (o *User) SetGithubUser(v string)

SetGithubUser gets a reference to the given string and assigns it to the GithubUser field.

func (*User) SetId ¶

func (o *User) SetId(v string)

SetId gets a reference to the given string and assigns it to the Id field.

func (*User) SetLastLogin ¶

func (o *User) SetLastLogin(v time.Time)

SetLastLogin gets a reference to the given time.Time and assigns it to the LastLogin field.

func (*User) SetLastLoginIp ¶

func (o *User) SetLastLoginIp(v string)

SetLastLoginIp gets a reference to the given string and assigns it to the LastLoginIp field.

func (*User) SetName ¶

func (o *User) SetName(v string)

SetName gets a reference to the given string and assigns it to the Name field.

func (*User) SetNewsletterSubscribed ¶

func (o *User) SetNewsletterSubscribed(v bool)

SetNewsletterSubscribed gets a reference to the given bool and assigns it to the NewsletterSubscribed field.

func (*User) SetTwoFactorAuthentication ¶

func (o *User) SetTwoFactorAuthentication(v bool)

SetTwoFactorAuthentication gets a reference to the given bool and assigns it to the TwoFactorAuthentication field.

func (*User) SetUpdatedAt ¶

func (o *User) SetUpdatedAt(v time.Time)

SetUpdatedAt gets a reference to the given time.Time and assigns it to the UpdatedAt field.

type UserFlags ¶

type UserFlags string

UserFlags the model 'UserFlags'

const (
	USERFLAGS_ADMIN      UserFlags = "ADMIN"
	USERFLAGS_TEST       UserFlags = "TEST"
	USERFLAGS_RESTRICTED UserFlags = "RESTRICTED"
	USERFLAGS_ACTIVE     UserFlags = "ACTIVE"
	USERFLAGS_BETA       UserFlags = "BETA"
)

List of UserFlags

func NewUserFlagsFromValue ¶

func NewUserFlagsFromValue(v string) (*UserFlags, error)

NewUserFlagsFromValue returns a pointer to a valid UserFlags for the value passed as argument, or an error if the value passed is not allowed by the enum

func (UserFlags) IsValid ¶

func (v UserFlags) IsValid() bool

IsValid return true if the value is valid for the enum, false otherwise

func (UserFlags) Ptr ¶

func (v UserFlags) Ptr() *UserFlags

Ptr returns reference to UserFlags value

func (*UserFlags) UnmarshalJSON ¶

func (v *UserFlags) UnmarshalJSON(src []byte) error

type UserReply ¶

type UserReply struct {
	User *User `json:"user,omitempty"`
}

UserReply struct for UserReply

func NewUserReply ¶

func NewUserReply() *UserReply

NewUserReply instantiates a new UserReply 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 NewUserReplyWithDefaults ¶

func NewUserReplyWithDefaults() *UserReply

NewUserReplyWithDefaults instantiates a new UserReply 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 (*UserReply) GetUser ¶

func (o *UserReply) GetUser() User

GetUser returns the User field value if set, zero value otherwise.

func (*UserReply) GetUserOk ¶

func (o *UserReply) GetUserOk() (*User, bool)

GetUserOk returns a tuple with the User field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UserReply) HasUser ¶

func (o *UserReply) HasUser() bool

HasUser returns a boolean if a field has been set.

func (UserReply) MarshalJSON ¶

func (o UserReply) MarshalJSON() ([]byte, error)

func (*UserReply) SetUser ¶

func (o *UserReply) SetUser(v User)

SetUser gets a reference to the given User and assigns it to the User field.

type UserRoleRole ¶

type UserRoleRole string

UserRoleRole the model 'UserRoleRole'

const (
	USERROLEROLE_INVALID UserRoleRole = "INVALID"
	USERROLEROLE_OWNER   UserRoleRole = "OWNER"
)

List of UserRole.Role

func NewUserRoleRoleFromValue ¶

func NewUserRoleRoleFromValue(v string) (*UserRoleRole, error)

NewUserRoleRoleFromValue returns a pointer to a valid UserRoleRole for the value passed as argument, or an error if the value passed is not allowed by the enum

func (UserRoleRole) IsValid ¶

func (v UserRoleRole) IsValid() bool

IsValid return true if the value is valid for the enum, false otherwise

func (UserRoleRole) Ptr ¶

func (v UserRoleRole) Ptr() *UserRoleRole

Ptr returns reference to UserRole.Role value

func (*UserRoleRole) UnmarshalJSON ¶

func (v *UserRoleRole) UnmarshalJSON(src []byte) error

type UsersApi ¶

type UsersApi interface {

	/*
		DeleteUser Delete user

		@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
		@param id The id of the user
		@return ApiDeleteUserRequest
	*/
	DeleteUser(ctx context.Context, id string) ApiDeleteUserRequest

	// DeleteUserExecute executes the request
	//  @return DeleteUserReply
	DeleteUserExecute(r ApiDeleteUserRequest) (*DeleteUserReply, *http.Response, error)
}

type UsersApiService ¶

type UsersApiService service

UsersApiService UsersApi service

func (*UsersApiService) DeleteUser ¶

DeleteUser Delete user

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param id The id of the user
@return ApiDeleteUserRequest

func (*UsersApiService) DeleteUserExecute ¶

Execute executes the request

@return DeleteUserReply

type VerifyDockerImageReply ¶

type VerifyDockerImageReply struct {
	Success *bool                          `json:"success,omitempty"`
	Reason  *string                        `json:"reason,omitempty"`
	Code    *VerifyDockerImageReplyErrCode `json:"code,omitempty"`
}

VerifyDockerImageReply struct for VerifyDockerImageReply

func NewVerifyDockerImageReply ¶

func NewVerifyDockerImageReply() *VerifyDockerImageReply

NewVerifyDockerImageReply instantiates a new VerifyDockerImageReply 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 NewVerifyDockerImageReplyWithDefaults ¶

func NewVerifyDockerImageReplyWithDefaults() *VerifyDockerImageReply

NewVerifyDockerImageReplyWithDefaults instantiates a new VerifyDockerImageReply 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 (*VerifyDockerImageReply) GetCode ¶

GetCode returns the Code field value if set, zero value otherwise.

func (*VerifyDockerImageReply) GetCodeOk ¶

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 (*VerifyDockerImageReply) GetReason ¶

func (o *VerifyDockerImageReply) GetReason() string

GetReason returns the Reason field value if set, zero value otherwise.

func (*VerifyDockerImageReply) GetReasonOk ¶

func (o *VerifyDockerImageReply) 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 (*VerifyDockerImageReply) GetSuccess ¶

func (o *VerifyDockerImageReply) GetSuccess() bool

GetSuccess returns the Success field value if set, zero value otherwise.

func (*VerifyDockerImageReply) GetSuccessOk ¶

func (o *VerifyDockerImageReply) GetSuccessOk() (*bool, bool)

GetSuccessOk returns a tuple with the Success field value if set, nil otherwise and a boolean to check if the value has been set.

func (*VerifyDockerImageReply) HasCode ¶

func (o *VerifyDockerImageReply) HasCode() bool

HasCode returns a boolean if a field has been set.

func (*VerifyDockerImageReply) HasReason ¶

func (o *VerifyDockerImageReply) HasReason() bool

HasReason returns a boolean if a field has been set.

func (*VerifyDockerImageReply) HasSuccess ¶

func (o *VerifyDockerImageReply) HasSuccess() bool

HasSuccess returns a boolean if a field has been set.

func (VerifyDockerImageReply) MarshalJSON ¶

func (o VerifyDockerImageReply) MarshalJSON() ([]byte, error)

func (*VerifyDockerImageReply) SetCode ¶

SetCode gets a reference to the given VerifyDockerImageReplyErrCode and assigns it to the Code field.

func (*VerifyDockerImageReply) SetReason ¶

func (o *VerifyDockerImageReply) SetReason(v string)

SetReason gets a reference to the given string and assigns it to the Reason field.

func (*VerifyDockerImageReply) SetSuccess ¶

func (o *VerifyDockerImageReply) SetSuccess(v bool)

SetSuccess gets a reference to the given bool and assigns it to the Success field.

type VerifyDockerImageReplyErrCode ¶

type VerifyDockerImageReplyErrCode string

VerifyDockerImageReplyErrCode - UNKNOWN: Default value - AUTH_ACCESS_DENIED: The registry denied access to an authenticated request - ANON_ACCESS_DENIED: The registry denied access to an anonymous request - AUTH_NOT_FOUND: The image has not been found after an authenticated request - ANON_NOT_FOUND: The image has not been found after an anonymous request - REGISTRY_ERROR: The registry returned an error - TIMEOUT: The request to the registry timed out - DNS: There was an error trying to resolve the name of the registry - MALFORMED: The provided image name is malformed

const (
	VERIFYDOCKERIMAGEREPLYERRCODE_UNKNOWN            VerifyDockerImageReplyErrCode = "UNKNOWN"
	VERIFYDOCKERIMAGEREPLYERRCODE_AUTH_ACCESS_DENIED VerifyDockerImageReplyErrCode = "AUTH_ACCESS_DENIED"
	VERIFYDOCKERIMAGEREPLYERRCODE_ANON_ACCESS_DENIED VerifyDockerImageReplyErrCode = "ANON_ACCESS_DENIED"
	VERIFYDOCKERIMAGEREPLYERRCODE_AUTH_NOT_FOUND     VerifyDockerImageReplyErrCode = "AUTH_NOT_FOUND"
	VERIFYDOCKERIMAGEREPLYERRCODE_ANON_NOT_FOUND     VerifyDockerImageReplyErrCode = "ANON_NOT_FOUND"
	VERIFYDOCKERIMAGEREPLYERRCODE_REGISTRY_ERROR     VerifyDockerImageReplyErrCode = "REGISTRY_ERROR"
	VERIFYDOCKERIMAGEREPLYERRCODE_TIMEOUT            VerifyDockerImageReplyErrCode = "TIMEOUT"
	VERIFYDOCKERIMAGEREPLYERRCODE_DNS                VerifyDockerImageReplyErrCode = "DNS"
	VERIFYDOCKERIMAGEREPLYERRCODE_MALFORMED          VerifyDockerImageReplyErrCode = "MALFORMED"
)

List of VerifyDockerImageReply.ErrCode

func NewVerifyDockerImageReplyErrCodeFromValue ¶

func NewVerifyDockerImageReplyErrCodeFromValue(v string) (*VerifyDockerImageReplyErrCode, error)

NewVerifyDockerImageReplyErrCodeFromValue returns a pointer to a valid VerifyDockerImageReplyErrCode for the value passed as argument, or an error if the value passed is not allowed by the enum

func (VerifyDockerImageReplyErrCode) IsValid ¶

func (v VerifyDockerImageReplyErrCode) IsValid() bool

IsValid return true if the value is valid for the enum, false otherwise

func (VerifyDockerImageReplyErrCode) Ptr ¶

Ptr returns reference to VerifyDockerImageReply.ErrCode value

func (*VerifyDockerImageReplyErrCode) UnmarshalJSON ¶

func (v *VerifyDockerImageReplyErrCode) UnmarshalJSON(src []byte) error

Source Files ¶

Jump to

Keyboard shortcuts

? : This menu
/ : Search site
f or F : Jump to
y or Y : Canonical URL