openapi

package
v0.0.7-alpha Latest Latest
Warning

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

Go to latest
Published: Aug 13, 2026 License: AGPL-3.0 Imports: 22 Imported by: 0

README

Go API client for openapi

Deploy, debug, and operate applications through the Stackdome REST API on Stackdome Cloud or a self-hosted installation. This API is in alpha and may change before general availability.

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: 0.0.1-alpha
  • 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 openapi "github.com/GIT_USER_ID/GIT_REPO_ID"

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(), openapi.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(), openapi.ContextServerVariables, map[string]string{
	"basePath": "v2",
})

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

URLs Configuration per Operation

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

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

Documentation for API Endpoints

All URIs are relative to http://localhost

Class Method HTTP request Description
DefaultApi ApiV1ApiTokensGet Get /api/v1/api-tokens List all API tokens for the current user
DefaultApi ApiV1ApiTokensIdDelete Delete /api/v1/api-tokens/{id} Revoke an API token
DefaultApi ApiV1ApiTokensIdGet Get /api/v1/api-tokens/{id} Get an API token by ID
DefaultApi ApiV1ApiTokensPost Post /api/v1/api-tokens Create a new API token
DefaultApi ApiV1ApiTokensScopesGet Get /api/v1/api-tokens/scopes List all available API token scopes
DefaultApi ApiV1AuthGithubCallbackGet Get /api/v1/auth/github/callback GitHub OAuth callback
DefaultApi ApiV1AuthGithubGet Get /api/v1/auth/github Initiate GitHub OAuth flow
DefaultApi ApiV1AuthLoginPost Post /api/v1/auth/login User login
DefaultApi ApiV1AuthRefreshPost Post /api/v1/auth/refresh Refresh JWT token
DefaultApi ApiV1ConfigGet Get /api/v1/config Get public application configuration
DefaultApi ApiV1GitIntegrationsGithubManifestCallbackGet Get /api/v1/git-integrations/github/manifest/callback GitHub App manifest redirect target (unauthenticated, state-validated)
DefaultApi ApiV1GitIntegrationsGithubSetupGet Get /api/v1/git-integrations/github/setup Platform GitHub App setup redirect target (unauthenticated, state-validated)
DefaultApi ApiV1InvitesTokenInfoGet Get /api/v1/invites/{token}/info Get public invite info (unauthenticated)
DefaultApi ApiV1OrganizationsIdGet Get /api/v1/organizations/{id} Get an organization
DefaultApi ApiV1OrganizationsIdPut Put /api/v1/organizations/{id} Update an organization
DefaultApi ApiV1OrganizationsOrgIdAdminsGet Get /api/v1/organizations/{org_id}/admins List organization admins
DefaultApi ApiV1OrganizationsOrgIdAdminsPost Post /api/v1/organizations/{org_id}/admins Promote a user to organization admin
DefaultApi ApiV1OrganizationsOrgIdAdminsUserIdDemotePost Post /api/v1/organizations/{org_id}/admins/{user_id}/demote Demote an organization admin
DefaultApi ApiV1OrganizationsOrgIdClustersClusterIdImageRegistriesGet Get /api/v1/organizations/{org_id}/clusters/{cluster_id}/image_registries List all image registries for a cluster
DefaultApi ApiV1OrganizationsOrgIdClustersClusterIdImageRegistriesIdDelete Delete /api/v1/organizations/{org_id}/clusters/{cluster_id}/image_registries/{id} Delete an image registry
DefaultApi ApiV1OrganizationsOrgIdClustersClusterIdImageRegistriesIdGet Get /api/v1/organizations/{org_id}/clusters/{cluster_id}/image_registries/{id} Get a specific image registry
DefaultApi ApiV1OrganizationsOrgIdClustersClusterIdImageRegistriesPost Post /api/v1/organizations/{org_id}/clusters/{cluster_id}/image_registries Create a new image registry
DefaultApi ApiV1OrganizationsOrgIdClustersGet Get /api/v1/organizations/{org_id}/clusters List all clusters for an organization
DefaultApi ApiV1OrganizationsOrgIdClustersIdDelete Delete /api/v1/organizations/{org_id}/clusters/{id} Delete a cluster
DefaultApi ApiV1OrganizationsOrgIdClustersIdGet Get /api/v1/organizations/{org_id}/clusters/{id} Get a specific cluster
DefaultApi ApiV1OrganizationsOrgIdClustersPost Post /api/v1/organizations/{org_id}/clusters Add a new cluster
DefaultApi ApiV1OrganizationsOrgIdGitIntegrationsGet Get /api/v1/organizations/{org_id}/git-integrations List git integrations for the organization
DefaultApi ApiV1OrganizationsOrgIdGitIntegrationsGithubManifestPost Post /api/v1/organizations/{org_id}/git-integrations/github/manifest Start the GitHub App manifest flow for the organization
DefaultApi ApiV1OrganizationsOrgIdGitIntegrationsIdDelete Delete /api/v1/organizations/{org_id}/git-integrations/{id} Delete a git integration
DefaultApi ApiV1OrganizationsOrgIdGitIntegrationsIdGet Get /api/v1/organizations/{org_id}/git-integrations/{id} Get a git integration
DefaultApi ApiV1OrganizationsOrgIdGitIntegrationsIdInstallationsGet Get /api/v1/organizations/{org_id}/git-integrations/{id}/installations List GitHub App installations
DefaultApi ApiV1OrganizationsOrgIdGitIntegrationsIdPut Put /api/v1/organizations/{org_id}/git-integrations/{id} Update a git integration (credential rotation)
DefaultApi ApiV1OrganizationsOrgIdGitIntegrationsIdRepositoriesGet Get /api/v1/organizations/{org_id}/git-integrations/{id}/repositories List repositories visible to the GitHub App installation
DefaultApi ApiV1OrganizationsOrgIdGitIntegrationsIdRepositoriesOwnerRepoBranchesGet Get /api/v1/organizations/{org_id}/git-integrations/{id}/repositories/{owner}/{repo}/branches List repository branches through the GitHub App installation
DefaultApi ApiV1OrganizationsOrgIdGitIntegrationsIdRepositoriesOwnerRepoGet Get /api/v1/organizations/{org_id}/git-integrations/{id}/repositories/{owner}/{repo} Get repository details through the GitHub App installation
DefaultApi ApiV1OrganizationsOrgIdGitIntegrationsIdVerifyPost Post /api/v1/organizations/{org_id}/git-integrations/{id}/verify Verify a git integration against a repository
DefaultApi ApiV1OrganizationsOrgIdGitIntegrationsPost Post /api/v1/organizations/{org_id}/git-integrations Create a git integration for the organization
DefaultApi ApiV1OrganizationsOrgIdImageRegistriesGet Get /api/v1/organizations/{org_id}/image_registries List all image registries for an organisation
DefaultApi ApiV1OrganizationsOrgIdInvitesGet Get /api/v1/organizations/{org_id}/invites List invites for an organization
DefaultApi ApiV1OrganizationsOrgIdInvitesIdDelete Delete /api/v1/organizations/{org_id}/invites/{id} Revoke a pending invite
DefaultApi ApiV1OrganizationsOrgIdInvitesIdGet Get /api/v1/organizations/{org_id}/invites/{id} Get an invite by ID
DefaultApi ApiV1OrganizationsOrgIdInvitesIdResendPost Post /api/v1/organizations/{org_id}/invites/{id}/resend Re-queue invite email for delivery
DefaultApi ApiV1OrganizationsOrgIdInvitesPost Post /api/v1/organizations/{org_id}/invites Create an invite to the organization
DefaultApi ApiV1OrganizationsOrgIdObjectStoresGet Get /api/v1/organizations/{org_id}/object-stores List all object stores the user has access to across all projects
DefaultApi ApiV1OrganizationsOrgIdPostgresAddonsGet Get /api/v1/organizations/{org_id}/postgres-addons List all PostgresAddons the user has access to across all projects
DefaultApi ApiV1OrganizationsOrgIdProjectsGet Get /api/v1/organizations/{org_id}/projects List all projects in an organization
DefaultApi ApiV1OrganizationsOrgIdProjectsPost Post /api/v1/organizations/{org_id}/projects Create a new project
DefaultApi ApiV1OrganizationsOrgIdProjectsProjectNameAddonsPostgresGet Get /api/v1/organizations/{org_id}/projects/{project_name}/addons/postgres List all PostgresAddons for a project
DefaultApi ApiV1OrganizationsOrgIdProjectsProjectNameAddonsPostgresIdActionsBackupPost Post /api/v1/organizations/{org_id}/projects/{project_name}/addons/postgres/{id}/actions/backup Trigger an immediate backup
DefaultApi ApiV1OrganizationsOrgIdProjectsProjectNameAddonsPostgresIdActionsFencePost Post /api/v1/organizations/{org_id}/projects/{project_name}/addons/postgres/{id}/actions/fence Fence or unfence the PostgreSQL cluster
DefaultApi ApiV1OrganizationsOrgIdProjectsProjectNameAddonsPostgresIdActionsHibernatePost Post /api/v1/organizations/{org_id}/projects/{project_name}/addons/postgres/{id}/actions/hibernate Hibernate or wake the PostgreSQL cluster
DefaultApi ApiV1OrganizationsOrgIdProjectsProjectNameAddonsPostgresIdBackupsGet Get /api/v1/organizations/{org_id}/projects/{project_name}/addons/postgres/{id}/backups List backups for a PostgresAddon
DefaultApi ApiV1OrganizationsOrgIdProjectsProjectNameAddonsPostgresIdCredentialsDatabaseGet Get /api/v1/organizations/{org_id}/projects/{project_name}/addons/postgres/{id}/credentials/{database} Get JIT credentials for a PostgresAddon database
DefaultApi ApiV1OrganizationsOrgIdProjectsProjectNameAddonsPostgresIdDelete Delete /api/v1/organizations/{org_id}/projects/{project_name}/addons/postgres/{id} Delete a PostgresAddon
DefaultApi ApiV1OrganizationsOrgIdProjectsProjectNameAddonsPostgresIdGet Get /api/v1/organizations/{org_id}/projects/{project_name}/addons/postgres/{id} Get a specific PostgresAddon
DefaultApi ApiV1OrganizationsOrgIdProjectsProjectNameAddonsPostgresIdPut Put /api/v1/organizations/{org_id}/projects/{project_name}/addons/postgres/{id} Update a PostgresAddon
DefaultApi ApiV1OrganizationsOrgIdProjectsProjectNameAddonsPostgresPost Post /api/v1/organizations/{org_id}/projects/{project_name}/addons/postgres Create a new PostgresAddon
DefaultApi ApiV1OrganizationsOrgIdProjectsProjectNameDelete Delete /api/v1/organizations/{org_id}/projects/{project_name} Delete a project
DefaultApi ApiV1OrganizationsOrgIdProjectsProjectNameGet Get /api/v1/organizations/{org_id}/projects/{project_name} Get a specific project by name
DefaultApi ApiV1OrganizationsOrgIdProjectsProjectNameMembersGet Get /api/v1/organizations/{org_id}/projects/{project_name}/members List members of a project
DefaultApi ApiV1OrganizationsOrgIdProjectsProjectNameMembersIdDelete Delete /api/v1/organizations/{org_id}/projects/{project_name}/members/{id} Remove a member from a project
DefaultApi ApiV1OrganizationsOrgIdProjectsProjectNameMembersIdPut Put /api/v1/organizations/{org_id}/projects/{project_name}/members/{id} Update a project member's role
DefaultApi ApiV1OrganizationsOrgIdProjectsProjectNameMembersPost Post /api/v1/organizations/{org_id}/projects/{project_name}/members Add a member to a project
DefaultApi ApiV1OrganizationsOrgIdProjectsProjectNameObjectStoresGet Get /api/v1/organizations/{org_id}/projects/{project_name}/object-stores List all ObjectStores for a project
DefaultApi ApiV1OrganizationsOrgIdProjectsProjectNameObjectStoresIdDelete Delete /api/v1/organizations/{org_id}/projects/{project_name}/object-stores/{id} Delete an ObjectStore
DefaultApi ApiV1OrganizationsOrgIdProjectsProjectNameObjectStoresIdGet Get /api/v1/organizations/{org_id}/projects/{project_name}/object-stores/{id} Get a specific ObjectStore
DefaultApi ApiV1OrganizationsOrgIdProjectsProjectNameObjectStoresIdPut Put /api/v1/organizations/{org_id}/projects/{project_name}/object-stores/{id} Update an ObjectStore
DefaultApi ApiV1OrganizationsOrgIdProjectsProjectNameObjectStoresPost Post /api/v1/organizations/{org_id}/projects/{project_name}/object-stores Add a new ObjectStore for backup storage
DefaultApi ApiV1OrganizationsOrgIdProjectsProjectNamePut Put /api/v1/organizations/{org_id}/projects/{project_name} Update a project
DefaultApi ApiV1OrganizationsOrgIdProjectsProjectNameSecretsGet Get /api/v1/organizations/{org_id}/projects/{project_name}/secrets List all secrets for a project
DefaultApi ApiV1OrganizationsOrgIdProjectsProjectNameSecretsIdDelete Delete /api/v1/organizations/{org_id}/projects/{project_name}/secrets/{id} Delete a secret
DefaultApi ApiV1OrganizationsOrgIdProjectsProjectNameSecretsIdGet Get /api/v1/organizations/{org_id}/projects/{project_name}/secrets/{id} Get a specific secret
DefaultApi ApiV1OrganizationsOrgIdProjectsProjectNameSecretsIdPut Put /api/v1/organizations/{org_id}/projects/{project_name}/secrets/{id} Update a secret
DefaultApi ApiV1OrganizationsOrgIdProjectsProjectNameSecretsPost Post /api/v1/organizations/{org_id}/projects/{project_name}/secrets Create a new secret
DefaultApi ApiV1OrganizationsOrgIdProjectsProjectNameStacksGet Get /api/v1/organizations/{org_id}/projects/{project_name}/stacks List all stacks for a project
DefaultApi ApiV1OrganizationsOrgIdProjectsProjectNameStacksIdBuildsBuildIdGet Get /api/v1/organizations/{org_id}/projects/{project_name}/stacks/{id}/builds/{build_id} Get a specific build under a stack
DefaultApi ApiV1OrganizationsOrgIdProjectsProjectNameStacksIdBuildsBuildIdLogsGet Get /api/v1/organizations/{org_id}/projects/{project_name}/stacks/{id}/builds/{build_id}/logs Get logs for an image build
DefaultApi ApiV1OrganizationsOrgIdProjectsProjectNameStacksIdBuildsGet Get /api/v1/organizations/{org_id}/projects/{project_name}/stacks/{id}/builds List all builds under a stack
DefaultApi ApiV1OrganizationsOrgIdProjectsProjectNameStacksIdConnectionsConnectionIdDelete Delete /api/v1/organizations/{org_id}/projects/{project_name}/stacks/{id}/connections/{connection_id} Delete stack connection
DefaultApi ApiV1OrganizationsOrgIdProjectsProjectNameStacksIdConnectionsConnectionIdPut Put /api/v1/organizations/{org_id}/projects/{project_name}/stacks/{id}/connections/{connection_id} Update stack connection
DefaultApi ApiV1OrganizationsOrgIdProjectsProjectNameStacksIdConnectionsGet Get /api/v1/organizations/{org_id}/projects/{project_name}/stacks/{id}/connections List stack connections
DefaultApi ApiV1OrganizationsOrgIdProjectsProjectNameStacksIdConnectionsPost Post /api/v1/organizations/{org_id}/projects/{project_name}/stacks/{id}/connections Create stack connection
DefaultApi ApiV1OrganizationsOrgIdProjectsProjectNameStacksIdDelete Delete /api/v1/organizations/{org_id}/projects/{project_name}/stacks/{id} Delete a stack
DefaultApi ApiV1OrganizationsOrgIdProjectsProjectNameStacksIdGet Get /api/v1/organizations/{org_id}/projects/{project_name}/stacks/{id} Get a specific stack
DefaultApi ApiV1OrganizationsOrgIdProjectsProjectNameStacksIdLogsGet Get /api/v1/organizations/{org_id}/projects/{project_name}/stacks/{id}/logs Get logs for a stack
DefaultApi ApiV1OrganizationsOrgIdProjectsProjectNameStacksIdMetricsGet Get /api/v1/organizations/{org_id}/projects/{project_name}/stacks/{id}/metrics Get metrics for a stack
DefaultApi ApiV1OrganizationsOrgIdProjectsProjectNameStacksIdPut Put /api/v1/organizations/{org_id}/projects/{project_name}/stacks/{id} Update a stack
DefaultApi ApiV1OrganizationsOrgIdProjectsProjectNameStacksIdResourcesGet Get /api/v1/organizations/{org_id}/projects/{project_name}/stacks/{id}/resources List all stack resources under a stack
DefaultApi ApiV1OrganizationsOrgIdProjectsProjectNameStacksIdResourcesResourceNameActionsRestartPost Post /api/v1/organizations/{org_id}/projects/{project_name}/stacks/{id}/resources/{resource_name}/actions/restart Restart a stack resource
DefaultApi ApiV1OrganizationsOrgIdProjectsProjectNameStacksIdResourcesResourceNameBuildsGet Get /api/v1/organizations/{org_id}/projects/{project_name}/stacks/{id}/resources/{resource_name}/builds List all builds for a stack resource
DefaultApi ApiV1OrganizationsOrgIdProjectsProjectNameStacksIdResourcesResourceNameGet Get /api/v1/organizations/{org_id}/projects/{project_name}/stacks/{id}/resources/{resource_name} Get a specific stack resource by name
DefaultApi ApiV1OrganizationsOrgIdProjectsProjectNameStacksIdResourcesResourceNameLogsGet Get /api/v1/organizations/{org_id}/projects/{project_name}/stacks/{id}/resources/{resource_name}/logs Get logs for a stack resource
DefaultApi ApiV1OrganizationsOrgIdProjectsProjectNameStacksIdResourcesResourceNameMetricsGet Get /api/v1/organizations/{org_id}/projects/{project_name}/stacks/{id}/resources/{resource_name}/metrics Get metrics for a stack resource
DefaultApi ApiV1OrganizationsOrgIdProjectsProjectNameStacksIdTopologyGet Get /api/v1/organizations/{org_id}/projects/{project_name}/stacks/{id}/topology Get stack topology
DefaultApi ApiV1OrganizationsOrgIdProjectsProjectNameStacksIdVolumesGet Get /api/v1/organizations/{org_id}/projects/{project_name}/stacks/{id}/volumes List volumes used by the stack
DefaultApi ApiV1OrganizationsOrgIdProjectsProjectNameStacksIdVolumesPost Post /api/v1/organizations/{org_id}/projects/{project_name}/stacks/{id}/volumes Create a volume and associate it with the stack
DefaultApi ApiV1OrganizationsOrgIdProjectsProjectNameStacksPost Post /api/v1/organizations/{org_id}/projects/{project_name}/stacks Create a new stack
DefaultApi ApiV1OrganizationsOrgIdProjectsProjectNameVolumesIdDelete Delete /api/v1/organizations/{org_id}/projects/{project_name}/volumes/{id} Delete a volume
DefaultApi ApiV1OrganizationsOrgIdProjectsProjectNameVolumesIdGet Get /api/v1/organizations/{org_id}/projects/{project_name}/volumes/{id} Get a specific volume
DefaultApi ApiV1OrganizationsOrgIdRegistryCredentialsGet Get /api/v1/organizations/{org_id}/registry-credentials List registry credentials for the organization
DefaultApi ApiV1OrganizationsOrgIdRegistryCredentialsIdDelete Delete /api/v1/organizations/{org_id}/registry-credentials/{id} Delete a registry credential
DefaultApi ApiV1OrganizationsOrgIdRegistryCredentialsIdGet Get /api/v1/organizations/{org_id}/registry-credentials/{id} Get a registry credential
DefaultApi ApiV1OrganizationsOrgIdRegistryCredentialsIdPut Put /api/v1/organizations/{org_id}/registry-credentials/{id} Update a registry credential (username/password rotation)
DefaultApi ApiV1OrganizationsOrgIdRegistryCredentialsIdVerifyPost Post /api/v1/organizations/{org_id}/registry-credentials/{id}/verify Verify a registry credential against a repository
DefaultApi ApiV1OrganizationsOrgIdRegistryCredentialsPost Post /api/v1/organizations/{org_id}/registry-credentials Create a registry credential for the organization
DefaultApi ApiV1OrganizationsOrgIdSecretsGet Get /api/v1/organizations/{org_id}/secrets List all secrets the user has access to across all projects
DefaultApi ApiV1OrganizationsOrgIdStacksGet Get /api/v1/organizations/{org_id}/stacks List all stacks the user has access to across all projects
DefaultApi ApiV1OrganizationsOrgIdUsersGet Get /api/v1/organizations/{org_id}/users List all users in an organization
DefaultApi ApiV1ProjectRolesGet Get /api/v1/project-roles List available project membership roles
DefaultApi ApiV1UserSignupPost Post /api/v1/user-signup Create new user
DefaultApi ApiV1UsersCurrentGet Get /api/v1/users/current Get the current authenticated user
DefaultApi ApiV1UsersCurrentProjectsGet Get /api/v1/users/current/projects List projects for the current authenticated user
DefaultApi ApiV1UsersIdGet Get /api/v1/users/{id} Get a user
DefaultApi ApiV1WebhooksGithubPost Post /api/v1/webhooks/github GitHub webhook receiver (unauthenticated, HMAC-verified)
DefaultApi ApplyStack Put /api/v1/organizations/{org_id}/projects/{project_name}/stacks/{id}/apply Apply a full stack document (declarative reconcile)
DefaultApi ApplyStackByName Put /api/v1/organizations/{org_id}/projects/{project_name}/stacks/apply Apply a full stack document by name (declarative upsert)
DefaultApi CreateStackResource Post /api/v1/organizations/{org_id}/projects/{project_name}/stacks/{id}/resources Create a stack resource
DefaultApi DeleteStackResource Delete /api/v1/organizations/{org_id}/projects/{project_name}/stacks/{id}/resources/{resource_name} Delete a stack resource
DefaultApi UpdateStackResource Put /api/v1/organizations/{org_id}/projects/{project_name}/stacks/{id}/resources/{resource_name} Update a stack resource
PreviewConfigsApi CreatePreviewConfig Post /api/v1/organizations/{org_id}/projects/{project_name}/stack-preview-configs Create a new preview config
PreviewConfigsApi DeletePreviewConfig Delete /api/v1/organizations/{org_id}/projects/{project_name}/stack-preview-configs/{id} Delete a preview config
PreviewConfigsApi GetPreviewConfig Get /api/v1/organizations/{org_id}/projects/{project_name}/stack-preview-configs/{id} Get a specific preview config
PreviewConfigsApi ListPreviewConfigs Get /api/v1/organizations/{org_id}/projects/{project_name}/stack-preview-configs List preview configs for a project
PreviewConfigsApi UpdatePreviewConfig Put /api/v1/organizations/{org_id}/projects/{project_name}/stack-preview-configs/{id} Update a preview config
PreviewStacksApi CreatePreviewStack Post /api/v1/organizations/{org_id}/projects/{project_name}/preview-stacks Create a new preview stack
PreviewStacksApi DeletePreviewStack Delete /api/v1/organizations/{org_id}/projects/{project_name}/preview-stacks/{id} Delete a preview stack
PreviewStacksApi GetPreviewStack Get /api/v1/organizations/{org_id}/projects/{project_name}/preview-stacks/{id} Get a specific preview stack
PreviewStacksApi ListPreviewStacks Get /api/v1/organizations/{org_id}/projects/{project_name}/preview-stacks List preview stacks for a project
PreviewStacksApi SyncPreviewStack Post /api/v1/organizations/{org_id}/projects/{project_name}/preview-stacks/{id}/sync Sync a preview stack
ReleasesApi CancelRelease Post /api/v1/organizations/{org_id}/projects/{project_name}/stacks/{id}/releases/{release_id}/cancel Cancel a pending or rendering release
ReleasesApi CreateRelease Post /api/v1/organizations/{org_id}/projects/{project_name}/stacks/{id}/releases Create a new release (deploy)
ReleasesApi GetRelease Get /api/v1/organizations/{org_id}/projects/{project_name}/stacks/{id}/releases/{release_id} Get a release by ID
ReleasesApi ListReleaseEvents Get /api/v1/organizations/{org_id}/projects/{project_name}/stacks/{id}/releases/{release_id}/events List release events ordered by sequence
ReleasesApi ListReleases Get /api/v1/organizations/{org_id}/projects/{project_name}/stacks/{id}/releases List releases for a stack
ReleasesApi StreamReleaseEvents Get /api/v1/organizations/{org_id}/projects/{project_name}/stacks/{id}/releases/{release_id}/events/stream Stream release events via Server-Sent Events

Documentation For Models

Documentation For Authorization

Bearer
  • Type: HTTP Bearer token authentication

Example

auth := context.WithValue(context.Background(), sw.ContextAccessToken, "BEARER_TOKEN_STRING")
r, err := client.Service.Operation(auth, args)

Documentation for Utility Methods

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

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

Author

Documentation

Index

Constants

This section is empty.

Variables

View Source
var (
	// 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 AllowedClusterImageRegistryStateEnumValues = []ClusterImageRegistryState{
	"ImageRegistryPending",
	"ImageRegistryError",
	"ImageRegistryRunning",
	"ImageRegistryDeleting",
}

All allowed values of ClusterImageRegistryState enum

View Source
var AllowedGitIntegrationTypeEnumValues = []GitIntegrationType{
	"git_credentials",
	"github_app",
}

All allowed values of GitIntegrationType enum

View Source
var AllowedInviteStatusEnumValues = []InviteStatus{
	"pending",
	"accepted",
	"revoked",
	"expired",
}

All allowed values of InviteStatus enum

View Source
var AllowedProjectRoleEnumValues = []ProjectRole{
	"Developer",
	"Viewer",
}

All allowed values of ProjectRole enum

View Source
var AllowedRegistryCredentialPurposeEnumValues = []RegistryCredentialPurpose{
	"pull",
	"push",
	"both",
}

All allowed values of RegistryCredentialPurpose enum

View Source
var AllowedReleaseCauseKindEnumValues = []ReleaseCauseKind{
	"manual",
	"rollback",
	"webhook_push",
	"preview_sync",
}

All allowed values of ReleaseCauseKind enum

View Source
var AllowedReleaseHealthEnumValues = []ReleaseHealth{
	"ok",
	"progressing",
	"degraded",
	"unavailable",
	"failed",
}

All allowed values of ReleaseHealth enum

View Source
var AllowedSecretTypeEnumValues = []SecretType{
	"Generic",
	"DockerRegistry",
	"GitCredentials",
	"UsernamePassword",
	"Token",
	"SSHKey",
}

All allowed values of SecretType enum

View Source
var AllowedStackLifecycleEnumValues = []StackLifecycle{
	"active",
	"deleting",
}

All allowed values of StackLifecycle enum

View Source
var AllowedStackReleaseStateEnumValues = []StackReleaseState{
	"Pending",
	"InProgress",
	"Released",
	"Failed",
	"Superseded",
	"Cancelled",
}

All allowed values of StackReleaseState enum

View Source
var AllowedUserRoleEnumValues = []UserRole{
	"OrgAdmin",
	"OrgMember",
}

All allowed values of UserRole enum

View Source
var AllowedVolumeAccessModeEnumValues = []VolumeAccessMode{
	"ReadWriteOnce",
	"ReadWriteMany",
	"ReadOnlyMany",
}

All allowed values of VolumeAccessMode enum

View Source
var AllowedVolumeMountSourceTypeEnumValues = []VolumeMountSourceType{
	"EmptyVolume",
	"RemoteDirSyncedVolume",
	"BuildArtifactSyncedVolume",
	"GitRepoSyncedVolume",
}

All allowed values of VolumeMountSourceType enum

View Source
var AllowedVolumeSourceTypesEnumValues = []VolumeSourceTypes{
	"RemoteDir",
	"BuildArtifact",
	"GitRepo",
}

All allowed values of VolumeSourceTypes 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 {
	DefaultApi *DefaultApiService

	PreviewConfigsApi *PreviewConfigsApiService

	PreviewStacksApi *PreviewStacksApiService

	ReleasesApi *ReleasesApiService
	// contains filtered or unexported fields
}

APIClient manages communication with the Stackdome API API v0.0.1-alpha 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 APIToken

type APIToken struct {
	Id          *string    `json:"id,omitempty"`
	Name        *string    `json:"name,omitempty"`
	UserId      *string    `json:"user_id,omitempty"`
	TokenPrefix *string    `json:"token_prefix,omitempty"`
	Scopes      []string   `json:"scopes,omitempty"`
	ResourceIds []string   `json:"resource_ids,omitempty"`
	OrgId       *string    `json:"org_id,omitempty"`
	ExpiresAt   *time.Time `json:"expires_at,omitempty"`
	LastUsedAt  *time.Time `json:"last_used_at,omitempty"`
	CreatedAt   *time.Time `json:"created_at,omitempty"`
	RevokedAt   *time.Time `json:"revoked_at,omitempty"`
}

APIToken struct for APIToken

func NewAPIToken

func NewAPIToken() *APIToken

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

func NewAPITokenWithDefaults

func NewAPITokenWithDefaults() *APIToken

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

func (*APIToken) GetCreatedAt

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

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

func (*APIToken) GetCreatedAtOk

func (o *APIToken) 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 (*APIToken) GetExpiresAt

func (o *APIToken) GetExpiresAt() time.Time

GetExpiresAt returns the ExpiresAt field value if set, zero value otherwise.

func (*APIToken) GetExpiresAtOk

func (o *APIToken) 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 (*APIToken) GetId

func (o *APIToken) GetId() string

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

func (*APIToken) GetIdOk

func (o *APIToken) 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 (*APIToken) GetLastUsedAt

func (o *APIToken) GetLastUsedAt() time.Time

GetLastUsedAt returns the LastUsedAt field value if set, zero value otherwise.

func (*APIToken) GetLastUsedAtOk

func (o *APIToken) GetLastUsedAtOk() (*time.Time, bool)

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

func (*APIToken) GetName

func (o *APIToken) GetName() string

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

func (*APIToken) GetNameOk

func (o *APIToken) 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 (*APIToken) GetOrgId

func (o *APIToken) GetOrgId() string

GetOrgId returns the OrgId field value if set, zero value otherwise.

func (*APIToken) GetOrgIdOk

func (o *APIToken) GetOrgIdOk() (*string, bool)

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

func (*APIToken) GetResourceIds

func (o *APIToken) GetResourceIds() []string

GetResourceIds returns the ResourceIds field value if set, zero value otherwise.

func (*APIToken) GetResourceIdsOk

func (o *APIToken) GetResourceIdsOk() ([]string, bool)

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

func (*APIToken) GetRevokedAt

func (o *APIToken) GetRevokedAt() time.Time

GetRevokedAt returns the RevokedAt field value if set, zero value otherwise.

func (*APIToken) GetRevokedAtOk

func (o *APIToken) GetRevokedAtOk() (*time.Time, bool)

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

func (*APIToken) GetScopes

func (o *APIToken) GetScopes() []string

GetScopes returns the Scopes field value if set, zero value otherwise.

func (*APIToken) GetScopesOk

func (o *APIToken) 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 (*APIToken) GetTokenPrefix

func (o *APIToken) GetTokenPrefix() string

GetTokenPrefix returns the TokenPrefix field value if set, zero value otherwise.

func (*APIToken) GetTokenPrefixOk

func (o *APIToken) GetTokenPrefixOk() (*string, bool)

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

func (*APIToken) GetUserId

func (o *APIToken) GetUserId() string

GetUserId returns the UserId field value if set, zero value otherwise.

func (*APIToken) GetUserIdOk

func (o *APIToken) 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 (*APIToken) HasCreatedAt

func (o *APIToken) HasCreatedAt() bool

HasCreatedAt returns a boolean if a field has been set.

func (*APIToken) HasExpiresAt

func (o *APIToken) HasExpiresAt() bool

HasExpiresAt returns a boolean if a field has been set.

func (*APIToken) HasId

func (o *APIToken) HasId() bool

HasId returns a boolean if a field has been set.

func (*APIToken) HasLastUsedAt

func (o *APIToken) HasLastUsedAt() bool

HasLastUsedAt returns a boolean if a field has been set.

func (*APIToken) HasName

func (o *APIToken) HasName() bool

HasName returns a boolean if a field has been set.

func (*APIToken) HasOrgId

func (o *APIToken) HasOrgId() bool

HasOrgId returns a boolean if a field has been set.

func (*APIToken) HasResourceIds

func (o *APIToken) HasResourceIds() bool

HasResourceIds returns a boolean if a field has been set.

func (*APIToken) HasRevokedAt

func (o *APIToken) HasRevokedAt() bool

HasRevokedAt returns a boolean if a field has been set.

func (*APIToken) HasScopes

func (o *APIToken) HasScopes() bool

HasScopes returns a boolean if a field has been set.

func (*APIToken) HasTokenPrefix

func (o *APIToken) HasTokenPrefix() bool

HasTokenPrefix returns a boolean if a field has been set.

func (*APIToken) HasUserId

func (o *APIToken) HasUserId() bool

HasUserId returns a boolean if a field has been set.

func (APIToken) MarshalJSON

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

func (*APIToken) SetCreatedAt

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

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

func (*APIToken) SetExpiresAt

func (o *APIToken) SetExpiresAt(v time.Time)

SetExpiresAt gets a reference to the given time.Time and assigns it to the ExpiresAt field.

func (*APIToken) SetId

func (o *APIToken) SetId(v string)

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

func (*APIToken) SetLastUsedAt

func (o *APIToken) SetLastUsedAt(v time.Time)

SetLastUsedAt gets a reference to the given time.Time and assigns it to the LastUsedAt field.

func (*APIToken) SetName

func (o *APIToken) SetName(v string)

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

func (*APIToken) SetOrgId

func (o *APIToken) SetOrgId(v string)

SetOrgId gets a reference to the given string and assigns it to the OrgId field.

func (*APIToken) SetResourceIds

func (o *APIToken) SetResourceIds(v []string)

SetResourceIds gets a reference to the given []string and assigns it to the ResourceIds field.

func (*APIToken) SetRevokedAt

func (o *APIToken) SetRevokedAt(v time.Time)

SetRevokedAt gets a reference to the given time.Time and assigns it to the RevokedAt field.

func (*APIToken) SetScopes

func (o *APIToken) SetScopes(v []string)

SetScopes gets a reference to the given []string and assigns it to the Scopes field.

func (*APIToken) SetTokenPrefix

func (o *APIToken) SetTokenPrefix(v string)

SetTokenPrefix gets a reference to the given string and assigns it to the TokenPrefix field.

func (*APIToken) SetUserId

func (o *APIToken) SetUserId(v string)

SetUserId gets a reference to the given string and assigns it to the UserId field.

type APITokenCreateRequest

type APITokenCreateRequest struct {
	// Display name for the token
	Name string `json:"name"`
	// Permission scopes for the token
	Scopes []string `json:"scopes"`
	// Optional list of resource IDs to restrict the token to
	ResourceIds []string `json:"resource_ids,omitempty"`
	// Optional expiration time in RFC3339 format
	ExpiresAt *time.Time `json:"expires_at,omitempty"`
}

APITokenCreateRequest struct for APITokenCreateRequest

func NewAPITokenCreateRequest

func NewAPITokenCreateRequest(name string, scopes []string) *APITokenCreateRequest

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

func NewAPITokenCreateRequestWithDefaults

func NewAPITokenCreateRequestWithDefaults() *APITokenCreateRequest

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

func (*APITokenCreateRequest) GetExpiresAt

func (o *APITokenCreateRequest) GetExpiresAt() time.Time

GetExpiresAt returns the ExpiresAt field value if set, zero value otherwise.

func (*APITokenCreateRequest) GetExpiresAtOk

func (o *APITokenCreateRequest) 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 (*APITokenCreateRequest) GetName

func (o *APITokenCreateRequest) GetName() string

GetName returns the Name field value

func (*APITokenCreateRequest) GetNameOk

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

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

func (*APITokenCreateRequest) GetResourceIds

func (o *APITokenCreateRequest) GetResourceIds() []string

GetResourceIds returns the ResourceIds field value if set, zero value otherwise.

func (*APITokenCreateRequest) GetResourceIdsOk

func (o *APITokenCreateRequest) GetResourceIdsOk() ([]string, bool)

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

func (*APITokenCreateRequest) GetScopes

func (o *APITokenCreateRequest) GetScopes() []string

GetScopes returns the Scopes field value

func (*APITokenCreateRequest) GetScopesOk

func (o *APITokenCreateRequest) GetScopesOk() ([]string, bool)

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

func (*APITokenCreateRequest) HasExpiresAt

func (o *APITokenCreateRequest) HasExpiresAt() bool

HasExpiresAt returns a boolean if a field has been set.

func (*APITokenCreateRequest) HasResourceIds

func (o *APITokenCreateRequest) HasResourceIds() bool

HasResourceIds returns a boolean if a field has been set.

func (APITokenCreateRequest) MarshalJSON

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

func (*APITokenCreateRequest) SetExpiresAt

func (o *APITokenCreateRequest) SetExpiresAt(v time.Time)

SetExpiresAt gets a reference to the given time.Time and assigns it to the ExpiresAt field.

func (*APITokenCreateRequest) SetName

func (o *APITokenCreateRequest) SetName(v string)

SetName sets field value

func (*APITokenCreateRequest) SetResourceIds

func (o *APITokenCreateRequest) SetResourceIds(v []string)

SetResourceIds gets a reference to the given []string and assigns it to the ResourceIds field.

func (*APITokenCreateRequest) SetScopes

func (o *APITokenCreateRequest) SetScopes(v []string)

SetScopes sets field value

type APITokenCreateResponse

type APITokenCreateResponse struct {
	// The raw API token (only returned on creation)
	Token *string `json:"token,omitempty"`
	Id    *string `json:"id,omitempty"`
	Name  *string `json:"name,omitempty"`
	// Prefix of the token for identification
	TokenPrefix *string    `json:"token_prefix,omitempty"`
	ExpiresAt   *time.Time `json:"expires_at,omitempty"`
}

APITokenCreateResponse struct for APITokenCreateResponse

func NewAPITokenCreateResponse

func NewAPITokenCreateResponse() *APITokenCreateResponse

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

func NewAPITokenCreateResponseWithDefaults

func NewAPITokenCreateResponseWithDefaults() *APITokenCreateResponse

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

func (*APITokenCreateResponse) GetExpiresAt

func (o *APITokenCreateResponse) GetExpiresAt() time.Time

GetExpiresAt returns the ExpiresAt field value if set, zero value otherwise.

func (*APITokenCreateResponse) GetExpiresAtOk

func (o *APITokenCreateResponse) 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 (*APITokenCreateResponse) GetId

func (o *APITokenCreateResponse) GetId() string

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

func (*APITokenCreateResponse) GetIdOk

func (o *APITokenCreateResponse) 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 (*APITokenCreateResponse) GetName

func (o *APITokenCreateResponse) GetName() string

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

func (*APITokenCreateResponse) GetNameOk

func (o *APITokenCreateResponse) 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 (*APITokenCreateResponse) GetToken

func (o *APITokenCreateResponse) GetToken() string

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

func (*APITokenCreateResponse) GetTokenOk

func (o *APITokenCreateResponse) 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 (*APITokenCreateResponse) GetTokenPrefix

func (o *APITokenCreateResponse) GetTokenPrefix() string

GetTokenPrefix returns the TokenPrefix field value if set, zero value otherwise.

func (*APITokenCreateResponse) GetTokenPrefixOk

func (o *APITokenCreateResponse) GetTokenPrefixOk() (*string, bool)

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

func (*APITokenCreateResponse) HasExpiresAt

func (o *APITokenCreateResponse) HasExpiresAt() bool

HasExpiresAt returns a boolean if a field has been set.

func (*APITokenCreateResponse) HasId

func (o *APITokenCreateResponse) HasId() bool

HasId returns a boolean if a field has been set.

func (*APITokenCreateResponse) HasName

func (o *APITokenCreateResponse) HasName() bool

HasName returns a boolean if a field has been set.

func (*APITokenCreateResponse) HasToken

func (o *APITokenCreateResponse) HasToken() bool

HasToken returns a boolean if a field has been set.

func (*APITokenCreateResponse) HasTokenPrefix

func (o *APITokenCreateResponse) HasTokenPrefix() bool

HasTokenPrefix returns a boolean if a field has been set.

func (APITokenCreateResponse) MarshalJSON

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

func (*APITokenCreateResponse) SetExpiresAt

func (o *APITokenCreateResponse) SetExpiresAt(v time.Time)

SetExpiresAt gets a reference to the given time.Time and assigns it to the ExpiresAt field.

func (*APITokenCreateResponse) SetId

func (o *APITokenCreateResponse) SetId(v string)

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

func (*APITokenCreateResponse) SetName

func (o *APITokenCreateResponse) SetName(v string)

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

func (*APITokenCreateResponse) SetToken

func (o *APITokenCreateResponse) SetToken(v string)

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

func (*APITokenCreateResponse) SetTokenPrefix

func (o *APITokenCreateResponse) SetTokenPrefix(v string)

SetTokenPrefix gets a reference to the given string and assigns it to the TokenPrefix field.

type APITokenList

type APITokenList struct {
	Items []APIToken `json:"items,omitempty"`
}

APITokenList struct for APITokenList

func NewAPITokenList

func NewAPITokenList() *APITokenList

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

func NewAPITokenListWithDefaults

func NewAPITokenListWithDefaults() *APITokenList

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

func (*APITokenList) GetItems

func (o *APITokenList) GetItems() []APIToken

GetItems returns the Items field value if set, zero value otherwise.

func (*APITokenList) GetItemsOk

func (o *APITokenList) GetItemsOk() ([]APIToken, bool)

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

func (*APITokenList) HasItems

func (o *APITokenList) HasItems() bool

HasItems returns a boolean if a field has been set.

func (APITokenList) MarshalJSON

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

func (*APITokenList) SetItems

func (o *APITokenList) SetItems(v []APIToken)

SetItems gets a reference to the given []APIToken and assigns it to the Items field.

type AddProjectMemberRequest

type AddProjectMemberRequest struct {
	// The ID of the user to add
	UserId string      `json:"user_id"`
	Role   ProjectRole `json:"role"`
}

AddProjectMemberRequest struct for AddProjectMemberRequest

func NewAddProjectMemberRequest

func NewAddProjectMemberRequest(userId string, role ProjectRole) *AddProjectMemberRequest

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

func NewAddProjectMemberRequestWithDefaults

func NewAddProjectMemberRequestWithDefaults() *AddProjectMemberRequest

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

func (*AddProjectMemberRequest) GetRole

func (o *AddProjectMemberRequest) GetRole() ProjectRole

GetRole returns the Role field value

func (*AddProjectMemberRequest) GetRoleOk

func (o *AddProjectMemberRequest) GetRoleOk() (*ProjectRole, bool)

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

func (*AddProjectMemberRequest) GetUserId

func (o *AddProjectMemberRequest) GetUserId() string

GetUserId returns the UserId field value

func (*AddProjectMemberRequest) GetUserIdOk

func (o *AddProjectMemberRequest) GetUserIdOk() (*string, bool)

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

func (AddProjectMemberRequest) MarshalJSON

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

func (*AddProjectMemberRequest) SetRole

func (o *AddProjectMemberRequest) SetRole(v ProjectRole)

SetRole sets field value

func (*AddProjectMemberRequest) SetUserId

func (o *AddProjectMemberRequest) SetUserId(v string)

SetUserId sets field value

type AffectedStackRef

type AffectedStackRef struct {
	Id   *string `json:"id,omitempty"`
	Name *string `json:"name,omitempty"`
}

AffectedStackRef struct for AffectedStackRef

func NewAffectedStackRef

func NewAffectedStackRef() *AffectedStackRef

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

func NewAffectedStackRefWithDefaults

func NewAffectedStackRefWithDefaults() *AffectedStackRef

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

func (*AffectedStackRef) GetId

func (o *AffectedStackRef) GetId() string

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

func (*AffectedStackRef) GetIdOk

func (o *AffectedStackRef) 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 (*AffectedStackRef) GetName

func (o *AffectedStackRef) GetName() string

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

func (*AffectedStackRef) GetNameOk

func (o *AffectedStackRef) 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 (*AffectedStackRef) HasId

func (o *AffectedStackRef) HasId() bool

HasId returns a boolean if a field has been set.

func (*AffectedStackRef) HasName

func (o *AffectedStackRef) HasName() bool

HasName returns a boolean if a field has been set.

func (AffectedStackRef) MarshalJSON

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

func (*AffectedStackRef) SetId

func (o *AffectedStackRef) SetId(v string)

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

func (*AffectedStackRef) SetName

func (o *AffectedStackRef) SetName(v string)

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

type Annotation

type Annotation struct {
	Key   string `json:"key"`
	Value string `json:"value"`
}

Annotation struct for Annotation

func NewAnnotation

func NewAnnotation(key string, value string) *Annotation

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

func NewAnnotationWithDefaults

func NewAnnotationWithDefaults() *Annotation

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

func (*Annotation) GetKey

func (o *Annotation) GetKey() string

GetKey returns the Key field value

func (*Annotation) GetKeyOk

func (o *Annotation) GetKeyOk() (*string, bool)

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

func (*Annotation) GetValue

func (o *Annotation) GetValue() string

GetValue returns the Value field value

func (*Annotation) GetValueOk

func (o *Annotation) GetValueOk() (*string, bool)

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

func (Annotation) MarshalJSON

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

func (*Annotation) SetKey

func (o *Annotation) SetKey(v string)

SetKey sets field value

func (*Annotation) SetValue

func (o *Annotation) SetValue(v string)

SetValue sets field value

type ApiApiV1ApiTokensGetRequest

type ApiApiV1ApiTokensGetRequest struct {
	ApiService *DefaultApiService
	// contains filtered or unexported fields
}

func (ApiApiV1ApiTokensGetRequest) Execute

type ApiApiV1ApiTokensIdDeleteRequest

type ApiApiV1ApiTokensIdDeleteRequest struct {
	ApiService *DefaultApiService
	// contains filtered or unexported fields
}

func (ApiApiV1ApiTokensIdDeleteRequest) Execute

type ApiApiV1ApiTokensIdGetRequest

type ApiApiV1ApiTokensIdGetRequest struct {
	ApiService *DefaultApiService
	// contains filtered or unexported fields
}

func (ApiApiV1ApiTokensIdGetRequest) Execute

type ApiApiV1ApiTokensPostRequest

type ApiApiV1ApiTokensPostRequest struct {
	ApiService *DefaultApiService
	// contains filtered or unexported fields
}

func (ApiApiV1ApiTokensPostRequest) APITokenCreateRequest

func (r ApiApiV1ApiTokensPostRequest) APITokenCreateRequest(aPITokenCreateRequest APITokenCreateRequest) ApiApiV1ApiTokensPostRequest

func (ApiApiV1ApiTokensPostRequest) Execute

type ApiApiV1ApiTokensScopesGetRequest

type ApiApiV1ApiTokensScopesGetRequest struct {
	ApiService *DefaultApiService
	// contains filtered or unexported fields
}

func (ApiApiV1ApiTokensScopesGetRequest) Execute

type ApiApiV1AuthGithubCallbackGetRequest

type ApiApiV1AuthGithubCallbackGetRequest struct {
	ApiService *DefaultApiService
	// contains filtered or unexported fields
}

func (ApiApiV1AuthGithubCallbackGetRequest) Code

func (ApiApiV1AuthGithubCallbackGetRequest) Execute

func (ApiApiV1AuthGithubCallbackGetRequest) State

type ApiApiV1AuthGithubGetRequest

type ApiApiV1AuthGithubGetRequest struct {
	ApiService *DefaultApiService
	// contains filtered or unexported fields
}

func (ApiApiV1AuthGithubGetRequest) Execute

type ApiApiV1AuthLoginPostRequest

type ApiApiV1AuthLoginPostRequest struct {
	ApiService *DefaultApiService
	// contains filtered or unexported fields
}

func (ApiApiV1AuthLoginPostRequest) Execute

func (ApiApiV1AuthLoginPostRequest) LoginRequest

type ApiApiV1AuthRefreshPostRequest

type ApiApiV1AuthRefreshPostRequest struct {
	ApiService *DefaultApiService
	// contains filtered or unexported fields
}

func (ApiApiV1AuthRefreshPostRequest) Execute

func (ApiApiV1AuthRefreshPostRequest) RefreshTokenRequest

func (r ApiApiV1AuthRefreshPostRequest) RefreshTokenRequest(refreshTokenRequest RefreshTokenRequest) ApiApiV1AuthRefreshPostRequest

type ApiApiV1ConfigGetRequest

type ApiApiV1ConfigGetRequest struct {
	ApiService *DefaultApiService
	// contains filtered or unexported fields
}

func (ApiApiV1ConfigGetRequest) Execute

type ApiApiV1GitIntegrationsGithubManifestCallbackGetRequest

type ApiApiV1GitIntegrationsGithubManifestCallbackGetRequest struct {
	ApiService *DefaultApiService
	// contains filtered or unexported fields
}

func (ApiApiV1GitIntegrationsGithubManifestCallbackGetRequest) Code

func (ApiApiV1GitIntegrationsGithubManifestCallbackGetRequest) Execute

func (ApiApiV1GitIntegrationsGithubManifestCallbackGetRequest) State

type ApiApiV1GitIntegrationsGithubSetupGetRequest

type ApiApiV1GitIntegrationsGithubSetupGetRequest struct {
	ApiService *DefaultApiService
	// contains filtered or unexported fields
}

func (ApiApiV1GitIntegrationsGithubSetupGetRequest) Execute

func (ApiApiV1GitIntegrationsGithubSetupGetRequest) InstallationId

func (ApiApiV1GitIntegrationsGithubSetupGetRequest) State

type ApiApiV1InvitesTokenInfoGetRequest

type ApiApiV1InvitesTokenInfoGetRequest struct {
	ApiService *DefaultApiService
	// contains filtered or unexported fields
}

func (ApiApiV1InvitesTokenInfoGetRequest) Execute

type ApiApiV1OrganizationsIdGetRequest

type ApiApiV1OrganizationsIdGetRequest struct {
	ApiService *DefaultApiService
	// contains filtered or unexported fields
}

func (ApiApiV1OrganizationsIdGetRequest) Execute

type ApiApiV1OrganizationsIdPutRequest

type ApiApiV1OrganizationsIdPutRequest struct {
	ApiService *DefaultApiService
	// contains filtered or unexported fields
}

func (ApiApiV1OrganizationsIdPutRequest) Execute

func (ApiApiV1OrganizationsIdPutRequest) Organisation

type ApiApiV1OrganizationsOrgIdAdminsGetRequest

type ApiApiV1OrganizationsOrgIdAdminsGetRequest struct {
	ApiService *DefaultApiService
	// contains filtered or unexported fields
}

func (ApiApiV1OrganizationsOrgIdAdminsGetRequest) Execute

type ApiApiV1OrganizationsOrgIdAdminsPostRequest

type ApiApiV1OrganizationsOrgIdAdminsPostRequest struct {
	ApiService *DefaultApiService
	// contains filtered or unexported fields
}

func (ApiApiV1OrganizationsOrgIdAdminsPostRequest) Execute

func (ApiApiV1OrganizationsOrgIdAdminsPostRequest) PromoteAdminRequest

type ApiApiV1OrganizationsOrgIdAdminsUserIdDemotePostRequest

type ApiApiV1OrganizationsOrgIdAdminsUserIdDemotePostRequest struct {
	ApiService *DefaultApiService
	// contains filtered or unexported fields
}

func (ApiApiV1OrganizationsOrgIdAdminsUserIdDemotePostRequest) DemoteAdminRequest

func (ApiApiV1OrganizationsOrgIdAdminsUserIdDemotePostRequest) Execute

type ApiApiV1OrganizationsOrgIdClustersClusterIdImageRegistriesGetRequest

type ApiApiV1OrganizationsOrgIdClustersClusterIdImageRegistriesGetRequest struct {
	ApiService *DefaultApiService
	// contains filtered or unexported fields
}

func (ApiApiV1OrganizationsOrgIdClustersClusterIdImageRegistriesGetRequest) Execute

type ApiApiV1OrganizationsOrgIdClustersClusterIdImageRegistriesIdDeleteRequest

type ApiApiV1OrganizationsOrgIdClustersClusterIdImageRegistriesIdDeleteRequest struct {
	ApiService *DefaultApiService
	// contains filtered or unexported fields
}

func (ApiApiV1OrganizationsOrgIdClustersClusterIdImageRegistriesIdDeleteRequest) Execute

type ApiApiV1OrganizationsOrgIdClustersClusterIdImageRegistriesIdGetRequest

type ApiApiV1OrganizationsOrgIdClustersClusterIdImageRegistriesIdGetRequest struct {
	ApiService *DefaultApiService
	// contains filtered or unexported fields
}

func (ApiApiV1OrganizationsOrgIdClustersClusterIdImageRegistriesIdGetRequest) Execute

type ApiApiV1OrganizationsOrgIdClustersClusterIdImageRegistriesPostRequest

type ApiApiV1OrganizationsOrgIdClustersClusterIdImageRegistriesPostRequest struct {
	ApiService *DefaultApiService
	// contains filtered or unexported fields
}

func (ApiApiV1OrganizationsOrgIdClustersClusterIdImageRegistriesPostRequest) ClusterImageRegistry

func (ApiApiV1OrganizationsOrgIdClustersClusterIdImageRegistriesPostRequest) Execute

type ApiApiV1OrganizationsOrgIdClustersGetRequest

type ApiApiV1OrganizationsOrgIdClustersGetRequest struct {
	ApiService *DefaultApiService
	// contains filtered or unexported fields
}

func (ApiApiV1OrganizationsOrgIdClustersGetRequest) Execute

type ApiApiV1OrganizationsOrgIdClustersIdDeleteRequest

type ApiApiV1OrganizationsOrgIdClustersIdDeleteRequest struct {
	ApiService *DefaultApiService
	// contains filtered or unexported fields
}

func (ApiApiV1OrganizationsOrgIdClustersIdDeleteRequest) Execute

type ApiApiV1OrganizationsOrgIdClustersIdGetRequest

type ApiApiV1OrganizationsOrgIdClustersIdGetRequest struct {
	ApiService *DefaultApiService
	// contains filtered or unexported fields
}

func (ApiApiV1OrganizationsOrgIdClustersIdGetRequest) Execute

type ApiApiV1OrganizationsOrgIdClustersPostRequest

type ApiApiV1OrganizationsOrgIdClustersPostRequest struct {
	ApiService *DefaultApiService
	// contains filtered or unexported fields
}

func (ApiApiV1OrganizationsOrgIdClustersPostRequest) Cluster

func (ApiApiV1OrganizationsOrgIdClustersPostRequest) Execute

type ApiApiV1OrganizationsOrgIdGitIntegrationsGetRequest

type ApiApiV1OrganizationsOrgIdGitIntegrationsGetRequest struct {
	ApiService *DefaultApiService
	// contains filtered or unexported fields
}

func (ApiApiV1OrganizationsOrgIdGitIntegrationsGetRequest) Execute

type ApiApiV1OrganizationsOrgIdGitIntegrationsGithubManifestPostRequest

type ApiApiV1OrganizationsOrgIdGitIntegrationsGithubManifestPostRequest struct {
	ApiService *DefaultApiService
	// contains filtered or unexported fields
}

func (ApiApiV1OrganizationsOrgIdGitIntegrationsGithubManifestPostRequest) Execute

type ApiApiV1OrganizationsOrgIdGitIntegrationsIdDeleteRequest

type ApiApiV1OrganizationsOrgIdGitIntegrationsIdDeleteRequest struct {
	ApiService *DefaultApiService
	// contains filtered or unexported fields
}

func (ApiApiV1OrganizationsOrgIdGitIntegrationsIdDeleteRequest) Execute

type ApiApiV1OrganizationsOrgIdGitIntegrationsIdGetRequest

type ApiApiV1OrganizationsOrgIdGitIntegrationsIdGetRequest struct {
	ApiService *DefaultApiService
	// contains filtered or unexported fields
}

func (ApiApiV1OrganizationsOrgIdGitIntegrationsIdGetRequest) Execute

type ApiApiV1OrganizationsOrgIdGitIntegrationsIdInstallationsGetRequest

type ApiApiV1OrganizationsOrgIdGitIntegrationsIdInstallationsGetRequest struct {
	ApiService *DefaultApiService
	// contains filtered or unexported fields
}

func (ApiApiV1OrganizationsOrgIdGitIntegrationsIdInstallationsGetRequest) Execute

func (ApiApiV1OrganizationsOrgIdGitIntegrationsIdInstallationsGetRequest) Refresh

Re-list installations from GitHub before returning (covers missed webhooks)

type ApiApiV1OrganizationsOrgIdGitIntegrationsIdPutRequest

type ApiApiV1OrganizationsOrgIdGitIntegrationsIdPutRequest struct {
	ApiService *DefaultApiService
	// contains filtered or unexported fields
}

func (ApiApiV1OrganizationsOrgIdGitIntegrationsIdPutRequest) Execute

func (ApiApiV1OrganizationsOrgIdGitIntegrationsIdPutRequest) GitIntegration

type ApiApiV1OrganizationsOrgIdGitIntegrationsIdRepositoriesGetRequest

type ApiApiV1OrganizationsOrgIdGitIntegrationsIdRepositoriesGetRequest struct {
	ApiService *DefaultApiService
	// contains filtered or unexported fields
}

func (ApiApiV1OrganizationsOrgIdGitIntegrationsIdRepositoriesGetRequest) Execute

func (ApiApiV1OrganizationsOrgIdGitIntegrationsIdRepositoriesGetRequest) InstallationId

Our GitInstallation id (UUID). When omitted, repositories are aggregated across every installation of the integration.

func (ApiApiV1OrganizationsOrgIdGitIntegrationsIdRepositoriesGetRequest) Page

type ApiApiV1OrganizationsOrgIdGitIntegrationsIdRepositoriesOwnerRepoBranchesGetRequest

type ApiApiV1OrganizationsOrgIdGitIntegrationsIdRepositoriesOwnerRepoBranchesGetRequest struct {
	ApiService *DefaultApiService
	// contains filtered or unexported fields
}

func (ApiApiV1OrganizationsOrgIdGitIntegrationsIdRepositoriesOwnerRepoBranchesGetRequest) Execute

type ApiApiV1OrganizationsOrgIdGitIntegrationsIdRepositoriesOwnerRepoGetRequest

type ApiApiV1OrganizationsOrgIdGitIntegrationsIdRepositoriesOwnerRepoGetRequest struct {
	ApiService *DefaultApiService
	// contains filtered or unexported fields
}

func (ApiApiV1OrganizationsOrgIdGitIntegrationsIdRepositoriesOwnerRepoGetRequest) Execute

type ApiApiV1OrganizationsOrgIdGitIntegrationsIdVerifyPostRequest

type ApiApiV1OrganizationsOrgIdGitIntegrationsIdVerifyPostRequest struct {
	ApiService *DefaultApiService
	// contains filtered or unexported fields
}

func (ApiApiV1OrganizationsOrgIdGitIntegrationsIdVerifyPostRequest) Execute

func (ApiApiV1OrganizationsOrgIdGitIntegrationsIdVerifyPostRequest) GitIntegrationVerifyRequest

type ApiApiV1OrganizationsOrgIdGitIntegrationsPostRequest

type ApiApiV1OrganizationsOrgIdGitIntegrationsPostRequest struct {
	ApiService *DefaultApiService
	// contains filtered or unexported fields
}

func (ApiApiV1OrganizationsOrgIdGitIntegrationsPostRequest) Execute

func (ApiApiV1OrganizationsOrgIdGitIntegrationsPostRequest) GitIntegration

type ApiApiV1OrganizationsOrgIdImageRegistriesGetRequest

type ApiApiV1OrganizationsOrgIdImageRegistriesGetRequest struct {
	ApiService *DefaultApiService
	// contains filtered or unexported fields
}

func (ApiApiV1OrganizationsOrgIdImageRegistriesGetRequest) Execute

type ApiApiV1OrganizationsOrgIdInvitesGetRequest

type ApiApiV1OrganizationsOrgIdInvitesGetRequest struct {
	ApiService *DefaultApiService
	// contains filtered or unexported fields
}

func (ApiApiV1OrganizationsOrgIdInvitesGetRequest) Execute

func (ApiApiV1OrganizationsOrgIdInvitesGetRequest) Status

Filter invites by status (pending, accepted, revoked, expired)

type ApiApiV1OrganizationsOrgIdInvitesIdDeleteRequest

type ApiApiV1OrganizationsOrgIdInvitesIdDeleteRequest struct {
	ApiService *DefaultApiService
	// contains filtered or unexported fields
}

func (ApiApiV1OrganizationsOrgIdInvitesIdDeleteRequest) Execute

type ApiApiV1OrganizationsOrgIdInvitesIdGetRequest

type ApiApiV1OrganizationsOrgIdInvitesIdGetRequest struct {
	ApiService *DefaultApiService
	// contains filtered or unexported fields
}

func (ApiApiV1OrganizationsOrgIdInvitesIdGetRequest) Execute

type ApiApiV1OrganizationsOrgIdInvitesIdResendPostRequest

type ApiApiV1OrganizationsOrgIdInvitesIdResendPostRequest struct {
	ApiService *DefaultApiService
	// contains filtered or unexported fields
}

func (ApiApiV1OrganizationsOrgIdInvitesIdResendPostRequest) Execute

type ApiApiV1OrganizationsOrgIdInvitesPostRequest

type ApiApiV1OrganizationsOrgIdInvitesPostRequest struct {
	ApiService *DefaultApiService
	// contains filtered or unexported fields
}

func (ApiApiV1OrganizationsOrgIdInvitesPostRequest) Execute

func (ApiApiV1OrganizationsOrgIdInvitesPostRequest) OrgInviteCreateRequest

type ApiApiV1OrganizationsOrgIdObjectStoresGetRequest

type ApiApiV1OrganizationsOrgIdObjectStoresGetRequest struct {
	ApiService *DefaultApiService
	// contains filtered or unexported fields
}

func (ApiApiV1OrganizationsOrgIdObjectStoresGetRequest) Execute

type ApiApiV1OrganizationsOrgIdPostgresAddonsGetRequest

type ApiApiV1OrganizationsOrgIdPostgresAddonsGetRequest struct {
	ApiService *DefaultApiService
	// contains filtered or unexported fields
}

func (ApiApiV1OrganizationsOrgIdPostgresAddonsGetRequest) Execute

type ApiApiV1OrganizationsOrgIdProjectsGetRequest

type ApiApiV1OrganizationsOrgIdProjectsGetRequest struct {
	ApiService *DefaultApiService
	// contains filtered or unexported fields
}

func (ApiApiV1OrganizationsOrgIdProjectsGetRequest) Execute

type ApiApiV1OrganizationsOrgIdProjectsPostRequest

type ApiApiV1OrganizationsOrgIdProjectsPostRequest struct {
	ApiService *DefaultApiService
	// contains filtered or unexported fields
}

func (ApiApiV1OrganizationsOrgIdProjectsPostRequest) Execute

func (ApiApiV1OrganizationsOrgIdProjectsPostRequest) ProjectCreateRequest

type ApiApiV1OrganizationsOrgIdProjectsProjectNameAddonsPostgresGetRequest

type ApiApiV1OrganizationsOrgIdProjectsProjectNameAddonsPostgresGetRequest struct {
	ApiService *DefaultApiService
	// contains filtered or unexported fields
}

func (ApiApiV1OrganizationsOrgIdProjectsProjectNameAddonsPostgresGetRequest) Execute

type ApiApiV1OrganizationsOrgIdProjectsProjectNameAddonsPostgresIdActionsBackupPostRequest

type ApiApiV1OrganizationsOrgIdProjectsProjectNameAddonsPostgresIdActionsBackupPostRequest struct {
	ApiService *DefaultApiService
	// contains filtered or unexported fields
}

func (ApiApiV1OrganizationsOrgIdProjectsProjectNameAddonsPostgresIdActionsBackupPostRequest) ApiV1OrganizationsOrgIdProjectsProjectNameAddonsPostgresIdActionsBackupPostRequest

func (r ApiApiV1OrganizationsOrgIdProjectsProjectNameAddonsPostgresIdActionsBackupPostRequest) ApiV1OrganizationsOrgIdProjectsProjectNameAddonsPostgresIdActionsBackupPostRequest(apiV1OrganizationsOrgIdProjectsProjectNameAddonsPostgresIdActionsBackupPostRequest ApiV1OrganizationsOrgIdProjectsProjectNameAddonsPostgresIdActionsBackupPostRequest) ApiApiV1OrganizationsOrgIdProjectsProjectNameAddonsPostgresIdActionsBackupPostRequest

type ApiApiV1OrganizationsOrgIdProjectsProjectNameAddonsPostgresIdActionsFencePostRequest

type ApiApiV1OrganizationsOrgIdProjectsProjectNameAddonsPostgresIdActionsFencePostRequest struct {
	ApiService *DefaultApiService
	// contains filtered or unexported fields
}

func (ApiApiV1OrganizationsOrgIdProjectsProjectNameAddonsPostgresIdActionsFencePostRequest) ApiV1OrganizationsOrgIdProjectsProjectNameAddonsPostgresIdActionsFencePostRequest

func (r ApiApiV1OrganizationsOrgIdProjectsProjectNameAddonsPostgresIdActionsFencePostRequest) ApiV1OrganizationsOrgIdProjectsProjectNameAddonsPostgresIdActionsFencePostRequest(apiV1OrganizationsOrgIdProjectsProjectNameAddonsPostgresIdActionsFencePostRequest ApiV1OrganizationsOrgIdProjectsProjectNameAddonsPostgresIdActionsFencePostRequest) ApiApiV1OrganizationsOrgIdProjectsProjectNameAddonsPostgresIdActionsFencePostRequest

type ApiApiV1OrganizationsOrgIdProjectsProjectNameAddonsPostgresIdActionsHibernatePostRequest

type ApiApiV1OrganizationsOrgIdProjectsProjectNameAddonsPostgresIdActionsHibernatePostRequest struct {
	ApiService *DefaultApiService
	// contains filtered or unexported fields
}

func (ApiApiV1OrganizationsOrgIdProjectsProjectNameAddonsPostgresIdActionsHibernatePostRequest) ApiV1OrganizationsOrgIdProjectsProjectNameAddonsPostgresIdActionsHibernatePostRequest

func (r ApiApiV1OrganizationsOrgIdProjectsProjectNameAddonsPostgresIdActionsHibernatePostRequest) ApiV1OrganizationsOrgIdProjectsProjectNameAddonsPostgresIdActionsHibernatePostRequest(apiV1OrganizationsOrgIdProjectsProjectNameAddonsPostgresIdActionsHibernatePostRequest ApiV1OrganizationsOrgIdProjectsProjectNameAddonsPostgresIdActionsHibernatePostRequest) ApiApiV1OrganizationsOrgIdProjectsProjectNameAddonsPostgresIdActionsHibernatePostRequest

type ApiApiV1OrganizationsOrgIdProjectsProjectNameAddonsPostgresIdBackupsGetRequest

type ApiApiV1OrganizationsOrgIdProjectsProjectNameAddonsPostgresIdBackupsGetRequest struct {
	ApiService *DefaultApiService
	// contains filtered or unexported fields
}

func (ApiApiV1OrganizationsOrgIdProjectsProjectNameAddonsPostgresIdBackupsGetRequest) Execute

func (ApiApiV1OrganizationsOrgIdProjectsProjectNameAddonsPostgresIdBackupsGetRequest) Limit

func (ApiApiV1OrganizationsOrgIdProjectsProjectNameAddonsPostgresIdBackupsGetRequest) Offset

type ApiApiV1OrganizationsOrgIdProjectsProjectNameAddonsPostgresIdCredentialsDatabaseGetRequest

type ApiApiV1OrganizationsOrgIdProjectsProjectNameAddonsPostgresIdCredentialsDatabaseGetRequest struct {
	ApiService *DefaultApiService
	// contains filtered or unexported fields
}

func (ApiApiV1OrganizationsOrgIdProjectsProjectNameAddonsPostgresIdCredentialsDatabaseGetRequest) Execute

func (ApiApiV1OrganizationsOrgIdProjectsProjectNameAddonsPostgresIdCredentialsDatabaseGetRequest) Superuser

Whether to return superuser credentials

type ApiApiV1OrganizationsOrgIdProjectsProjectNameAddonsPostgresIdDeleteRequest

type ApiApiV1OrganizationsOrgIdProjectsProjectNameAddonsPostgresIdDeleteRequest struct {
	ApiService *DefaultApiService
	// contains filtered or unexported fields
}

func (ApiApiV1OrganizationsOrgIdProjectsProjectNameAddonsPostgresIdDeleteRequest) Execute

type ApiApiV1OrganizationsOrgIdProjectsProjectNameAddonsPostgresIdGetRequest

type ApiApiV1OrganizationsOrgIdProjectsProjectNameAddonsPostgresIdGetRequest struct {
	ApiService *DefaultApiService
	// contains filtered or unexported fields
}

func (ApiApiV1OrganizationsOrgIdProjectsProjectNameAddonsPostgresIdGetRequest) Execute

type ApiApiV1OrganizationsOrgIdProjectsProjectNameAddonsPostgresIdPutRequest

type ApiApiV1OrganizationsOrgIdProjectsProjectNameAddonsPostgresIdPutRequest struct {
	ApiService *DefaultApiService
	// contains filtered or unexported fields
}

func (ApiApiV1OrganizationsOrgIdProjectsProjectNameAddonsPostgresIdPutRequest) Execute

func (ApiApiV1OrganizationsOrgIdProjectsProjectNameAddonsPostgresIdPutRequest) PostgresAddon

type ApiApiV1OrganizationsOrgIdProjectsProjectNameAddonsPostgresPostRequest

type ApiApiV1OrganizationsOrgIdProjectsProjectNameAddonsPostgresPostRequest struct {
	ApiService *DefaultApiService
	// contains filtered or unexported fields
}

func (ApiApiV1OrganizationsOrgIdProjectsProjectNameAddonsPostgresPostRequest) Execute

func (ApiApiV1OrganizationsOrgIdProjectsProjectNameAddonsPostgresPostRequest) PostgresAddon

type ApiApiV1OrganizationsOrgIdProjectsProjectNameDeleteRequest

type ApiApiV1OrganizationsOrgIdProjectsProjectNameDeleteRequest struct {
	ApiService *DefaultApiService
	// contains filtered or unexported fields
}

func (ApiApiV1OrganizationsOrgIdProjectsProjectNameDeleteRequest) Execute

type ApiApiV1OrganizationsOrgIdProjectsProjectNameGetRequest

type ApiApiV1OrganizationsOrgIdProjectsProjectNameGetRequest struct {
	ApiService *DefaultApiService
	// contains filtered or unexported fields
}

func (ApiApiV1OrganizationsOrgIdProjectsProjectNameGetRequest) Execute

type ApiApiV1OrganizationsOrgIdProjectsProjectNameMembersGetRequest

type ApiApiV1OrganizationsOrgIdProjectsProjectNameMembersGetRequest struct {
	ApiService *DefaultApiService
	// contains filtered or unexported fields
}

func (ApiApiV1OrganizationsOrgIdProjectsProjectNameMembersGetRequest) Execute

type ApiApiV1OrganizationsOrgIdProjectsProjectNameMembersIdDeleteRequest

type ApiApiV1OrganizationsOrgIdProjectsProjectNameMembersIdDeleteRequest struct {
	ApiService *DefaultApiService
	// contains filtered or unexported fields
}

func (ApiApiV1OrganizationsOrgIdProjectsProjectNameMembersIdDeleteRequest) Execute

type ApiApiV1OrganizationsOrgIdProjectsProjectNameMembersIdPutRequest

type ApiApiV1OrganizationsOrgIdProjectsProjectNameMembersIdPutRequest struct {
	ApiService *DefaultApiService
	// contains filtered or unexported fields
}

func (ApiApiV1OrganizationsOrgIdProjectsProjectNameMembersIdPutRequest) Execute

func (ApiApiV1OrganizationsOrgIdProjectsProjectNameMembersIdPutRequest) UpdateProjectMemberRoleRequest

type ApiApiV1OrganizationsOrgIdProjectsProjectNameMembersPostRequest

type ApiApiV1OrganizationsOrgIdProjectsProjectNameMembersPostRequest struct {
	ApiService *DefaultApiService
	// contains filtered or unexported fields
}

func (ApiApiV1OrganizationsOrgIdProjectsProjectNameMembersPostRequest) AddProjectMemberRequest

func (ApiApiV1OrganizationsOrgIdProjectsProjectNameMembersPostRequest) Execute

type ApiApiV1OrganizationsOrgIdProjectsProjectNameObjectStoresGetRequest

type ApiApiV1OrganizationsOrgIdProjectsProjectNameObjectStoresGetRequest struct {
	ApiService *DefaultApiService
	// contains filtered or unexported fields
}

func (ApiApiV1OrganizationsOrgIdProjectsProjectNameObjectStoresGetRequest) Execute

type ApiApiV1OrganizationsOrgIdProjectsProjectNameObjectStoresIdDeleteRequest

type ApiApiV1OrganizationsOrgIdProjectsProjectNameObjectStoresIdDeleteRequest struct {
	ApiService *DefaultApiService
	// contains filtered or unexported fields
}

func (ApiApiV1OrganizationsOrgIdProjectsProjectNameObjectStoresIdDeleteRequest) Execute

type ApiApiV1OrganizationsOrgIdProjectsProjectNameObjectStoresIdGetRequest

type ApiApiV1OrganizationsOrgIdProjectsProjectNameObjectStoresIdGetRequest struct {
	ApiService *DefaultApiService
	// contains filtered or unexported fields
}

func (ApiApiV1OrganizationsOrgIdProjectsProjectNameObjectStoresIdGetRequest) Execute

type ApiApiV1OrganizationsOrgIdProjectsProjectNameObjectStoresIdPutRequest

type ApiApiV1OrganizationsOrgIdProjectsProjectNameObjectStoresIdPutRequest struct {
	ApiService *DefaultApiService
	// contains filtered or unexported fields
}

func (ApiApiV1OrganizationsOrgIdProjectsProjectNameObjectStoresIdPutRequest) Execute

func (ApiApiV1OrganizationsOrgIdProjectsProjectNameObjectStoresIdPutRequest) ObjectStore

type ApiApiV1OrganizationsOrgIdProjectsProjectNameObjectStoresPostRequest

type ApiApiV1OrganizationsOrgIdProjectsProjectNameObjectStoresPostRequest struct {
	ApiService *DefaultApiService
	// contains filtered or unexported fields
}

func (ApiApiV1OrganizationsOrgIdProjectsProjectNameObjectStoresPostRequest) Execute

func (ApiApiV1OrganizationsOrgIdProjectsProjectNameObjectStoresPostRequest) ObjectStore

type ApiApiV1OrganizationsOrgIdProjectsProjectNamePutRequest

type ApiApiV1OrganizationsOrgIdProjectsProjectNamePutRequest struct {
	ApiService *DefaultApiService
	// contains filtered or unexported fields
}

func (ApiApiV1OrganizationsOrgIdProjectsProjectNamePutRequest) Execute

func (ApiApiV1OrganizationsOrgIdProjectsProjectNamePutRequest) ProjectUpdateRequest

type ApiApiV1OrganizationsOrgIdProjectsProjectNameSecretsGetRequest

type ApiApiV1OrganizationsOrgIdProjectsProjectNameSecretsGetRequest struct {
	ApiService *DefaultApiService
	// contains filtered or unexported fields
}

func (ApiApiV1OrganizationsOrgIdProjectsProjectNameSecretsGetRequest) Execute

func (ApiApiV1OrganizationsOrgIdProjectsProjectNameSecretsGetRequest) Name

Filter by secret name

type ApiApiV1OrganizationsOrgIdProjectsProjectNameSecretsIdDeleteRequest

type ApiApiV1OrganizationsOrgIdProjectsProjectNameSecretsIdDeleteRequest struct {
	ApiService *DefaultApiService
	// contains filtered or unexported fields
}

func (ApiApiV1OrganizationsOrgIdProjectsProjectNameSecretsIdDeleteRequest) Execute

type ApiApiV1OrganizationsOrgIdProjectsProjectNameSecretsIdGetRequest

type ApiApiV1OrganizationsOrgIdProjectsProjectNameSecretsIdGetRequest struct {
	ApiService *DefaultApiService
	// contains filtered or unexported fields
}

func (ApiApiV1OrganizationsOrgIdProjectsProjectNameSecretsIdGetRequest) Execute

type ApiApiV1OrganizationsOrgIdProjectsProjectNameSecretsIdPutRequest

type ApiApiV1OrganizationsOrgIdProjectsProjectNameSecretsIdPutRequest struct {
	ApiService *DefaultApiService
	// contains filtered or unexported fields
}

func (ApiApiV1OrganizationsOrgIdProjectsProjectNameSecretsIdPutRequest) Execute

func (ApiApiV1OrganizationsOrgIdProjectsProjectNameSecretsIdPutRequest) Secret

type ApiApiV1OrganizationsOrgIdProjectsProjectNameSecretsPostRequest

type ApiApiV1OrganizationsOrgIdProjectsProjectNameSecretsPostRequest struct {
	ApiService *DefaultApiService
	// contains filtered or unexported fields
}

func (ApiApiV1OrganizationsOrgIdProjectsProjectNameSecretsPostRequest) Execute

func (ApiApiV1OrganizationsOrgIdProjectsProjectNameSecretsPostRequest) Secret

type ApiApiV1OrganizationsOrgIdProjectsProjectNameStacksGetRequest

type ApiApiV1OrganizationsOrgIdProjectsProjectNameStacksGetRequest struct {
	ApiService *DefaultApiService
	// contains filtered or unexported fields
}

func (ApiApiV1OrganizationsOrgIdProjectsProjectNameStacksGetRequest) Execute

func (ApiApiV1OrganizationsOrgIdProjectsProjectNameStacksGetRequest) Limit

func (ApiApiV1OrganizationsOrgIdProjectsProjectNameStacksGetRequest) Offset

type ApiApiV1OrganizationsOrgIdProjectsProjectNameStacksIdBuildsBuildIdGetRequest

type ApiApiV1OrganizationsOrgIdProjectsProjectNameStacksIdBuildsBuildIdGetRequest struct {
	ApiService *DefaultApiService
	// contains filtered or unexported fields
}

func (ApiApiV1OrganizationsOrgIdProjectsProjectNameStacksIdBuildsBuildIdGetRequest) Execute

type ApiApiV1OrganizationsOrgIdProjectsProjectNameStacksIdBuildsBuildIdLogsGetRequest

type ApiApiV1OrganizationsOrgIdProjectsProjectNameStacksIdBuildsBuildIdLogsGetRequest struct {
	ApiService *DefaultApiService
	// contains filtered or unexported fields
}

func (ApiApiV1OrganizationsOrgIdProjectsProjectNameStacksIdBuildsBuildIdLogsGetRequest) Execute

func (ApiApiV1OrganizationsOrgIdProjectsProjectNameStacksIdBuildsBuildIdLogsGetRequest) Follow

func (ApiApiV1OrganizationsOrgIdProjectsProjectNameStacksIdBuildsBuildIdLogsGetRequest) Since

func (ApiApiV1OrganizationsOrgIdProjectsProjectNameStacksIdBuildsBuildIdLogsGetRequest) Tail

type ApiApiV1OrganizationsOrgIdProjectsProjectNameStacksIdBuildsGetRequest

type ApiApiV1OrganizationsOrgIdProjectsProjectNameStacksIdBuildsGetRequest struct {
	ApiService *DefaultApiService
	// contains filtered or unexported fields
}

func (ApiApiV1OrganizationsOrgIdProjectsProjectNameStacksIdBuildsGetRequest) Execute

type ApiApiV1OrganizationsOrgIdProjectsProjectNameStacksIdConnectionsConnectionIdDeleteRequest

type ApiApiV1OrganizationsOrgIdProjectsProjectNameStacksIdConnectionsConnectionIdDeleteRequest struct {
	ApiService *DefaultApiService
	// contains filtered or unexported fields
}

func (ApiApiV1OrganizationsOrgIdProjectsProjectNameStacksIdConnectionsConnectionIdDeleteRequest) Execute

type ApiApiV1OrganizationsOrgIdProjectsProjectNameStacksIdConnectionsConnectionIdPutRequest

type ApiApiV1OrganizationsOrgIdProjectsProjectNameStacksIdConnectionsConnectionIdPutRequest struct {
	ApiService *DefaultApiService
	// contains filtered or unexported fields
}

func (ApiApiV1OrganizationsOrgIdProjectsProjectNameStacksIdConnectionsConnectionIdPutRequest) Execute

func (ApiApiV1OrganizationsOrgIdProjectsProjectNameStacksIdConnectionsConnectionIdPutRequest) StackConnection

type ApiApiV1OrganizationsOrgIdProjectsProjectNameStacksIdConnectionsGetRequest

type ApiApiV1OrganizationsOrgIdProjectsProjectNameStacksIdConnectionsGetRequest struct {
	ApiService *DefaultApiService
	// contains filtered or unexported fields
}

func (ApiApiV1OrganizationsOrgIdProjectsProjectNameStacksIdConnectionsGetRequest) Execute

type ApiApiV1OrganizationsOrgIdProjectsProjectNameStacksIdConnectionsPostRequest

type ApiApiV1OrganizationsOrgIdProjectsProjectNameStacksIdConnectionsPostRequest struct {
	ApiService *DefaultApiService
	// contains filtered or unexported fields
}

func (ApiApiV1OrganizationsOrgIdProjectsProjectNameStacksIdConnectionsPostRequest) Execute

func (ApiApiV1OrganizationsOrgIdProjectsProjectNameStacksIdConnectionsPostRequest) StackConnection

type ApiApiV1OrganizationsOrgIdProjectsProjectNameStacksIdDeleteRequest

type ApiApiV1OrganizationsOrgIdProjectsProjectNameStacksIdDeleteRequest struct {
	ApiService *DefaultApiService
	// contains filtered or unexported fields
}

func (ApiApiV1OrganizationsOrgIdProjectsProjectNameStacksIdDeleteRequest) Execute

type ApiApiV1OrganizationsOrgIdProjectsProjectNameStacksIdGetRequest

type ApiApiV1OrganizationsOrgIdProjectsProjectNameStacksIdGetRequest struct {
	ApiService *DefaultApiService
	// contains filtered or unexported fields
}

func (ApiApiV1OrganizationsOrgIdProjectsProjectNameStacksIdGetRequest) Execute

type ApiApiV1OrganizationsOrgIdProjectsProjectNameStacksIdLogsGetRequest

type ApiApiV1OrganizationsOrgIdProjectsProjectNameStacksIdLogsGetRequest struct {
	ApiService *DefaultApiService
	// contains filtered or unexported fields
}

func (ApiApiV1OrganizationsOrgIdProjectsProjectNameStacksIdLogsGetRequest) Execute

func (ApiApiV1OrganizationsOrgIdProjectsProjectNameStacksIdLogsGetRequest) Follow

func (ApiApiV1OrganizationsOrgIdProjectsProjectNameStacksIdLogsGetRequest) Since

func (ApiApiV1OrganizationsOrgIdProjectsProjectNameStacksIdLogsGetRequest) Tail

type ApiApiV1OrganizationsOrgIdProjectsProjectNameStacksIdMetricsGetRequest

type ApiApiV1OrganizationsOrgIdProjectsProjectNameStacksIdMetricsGetRequest struct {
	ApiService *DefaultApiService
	// contains filtered or unexported fields
}

func (ApiApiV1OrganizationsOrgIdProjectsProjectNameStacksIdMetricsGetRequest) Execute

func (ApiApiV1OrganizationsOrgIdProjectsProjectNameStacksIdMetricsGetRequest) Stream

type ApiApiV1OrganizationsOrgIdProjectsProjectNameStacksIdPutRequest

type ApiApiV1OrganizationsOrgIdProjectsProjectNameStacksIdPutRequest struct {
	ApiService *DefaultApiService
	// contains filtered or unexported fields
}

func (ApiApiV1OrganizationsOrgIdProjectsProjectNameStacksIdPutRequest) Execute

func (ApiApiV1OrganizationsOrgIdProjectsProjectNameStacksIdPutRequest) Stack

type ApiApiV1OrganizationsOrgIdProjectsProjectNameStacksIdResourcesGetRequest

type ApiApiV1OrganizationsOrgIdProjectsProjectNameStacksIdResourcesGetRequest struct {
	ApiService *DefaultApiService
	// contains filtered or unexported fields
}

func (ApiApiV1OrganizationsOrgIdProjectsProjectNameStacksIdResourcesGetRequest) Execute

type ApiApiV1OrganizationsOrgIdProjectsProjectNameStacksIdResourcesResourceNameActionsRestartPostRequest

type ApiApiV1OrganizationsOrgIdProjectsProjectNameStacksIdResourcesResourceNameActionsRestartPostRequest struct {
	ApiService *DefaultApiService
	// contains filtered or unexported fields
}

func (ApiApiV1OrganizationsOrgIdProjectsProjectNameStacksIdResourcesResourceNameActionsRestartPostRequest) Execute

type ApiApiV1OrganizationsOrgIdProjectsProjectNameStacksIdResourcesResourceNameBuildsGetRequest

type ApiApiV1OrganizationsOrgIdProjectsProjectNameStacksIdResourcesResourceNameBuildsGetRequest struct {
	ApiService *DefaultApiService
	// contains filtered or unexported fields
}

func (ApiApiV1OrganizationsOrgIdProjectsProjectNameStacksIdResourcesResourceNameBuildsGetRequest) Execute

type ApiApiV1OrganizationsOrgIdProjectsProjectNameStacksIdResourcesResourceNameGetRequest

type ApiApiV1OrganizationsOrgIdProjectsProjectNameStacksIdResourcesResourceNameGetRequest struct {
	ApiService *DefaultApiService
	// contains filtered or unexported fields
}

func (ApiApiV1OrganizationsOrgIdProjectsProjectNameStacksIdResourcesResourceNameGetRequest) Execute

type ApiApiV1OrganizationsOrgIdProjectsProjectNameStacksIdResourcesResourceNameLogsGetRequest

type ApiApiV1OrganizationsOrgIdProjectsProjectNameStacksIdResourcesResourceNameLogsGetRequest struct {
	ApiService *DefaultApiService
	// contains filtered or unexported fields
}

func (ApiApiV1OrganizationsOrgIdProjectsProjectNameStacksIdResourcesResourceNameLogsGetRequest) Execute

func (ApiApiV1OrganizationsOrgIdProjectsProjectNameStacksIdResourcesResourceNameLogsGetRequest) Follow

type ApiApiV1OrganizationsOrgIdProjectsProjectNameStacksIdResourcesResourceNameMetricsGetRequest

type ApiApiV1OrganizationsOrgIdProjectsProjectNameStacksIdResourcesResourceNameMetricsGetRequest struct {
	ApiService *DefaultApiService
	// contains filtered or unexported fields
}

func (ApiApiV1OrganizationsOrgIdProjectsProjectNameStacksIdResourcesResourceNameMetricsGetRequest) Execute

func (ApiApiV1OrganizationsOrgIdProjectsProjectNameStacksIdResourcesResourceNameMetricsGetRequest) Stream

Whether to stream metrics via Server-Sent Events (SSE)

type ApiApiV1OrganizationsOrgIdProjectsProjectNameStacksIdTopologyGetRequest

type ApiApiV1OrganizationsOrgIdProjectsProjectNameStacksIdTopologyGetRequest struct {
	ApiService *DefaultApiService
	// contains filtered or unexported fields
}

func (ApiApiV1OrganizationsOrgIdProjectsProjectNameStacksIdTopologyGetRequest) Execute

type ApiApiV1OrganizationsOrgIdProjectsProjectNameStacksIdVolumesGetRequest

type ApiApiV1OrganizationsOrgIdProjectsProjectNameStacksIdVolumesGetRequest struct {
	ApiService *DefaultApiService
	// contains filtered or unexported fields
}

func (ApiApiV1OrganizationsOrgIdProjectsProjectNameStacksIdVolumesGetRequest) Execute

type ApiApiV1OrganizationsOrgIdProjectsProjectNameStacksIdVolumesPostRequest

type ApiApiV1OrganizationsOrgIdProjectsProjectNameStacksIdVolumesPostRequest struct {
	ApiService *DefaultApiService
	// contains filtered or unexported fields
}

func (ApiApiV1OrganizationsOrgIdProjectsProjectNameStacksIdVolumesPostRequest) Execute

func (ApiApiV1OrganizationsOrgIdProjectsProjectNameStacksIdVolumesPostRequest) Volume

type ApiApiV1OrganizationsOrgIdProjectsProjectNameStacksPostRequest

type ApiApiV1OrganizationsOrgIdProjectsProjectNameStacksPostRequest struct {
	ApiService *DefaultApiService
	// contains filtered or unexported fields
}

func (ApiApiV1OrganizationsOrgIdProjectsProjectNameStacksPostRequest) Execute

func (ApiApiV1OrganizationsOrgIdProjectsProjectNameStacksPostRequest) Stack

type ApiApiV1OrganizationsOrgIdProjectsProjectNameVolumesIdDeleteRequest

type ApiApiV1OrganizationsOrgIdProjectsProjectNameVolumesIdDeleteRequest struct {
	ApiService *DefaultApiService
	// contains filtered or unexported fields
}

func (ApiApiV1OrganizationsOrgIdProjectsProjectNameVolumesIdDeleteRequest) Execute

type ApiApiV1OrganizationsOrgIdProjectsProjectNameVolumesIdGetRequest

type ApiApiV1OrganizationsOrgIdProjectsProjectNameVolumesIdGetRequest struct {
	ApiService *DefaultApiService
	// contains filtered or unexported fields
}

func (ApiApiV1OrganizationsOrgIdProjectsProjectNameVolumesIdGetRequest) Execute

type ApiApiV1OrganizationsOrgIdRegistryCredentialsGetRequest

type ApiApiV1OrganizationsOrgIdRegistryCredentialsGetRequest struct {
	ApiService *DefaultApiService
	// contains filtered or unexported fields
}

func (ApiApiV1OrganizationsOrgIdRegistryCredentialsGetRequest) Execute

type ApiApiV1OrganizationsOrgIdRegistryCredentialsIdDeleteRequest

type ApiApiV1OrganizationsOrgIdRegistryCredentialsIdDeleteRequest struct {
	ApiService *DefaultApiService
	// contains filtered or unexported fields
}

func (ApiApiV1OrganizationsOrgIdRegistryCredentialsIdDeleteRequest) Execute

type ApiApiV1OrganizationsOrgIdRegistryCredentialsIdGetRequest

type ApiApiV1OrganizationsOrgIdRegistryCredentialsIdGetRequest struct {
	ApiService *DefaultApiService
	// contains filtered or unexported fields
}

func (ApiApiV1OrganizationsOrgIdRegistryCredentialsIdGetRequest) Execute

type ApiApiV1OrganizationsOrgIdRegistryCredentialsIdPutRequest

type ApiApiV1OrganizationsOrgIdRegistryCredentialsIdPutRequest struct {
	ApiService *DefaultApiService
	// contains filtered or unexported fields
}

func (ApiApiV1OrganizationsOrgIdRegistryCredentialsIdPutRequest) Execute

func (ApiApiV1OrganizationsOrgIdRegistryCredentialsIdPutRequest) RegistryCredential

type ApiApiV1OrganizationsOrgIdRegistryCredentialsIdVerifyPostRequest

type ApiApiV1OrganizationsOrgIdRegistryCredentialsIdVerifyPostRequest struct {
	ApiService *DefaultApiService
	// contains filtered or unexported fields
}

func (ApiApiV1OrganizationsOrgIdRegistryCredentialsIdVerifyPostRequest) Execute

func (ApiApiV1OrganizationsOrgIdRegistryCredentialsIdVerifyPostRequest) RegistryCredentialVerifyRequest

type ApiApiV1OrganizationsOrgIdRegistryCredentialsPostRequest

type ApiApiV1OrganizationsOrgIdRegistryCredentialsPostRequest struct {
	ApiService *DefaultApiService
	// contains filtered or unexported fields
}

func (ApiApiV1OrganizationsOrgIdRegistryCredentialsPostRequest) Execute

func (ApiApiV1OrganizationsOrgIdRegistryCredentialsPostRequest) RegistryCredential

type ApiApiV1OrganizationsOrgIdSecretsGetRequest

type ApiApiV1OrganizationsOrgIdSecretsGetRequest struct {
	ApiService *DefaultApiService
	// contains filtered or unexported fields
}

func (ApiApiV1OrganizationsOrgIdSecretsGetRequest) Execute

func (ApiApiV1OrganizationsOrgIdSecretsGetRequest) Name

Filter by secret name

type ApiApiV1OrganizationsOrgIdStacksGetRequest

type ApiApiV1OrganizationsOrgIdStacksGetRequest struct {
	ApiService *DefaultApiService
	// contains filtered or unexported fields
}

func (ApiApiV1OrganizationsOrgIdStacksGetRequest) Execute

type ApiApiV1OrganizationsOrgIdUsersGetRequest

type ApiApiV1OrganizationsOrgIdUsersGetRequest struct {
	ApiService *DefaultApiService
	// contains filtered or unexported fields
}

func (ApiApiV1OrganizationsOrgIdUsersGetRequest) Execute

func (ApiApiV1OrganizationsOrgIdUsersGetRequest) Page

Page number

func (ApiApiV1OrganizationsOrgIdUsersGetRequest) PageSize

Number of items per page

type ApiApiV1ProjectRolesGetRequest

type ApiApiV1ProjectRolesGetRequest struct {
	ApiService *DefaultApiService
	// contains filtered or unexported fields
}

func (ApiApiV1ProjectRolesGetRequest) Execute

type ApiApiV1UserSignupPostRequest

type ApiApiV1UserSignupPostRequest struct {
	ApiService *DefaultApiService
	// contains filtered or unexported fields
}

func (ApiApiV1UserSignupPostRequest) Execute

func (ApiApiV1UserSignupPostRequest) UserSignupRequest

func (r ApiApiV1UserSignupPostRequest) UserSignupRequest(userSignupRequest UserSignupRequest) ApiApiV1UserSignupPostRequest

type ApiApiV1UsersCurrentGetRequest

type ApiApiV1UsersCurrentGetRequest struct {
	ApiService *DefaultApiService
	// contains filtered or unexported fields
}

func (ApiApiV1UsersCurrentGetRequest) Execute

type ApiApiV1UsersCurrentProjectsGetRequest

type ApiApiV1UsersCurrentProjectsGetRequest struct {
	ApiService *DefaultApiService
	// contains filtered or unexported fields
}

func (ApiApiV1UsersCurrentProjectsGetRequest) Execute

type ApiApiV1UsersIdGetRequest

type ApiApiV1UsersIdGetRequest struct {
	ApiService *DefaultApiService
	// contains filtered or unexported fields
}

func (ApiApiV1UsersIdGetRequest) Execute

func (r ApiApiV1UsersIdGetRequest) Execute() (*User, *http.Response, error)

type ApiApiV1WebhooksGithubPostRequest

type ApiApiV1WebhooksGithubPostRequest struct {
	ApiService *DefaultApiService
	// contains filtered or unexported fields
}

func (ApiApiV1WebhooksGithubPostRequest) Execute

func (ApiApiV1WebhooksGithubPostRequest) RequestBody

func (r ApiApiV1WebhooksGithubPostRequest) RequestBody(requestBody map[string]interface{}) ApiApiV1WebhooksGithubPostRequest

type ApiApplyStackByNameRequest

type ApiApplyStackByNameRequest struct {
	ApiService *DefaultApiService
	// contains filtered or unexported fields
}

func (ApiApplyStackByNameRequest) Execute

func (ApiApplyStackByNameRequest) Stack

type ApiApplyStackRequest

type ApiApplyStackRequest struct {
	ApiService *DefaultApiService
	// contains filtered or unexported fields
}

func (ApiApplyStackRequest) Execute

func (r ApiApplyStackRequest) Execute() (*Stack, *http.Response, error)

func (ApiApplyStackRequest) Stack

type ApiCancelReleaseRequest

type ApiCancelReleaseRequest struct {
	ApiService *ReleasesApiService
	// contains filtered or unexported fields
}

func (ApiCancelReleaseRequest) Execute

func (r ApiCancelReleaseRequest) Execute() (*http.Response, error)

type ApiCreatePreviewConfigRequest

type ApiCreatePreviewConfigRequest struct {
	ApiService *PreviewConfigsApiService
	// contains filtered or unexported fields
}

func (ApiCreatePreviewConfigRequest) Execute

func (ApiCreatePreviewConfigRequest) StackPreviewConfigCreate

func (r ApiCreatePreviewConfigRequest) StackPreviewConfigCreate(stackPreviewConfigCreate StackPreviewConfigCreate) ApiCreatePreviewConfigRequest

type ApiCreatePreviewStackRequest

type ApiCreatePreviewStackRequest struct {
	ApiService *PreviewStacksApiService
	// contains filtered or unexported fields
}

func (ApiCreatePreviewStackRequest) Execute

func (ApiCreatePreviewStackRequest) PreviewStackCreate

func (r ApiCreatePreviewStackRequest) PreviewStackCreate(previewStackCreate PreviewStackCreate) ApiCreatePreviewStackRequest

type ApiCreateReleaseRequest

type ApiCreateReleaseRequest struct {
	ApiService *ReleasesApiService
	// contains filtered or unexported fields
}

func (ApiCreateReleaseRequest) CreateReleaseRequest

func (r ApiCreateReleaseRequest) CreateReleaseRequest(createReleaseRequest CreateReleaseRequest) ApiCreateReleaseRequest

func (ApiCreateReleaseRequest) Execute

type ApiCreateStackResourceRequest

type ApiCreateStackResourceRequest struct {
	ApiService *DefaultApiService
	// contains filtered or unexported fields
}

func (ApiCreateStackResourceRequest) Execute

func (ApiCreateStackResourceRequest) StackResource

type ApiDeletePreviewConfigRequest

type ApiDeletePreviewConfigRequest struct {
	ApiService *PreviewConfigsApiService
	// contains filtered or unexported fields
}

func (ApiDeletePreviewConfigRequest) Execute

type ApiDeletePreviewStackRequest

type ApiDeletePreviewStackRequest struct {
	ApiService *PreviewStacksApiService
	// contains filtered or unexported fields
}

func (ApiDeletePreviewStackRequest) Execute

type ApiDeleteStackResourceRequest

type ApiDeleteStackResourceRequest struct {
	ApiService *DefaultApiService
	// contains filtered or unexported fields
}

func (ApiDeleteStackResourceRequest) Execute

type ApiGetPreviewConfigRequest

type ApiGetPreviewConfigRequest struct {
	ApiService *PreviewConfigsApiService
	// contains filtered or unexported fields
}

func (ApiGetPreviewConfigRequest) Execute

type ApiGetPreviewStackRequest

type ApiGetPreviewStackRequest struct {
	ApiService *PreviewStacksApiService
	// contains filtered or unexported fields
}

func (ApiGetPreviewStackRequest) Execute

type ApiGetReleaseRequest

type ApiGetReleaseRequest struct {
	ApiService *ReleasesApiService
	// contains filtered or unexported fields
}

func (ApiGetReleaseRequest) Execute

type ApiListPreviewConfigsRequest

type ApiListPreviewConfigsRequest struct {
	ApiService *PreviewConfigsApiService
	// contains filtered or unexported fields
}

func (ApiListPreviewConfigsRequest) Execute

func (ApiListPreviewConfigsRequest) Page

Page number

func (ApiListPreviewConfigsRequest) PageSize

Number of items per page

type ApiListPreviewStacksRequest

type ApiListPreviewStacksRequest struct {
	ApiService *PreviewStacksApiService
	// contains filtered or unexported fields
}

func (ApiListPreviewStacksRequest) ConfigId

Filter by preview config ID

func (ApiListPreviewStacksRequest) Execute

func (ApiListPreviewStacksRequest) Page

Page number

func (ApiListPreviewStacksRequest) PageSize

Number of items per page

type ApiListReleaseEventsRequest

type ApiListReleaseEventsRequest struct {
	ApiService *ReleasesApiService
	// contains filtered or unexported fields
}

func (ApiListReleaseEventsRequest) AfterSequence

func (r ApiListReleaseEventsRequest) AfterSequence(afterSequence int32) ApiListReleaseEventsRequest

func (ApiListReleaseEventsRequest) Execute

func (ApiListReleaseEventsRequest) Limit

type ApiListReleasesRequest

type ApiListReleasesRequest struct {
	ApiService *ReleasesApiService
	// contains filtered or unexported fields
}

func (ApiListReleasesRequest) Execute

func (ApiListReleasesRequest) Page

Page number

func (ApiListReleasesRequest) PageSize

Number of items per page

func (ApiListReleasesRequest) State

Filter by release state

type ApiStreamReleaseEventsRequest

type ApiStreamReleaseEventsRequest struct {
	ApiService *ReleasesApiService
	// contains filtered or unexported fields
}

func (ApiStreamReleaseEventsRequest) AfterSequence

func (r ApiStreamReleaseEventsRequest) AfterSequence(afterSequence int32) ApiStreamReleaseEventsRequest

func (ApiStreamReleaseEventsRequest) Execute

type ApiSyncPreviewStackRequest

type ApiSyncPreviewStackRequest struct {
	ApiService *PreviewStacksApiService
	// contains filtered or unexported fields
}

func (ApiSyncPreviewStackRequest) Execute

func (ApiSyncPreviewStackRequest) PreviewStackSync

func (r ApiSyncPreviewStackRequest) PreviewStackSync(previewStackSync PreviewStackSync) ApiSyncPreviewStackRequest

type ApiUpdatePreviewConfigRequest

type ApiUpdatePreviewConfigRequest struct {
	ApiService *PreviewConfigsApiService
	// contains filtered or unexported fields
}

func (ApiUpdatePreviewConfigRequest) Execute

func (ApiUpdatePreviewConfigRequest) StackPreviewConfigUpdate

func (r ApiUpdatePreviewConfigRequest) StackPreviewConfigUpdate(stackPreviewConfigUpdate StackPreviewConfigUpdate) ApiUpdatePreviewConfigRequest

type ApiUpdateStackResourceRequest

type ApiUpdateStackResourceRequest struct {
	ApiService *DefaultApiService
	// contains filtered or unexported fields
}

func (ApiUpdateStackResourceRequest) Execute

func (ApiUpdateStackResourceRequest) StackResource

type ApiV1OrganizationsOrgIdProjectsProjectNameAddonsPostgresIdActionsBackupPost202Response

type ApiV1OrganizationsOrgIdProjectsProjectNameAddonsPostgresIdActionsBackupPost202Response struct {
	Message  *string `json:"message,omitempty"`
	BackupId *string `json:"backup_id,omitempty"`
}

ApiV1OrganizationsOrgIdProjectsProjectNameAddonsPostgresIdActionsBackupPost202Response struct for ApiV1OrganizationsOrgIdProjectsProjectNameAddonsPostgresIdActionsBackupPost202Response

func NewApiV1OrganizationsOrgIdProjectsProjectNameAddonsPostgresIdActionsBackupPost202Response

func NewApiV1OrganizationsOrgIdProjectsProjectNameAddonsPostgresIdActionsBackupPost202Response() *ApiV1OrganizationsOrgIdProjectsProjectNameAddonsPostgresIdActionsBackupPost202Response

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

func NewApiV1OrganizationsOrgIdProjectsProjectNameAddonsPostgresIdActionsBackupPost202ResponseWithDefaults

func NewApiV1OrganizationsOrgIdProjectsProjectNameAddonsPostgresIdActionsBackupPost202ResponseWithDefaults() *ApiV1OrganizationsOrgIdProjectsProjectNameAddonsPostgresIdActionsBackupPost202Response

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

func (*ApiV1OrganizationsOrgIdProjectsProjectNameAddonsPostgresIdActionsBackupPost202Response) GetBackupId

GetBackupId returns the BackupId field value if set, zero value otherwise.

func (*ApiV1OrganizationsOrgIdProjectsProjectNameAddonsPostgresIdActionsBackupPost202Response) GetBackupIdOk

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

func (*ApiV1OrganizationsOrgIdProjectsProjectNameAddonsPostgresIdActionsBackupPost202Response) GetMessage

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

func (*ApiV1OrganizationsOrgIdProjectsProjectNameAddonsPostgresIdActionsBackupPost202Response) GetMessageOk

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 (*ApiV1OrganizationsOrgIdProjectsProjectNameAddonsPostgresIdActionsBackupPost202Response) HasBackupId

HasBackupId returns a boolean if a field has been set.

func (*ApiV1OrganizationsOrgIdProjectsProjectNameAddonsPostgresIdActionsBackupPost202Response) HasMessage

HasMessage returns a boolean if a field has been set.

func (ApiV1OrganizationsOrgIdProjectsProjectNameAddonsPostgresIdActionsBackupPost202Response) MarshalJSON

func (*ApiV1OrganizationsOrgIdProjectsProjectNameAddonsPostgresIdActionsBackupPost202Response) SetBackupId

SetBackupId gets a reference to the given string and assigns it to the BackupId field.

func (*ApiV1OrganizationsOrgIdProjectsProjectNameAddonsPostgresIdActionsBackupPost202Response) SetMessage

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

type ApiV1OrganizationsOrgIdProjectsProjectNameAddonsPostgresIdActionsBackupPostRequest

type ApiV1OrganizationsOrgIdProjectsProjectNameAddonsPostgresIdActionsBackupPostRequest struct {
	// Optional description for this backup
	Description *string `json:"description,omitempty"`
}

ApiV1OrganizationsOrgIdProjectsProjectNameAddonsPostgresIdActionsBackupPostRequest struct for ApiV1OrganizationsOrgIdProjectsProjectNameAddonsPostgresIdActionsBackupPostRequest

func NewApiV1OrganizationsOrgIdProjectsProjectNameAddonsPostgresIdActionsBackupPostRequest

func NewApiV1OrganizationsOrgIdProjectsProjectNameAddonsPostgresIdActionsBackupPostRequest() *ApiV1OrganizationsOrgIdProjectsProjectNameAddonsPostgresIdActionsBackupPostRequest

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

func NewApiV1OrganizationsOrgIdProjectsProjectNameAddonsPostgresIdActionsBackupPostRequestWithDefaults

func NewApiV1OrganizationsOrgIdProjectsProjectNameAddonsPostgresIdActionsBackupPostRequestWithDefaults() *ApiV1OrganizationsOrgIdProjectsProjectNameAddonsPostgresIdActionsBackupPostRequest

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

func (*ApiV1OrganizationsOrgIdProjectsProjectNameAddonsPostgresIdActionsBackupPostRequest) GetDescription

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

func (*ApiV1OrganizationsOrgIdProjectsProjectNameAddonsPostgresIdActionsBackupPostRequest) GetDescriptionOk

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 (*ApiV1OrganizationsOrgIdProjectsProjectNameAddonsPostgresIdActionsBackupPostRequest) HasDescription

HasDescription returns a boolean if a field has been set.

func (ApiV1OrganizationsOrgIdProjectsProjectNameAddonsPostgresIdActionsBackupPostRequest) MarshalJSON

func (*ApiV1OrganizationsOrgIdProjectsProjectNameAddonsPostgresIdActionsBackupPostRequest) SetDescription

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

type ApiV1OrganizationsOrgIdProjectsProjectNameAddonsPostgresIdActionsFencePost200Response

type ApiV1OrganizationsOrgIdProjectsProjectNameAddonsPostgresIdActionsFencePost200Response struct {
	Message *string `json:"message,omitempty"`
	Fenced  *bool   `json:"fenced,omitempty"`
}

ApiV1OrganizationsOrgIdProjectsProjectNameAddonsPostgresIdActionsFencePost200Response struct for ApiV1OrganizationsOrgIdProjectsProjectNameAddonsPostgresIdActionsFencePost200Response

func NewApiV1OrganizationsOrgIdProjectsProjectNameAddonsPostgresIdActionsFencePost200Response

func NewApiV1OrganizationsOrgIdProjectsProjectNameAddonsPostgresIdActionsFencePost200Response() *ApiV1OrganizationsOrgIdProjectsProjectNameAddonsPostgresIdActionsFencePost200Response

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

func NewApiV1OrganizationsOrgIdProjectsProjectNameAddonsPostgresIdActionsFencePost200ResponseWithDefaults

func NewApiV1OrganizationsOrgIdProjectsProjectNameAddonsPostgresIdActionsFencePost200ResponseWithDefaults() *ApiV1OrganizationsOrgIdProjectsProjectNameAddonsPostgresIdActionsFencePost200Response

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

func (*ApiV1OrganizationsOrgIdProjectsProjectNameAddonsPostgresIdActionsFencePost200Response) GetFenced

GetFenced returns the Fenced field value if set, zero value otherwise.

func (*ApiV1OrganizationsOrgIdProjectsProjectNameAddonsPostgresIdActionsFencePost200Response) GetFencedOk

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

func (*ApiV1OrganizationsOrgIdProjectsProjectNameAddonsPostgresIdActionsFencePost200Response) GetMessage

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

func (*ApiV1OrganizationsOrgIdProjectsProjectNameAddonsPostgresIdActionsFencePost200Response) GetMessageOk

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 (*ApiV1OrganizationsOrgIdProjectsProjectNameAddonsPostgresIdActionsFencePost200Response) HasFenced

HasFenced returns a boolean if a field has been set.

func (*ApiV1OrganizationsOrgIdProjectsProjectNameAddonsPostgresIdActionsFencePost200Response) HasMessage

HasMessage returns a boolean if a field has been set.

func (ApiV1OrganizationsOrgIdProjectsProjectNameAddonsPostgresIdActionsFencePost200Response) MarshalJSON

func (*ApiV1OrganizationsOrgIdProjectsProjectNameAddonsPostgresIdActionsFencePost200Response) SetFenced

SetFenced gets a reference to the given bool and assigns it to the Fenced field.

func (*ApiV1OrganizationsOrgIdProjectsProjectNameAddonsPostgresIdActionsFencePost200Response) SetMessage

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

type ApiV1OrganizationsOrgIdProjectsProjectNameAddonsPostgresIdActionsFencePostRequest

type ApiV1OrganizationsOrgIdProjectsProjectNameAddonsPostgresIdActionsFencePostRequest struct {
	// true to fence the cluster, false to unfence
	Fence bool `json:"fence"`
	// Reason for fencing/unfencing
	Reason *string `json:"reason,omitempty"`
}

ApiV1OrganizationsOrgIdProjectsProjectNameAddonsPostgresIdActionsFencePostRequest struct for ApiV1OrganizationsOrgIdProjectsProjectNameAddonsPostgresIdActionsFencePostRequest

func NewApiV1OrganizationsOrgIdProjectsProjectNameAddonsPostgresIdActionsFencePostRequest

func NewApiV1OrganizationsOrgIdProjectsProjectNameAddonsPostgresIdActionsFencePostRequest(fence bool) *ApiV1OrganizationsOrgIdProjectsProjectNameAddonsPostgresIdActionsFencePostRequest

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

func NewApiV1OrganizationsOrgIdProjectsProjectNameAddonsPostgresIdActionsFencePostRequestWithDefaults

func NewApiV1OrganizationsOrgIdProjectsProjectNameAddonsPostgresIdActionsFencePostRequestWithDefaults() *ApiV1OrganizationsOrgIdProjectsProjectNameAddonsPostgresIdActionsFencePostRequest

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

func (*ApiV1OrganizationsOrgIdProjectsProjectNameAddonsPostgresIdActionsFencePostRequest) GetFence

GetFence returns the Fence field value

func (*ApiV1OrganizationsOrgIdProjectsProjectNameAddonsPostgresIdActionsFencePostRequest) GetFenceOk

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

func (*ApiV1OrganizationsOrgIdProjectsProjectNameAddonsPostgresIdActionsFencePostRequest) GetReason

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

func (*ApiV1OrganizationsOrgIdProjectsProjectNameAddonsPostgresIdActionsFencePostRequest) GetReasonOk

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 (*ApiV1OrganizationsOrgIdProjectsProjectNameAddonsPostgresIdActionsFencePostRequest) HasReason

HasReason returns a boolean if a field has been set.

func (ApiV1OrganizationsOrgIdProjectsProjectNameAddonsPostgresIdActionsFencePostRequest) MarshalJSON

func (*ApiV1OrganizationsOrgIdProjectsProjectNameAddonsPostgresIdActionsFencePostRequest) SetFence

SetFence sets field value

func (*ApiV1OrganizationsOrgIdProjectsProjectNameAddonsPostgresIdActionsFencePostRequest) SetReason

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

type ApiV1OrganizationsOrgIdProjectsProjectNameAddonsPostgresIdActionsHibernatePost200Response

type ApiV1OrganizationsOrgIdProjectsProjectNameAddonsPostgresIdActionsHibernatePost200Response struct {
	Message    *string `json:"message,omitempty"`
	Hibernated *bool   `json:"hibernated,omitempty"`
}

ApiV1OrganizationsOrgIdProjectsProjectNameAddonsPostgresIdActionsHibernatePost200Response struct for ApiV1OrganizationsOrgIdProjectsProjectNameAddonsPostgresIdActionsHibernatePost200Response

func NewApiV1OrganizationsOrgIdProjectsProjectNameAddonsPostgresIdActionsHibernatePost200Response

func NewApiV1OrganizationsOrgIdProjectsProjectNameAddonsPostgresIdActionsHibernatePost200Response() *ApiV1OrganizationsOrgIdProjectsProjectNameAddonsPostgresIdActionsHibernatePost200Response

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

func NewApiV1OrganizationsOrgIdProjectsProjectNameAddonsPostgresIdActionsHibernatePost200ResponseWithDefaults

func NewApiV1OrganizationsOrgIdProjectsProjectNameAddonsPostgresIdActionsHibernatePost200ResponseWithDefaults() *ApiV1OrganizationsOrgIdProjectsProjectNameAddonsPostgresIdActionsHibernatePost200Response

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

func (*ApiV1OrganizationsOrgIdProjectsProjectNameAddonsPostgresIdActionsHibernatePost200Response) GetHibernated

GetHibernated returns the Hibernated field value if set, zero value otherwise.

func (*ApiV1OrganizationsOrgIdProjectsProjectNameAddonsPostgresIdActionsHibernatePost200Response) GetHibernatedOk

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

func (*ApiV1OrganizationsOrgIdProjectsProjectNameAddonsPostgresIdActionsHibernatePost200Response) GetMessage

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

func (*ApiV1OrganizationsOrgIdProjectsProjectNameAddonsPostgresIdActionsHibernatePost200Response) GetMessageOk

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 (*ApiV1OrganizationsOrgIdProjectsProjectNameAddonsPostgresIdActionsHibernatePost200Response) HasHibernated

HasHibernated returns a boolean if a field has been set.

func (*ApiV1OrganizationsOrgIdProjectsProjectNameAddonsPostgresIdActionsHibernatePost200Response) HasMessage

HasMessage returns a boolean if a field has been set.

func (ApiV1OrganizationsOrgIdProjectsProjectNameAddonsPostgresIdActionsHibernatePost200Response) MarshalJSON

func (*ApiV1OrganizationsOrgIdProjectsProjectNameAddonsPostgresIdActionsHibernatePost200Response) SetHibernated

SetHibernated gets a reference to the given bool and assigns it to the Hibernated field.

func (*ApiV1OrganizationsOrgIdProjectsProjectNameAddonsPostgresIdActionsHibernatePost200Response) SetMessage

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

type ApiV1OrganizationsOrgIdProjectsProjectNameAddonsPostgresIdActionsHibernatePostRequest

type ApiV1OrganizationsOrgIdProjectsProjectNameAddonsPostgresIdActionsHibernatePostRequest struct {
	// true to hibernate, false to wake
	Hibernate bool `json:"hibernate"`
}

ApiV1OrganizationsOrgIdProjectsProjectNameAddonsPostgresIdActionsHibernatePostRequest struct for ApiV1OrganizationsOrgIdProjectsProjectNameAddonsPostgresIdActionsHibernatePostRequest

func NewApiV1OrganizationsOrgIdProjectsProjectNameAddonsPostgresIdActionsHibernatePostRequest

func NewApiV1OrganizationsOrgIdProjectsProjectNameAddonsPostgresIdActionsHibernatePostRequest(hibernate bool) *ApiV1OrganizationsOrgIdProjectsProjectNameAddonsPostgresIdActionsHibernatePostRequest

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

func NewApiV1OrganizationsOrgIdProjectsProjectNameAddonsPostgresIdActionsHibernatePostRequestWithDefaults

func NewApiV1OrganizationsOrgIdProjectsProjectNameAddonsPostgresIdActionsHibernatePostRequestWithDefaults() *ApiV1OrganizationsOrgIdProjectsProjectNameAddonsPostgresIdActionsHibernatePostRequest

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

func (*ApiV1OrganizationsOrgIdProjectsProjectNameAddonsPostgresIdActionsHibernatePostRequest) GetHibernate

GetHibernate returns the Hibernate field value

func (*ApiV1OrganizationsOrgIdProjectsProjectNameAddonsPostgresIdActionsHibernatePostRequest) GetHibernateOk

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

func (ApiV1OrganizationsOrgIdProjectsProjectNameAddonsPostgresIdActionsHibernatePostRequest) MarshalJSON

func (*ApiV1OrganizationsOrgIdProjectsProjectNameAddonsPostgresIdActionsHibernatePostRequest) SetHibernate

SetHibernate sets field value

type AppConfigResponse

type AppConfigResponse struct {
	// True when GitHub OAuth login is configured on the server.
	GithubOauth *bool                 `json:"github_oauth,omitempty"`
	Signup      *SignupConfigResponse `json:"signup,omitempty"`
}

AppConfigResponse struct for AppConfigResponse

func NewAppConfigResponse

func NewAppConfigResponse() *AppConfigResponse

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

func NewAppConfigResponseWithDefaults

func NewAppConfigResponseWithDefaults() *AppConfigResponse

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

func (*AppConfigResponse) GetGithubOauth

func (o *AppConfigResponse) GetGithubOauth() bool

GetGithubOauth returns the GithubOauth field value if set, zero value otherwise.

func (*AppConfigResponse) GetGithubOauthOk

func (o *AppConfigResponse) GetGithubOauthOk() (*bool, bool)

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

func (*AppConfigResponse) GetSignup

func (o *AppConfigResponse) GetSignup() SignupConfigResponse

GetSignup returns the Signup field value if set, zero value otherwise.

func (*AppConfigResponse) GetSignupOk

func (o *AppConfigResponse) GetSignupOk() (*SignupConfigResponse, bool)

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

func (*AppConfigResponse) HasGithubOauth

func (o *AppConfigResponse) HasGithubOauth() bool

HasGithubOauth returns a boolean if a field has been set.

func (*AppConfigResponse) HasSignup

func (o *AppConfigResponse) HasSignup() bool

HasSignup returns a boolean if a field has been set.

func (AppConfigResponse) MarshalJSON

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

func (*AppConfigResponse) SetGithubOauth

func (o *AppConfigResponse) SetGithubOauth(v bool)

SetGithubOauth gets a reference to the given bool and assigns it to the GithubOauth field.

func (*AppConfigResponse) SetSignup

func (o *AppConfigResponse) SetSignup(v SignupConfigResponse)

SetSignup gets a reference to the given SignupConfigResponse and assigns it to the Signup field.

type AzureCredentials

type AzureCredentials struct {
	ConnectionString SecretReference `json:"connection_string"`
	// Azure storage account name
	StorageAccountName *string `json:"storage_account_name,omitempty"`
}

AzureCredentials struct for AzureCredentials

func NewAzureCredentials

func NewAzureCredentials(connectionString SecretReference) *AzureCredentials

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

func NewAzureCredentialsWithDefaults

func NewAzureCredentialsWithDefaults() *AzureCredentials

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

func (*AzureCredentials) GetConnectionString

func (o *AzureCredentials) GetConnectionString() SecretReference

GetConnectionString returns the ConnectionString field value

func (*AzureCredentials) GetConnectionStringOk

func (o *AzureCredentials) GetConnectionStringOk() (*SecretReference, bool)

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

func (*AzureCredentials) GetStorageAccountName

func (o *AzureCredentials) GetStorageAccountName() string

GetStorageAccountName returns the StorageAccountName field value if set, zero value otherwise.

func (*AzureCredentials) GetStorageAccountNameOk

func (o *AzureCredentials) GetStorageAccountNameOk() (*string, bool)

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

func (*AzureCredentials) HasStorageAccountName

func (o *AzureCredentials) HasStorageAccountName() bool

HasStorageAccountName returns a boolean if a field has been set.

func (AzureCredentials) MarshalJSON

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

func (*AzureCredentials) SetConnectionString

func (o *AzureCredentials) SetConnectionString(v SecretReference)

SetConnectionString sets field value

func (*AzureCredentials) SetStorageAccountName

func (o *AzureCredentials) SetStorageAccountName(v string)

SetStorageAccountName gets a reference to the given string and assigns it to the StorageAccountName 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 BuildArtifact

type BuildArtifact struct {
	ResourceRef     string `json:"resource_ref"`
	SourcePath      string `json:"source_path"`
	DestinationPath string `json:"destination_path"`
}

BuildArtifact struct for BuildArtifact

func NewBuildArtifact

func NewBuildArtifact(resourceRef string, sourcePath string, destinationPath string) *BuildArtifact

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

func NewBuildArtifactWithDefaults

func NewBuildArtifactWithDefaults() *BuildArtifact

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

func (*BuildArtifact) GetDestinationPath

func (o *BuildArtifact) GetDestinationPath() string

GetDestinationPath returns the DestinationPath field value

func (*BuildArtifact) GetDestinationPathOk

func (o *BuildArtifact) GetDestinationPathOk() (*string, bool)

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

func (*BuildArtifact) GetResourceRef

func (o *BuildArtifact) GetResourceRef() string

GetResourceRef returns the ResourceRef field value

func (*BuildArtifact) GetResourceRefOk

func (o *BuildArtifact) GetResourceRefOk() (*string, bool)

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

func (*BuildArtifact) GetSourcePath

func (o *BuildArtifact) GetSourcePath() string

GetSourcePath returns the SourcePath field value

func (*BuildArtifact) GetSourcePathOk

func (o *BuildArtifact) GetSourcePathOk() (*string, bool)

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

func (BuildArtifact) MarshalJSON

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

func (*BuildArtifact) SetDestinationPath

func (o *BuildArtifact) SetDestinationPath(v string)

SetDestinationPath sets field value

func (*BuildArtifact) SetResourceRef

func (o *BuildArtifact) SetResourceRef(v string)

SetResourceRef sets field value

func (*BuildArtifact) SetSourcePath

func (o *BuildArtifact) SetSourcePath(v string)

SetSourcePath sets field value

type BuildArtifactSourceConfig

type BuildArtifactSourceConfig struct {
	// Path within the build output to copy from.
	SourcePath string `json:"source_path"`
	// Path within the volume to copy to.
	DestinationPath *string `json:"destination_path,omitempty"`
}

BuildArtifactSourceConfig Config for build artifact source connections (kind=build_artifact_source).

func NewBuildArtifactSourceConfig

func NewBuildArtifactSourceConfig(sourcePath string) *BuildArtifactSourceConfig

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

func NewBuildArtifactSourceConfigWithDefaults

func NewBuildArtifactSourceConfigWithDefaults() *BuildArtifactSourceConfig

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

func (*BuildArtifactSourceConfig) GetDestinationPath

func (o *BuildArtifactSourceConfig) GetDestinationPath() string

GetDestinationPath returns the DestinationPath field value if set, zero value otherwise.

func (*BuildArtifactSourceConfig) GetDestinationPathOk

func (o *BuildArtifactSourceConfig) GetDestinationPathOk() (*string, bool)

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

func (*BuildArtifactSourceConfig) GetSourcePath

func (o *BuildArtifactSourceConfig) GetSourcePath() string

GetSourcePath returns the SourcePath field value

func (*BuildArtifactSourceConfig) GetSourcePathOk

func (o *BuildArtifactSourceConfig) GetSourcePathOk() (*string, bool)

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

func (*BuildArtifactSourceConfig) HasDestinationPath

func (o *BuildArtifactSourceConfig) HasDestinationPath() bool

HasDestinationPath returns a boolean if a field has been set.

func (BuildArtifactSourceConfig) MarshalJSON

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

func (*BuildArtifactSourceConfig) SetDestinationPath

func (o *BuildArtifactSourceConfig) SetDestinationPath(v string)

SetDestinationPath gets a reference to the given string and assigns it to the DestinationPath field.

func (*BuildArtifactSourceConfig) SetSourcePath

func (o *BuildArtifactSourceConfig) SetSourcePath(v string)

SetSourcePath sets field value

type BuildArtifactSyncInfo

type BuildArtifactSyncInfo struct {
	ResourceName *string `json:"resource_name,omitempty"`
	BuildId      *string `json:"build_id,omitempty"`
	Status       *string `json:"status,omitempty"`
}

BuildArtifactSyncInfo struct for BuildArtifactSyncInfo

func NewBuildArtifactSyncInfo

func NewBuildArtifactSyncInfo() *BuildArtifactSyncInfo

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

func NewBuildArtifactSyncInfoWithDefaults

func NewBuildArtifactSyncInfoWithDefaults() *BuildArtifactSyncInfo

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

func (*BuildArtifactSyncInfo) GetBuildId

func (o *BuildArtifactSyncInfo) GetBuildId() string

GetBuildId returns the BuildId field value if set, zero value otherwise.

func (*BuildArtifactSyncInfo) GetBuildIdOk

func (o *BuildArtifactSyncInfo) GetBuildIdOk() (*string, bool)

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

func (*BuildArtifactSyncInfo) GetResourceName

func (o *BuildArtifactSyncInfo) GetResourceName() string

GetResourceName returns the ResourceName field value if set, zero value otherwise.

func (*BuildArtifactSyncInfo) GetResourceNameOk

func (o *BuildArtifactSyncInfo) GetResourceNameOk() (*string, bool)

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

func (*BuildArtifactSyncInfo) GetStatus

func (o *BuildArtifactSyncInfo) GetStatus() string

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

func (*BuildArtifactSyncInfo) GetStatusOk

func (o *BuildArtifactSyncInfo) 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 (*BuildArtifactSyncInfo) HasBuildId

func (o *BuildArtifactSyncInfo) HasBuildId() bool

HasBuildId returns a boolean if a field has been set.

func (*BuildArtifactSyncInfo) HasResourceName

func (o *BuildArtifactSyncInfo) HasResourceName() bool

HasResourceName returns a boolean if a field has been set.

func (*BuildArtifactSyncInfo) HasStatus

func (o *BuildArtifactSyncInfo) HasStatus() bool

HasStatus returns a boolean if a field has been set.

func (BuildArtifactSyncInfo) MarshalJSON

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

func (*BuildArtifactSyncInfo) SetBuildId

func (o *BuildArtifactSyncInfo) SetBuildId(v string)

SetBuildId gets a reference to the given string and assigns it to the BuildId field.

func (*BuildArtifactSyncInfo) SetResourceName

func (o *BuildArtifactSyncInfo) SetResourceName(v string)

SetResourceName gets a reference to the given string and assigns it to the ResourceName field.

func (*BuildArtifactSyncInfo) SetStatus

func (o *BuildArtifactSyncInfo) SetStatus(v string)

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

type BuildFailureDetail

type BuildFailureDetail struct {
	FailureType  *string `json:"failure_type,omitempty"`
	Reason       *string `json:"reason,omitempty"`
	Message      *string `json:"message,omitempty"`
	RestartCount *int32  `json:"restart_count,omitempty"`
	ExitCode     *int32  `json:"exit_code,omitempty"`
}

BuildFailureDetail struct for BuildFailureDetail

func NewBuildFailureDetail

func NewBuildFailureDetail() *BuildFailureDetail

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

func NewBuildFailureDetailWithDefaults

func NewBuildFailureDetailWithDefaults() *BuildFailureDetail

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

func (*BuildFailureDetail) GetExitCode

func (o *BuildFailureDetail) GetExitCode() int32

GetExitCode returns the ExitCode field value if set, zero value otherwise.

func (*BuildFailureDetail) GetExitCodeOk

func (o *BuildFailureDetail) 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 (*BuildFailureDetail) GetFailureType

func (o *BuildFailureDetail) GetFailureType() string

GetFailureType returns the FailureType field value if set, zero value otherwise.

func (*BuildFailureDetail) GetFailureTypeOk

func (o *BuildFailureDetail) GetFailureTypeOk() (*string, bool)

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

func (*BuildFailureDetail) GetMessage

func (o *BuildFailureDetail) GetMessage() string

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

func (*BuildFailureDetail) GetMessageOk

func (o *BuildFailureDetail) 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 (*BuildFailureDetail) GetReason

func (o *BuildFailureDetail) GetReason() string

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

func (*BuildFailureDetail) GetReasonOk

func (o *BuildFailureDetail) 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 (*BuildFailureDetail) GetRestartCount

func (o *BuildFailureDetail) GetRestartCount() int32

GetRestartCount returns the RestartCount field value if set, zero value otherwise.

func (*BuildFailureDetail) GetRestartCountOk

func (o *BuildFailureDetail) GetRestartCountOk() (*int32, bool)

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

func (*BuildFailureDetail) HasExitCode

func (o *BuildFailureDetail) HasExitCode() bool

HasExitCode returns a boolean if a field has been set.

func (*BuildFailureDetail) HasFailureType

func (o *BuildFailureDetail) HasFailureType() bool

HasFailureType returns a boolean if a field has been set.

func (*BuildFailureDetail) HasMessage

func (o *BuildFailureDetail) HasMessage() bool

HasMessage returns a boolean if a field has been set.

func (*BuildFailureDetail) HasReason

func (o *BuildFailureDetail) HasReason() bool

HasReason returns a boolean if a field has been set.

func (*BuildFailureDetail) HasRestartCount

func (o *BuildFailureDetail) HasRestartCount() bool

HasRestartCount returns a boolean if a field has been set.

func (BuildFailureDetail) MarshalJSON

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

func (*BuildFailureDetail) SetExitCode

func (o *BuildFailureDetail) SetExitCode(v int32)

SetExitCode gets a reference to the given int32 and assigns it to the ExitCode field.

func (*BuildFailureDetail) SetFailureType

func (o *BuildFailureDetail) SetFailureType(v string)

SetFailureType gets a reference to the given string and assigns it to the FailureType field.

func (*BuildFailureDetail) SetMessage

func (o *BuildFailureDetail) SetMessage(v string)

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

func (*BuildFailureDetail) SetReason

func (o *BuildFailureDetail) SetReason(v string)

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

func (*BuildFailureDetail) SetRestartCount

func (o *BuildFailureDetail) SetRestartCount(v int32)

SetRestartCount gets a reference to the given int32 and assigns it to the RestartCount field.

type BuildSourceContext

type BuildSourceContext struct {
	Volume  *BuildSourceContextVolume  `json:"volume,omitempty"`
	GitRepo *BuildSourceContextGitRepo `json:"git_repo,omitempty"`
}

BuildSourceContext struct for BuildSourceContext

func NewBuildSourceContext

func NewBuildSourceContext() *BuildSourceContext

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

func NewBuildSourceContextWithDefaults

func NewBuildSourceContextWithDefaults() *BuildSourceContext

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

func (*BuildSourceContext) GetGitRepo

GetGitRepo returns the GitRepo field value if set, zero value otherwise.

func (*BuildSourceContext) GetGitRepoOk

func (o *BuildSourceContext) GetGitRepoOk() (*BuildSourceContextGitRepo, bool)

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

func (*BuildSourceContext) GetVolume

GetVolume returns the Volume field value if set, zero value otherwise.

func (*BuildSourceContext) GetVolumeOk

func (o *BuildSourceContext) GetVolumeOk() (*BuildSourceContextVolume, bool)

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

func (*BuildSourceContext) HasGitRepo

func (o *BuildSourceContext) HasGitRepo() bool

HasGitRepo returns a boolean if a field has been set.

func (*BuildSourceContext) HasVolume

func (o *BuildSourceContext) HasVolume() bool

HasVolume returns a boolean if a field has been set.

func (BuildSourceContext) MarshalJSON

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

func (*BuildSourceContext) SetGitRepo

SetGitRepo gets a reference to the given BuildSourceContextGitRepo and assigns it to the GitRepo field.

func (*BuildSourceContext) SetVolume

SetVolume gets a reference to the given BuildSourceContextVolume and assigns it to the Volume field.

type BuildSourceContextGitRepo

type BuildSourceContextGitRepo struct {
	RepoUrl string `json:"repo_url"`
}

BuildSourceContextGitRepo struct for BuildSourceContextGitRepo

func NewBuildSourceContextGitRepo

func NewBuildSourceContextGitRepo(repoUrl string) *BuildSourceContextGitRepo

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

func NewBuildSourceContextGitRepoWithDefaults

func NewBuildSourceContextGitRepoWithDefaults() *BuildSourceContextGitRepo

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

func (*BuildSourceContextGitRepo) GetRepoUrl

func (o *BuildSourceContextGitRepo) GetRepoUrl() string

GetRepoUrl returns the RepoUrl field value

func (*BuildSourceContextGitRepo) GetRepoUrlOk

func (o *BuildSourceContextGitRepo) GetRepoUrlOk() (*string, bool)

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

func (BuildSourceContextGitRepo) MarshalJSON

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

func (*BuildSourceContextGitRepo) SetRepoUrl

func (o *BuildSourceContextGitRepo) SetRepoUrl(v string)

SetRepoUrl sets field value

type BuildSourceContextVolume

type BuildSourceContextVolume struct {
	Id   string  `json:"id"`
	Name *string `json:"name,omitempty"`
}

BuildSourceContextVolume struct for BuildSourceContextVolume

func NewBuildSourceContextVolume

func NewBuildSourceContextVolume(id string) *BuildSourceContextVolume

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

func NewBuildSourceContextVolumeWithDefaults

func NewBuildSourceContextVolumeWithDefaults() *BuildSourceContextVolume

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

func (*BuildSourceContextVolume) GetId

func (o *BuildSourceContextVolume) GetId() string

GetId returns the Id field value

func (*BuildSourceContextVolume) GetIdOk

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

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

func (*BuildSourceContextVolume) GetName

func (o *BuildSourceContextVolume) GetName() string

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

func (*BuildSourceContextVolume) GetNameOk

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

func (o *BuildSourceContextVolume) HasName() bool

HasName returns a boolean if a field has been set.

func (BuildSourceContextVolume) MarshalJSON

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

func (*BuildSourceContextVolume) SetId

func (o *BuildSourceContextVolume) SetId(v string)

SetId sets field value

func (*BuildSourceContextVolume) SetName

func (o *BuildSourceContextVolume) SetName(v string)

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

type BuildSourceRevision

type BuildSourceRevision struct {
	VolumeSourceRevision *BuildSourceRevisionVolumeSourceRevision `json:"volume_source_revision,omitempty"`
	GitRepoRevision      *GitRepoRevision                         `json:"git_repo_revision,omitempty"`
}

BuildSourceRevision struct for BuildSourceRevision

func NewBuildSourceRevision

func NewBuildSourceRevision() *BuildSourceRevision

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

func NewBuildSourceRevisionWithDefaults

func NewBuildSourceRevisionWithDefaults() *BuildSourceRevision

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

func (*BuildSourceRevision) GetGitRepoRevision

func (o *BuildSourceRevision) GetGitRepoRevision() GitRepoRevision

GetGitRepoRevision returns the GitRepoRevision field value if set, zero value otherwise.

func (*BuildSourceRevision) GetGitRepoRevisionOk

func (o *BuildSourceRevision) GetGitRepoRevisionOk() (*GitRepoRevision, bool)

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

func (*BuildSourceRevision) GetVolumeSourceRevision

func (o *BuildSourceRevision) GetVolumeSourceRevision() BuildSourceRevisionVolumeSourceRevision

GetVolumeSourceRevision returns the VolumeSourceRevision field value if set, zero value otherwise.

func (*BuildSourceRevision) GetVolumeSourceRevisionOk

func (o *BuildSourceRevision) GetVolumeSourceRevisionOk() (*BuildSourceRevisionVolumeSourceRevision, bool)

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

func (*BuildSourceRevision) HasGitRepoRevision

func (o *BuildSourceRevision) HasGitRepoRevision() bool

HasGitRepoRevision returns a boolean if a field has been set.

func (*BuildSourceRevision) HasVolumeSourceRevision

func (o *BuildSourceRevision) HasVolumeSourceRevision() bool

HasVolumeSourceRevision returns a boolean if a field has been set.

func (BuildSourceRevision) MarshalJSON

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

func (*BuildSourceRevision) SetGitRepoRevision

func (o *BuildSourceRevision) SetGitRepoRevision(v GitRepoRevision)

SetGitRepoRevision gets a reference to the given GitRepoRevision and assigns it to the GitRepoRevision field.

func (*BuildSourceRevision) SetVolumeSourceRevision

func (o *BuildSourceRevision) SetVolumeSourceRevision(v BuildSourceRevisionVolumeSourceRevision)

SetVolumeSourceRevision gets a reference to the given BuildSourceRevisionVolumeSourceRevision and assigns it to the VolumeSourceRevision field.

type BuildSourceRevisionVolumeSourceRevision

type BuildSourceRevisionVolumeSourceRevision struct {
	CurrentVolumeHash string `json:"current_volume_hash"`
}

BuildSourceRevisionVolumeSourceRevision struct for BuildSourceRevisionVolumeSourceRevision

func NewBuildSourceRevisionVolumeSourceRevision

func NewBuildSourceRevisionVolumeSourceRevision(currentVolumeHash string) *BuildSourceRevisionVolumeSourceRevision

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

func NewBuildSourceRevisionVolumeSourceRevisionWithDefaults

func NewBuildSourceRevisionVolumeSourceRevisionWithDefaults() *BuildSourceRevisionVolumeSourceRevision

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

func (*BuildSourceRevisionVolumeSourceRevision) GetCurrentVolumeHash

func (o *BuildSourceRevisionVolumeSourceRevision) GetCurrentVolumeHash() string

GetCurrentVolumeHash returns the CurrentVolumeHash field value

func (*BuildSourceRevisionVolumeSourceRevision) GetCurrentVolumeHashOk

func (o *BuildSourceRevisionVolumeSourceRevision) GetCurrentVolumeHashOk() (*string, bool)

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

func (BuildSourceRevisionVolumeSourceRevision) MarshalJSON

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

func (*BuildSourceRevisionVolumeSourceRevision) SetCurrentVolumeHash

func (o *BuildSourceRevisionVolumeSourceRevision) SetCurrentVolumeHash(v string)

SetCurrentVolumeHash sets field value

type Cluster

type Cluster struct {
	Id             *string `json:"id,omitempty"`
	Name           string  `json:"name"`
	OrganisationId *string `json:"organisation_id,omitempty"`
	SharedCompute  *bool   `json:"shared_compute,omitempty"`
	// Deprecated alias for shared_compute. Both fields have the same value.
	// Deprecated
	Platform             *bool                 `json:"platform,omitempty"`
	ClusterUrl           string                `json:"cluster_url"`
	ClusterCaData        string                `json:"cluster_ca_data"`
	ClusterSaToken       string                `json:"cluster_sa_token"`
	ClusterImageRegistry *ClusterImageRegistry `json:"cluster_image_registry,omitempty"`
}

Cluster struct for Cluster

func NewCluster

func NewCluster(name string, clusterUrl string, clusterCaData string, clusterSaToken string) *Cluster

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

func NewClusterWithDefaults

func NewClusterWithDefaults() *Cluster

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

func (*Cluster) GetClusterCaData

func (o *Cluster) GetClusterCaData() string

GetClusterCaData returns the ClusterCaData field value

func (*Cluster) GetClusterCaDataOk

func (o *Cluster) GetClusterCaDataOk() (*string, bool)

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

func (*Cluster) GetClusterImageRegistry

func (o *Cluster) GetClusterImageRegistry() ClusterImageRegistry

GetClusterImageRegistry returns the ClusterImageRegistry field value if set, zero value otherwise.

func (*Cluster) GetClusterImageRegistryOk

func (o *Cluster) GetClusterImageRegistryOk() (*ClusterImageRegistry, bool)

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

func (*Cluster) GetClusterSaToken

func (o *Cluster) GetClusterSaToken() string

GetClusterSaToken returns the ClusterSaToken field value

func (*Cluster) GetClusterSaTokenOk

func (o *Cluster) GetClusterSaTokenOk() (*string, bool)

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

func (*Cluster) GetClusterUrl

func (o *Cluster) GetClusterUrl() string

GetClusterUrl returns the ClusterUrl field value

func (*Cluster) GetClusterUrlOk

func (o *Cluster) GetClusterUrlOk() (*string, bool)

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

func (*Cluster) GetId

func (o *Cluster) GetId() string

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

func (*Cluster) GetIdOk

func (o *Cluster) 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 (*Cluster) GetName

func (o *Cluster) GetName() string

GetName returns the Name field value

func (*Cluster) GetNameOk

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

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

func (*Cluster) GetOrganisationId

func (o *Cluster) GetOrganisationId() string

GetOrganisationId returns the OrganisationId field value if set, zero value otherwise.

func (*Cluster) GetOrganisationIdOk

func (o *Cluster) GetOrganisationIdOk() (*string, bool)

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

func (*Cluster) GetPlatform

func (o *Cluster) GetPlatform() bool

GetPlatform returns the Platform field value if set, zero value otherwise. Deprecated

func (*Cluster) GetPlatformOk

func (o *Cluster) GetPlatformOk() (*bool, bool)

GetPlatformOk returns a tuple with the Platform field value if set, nil otherwise and a boolean to check if the value has been set. Deprecated

func (*Cluster) GetSharedCompute

func (o *Cluster) GetSharedCompute() bool

GetSharedCompute returns the SharedCompute field value if set, zero value otherwise.

func (*Cluster) GetSharedComputeOk

func (o *Cluster) GetSharedComputeOk() (*bool, bool)

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

func (*Cluster) HasClusterImageRegistry

func (o *Cluster) HasClusterImageRegistry() bool

HasClusterImageRegistry returns a boolean if a field has been set.

func (*Cluster) HasId

func (o *Cluster) HasId() bool

HasId returns a boolean if a field has been set.

func (*Cluster) HasOrganisationId

func (o *Cluster) HasOrganisationId() bool

HasOrganisationId returns a boolean if a field has been set.

func (*Cluster) HasPlatform

func (o *Cluster) HasPlatform() bool

HasPlatform returns a boolean if a field has been set.

func (*Cluster) HasSharedCompute

func (o *Cluster) HasSharedCompute() bool

HasSharedCompute returns a boolean if a field has been set.

func (Cluster) MarshalJSON

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

func (*Cluster) SetClusterCaData

func (o *Cluster) SetClusterCaData(v string)

SetClusterCaData sets field value

func (*Cluster) SetClusterImageRegistry

func (o *Cluster) SetClusterImageRegistry(v ClusterImageRegistry)

SetClusterImageRegistry gets a reference to the given ClusterImageRegistry and assigns it to the ClusterImageRegistry field.

func (*Cluster) SetClusterSaToken

func (o *Cluster) SetClusterSaToken(v string)

SetClusterSaToken sets field value

func (*Cluster) SetClusterUrl

func (o *Cluster) SetClusterUrl(v string)

SetClusterUrl sets field value

func (*Cluster) SetId

func (o *Cluster) SetId(v string)

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

func (*Cluster) SetName

func (o *Cluster) SetName(v string)

SetName sets field value

func (*Cluster) SetOrganisationId

func (o *Cluster) SetOrganisationId(v string)

SetOrganisationId gets a reference to the given string and assigns it to the OrganisationId field.

func (*Cluster) SetPlatform

func (o *Cluster) SetPlatform(v bool)

SetPlatform gets a reference to the given bool and assigns it to the Platform field. Deprecated

func (*Cluster) SetSharedCompute

func (o *Cluster) SetSharedCompute(v bool)

SetSharedCompute gets a reference to the given bool and assigns it to the SharedCompute field.

type ClusterImageRegistry

type ClusterImageRegistry struct {
	Id             *string                     `json:"id,omitempty"`
	Name           string                      `json:"name"`
	OrganisationId *string                     `json:"organisation_id,omitempty"`
	ClusterId      *string                     `json:"cluster_id,omitempty"`
	Spec           *ClusterImageRegistrySpec   `json:"spec,omitempty"`
	Status         *ClusterImageRegistryStatus `json:"status,omitempty"`
	CreatedAt      *time.Time                  `json:"created_at,omitempty"`
	UpdatedAt      *time.Time                  `json:"updated_at,omitempty"`
}

ClusterImageRegistry struct for ClusterImageRegistry

func NewClusterImageRegistry

func NewClusterImageRegistry(name string) *ClusterImageRegistry

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

func NewClusterImageRegistryWithDefaults

func NewClusterImageRegistryWithDefaults() *ClusterImageRegistry

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

func (*ClusterImageRegistry) GetClusterId

func (o *ClusterImageRegistry) GetClusterId() string

GetClusterId returns the ClusterId field value if set, zero value otherwise.

func (*ClusterImageRegistry) GetClusterIdOk

func (o *ClusterImageRegistry) GetClusterIdOk() (*string, bool)

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

func (*ClusterImageRegistry) GetCreatedAt

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

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

func (*ClusterImageRegistry) GetCreatedAtOk

func (o *ClusterImageRegistry) 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 (*ClusterImageRegistry) GetId

func (o *ClusterImageRegistry) GetId() string

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

func (*ClusterImageRegistry) GetIdOk

func (o *ClusterImageRegistry) 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 (*ClusterImageRegistry) GetName

func (o *ClusterImageRegistry) GetName() string

GetName returns the Name field value

func (*ClusterImageRegistry) GetNameOk

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

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

func (*ClusterImageRegistry) GetOrganisationId

func (o *ClusterImageRegistry) GetOrganisationId() string

GetOrganisationId returns the OrganisationId field value if set, zero value otherwise.

func (*ClusterImageRegistry) GetOrganisationIdOk

func (o *ClusterImageRegistry) GetOrganisationIdOk() (*string, bool)

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

func (*ClusterImageRegistry) GetSpec

GetSpec returns the Spec field value if set, zero value otherwise.

func (*ClusterImageRegistry) GetSpecOk

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

func (*ClusterImageRegistry) GetStatus

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

func (*ClusterImageRegistry) 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 (*ClusterImageRegistry) GetUpdatedAt

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

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

func (*ClusterImageRegistry) GetUpdatedAtOk

func (o *ClusterImageRegistry) 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 (*ClusterImageRegistry) HasClusterId

func (o *ClusterImageRegistry) HasClusterId() bool

HasClusterId returns a boolean if a field has been set.

func (*ClusterImageRegistry) HasCreatedAt

func (o *ClusterImageRegistry) HasCreatedAt() bool

HasCreatedAt returns a boolean if a field has been set.

func (*ClusterImageRegistry) HasId

func (o *ClusterImageRegistry) HasId() bool

HasId returns a boolean if a field has been set.

func (*ClusterImageRegistry) HasOrganisationId

func (o *ClusterImageRegistry) HasOrganisationId() bool

HasOrganisationId returns a boolean if a field has been set.

func (*ClusterImageRegistry) HasSpec

func (o *ClusterImageRegistry) HasSpec() bool

HasSpec returns a boolean if a field has been set.

func (*ClusterImageRegistry) HasStatus

func (o *ClusterImageRegistry) HasStatus() bool

HasStatus returns a boolean if a field has been set.

func (*ClusterImageRegistry) HasUpdatedAt

func (o *ClusterImageRegistry) HasUpdatedAt() bool

HasUpdatedAt returns a boolean if a field has been set.

func (ClusterImageRegistry) MarshalJSON

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

func (*ClusterImageRegistry) SetClusterId

func (o *ClusterImageRegistry) SetClusterId(v string)

SetClusterId gets a reference to the given string and assigns it to the ClusterId field.

func (*ClusterImageRegistry) SetCreatedAt

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

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

func (*ClusterImageRegistry) SetId

func (o *ClusterImageRegistry) SetId(v string)

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

func (*ClusterImageRegistry) SetName

func (o *ClusterImageRegistry) SetName(v string)

SetName sets field value

func (*ClusterImageRegistry) SetOrganisationId

func (o *ClusterImageRegistry) SetOrganisationId(v string)

SetOrganisationId gets a reference to the given string and assigns it to the OrganisationId field.

func (*ClusterImageRegistry) SetSpec

SetSpec gets a reference to the given ClusterImageRegistrySpec and assigns it to the Spec field.

func (*ClusterImageRegistry) SetStatus

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

func (*ClusterImageRegistry) SetUpdatedAt

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

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

type ClusterImageRegistryList

type ClusterImageRegistryList struct {
	Items []ClusterImageRegistry `json:"items,omitempty"`
	Total *int32                 `json:"total,omitempty"`
}

ClusterImageRegistryList struct for ClusterImageRegistryList

func NewClusterImageRegistryList

func NewClusterImageRegistryList() *ClusterImageRegistryList

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

func NewClusterImageRegistryListWithDefaults

func NewClusterImageRegistryListWithDefaults() *ClusterImageRegistryList

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

func (*ClusterImageRegistryList) GetItems

GetItems returns the Items field value if set, zero value otherwise.

func (*ClusterImageRegistryList) GetItemsOk

func (o *ClusterImageRegistryList) GetItemsOk() ([]ClusterImageRegistry, bool)

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

func (*ClusterImageRegistryList) GetTotal

func (o *ClusterImageRegistryList) GetTotal() int32

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

func (*ClusterImageRegistryList) GetTotalOk

func (o *ClusterImageRegistryList) GetTotalOk() (*int32, 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 (*ClusterImageRegistryList) HasItems

func (o *ClusterImageRegistryList) HasItems() bool

HasItems returns a boolean if a field has been set.

func (*ClusterImageRegistryList) HasTotal

func (o *ClusterImageRegistryList) HasTotal() bool

HasTotal returns a boolean if a field has been set.

func (ClusterImageRegistryList) MarshalJSON

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

func (*ClusterImageRegistryList) SetItems

SetItems gets a reference to the given []ClusterImageRegistry and assigns it to the Items field.

func (*ClusterImageRegistryList) SetTotal

func (o *ClusterImageRegistryList) SetTotal(v int32)

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

type ClusterImageRegistrySpec

type ClusterImageRegistrySpec struct {
	BackendStorageSize  *string `json:"backend_storage_size,omitempty"`
	BackendStorageClass *string `json:"backend_storage_class,omitempty"`
}

ClusterImageRegistrySpec struct for ClusterImageRegistrySpec

func NewClusterImageRegistrySpec

func NewClusterImageRegistrySpec() *ClusterImageRegistrySpec

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

func NewClusterImageRegistrySpecWithDefaults

func NewClusterImageRegistrySpecWithDefaults() *ClusterImageRegistrySpec

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

func (*ClusterImageRegistrySpec) GetBackendStorageClass

func (o *ClusterImageRegistrySpec) GetBackendStorageClass() string

GetBackendStorageClass returns the BackendStorageClass field value if set, zero value otherwise.

func (*ClusterImageRegistrySpec) GetBackendStorageClassOk

func (o *ClusterImageRegistrySpec) GetBackendStorageClassOk() (*string, bool)

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

func (*ClusterImageRegistrySpec) GetBackendStorageSize

func (o *ClusterImageRegistrySpec) GetBackendStorageSize() string

GetBackendStorageSize returns the BackendStorageSize field value if set, zero value otherwise.

func (*ClusterImageRegistrySpec) GetBackendStorageSizeOk

func (o *ClusterImageRegistrySpec) GetBackendStorageSizeOk() (*string, bool)

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

func (*ClusterImageRegistrySpec) HasBackendStorageClass

func (o *ClusterImageRegistrySpec) HasBackendStorageClass() bool

HasBackendStorageClass returns a boolean if a field has been set.

func (*ClusterImageRegistrySpec) HasBackendStorageSize

func (o *ClusterImageRegistrySpec) HasBackendStorageSize() bool

HasBackendStorageSize returns a boolean if a field has been set.

func (ClusterImageRegistrySpec) MarshalJSON

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

func (*ClusterImageRegistrySpec) SetBackendStorageClass

func (o *ClusterImageRegistrySpec) SetBackendStorageClass(v string)

SetBackendStorageClass gets a reference to the given string and assigns it to the BackendStorageClass field.

func (*ClusterImageRegistrySpec) SetBackendStorageSize

func (o *ClusterImageRegistrySpec) SetBackendStorageSize(v string)

SetBackendStorageSize gets a reference to the given string and assigns it to the BackendStorageSize field.

type ClusterImageRegistryState

type ClusterImageRegistryState string

ClusterImageRegistryState the model 'ClusterImageRegistryState'

const (
	IMAGE_REGISTRY_PENDING  ClusterImageRegistryState = "ImageRegistryPending"
	IMAGE_REGISTRY_ERROR    ClusterImageRegistryState = "ImageRegistryError"
	IMAGE_REGISTRY_RUNNING  ClusterImageRegistryState = "ImageRegistryRunning"
	IMAGE_REGISTRY_DELETING ClusterImageRegistryState = "ImageRegistryDeleting"
)

List of ClusterImageRegistryState

func NewClusterImageRegistryStateFromValue

func NewClusterImageRegistryStateFromValue(v string) (*ClusterImageRegistryState, error)

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

func (ClusterImageRegistryState) IsValid

func (v ClusterImageRegistryState) IsValid() bool

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

func (ClusterImageRegistryState) Ptr

Ptr returns reference to ClusterImageRegistryState value

func (*ClusterImageRegistryState) UnmarshalJSON

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

type ClusterImageRegistryStatus

type ClusterImageRegistryStatus struct {
	State      *ClusterImageRegistryState `json:"state,omitempty"`
	Conditions []Condition                `json:"conditions,omitempty"`
}

ClusterImageRegistryStatus struct for ClusterImageRegistryStatus

func NewClusterImageRegistryStatus

func NewClusterImageRegistryStatus() *ClusterImageRegistryStatus

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

func NewClusterImageRegistryStatusWithDefaults

func NewClusterImageRegistryStatusWithDefaults() *ClusterImageRegistryStatus

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

func (*ClusterImageRegistryStatus) GetConditions

func (o *ClusterImageRegistryStatus) GetConditions() []Condition

GetConditions returns the Conditions field value if set, zero value otherwise.

func (*ClusterImageRegistryStatus) GetConditionsOk

func (o *ClusterImageRegistryStatus) GetConditionsOk() ([]Condition, bool)

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

func (*ClusterImageRegistryStatus) GetState

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

func (*ClusterImageRegistryStatus) GetStateOk

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 (*ClusterImageRegistryStatus) HasConditions

func (o *ClusterImageRegistryStatus) HasConditions() bool

HasConditions returns a boolean if a field has been set.

func (*ClusterImageRegistryStatus) HasState

func (o *ClusterImageRegistryStatus) HasState() bool

HasState returns a boolean if a field has been set.

func (ClusterImageRegistryStatus) MarshalJSON

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

func (*ClusterImageRegistryStatus) SetConditions

func (o *ClusterImageRegistryStatus) SetConditions(v []Condition)

SetConditions gets a reference to the given []Condition and assigns it to the Conditions field.

func (*ClusterImageRegistryStatus) SetState

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

type ClusterList

type ClusterList struct {
	Items []Cluster `json:"items,omitempty"`
	Total *int32    `json:"total,omitempty"`
}

ClusterList struct for ClusterList

func NewClusterList

func NewClusterList() *ClusterList

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

func NewClusterListWithDefaults

func NewClusterListWithDefaults() *ClusterList

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

func (*ClusterList) GetItems

func (o *ClusterList) GetItems() []Cluster

GetItems returns the Items field value if set, zero value otherwise.

func (*ClusterList) GetItemsOk

func (o *ClusterList) GetItemsOk() ([]Cluster, bool)

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

func (*ClusterList) GetTotal

func (o *ClusterList) GetTotal() int32

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

func (*ClusterList) GetTotalOk

func (o *ClusterList) GetTotalOk() (*int32, 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 (*ClusterList) HasItems

func (o *ClusterList) HasItems() bool

HasItems returns a boolean if a field has been set.

func (*ClusterList) HasTotal

func (o *ClusterList) HasTotal() bool

HasTotal returns a boolean if a field has been set.

func (ClusterList) MarshalJSON

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

func (*ClusterList) SetItems

func (o *ClusterList) SetItems(v []Cluster)

SetItems gets a reference to the given []Cluster and assigns it to the Items field.

func (*ClusterList) SetTotal

func (o *ClusterList) SetTotal(v int32)

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

type Condition

type Condition struct {
	Type               *string    `json:"type,omitempty"`
	Status             *string    `json:"status,omitempty"`
	ObservedGeneration *int32     `json:"observed_generation,omitempty"`
	LastTransitionTime *time.Time `json:"last_transition_time,omitempty"`
	Reason             *string    `json:"reason,omitempty"`
	Message            *string    `json:"message,omitempty"`
}

Condition struct for Condition

func NewCondition

func NewCondition() *Condition

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

func NewConditionWithDefaults

func NewConditionWithDefaults() *Condition

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

func (*Condition) GetLastTransitionTime

func (o *Condition) GetLastTransitionTime() time.Time

GetLastTransitionTime returns the LastTransitionTime field value if set, zero value otherwise.

func (*Condition) GetLastTransitionTimeOk

func (o *Condition) GetLastTransitionTimeOk() (*time.Time, bool)

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

func (*Condition) GetMessage

func (o *Condition) GetMessage() string

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

func (*Condition) GetMessageOk

func (o *Condition) 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 (*Condition) GetObservedGeneration

func (o *Condition) GetObservedGeneration() int32

GetObservedGeneration returns the ObservedGeneration field value if set, zero value otherwise.

func (*Condition) GetObservedGenerationOk

func (o *Condition) GetObservedGenerationOk() (*int32, bool)

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

func (*Condition) GetReason

func (o *Condition) GetReason() string

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

func (*Condition) GetReasonOk

func (o *Condition) 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 (*Condition) GetStatus

func (o *Condition) GetStatus() string

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

func (*Condition) GetStatusOk

func (o *Condition) 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 (*Condition) GetType

func (o *Condition) GetType() string

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

func (*Condition) GetTypeOk

func (o *Condition) 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 (*Condition) HasLastTransitionTime

func (o *Condition) HasLastTransitionTime() bool

HasLastTransitionTime returns a boolean if a field has been set.

func (*Condition) HasMessage

func (o *Condition) HasMessage() bool

HasMessage returns a boolean if a field has been set.

func (*Condition) HasObservedGeneration

func (o *Condition) HasObservedGeneration() bool

HasObservedGeneration returns a boolean if a field has been set.

func (*Condition) HasReason

func (o *Condition) HasReason() bool

HasReason returns a boolean if a field has been set.

func (*Condition) HasStatus

func (o *Condition) HasStatus() bool

HasStatus returns a boolean if a field has been set.

func (*Condition) HasType

func (o *Condition) HasType() bool

HasType returns a boolean if a field has been set.

func (Condition) MarshalJSON

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

func (*Condition) SetLastTransitionTime

func (o *Condition) SetLastTransitionTime(v time.Time)

SetLastTransitionTime gets a reference to the given time.Time and assigns it to the LastTransitionTime field.

func (*Condition) SetMessage

func (o *Condition) SetMessage(v string)

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

func (*Condition) SetObservedGeneration

func (o *Condition) SetObservedGeneration(v int32)

SetObservedGeneration gets a reference to the given int32 and assigns it to the ObservedGeneration field.

func (*Condition) SetReason

func (o *Condition) SetReason(v string)

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

func (*Condition) SetStatus

func (o *Condition) SetStatus(v string)

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

func (*Condition) SetType

func (o *Condition) SetType(v string)

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

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 ConnectionMapping

type ConnectionMapping struct {
	Target ConnectionTarget `json:"target"`
	Value  ValueRef         `json:"value"`
}

ConnectionMapping Maps one produced value into one target location on the consumer.

func NewConnectionMapping

func NewConnectionMapping(target ConnectionTarget, value ValueRef) *ConnectionMapping

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

func NewConnectionMappingWithDefaults

func NewConnectionMappingWithDefaults() *ConnectionMapping

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

func (*ConnectionMapping) GetTarget

func (o *ConnectionMapping) GetTarget() ConnectionTarget

GetTarget returns the Target field value

func (*ConnectionMapping) GetTargetOk

func (o *ConnectionMapping) GetTargetOk() (*ConnectionTarget, bool)

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

func (*ConnectionMapping) GetValue

func (o *ConnectionMapping) GetValue() ValueRef

GetValue returns the Value field value

func (*ConnectionMapping) GetValueOk

func (o *ConnectionMapping) GetValueOk() (*ValueRef, bool)

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

func (ConnectionMapping) MarshalJSON

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

func (*ConnectionMapping) SetTarget

func (o *ConnectionMapping) SetTarget(v ConnectionTarget)

SetTarget sets field value

func (*ConnectionMapping) SetValue

func (o *ConnectionMapping) SetValue(v ValueRef)

SetValue sets field value

type ConnectionTarget

type ConnectionTarget struct {
	// env writes an environment variable and file writes a mounted file path.
	Type string `json:"type"`
	// Environment variable name when type is env.
	Name *string `json:"name,omitempty"`
	// Absolute file path when type is file.
	Path *string `json:"path,omitempty"`
}

ConnectionTarget The destination field that receives a mapped value.

func NewConnectionTarget

func NewConnectionTarget(type_ string) *ConnectionTarget

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

func NewConnectionTargetWithDefaults

func NewConnectionTargetWithDefaults() *ConnectionTarget

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

func (*ConnectionTarget) GetName

func (o *ConnectionTarget) GetName() string

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

func (*ConnectionTarget) GetNameOk

func (o *ConnectionTarget) 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 (*ConnectionTarget) GetPath

func (o *ConnectionTarget) GetPath() string

GetPath returns the Path field value if set, zero value otherwise.

func (*ConnectionTarget) GetPathOk

func (o *ConnectionTarget) 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 (*ConnectionTarget) GetType

func (o *ConnectionTarget) GetType() string

GetType returns the Type field value

func (*ConnectionTarget) GetTypeOk

func (o *ConnectionTarget) GetTypeOk() (*string, bool)

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

func (*ConnectionTarget) HasName

func (o *ConnectionTarget) HasName() bool

HasName returns a boolean if a field has been set.

func (*ConnectionTarget) HasPath

func (o *ConnectionTarget) HasPath() bool

HasPath returns a boolean if a field has been set.

func (ConnectionTarget) MarshalJSON

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

func (*ConnectionTarget) SetName

func (o *ConnectionTarget) SetName(v string)

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

func (*ConnectionTarget) SetPath

func (o *ConnectionTarget) SetPath(v string)

SetPath gets a reference to the given string and assigns it to the Path field.

func (*ConnectionTarget) SetType

func (o *ConnectionTarget) SetType(v string)

SetType sets field value

type ContainerFailureDetail

type ContainerFailureDetail struct {
	FailureType  *string `json:"failure_type,omitempty"`
	Reason       *string `json:"reason,omitempty"`
	Message      *string `json:"message,omitempty"`
	RestartCount *int32  `json:"restart_count,omitempty"`
	ExitCode     *int32  `json:"exit_code,omitempty"`
}

ContainerFailureDetail struct for ContainerFailureDetail

func NewContainerFailureDetail

func NewContainerFailureDetail() *ContainerFailureDetail

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

func NewContainerFailureDetailWithDefaults

func NewContainerFailureDetailWithDefaults() *ContainerFailureDetail

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

func (*ContainerFailureDetail) GetExitCode

func (o *ContainerFailureDetail) GetExitCode() int32

GetExitCode returns the ExitCode field value if set, zero value otherwise.

func (*ContainerFailureDetail) GetExitCodeOk

func (o *ContainerFailureDetail) 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 (*ContainerFailureDetail) GetFailureType

func (o *ContainerFailureDetail) GetFailureType() string

GetFailureType returns the FailureType field value if set, zero value otherwise.

func (*ContainerFailureDetail) GetFailureTypeOk

func (o *ContainerFailureDetail) GetFailureTypeOk() (*string, bool)

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

func (*ContainerFailureDetail) GetMessage

func (o *ContainerFailureDetail) GetMessage() string

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

func (*ContainerFailureDetail) GetMessageOk

func (o *ContainerFailureDetail) 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 (*ContainerFailureDetail) GetReason

func (o *ContainerFailureDetail) GetReason() string

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

func (*ContainerFailureDetail) GetReasonOk

func (o *ContainerFailureDetail) 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 (*ContainerFailureDetail) GetRestartCount

func (o *ContainerFailureDetail) GetRestartCount() int32

GetRestartCount returns the RestartCount field value if set, zero value otherwise.

func (*ContainerFailureDetail) GetRestartCountOk

func (o *ContainerFailureDetail) GetRestartCountOk() (*int32, bool)

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

func (*ContainerFailureDetail) HasExitCode

func (o *ContainerFailureDetail) HasExitCode() bool

HasExitCode returns a boolean if a field has been set.

func (*ContainerFailureDetail) HasFailureType

func (o *ContainerFailureDetail) HasFailureType() bool

HasFailureType returns a boolean if a field has been set.

func (*ContainerFailureDetail) HasMessage

func (o *ContainerFailureDetail) HasMessage() bool

HasMessage returns a boolean if a field has been set.

func (*ContainerFailureDetail) HasReason

func (o *ContainerFailureDetail) HasReason() bool

HasReason returns a boolean if a field has been set.

func (*ContainerFailureDetail) HasRestartCount

func (o *ContainerFailureDetail) HasRestartCount() bool

HasRestartCount returns a boolean if a field has been set.

func (ContainerFailureDetail) MarshalJSON

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

func (*ContainerFailureDetail) SetExitCode

func (o *ContainerFailureDetail) SetExitCode(v int32)

SetExitCode gets a reference to the given int32 and assigns it to the ExitCode field.

func (*ContainerFailureDetail) SetFailureType

func (o *ContainerFailureDetail) SetFailureType(v string)

SetFailureType gets a reference to the given string and assigns it to the FailureType field.

func (*ContainerFailureDetail) SetMessage

func (o *ContainerFailureDetail) SetMessage(v string)

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

func (*ContainerFailureDetail) SetReason

func (o *ContainerFailureDetail) SetReason(v string)

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

func (*ContainerFailureDetail) SetRestartCount

func (o *ContainerFailureDetail) SetRestartCount(v int32)

SetRestartCount gets a reference to the given int32 and assigns it to the RestartCount field.

type CreateReleaseRequest

type CreateReleaseRequest struct {
	// If set, creates a rollback release copying this release's manifest
	FromReleaseId *string `json:"from_release_id,omitempty"`
}

CreateReleaseRequest struct for CreateReleaseRequest

func NewCreateReleaseRequest

func NewCreateReleaseRequest() *CreateReleaseRequest

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

func NewCreateReleaseRequestWithDefaults

func NewCreateReleaseRequestWithDefaults() *CreateReleaseRequest

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

func (*CreateReleaseRequest) GetFromReleaseId

func (o *CreateReleaseRequest) GetFromReleaseId() string

GetFromReleaseId returns the FromReleaseId field value if set, zero value otherwise.

func (*CreateReleaseRequest) GetFromReleaseIdOk

func (o *CreateReleaseRequest) GetFromReleaseIdOk() (*string, bool)

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

func (*CreateReleaseRequest) HasFromReleaseId

func (o *CreateReleaseRequest) HasFromReleaseId() bool

HasFromReleaseId returns a boolean if a field has been set.

func (CreateReleaseRequest) MarshalJSON

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

func (*CreateReleaseRequest) SetFromReleaseId

func (o *CreateReleaseRequest) SetFromReleaseId(v string)

SetFromReleaseId gets a reference to the given string and assigns it to the FromReleaseId field.

type DefaultApiService

type DefaultApiService service

DefaultApiService DefaultApi service

func (*DefaultApiService) ApiV1ApiTokensGet

ApiV1ApiTokensGet List all API tokens for the current user

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

func (*DefaultApiService) ApiV1ApiTokensGetExecute

func (a *DefaultApiService) ApiV1ApiTokensGetExecute(r ApiApiV1ApiTokensGetRequest) (*APITokenList, *http.Response, error)

Execute executes the request

@return APITokenList

func (*DefaultApiService) ApiV1ApiTokensIdDelete

func (a *DefaultApiService) ApiV1ApiTokensIdDelete(ctx context.Context, id string) ApiApiV1ApiTokensIdDeleteRequest

ApiV1ApiTokensIdDelete Revoke an API token

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

func (*DefaultApiService) ApiV1ApiTokensIdDeleteExecute

func (a *DefaultApiService) ApiV1ApiTokensIdDeleteExecute(r ApiApiV1ApiTokensIdDeleteRequest) (*http.Response, error)

Execute executes the request

func (*DefaultApiService) ApiV1ApiTokensIdGet

func (a *DefaultApiService) ApiV1ApiTokensIdGet(ctx context.Context, id string) ApiApiV1ApiTokensIdGetRequest

ApiV1ApiTokensIdGet Get an API token by ID

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

func (*DefaultApiService) ApiV1ApiTokensIdGetExecute

func (a *DefaultApiService) ApiV1ApiTokensIdGetExecute(r ApiApiV1ApiTokensIdGetRequest) (*APIToken, *http.Response, error)

Execute executes the request

@return APIToken

func (*DefaultApiService) ApiV1ApiTokensPost

ApiV1ApiTokensPost Create a new API token

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

func (*DefaultApiService) ApiV1ApiTokensPostExecute

Execute executes the request

@return APITokenCreateResponse

func (*DefaultApiService) ApiV1ApiTokensScopesGet

func (a *DefaultApiService) ApiV1ApiTokensScopesGet(ctx context.Context) ApiApiV1ApiTokensScopesGetRequest

ApiV1ApiTokensScopesGet List all available API token scopes

Returns the list of resources and their allowed actions that can be used when creating API tokens

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

func (*DefaultApiService) ApiV1ApiTokensScopesGetExecute

func (a *DefaultApiService) ApiV1ApiTokensScopesGetExecute(r ApiApiV1ApiTokensScopesGetRequest) (*ScopeList, *http.Response, error)

Execute executes the request

@return ScopeList

func (*DefaultApiService) ApiV1AuthGithubCallbackGet

func (a *DefaultApiService) ApiV1AuthGithubCallbackGet(ctx context.Context) ApiApiV1AuthGithubCallbackGetRequest

ApiV1AuthGithubCallbackGet GitHub OAuth callback

Handles the callback from GitHub after OAuth authorization

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

func (*DefaultApiService) ApiV1AuthGithubCallbackGetExecute

func (a *DefaultApiService) ApiV1AuthGithubCallbackGetExecute(r ApiApiV1AuthGithubCallbackGetRequest) (*LoginResponse, *http.Response, error)

Execute executes the request

@return LoginResponse

func (*DefaultApiService) ApiV1AuthGithubGet

ApiV1AuthGithubGet Initiate GitHub OAuth flow

Redirects the user to GitHub for OAuth authorization

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

func (*DefaultApiService) ApiV1AuthGithubGetExecute

func (a *DefaultApiService) ApiV1AuthGithubGetExecute(r ApiApiV1AuthGithubGetRequest) (*http.Response, error)

Execute executes the request

func (*DefaultApiService) ApiV1AuthLoginPost

ApiV1AuthLoginPost User login

Authenticate user and generate an access token

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

func (*DefaultApiService) ApiV1AuthLoginPostExecute

func (a *DefaultApiService) ApiV1AuthLoginPostExecute(r ApiApiV1AuthLoginPostRequest) (*LoginResponse, *http.Response, error)

Execute executes the request

@return LoginResponse

func (*DefaultApiService) ApiV1AuthRefreshPost

func (a *DefaultApiService) ApiV1AuthRefreshPost(ctx context.Context) ApiApiV1AuthRefreshPostRequest

ApiV1AuthRefreshPost Refresh JWT token

Exchange a refresh token for a new access token

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

func (*DefaultApiService) ApiV1AuthRefreshPostExecute

Execute executes the request

@return RefreshTokenResponse

func (*DefaultApiService) ApiV1ConfigGet

ApiV1ConfigGet Get public application configuration

Returns feature flags the web client needs before authentication, such as whether GitHub OAuth is enabled.

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

func (*DefaultApiService) ApiV1ConfigGetExecute

Execute executes the request

@return AppConfigResponse

func (*DefaultApiService) ApiV1GitIntegrationsGithubManifestCallbackGet

func (a *DefaultApiService) ApiV1GitIntegrationsGithubManifestCallbackGet(ctx context.Context) ApiApiV1GitIntegrationsGithubManifestCallbackGetRequest

ApiV1GitIntegrationsGithubManifestCallbackGet GitHub App manifest redirect target (unauthenticated, state-validated)

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

func (*DefaultApiService) ApiV1GitIntegrationsGithubManifestCallbackGetExecute

func (a *DefaultApiService) ApiV1GitIntegrationsGithubManifestCallbackGetExecute(r ApiApiV1GitIntegrationsGithubManifestCallbackGetRequest) (*http.Response, error)

Execute executes the request

func (*DefaultApiService) ApiV1GitIntegrationsGithubSetupGet

func (a *DefaultApiService) ApiV1GitIntegrationsGithubSetupGet(ctx context.Context) ApiApiV1GitIntegrationsGithubSetupGetRequest

ApiV1GitIntegrationsGithubSetupGet Platform GitHub App setup redirect target (unauthenticated, state-validated)

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

func (*DefaultApiService) ApiV1GitIntegrationsGithubSetupGetExecute

func (a *DefaultApiService) ApiV1GitIntegrationsGithubSetupGetExecute(r ApiApiV1GitIntegrationsGithubSetupGetRequest) (*http.Response, error)

Execute executes the request

func (*DefaultApiService) ApiV1InvitesTokenInfoGet

func (a *DefaultApiService) ApiV1InvitesTokenInfoGet(ctx context.Context, token string) ApiApiV1InvitesTokenInfoGetRequest

ApiV1InvitesTokenInfoGet Get public invite info (unauthenticated)

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

func (*DefaultApiService) ApiV1InvitesTokenInfoGetExecute

func (a *DefaultApiService) ApiV1InvitesTokenInfoGetExecute(r ApiApiV1InvitesTokenInfoGetRequest) (*OrgInviteInfo, *http.Response, error)

Execute executes the request

@return OrgInviteInfo

func (*DefaultApiService) ApiV1OrganizationsIdGet

func (a *DefaultApiService) ApiV1OrganizationsIdGet(ctx context.Context, id string) ApiApiV1OrganizationsIdGetRequest

ApiV1OrganizationsIdGet Get an organization

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

func (*DefaultApiService) ApiV1OrganizationsIdGetExecute

func (a *DefaultApiService) ApiV1OrganizationsIdGetExecute(r ApiApiV1OrganizationsIdGetRequest) (*Organisation, *http.Response, error)

Execute executes the request

@return Organisation

func (*DefaultApiService) ApiV1OrganizationsIdPut

func (a *DefaultApiService) ApiV1OrganizationsIdPut(ctx context.Context, id string) ApiApiV1OrganizationsIdPutRequest

ApiV1OrganizationsIdPut Update an organization

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

func (*DefaultApiService) ApiV1OrganizationsIdPutExecute

func (a *DefaultApiService) ApiV1OrganizationsIdPutExecute(r ApiApiV1OrganizationsIdPutRequest) (*Organisation, *http.Response, error)

Execute executes the request

@return Organisation

func (*DefaultApiService) ApiV1OrganizationsOrgIdAdminsGet

func (a *DefaultApiService) ApiV1OrganizationsOrgIdAdminsGet(ctx context.Context, orgId string) ApiApiV1OrganizationsOrgIdAdminsGetRequest

ApiV1OrganizationsOrgIdAdminsGet List organization admins

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param orgId The ID of the organization
@return ApiApiV1OrganizationsOrgIdAdminsGetRequest

func (*DefaultApiService) ApiV1OrganizationsOrgIdAdminsGetExecute

func (a *DefaultApiService) ApiV1OrganizationsOrgIdAdminsGetExecute(r ApiApiV1OrganizationsOrgIdAdminsGetRequest) (*UserList, *http.Response, error)

Execute executes the request

@return UserList

func (*DefaultApiService) ApiV1OrganizationsOrgIdAdminsPost

func (a *DefaultApiService) ApiV1OrganizationsOrgIdAdminsPost(ctx context.Context, orgId string) ApiApiV1OrganizationsOrgIdAdminsPostRequest

ApiV1OrganizationsOrgIdAdminsPost Promote a user to organization admin

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param orgId The ID of the organization
@return ApiApiV1OrganizationsOrgIdAdminsPostRequest

func (*DefaultApiService) ApiV1OrganizationsOrgIdAdminsPostExecute

func (a *DefaultApiService) ApiV1OrganizationsOrgIdAdminsPostExecute(r ApiApiV1OrganizationsOrgIdAdminsPostRequest) (*http.Response, error)

Execute executes the request

func (*DefaultApiService) ApiV1OrganizationsOrgIdAdminsUserIdDemotePost

func (a *DefaultApiService) ApiV1OrganizationsOrgIdAdminsUserIdDemotePost(ctx context.Context, orgId string, userId string) ApiApiV1OrganizationsOrgIdAdminsUserIdDemotePostRequest

ApiV1OrganizationsOrgIdAdminsUserIdDemotePost Demote an organization admin

Demotes an OrgAdmin and places them in the specified project with the given role (defaults to Viewer).

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param orgId The ID of the organization
@param userId The ID of the user
@return ApiApiV1OrganizationsOrgIdAdminsUserIdDemotePostRequest

func (*DefaultApiService) ApiV1OrganizationsOrgIdAdminsUserIdDemotePostExecute

func (a *DefaultApiService) ApiV1OrganizationsOrgIdAdminsUserIdDemotePostExecute(r ApiApiV1OrganizationsOrgIdAdminsUserIdDemotePostRequest) (*http.Response, error)

Execute executes the request

func (*DefaultApiService) ApiV1OrganizationsOrgIdClustersClusterIdImageRegistriesGet

func (a *DefaultApiService) ApiV1OrganizationsOrgIdClustersClusterIdImageRegistriesGet(ctx context.Context, orgId string, clusterId string) ApiApiV1OrganizationsOrgIdClustersClusterIdImageRegistriesGetRequest

ApiV1OrganizationsOrgIdClustersClusterIdImageRegistriesGet List all image registries for a cluster

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param orgId The ID of the organization
@param clusterId The ID of the cluster
@return ApiApiV1OrganizationsOrgIdClustersClusterIdImageRegistriesGetRequest

func (*DefaultApiService) ApiV1OrganizationsOrgIdClustersClusterIdImageRegistriesGetExecute

func (a *DefaultApiService) ApiV1OrganizationsOrgIdClustersClusterIdImageRegistriesGetExecute(r ApiApiV1OrganizationsOrgIdClustersClusterIdImageRegistriesGetRequest) (*ClusterImageRegistryList, *http.Response, error)

Execute executes the request

@return ClusterImageRegistryList

func (*DefaultApiService) ApiV1OrganizationsOrgIdClustersClusterIdImageRegistriesIdDelete

func (a *DefaultApiService) ApiV1OrganizationsOrgIdClustersClusterIdImageRegistriesIdDelete(ctx context.Context, orgId string, clusterId string, id string) ApiApiV1OrganizationsOrgIdClustersClusterIdImageRegistriesIdDeleteRequest

ApiV1OrganizationsOrgIdClustersClusterIdImageRegistriesIdDelete Delete an image registry

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param orgId The ID of the organization
@param clusterId The ID of the cluster
@param id The id of record
@return ApiApiV1OrganizationsOrgIdClustersClusterIdImageRegistriesIdDeleteRequest

func (*DefaultApiService) ApiV1OrganizationsOrgIdClustersClusterIdImageRegistriesIdDeleteExecute

func (a *DefaultApiService) ApiV1OrganizationsOrgIdClustersClusterIdImageRegistriesIdDeleteExecute(r ApiApiV1OrganizationsOrgIdClustersClusterIdImageRegistriesIdDeleteRequest) (*http.Response, error)

Execute executes the request

func (*DefaultApiService) ApiV1OrganizationsOrgIdClustersClusterIdImageRegistriesIdGet

func (a *DefaultApiService) ApiV1OrganizationsOrgIdClustersClusterIdImageRegistriesIdGet(ctx context.Context, orgId string, clusterId string, id string) ApiApiV1OrganizationsOrgIdClustersClusterIdImageRegistriesIdGetRequest

ApiV1OrganizationsOrgIdClustersClusterIdImageRegistriesIdGet Get a specific image registry

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param orgId The ID of the organization
@param clusterId The ID of the cluster
@param id The id of record
@return ApiApiV1OrganizationsOrgIdClustersClusterIdImageRegistriesIdGetRequest

func (*DefaultApiService) ApiV1OrganizationsOrgIdClustersClusterIdImageRegistriesIdGetExecute

func (a *DefaultApiService) ApiV1OrganizationsOrgIdClustersClusterIdImageRegistriesIdGetExecute(r ApiApiV1OrganizationsOrgIdClustersClusterIdImageRegistriesIdGetRequest) (*ClusterImageRegistry, *http.Response, error)

Execute executes the request

@return ClusterImageRegistry

func (*DefaultApiService) ApiV1OrganizationsOrgIdClustersClusterIdImageRegistriesPost

func (a *DefaultApiService) ApiV1OrganizationsOrgIdClustersClusterIdImageRegistriesPost(ctx context.Context, orgId string, clusterId string) ApiApiV1OrganizationsOrgIdClustersClusterIdImageRegistriesPostRequest

ApiV1OrganizationsOrgIdClustersClusterIdImageRegistriesPost Create a new image registry

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param orgId The ID of the organization
@param clusterId The ID of the cluster
@return ApiApiV1OrganizationsOrgIdClustersClusterIdImageRegistriesPostRequest

func (*DefaultApiService) ApiV1OrganizationsOrgIdClustersClusterIdImageRegistriesPostExecute

func (a *DefaultApiService) ApiV1OrganizationsOrgIdClustersClusterIdImageRegistriesPostExecute(r ApiApiV1OrganizationsOrgIdClustersClusterIdImageRegistriesPostRequest) (*ClusterImageRegistry, *http.Response, error)

Execute executes the request

@return ClusterImageRegistry

func (*DefaultApiService) ApiV1OrganizationsOrgIdClustersGet

func (a *DefaultApiService) ApiV1OrganizationsOrgIdClustersGet(ctx context.Context, orgId string) ApiApiV1OrganizationsOrgIdClustersGetRequest

ApiV1OrganizationsOrgIdClustersGet List all clusters for an organization

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param orgId The ID of the organization
@return ApiApiV1OrganizationsOrgIdClustersGetRequest

func (*DefaultApiService) ApiV1OrganizationsOrgIdClustersGetExecute

func (a *DefaultApiService) ApiV1OrganizationsOrgIdClustersGetExecute(r ApiApiV1OrganizationsOrgIdClustersGetRequest) (*ClusterList, *http.Response, error)

Execute executes the request

@return ClusterList

func (*DefaultApiService) ApiV1OrganizationsOrgIdClustersIdDelete

func (a *DefaultApiService) ApiV1OrganizationsOrgIdClustersIdDelete(ctx context.Context, orgId string, id string) ApiApiV1OrganizationsOrgIdClustersIdDeleteRequest

ApiV1OrganizationsOrgIdClustersIdDelete Delete a cluster

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

func (*DefaultApiService) ApiV1OrganizationsOrgIdClustersIdDeleteExecute

func (a *DefaultApiService) ApiV1OrganizationsOrgIdClustersIdDeleteExecute(r ApiApiV1OrganizationsOrgIdClustersIdDeleteRequest) (*http.Response, error)

Execute executes the request

func (*DefaultApiService) ApiV1OrganizationsOrgIdClustersIdGet

func (a *DefaultApiService) ApiV1OrganizationsOrgIdClustersIdGet(ctx context.Context, orgId string, id string) ApiApiV1OrganizationsOrgIdClustersIdGetRequest

ApiV1OrganizationsOrgIdClustersIdGet Get a specific cluster

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

func (*DefaultApiService) ApiV1OrganizationsOrgIdClustersIdGetExecute

func (a *DefaultApiService) ApiV1OrganizationsOrgIdClustersIdGetExecute(r ApiApiV1OrganizationsOrgIdClustersIdGetRequest) (*Cluster, *http.Response, error)

Execute executes the request

@return Cluster

func (*DefaultApiService) ApiV1OrganizationsOrgIdClustersPost

func (a *DefaultApiService) ApiV1OrganizationsOrgIdClustersPost(ctx context.Context, orgId string) ApiApiV1OrganizationsOrgIdClustersPostRequest

ApiV1OrganizationsOrgIdClustersPost Add a new cluster

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param orgId The ID of the organization
@return ApiApiV1OrganizationsOrgIdClustersPostRequest

func (*DefaultApiService) ApiV1OrganizationsOrgIdClustersPostExecute

func (a *DefaultApiService) ApiV1OrganizationsOrgIdClustersPostExecute(r ApiApiV1OrganizationsOrgIdClustersPostRequest) (*Cluster, *http.Response, error)

Execute executes the request

@return Cluster

func (*DefaultApiService) ApiV1OrganizationsOrgIdGitIntegrationsGet

func (a *DefaultApiService) ApiV1OrganizationsOrgIdGitIntegrationsGet(ctx context.Context, orgId string) ApiApiV1OrganizationsOrgIdGitIntegrationsGetRequest

ApiV1OrganizationsOrgIdGitIntegrationsGet List git integrations for the organization

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param orgId The ID of the organization
@return ApiApiV1OrganizationsOrgIdGitIntegrationsGetRequest

func (*DefaultApiService) ApiV1OrganizationsOrgIdGitIntegrationsGetExecute

func (a *DefaultApiService) ApiV1OrganizationsOrgIdGitIntegrationsGetExecute(r ApiApiV1OrganizationsOrgIdGitIntegrationsGetRequest) (*GitIntegrationList, *http.Response, error)

Execute executes the request

@return GitIntegrationList

func (*DefaultApiService) ApiV1OrganizationsOrgIdGitIntegrationsGithubManifestPost

func (a *DefaultApiService) ApiV1OrganizationsOrgIdGitIntegrationsGithubManifestPost(ctx context.Context, orgId string) ApiApiV1OrganizationsOrgIdGitIntegrationsGithubManifestPostRequest

ApiV1OrganizationsOrgIdGitIntegrationsGithubManifestPost Start the GitHub App manifest flow for the organization

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param orgId The ID of the organization
@return ApiApiV1OrganizationsOrgIdGitIntegrationsGithubManifestPostRequest

func (*DefaultApiService) ApiV1OrganizationsOrgIdGitIntegrationsGithubManifestPostExecute

func (a *DefaultApiService) ApiV1OrganizationsOrgIdGitIntegrationsGithubManifestPostExecute(r ApiApiV1OrganizationsOrgIdGitIntegrationsGithubManifestPostRequest) (*GitHubAppManifestFlow, *http.Response, error)

Execute executes the request

@return GitHubAppManifestFlow

func (*DefaultApiService) ApiV1OrganizationsOrgIdGitIntegrationsIdDelete

func (a *DefaultApiService) ApiV1OrganizationsOrgIdGitIntegrationsIdDelete(ctx context.Context, orgId string, id string) ApiApiV1OrganizationsOrgIdGitIntegrationsIdDeleteRequest

ApiV1OrganizationsOrgIdGitIntegrationsIdDelete Delete a git integration

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

func (*DefaultApiService) ApiV1OrganizationsOrgIdGitIntegrationsIdDeleteExecute

func (a *DefaultApiService) ApiV1OrganizationsOrgIdGitIntegrationsIdDeleteExecute(r ApiApiV1OrganizationsOrgIdGitIntegrationsIdDeleteRequest) (*http.Response, error)

Execute executes the request

func (*DefaultApiService) ApiV1OrganizationsOrgIdGitIntegrationsIdGet

func (a *DefaultApiService) ApiV1OrganizationsOrgIdGitIntegrationsIdGet(ctx context.Context, orgId string, id string) ApiApiV1OrganizationsOrgIdGitIntegrationsIdGetRequest

ApiV1OrganizationsOrgIdGitIntegrationsIdGet Get a git integration

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

func (*DefaultApiService) ApiV1OrganizationsOrgIdGitIntegrationsIdGetExecute

func (a *DefaultApiService) ApiV1OrganizationsOrgIdGitIntegrationsIdGetExecute(r ApiApiV1OrganizationsOrgIdGitIntegrationsIdGetRequest) (*GitIntegration, *http.Response, error)

Execute executes the request

@return GitIntegration

func (*DefaultApiService) ApiV1OrganizationsOrgIdGitIntegrationsIdInstallationsGet

func (a *DefaultApiService) ApiV1OrganizationsOrgIdGitIntegrationsIdInstallationsGet(ctx context.Context, orgId string, id string) ApiApiV1OrganizationsOrgIdGitIntegrationsIdInstallationsGetRequest

ApiV1OrganizationsOrgIdGitIntegrationsIdInstallationsGet List GitHub App installations

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

func (*DefaultApiService) ApiV1OrganizationsOrgIdGitIntegrationsIdInstallationsGetExecute

func (a *DefaultApiService) ApiV1OrganizationsOrgIdGitIntegrationsIdInstallationsGetExecute(r ApiApiV1OrganizationsOrgIdGitIntegrationsIdInstallationsGetRequest) (*GitInstallationList, *http.Response, error)

Execute executes the request

@return GitInstallationList

func (*DefaultApiService) ApiV1OrganizationsOrgIdGitIntegrationsIdPut

func (a *DefaultApiService) ApiV1OrganizationsOrgIdGitIntegrationsIdPut(ctx context.Context, orgId string, id string) ApiApiV1OrganizationsOrgIdGitIntegrationsIdPutRequest

ApiV1OrganizationsOrgIdGitIntegrationsIdPut Update a git integration (credential rotation)

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

func (*DefaultApiService) ApiV1OrganizationsOrgIdGitIntegrationsIdPutExecute

func (a *DefaultApiService) ApiV1OrganizationsOrgIdGitIntegrationsIdPutExecute(r ApiApiV1OrganizationsOrgIdGitIntegrationsIdPutRequest) (*GitIntegration, *http.Response, error)

Execute executes the request

@return GitIntegration

func (*DefaultApiService) ApiV1OrganizationsOrgIdGitIntegrationsIdRepositoriesGet

func (a *DefaultApiService) ApiV1OrganizationsOrgIdGitIntegrationsIdRepositoriesGet(ctx context.Context, orgId string, id string) ApiApiV1OrganizationsOrgIdGitIntegrationsIdRepositoriesGetRequest

ApiV1OrganizationsOrgIdGitIntegrationsIdRepositoriesGet List repositories visible to the GitHub App installation

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

func (*DefaultApiService) ApiV1OrganizationsOrgIdGitIntegrationsIdRepositoriesGetExecute

func (a *DefaultApiService) ApiV1OrganizationsOrgIdGitIntegrationsIdRepositoriesGetExecute(r ApiApiV1OrganizationsOrgIdGitIntegrationsIdRepositoriesGetRequest) (*GitRepositoryPage, *http.Response, error)

Execute executes the request

@return GitRepositoryPage

func (*DefaultApiService) ApiV1OrganizationsOrgIdGitIntegrationsIdRepositoriesOwnerRepoBranchesGet

func (a *DefaultApiService) ApiV1OrganizationsOrgIdGitIntegrationsIdRepositoriesOwnerRepoBranchesGet(ctx context.Context, orgId string, id string, owner string, repo string) ApiApiV1OrganizationsOrgIdGitIntegrationsIdRepositoriesOwnerRepoBranchesGetRequest

ApiV1OrganizationsOrgIdGitIntegrationsIdRepositoriesOwnerRepoBranchesGet List repository branches through the GitHub App installation

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param orgId The ID of the organization
@param id The id of record
@param owner
@param repo
@return ApiApiV1OrganizationsOrgIdGitIntegrationsIdRepositoriesOwnerRepoBranchesGetRequest

func (*DefaultApiService) ApiV1OrganizationsOrgIdGitIntegrationsIdRepositoriesOwnerRepoBranchesGetExecute

func (a *DefaultApiService) ApiV1OrganizationsOrgIdGitIntegrationsIdRepositoriesOwnerRepoBranchesGetExecute(r ApiApiV1OrganizationsOrgIdGitIntegrationsIdRepositoriesOwnerRepoBranchesGetRequest) (*GitBranchList, *http.Response, error)

Execute executes the request

@return GitBranchList

func (*DefaultApiService) ApiV1OrganizationsOrgIdGitIntegrationsIdRepositoriesOwnerRepoGet

func (a *DefaultApiService) ApiV1OrganizationsOrgIdGitIntegrationsIdRepositoriesOwnerRepoGet(ctx context.Context, orgId string, id string, owner string, repo string) ApiApiV1OrganizationsOrgIdGitIntegrationsIdRepositoriesOwnerRepoGetRequest

ApiV1OrganizationsOrgIdGitIntegrationsIdRepositoriesOwnerRepoGet Get repository details through the GitHub App installation

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param orgId The ID of the organization
@param id The id of record
@param owner
@param repo
@return ApiApiV1OrganizationsOrgIdGitIntegrationsIdRepositoriesOwnerRepoGetRequest

func (*DefaultApiService) ApiV1OrganizationsOrgIdGitIntegrationsIdRepositoriesOwnerRepoGetExecute

func (a *DefaultApiService) ApiV1OrganizationsOrgIdGitIntegrationsIdRepositoriesOwnerRepoGetExecute(r ApiApiV1OrganizationsOrgIdGitIntegrationsIdRepositoriesOwnerRepoGetRequest) (*GitRepository, *http.Response, error)

Execute executes the request

@return GitRepository

func (*DefaultApiService) ApiV1OrganizationsOrgIdGitIntegrationsIdVerifyPost

func (a *DefaultApiService) ApiV1OrganizationsOrgIdGitIntegrationsIdVerifyPost(ctx context.Context, orgId string, id string) ApiApiV1OrganizationsOrgIdGitIntegrationsIdVerifyPostRequest

ApiV1OrganizationsOrgIdGitIntegrationsIdVerifyPost Verify a git integration against a repository

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

func (*DefaultApiService) ApiV1OrganizationsOrgIdGitIntegrationsIdVerifyPostExecute

func (a *DefaultApiService) ApiV1OrganizationsOrgIdGitIntegrationsIdVerifyPostExecute(r ApiApiV1OrganizationsOrgIdGitIntegrationsIdVerifyPostRequest) (*http.Response, error)

Execute executes the request

func (*DefaultApiService) ApiV1OrganizationsOrgIdGitIntegrationsPost

func (a *DefaultApiService) ApiV1OrganizationsOrgIdGitIntegrationsPost(ctx context.Context, orgId string) ApiApiV1OrganizationsOrgIdGitIntegrationsPostRequest

ApiV1OrganizationsOrgIdGitIntegrationsPost Create a git integration for the organization

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param orgId The ID of the organization
@return ApiApiV1OrganizationsOrgIdGitIntegrationsPostRequest

func (*DefaultApiService) ApiV1OrganizationsOrgIdGitIntegrationsPostExecute

func (a *DefaultApiService) ApiV1OrganizationsOrgIdGitIntegrationsPostExecute(r ApiApiV1OrganizationsOrgIdGitIntegrationsPostRequest) (*GitIntegration, *http.Response, error)

Execute executes the request

@return GitIntegration

func (*DefaultApiService) ApiV1OrganizationsOrgIdImageRegistriesGet

func (a *DefaultApiService) ApiV1OrganizationsOrgIdImageRegistriesGet(ctx context.Context, orgId string) ApiApiV1OrganizationsOrgIdImageRegistriesGetRequest

ApiV1OrganizationsOrgIdImageRegistriesGet List all image registries for an organisation

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param orgId The ID of the organization
@return ApiApiV1OrganizationsOrgIdImageRegistriesGetRequest

func (*DefaultApiService) ApiV1OrganizationsOrgIdImageRegistriesGetExecute

func (a *DefaultApiService) ApiV1OrganizationsOrgIdImageRegistriesGetExecute(r ApiApiV1OrganizationsOrgIdImageRegistriesGetRequest) (*ClusterImageRegistryList, *http.Response, error)

Execute executes the request

@return ClusterImageRegistryList

func (*DefaultApiService) ApiV1OrganizationsOrgIdInvitesGet

func (a *DefaultApiService) ApiV1OrganizationsOrgIdInvitesGet(ctx context.Context, orgId string) ApiApiV1OrganizationsOrgIdInvitesGetRequest

ApiV1OrganizationsOrgIdInvitesGet List invites for an organization

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param orgId The ID of the organization
@return ApiApiV1OrganizationsOrgIdInvitesGetRequest

func (*DefaultApiService) ApiV1OrganizationsOrgIdInvitesGetExecute

func (a *DefaultApiService) ApiV1OrganizationsOrgIdInvitesGetExecute(r ApiApiV1OrganizationsOrgIdInvitesGetRequest) (*OrgInviteList, *http.Response, error)

Execute executes the request

@return OrgInviteList

func (*DefaultApiService) ApiV1OrganizationsOrgIdInvitesIdDelete

func (a *DefaultApiService) ApiV1OrganizationsOrgIdInvitesIdDelete(ctx context.Context, orgId string, id string) ApiApiV1OrganizationsOrgIdInvitesIdDeleteRequest

ApiV1OrganizationsOrgIdInvitesIdDelete Revoke a pending invite

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

func (*DefaultApiService) ApiV1OrganizationsOrgIdInvitesIdDeleteExecute

func (a *DefaultApiService) ApiV1OrganizationsOrgIdInvitesIdDeleteExecute(r ApiApiV1OrganizationsOrgIdInvitesIdDeleteRequest) (*http.Response, error)

Execute executes the request

func (*DefaultApiService) ApiV1OrganizationsOrgIdInvitesIdGet

func (a *DefaultApiService) ApiV1OrganizationsOrgIdInvitesIdGet(ctx context.Context, orgId string, id string) ApiApiV1OrganizationsOrgIdInvitesIdGetRequest

ApiV1OrganizationsOrgIdInvitesIdGet Get an invite by ID

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

func (*DefaultApiService) ApiV1OrganizationsOrgIdInvitesIdGetExecute

func (a *DefaultApiService) ApiV1OrganizationsOrgIdInvitesIdGetExecute(r ApiApiV1OrganizationsOrgIdInvitesIdGetRequest) (*OrgInvite, *http.Response, error)

Execute executes the request

@return OrgInvite

func (*DefaultApiService) ApiV1OrganizationsOrgIdInvitesIdResendPost

func (a *DefaultApiService) ApiV1OrganizationsOrgIdInvitesIdResendPost(ctx context.Context, orgId string, id string) ApiApiV1OrganizationsOrgIdInvitesIdResendPostRequest

ApiV1OrganizationsOrgIdInvitesIdResendPost Re-queue invite email for delivery

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

func (*DefaultApiService) ApiV1OrganizationsOrgIdInvitesIdResendPostExecute

func (a *DefaultApiService) ApiV1OrganizationsOrgIdInvitesIdResendPostExecute(r ApiApiV1OrganizationsOrgIdInvitesIdResendPostRequest) (*http.Response, error)

Execute executes the request

func (*DefaultApiService) ApiV1OrganizationsOrgIdInvitesPost

func (a *DefaultApiService) ApiV1OrganizationsOrgIdInvitesPost(ctx context.Context, orgId string) ApiApiV1OrganizationsOrgIdInvitesPostRequest

ApiV1OrganizationsOrgIdInvitesPost Create an invite to the organization

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param orgId The ID of the organization
@return ApiApiV1OrganizationsOrgIdInvitesPostRequest

func (*DefaultApiService) ApiV1OrganizationsOrgIdInvitesPostExecute

func (a *DefaultApiService) ApiV1OrganizationsOrgIdInvitesPostExecute(r ApiApiV1OrganizationsOrgIdInvitesPostRequest) (*OrgInviteCreateResponse, *http.Response, error)

Execute executes the request

@return OrgInviteCreateResponse

func (*DefaultApiService) ApiV1OrganizationsOrgIdObjectStoresGet

func (a *DefaultApiService) ApiV1OrganizationsOrgIdObjectStoresGet(ctx context.Context, orgId string) ApiApiV1OrganizationsOrgIdObjectStoresGetRequest

ApiV1OrganizationsOrgIdObjectStoresGet List all object stores the user has access to across all projects

Returns object stores from all projects the user belongs to. OrgAdmins see all object stores in the org.

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param orgId The ID of the organization
@return ApiApiV1OrganizationsOrgIdObjectStoresGetRequest

func (*DefaultApiService) ApiV1OrganizationsOrgIdObjectStoresGetExecute

func (a *DefaultApiService) ApiV1OrganizationsOrgIdObjectStoresGetExecute(r ApiApiV1OrganizationsOrgIdObjectStoresGetRequest) (*ObjectStoreList, *http.Response, error)

Execute executes the request

@return ObjectStoreList

func (*DefaultApiService) ApiV1OrganizationsOrgIdPostgresAddonsGet

func (a *DefaultApiService) ApiV1OrganizationsOrgIdPostgresAddonsGet(ctx context.Context, orgId string) ApiApiV1OrganizationsOrgIdPostgresAddonsGetRequest

ApiV1OrganizationsOrgIdPostgresAddonsGet List all PostgresAddons the user has access to across all projects

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param orgId The ID of the organization
@return ApiApiV1OrganizationsOrgIdPostgresAddonsGetRequest

func (*DefaultApiService) ApiV1OrganizationsOrgIdPostgresAddonsGetExecute

func (a *DefaultApiService) ApiV1OrganizationsOrgIdPostgresAddonsGetExecute(r ApiApiV1OrganizationsOrgIdPostgresAddonsGetRequest) (*PostgresAddonList, *http.Response, error)

Execute executes the request

@return PostgresAddonList

func (*DefaultApiService) ApiV1OrganizationsOrgIdProjectsGet

func (a *DefaultApiService) ApiV1OrganizationsOrgIdProjectsGet(ctx context.Context, orgId string) ApiApiV1OrganizationsOrgIdProjectsGetRequest

ApiV1OrganizationsOrgIdProjectsGet List all projects in an organization

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param orgId The ID of the organization
@return ApiApiV1OrganizationsOrgIdProjectsGetRequest

func (*DefaultApiService) ApiV1OrganizationsOrgIdProjectsGetExecute

func (a *DefaultApiService) ApiV1OrganizationsOrgIdProjectsGetExecute(r ApiApiV1OrganizationsOrgIdProjectsGetRequest) (*ProjectList, *http.Response, error)

Execute executes the request

@return ProjectList

func (*DefaultApiService) ApiV1OrganizationsOrgIdProjectsPost

func (a *DefaultApiService) ApiV1OrganizationsOrgIdProjectsPost(ctx context.Context, orgId string) ApiApiV1OrganizationsOrgIdProjectsPostRequest

ApiV1OrganizationsOrgIdProjectsPost Create a new project

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param orgId The ID of the organization
@return ApiApiV1OrganizationsOrgIdProjectsPostRequest

func (*DefaultApiService) ApiV1OrganizationsOrgIdProjectsPostExecute

func (a *DefaultApiService) ApiV1OrganizationsOrgIdProjectsPostExecute(r ApiApiV1OrganizationsOrgIdProjectsPostRequest) (*Project, *http.Response, error)

Execute executes the request

@return Project

func (*DefaultApiService) ApiV1OrganizationsOrgIdProjectsProjectNameAddonsPostgresGet

func (a *DefaultApiService) ApiV1OrganizationsOrgIdProjectsProjectNameAddonsPostgresGet(ctx context.Context, orgId string, projectName string) ApiApiV1OrganizationsOrgIdProjectsProjectNameAddonsPostgresGetRequest

ApiV1OrganizationsOrgIdProjectsProjectNameAddonsPostgresGet List all PostgresAddons for a project

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param orgId The ID of the organization
@param projectName The name of the project
@return ApiApiV1OrganizationsOrgIdProjectsProjectNameAddonsPostgresGetRequest

func (*DefaultApiService) ApiV1OrganizationsOrgIdProjectsProjectNameAddonsPostgresGetExecute

func (a *DefaultApiService) ApiV1OrganizationsOrgIdProjectsProjectNameAddonsPostgresGetExecute(r ApiApiV1OrganizationsOrgIdProjectsProjectNameAddonsPostgresGetRequest) (*PostgresAddonList, *http.Response, error)

Execute executes the request

@return PostgresAddonList

func (*DefaultApiService) ApiV1OrganizationsOrgIdProjectsProjectNameAddonsPostgresIdActionsBackupPost

func (a *DefaultApiService) ApiV1OrganizationsOrgIdProjectsProjectNameAddonsPostgresIdActionsBackupPost(ctx context.Context, orgId string, projectName string, id string) ApiApiV1OrganizationsOrgIdProjectsProjectNameAddonsPostgresIdActionsBackupPostRequest

ApiV1OrganizationsOrgIdProjectsProjectNameAddonsPostgresIdActionsBackupPost Trigger an immediate backup

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param orgId The ID of the organization
@param projectName The name of the project
@param id The id of record
@return ApiApiV1OrganizationsOrgIdProjectsProjectNameAddonsPostgresIdActionsBackupPostRequest

func (*DefaultApiService) ApiV1OrganizationsOrgIdProjectsProjectNameAddonsPostgresIdActionsBackupPostExecute

Execute executes the request

@return ApiV1OrganizationsOrgIdProjectsProjectNameAddonsPostgresIdActionsBackupPost202Response

func (*DefaultApiService) ApiV1OrganizationsOrgIdProjectsProjectNameAddonsPostgresIdActionsFencePost

func (a *DefaultApiService) ApiV1OrganizationsOrgIdProjectsProjectNameAddonsPostgresIdActionsFencePost(ctx context.Context, orgId string, projectName string, id string) ApiApiV1OrganizationsOrgIdProjectsProjectNameAddonsPostgresIdActionsFencePostRequest

ApiV1OrganizationsOrgIdProjectsProjectNameAddonsPostgresIdActionsFencePost Fence or unfence the PostgreSQL cluster

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param orgId The ID of the organization
@param projectName The name of the project
@param id The id of record
@return ApiApiV1OrganizationsOrgIdProjectsProjectNameAddonsPostgresIdActionsFencePostRequest

func (*DefaultApiService) ApiV1OrganizationsOrgIdProjectsProjectNameAddonsPostgresIdActionsFencePostExecute

Execute executes the request

@return ApiV1OrganizationsOrgIdProjectsProjectNameAddonsPostgresIdActionsFencePost200Response

func (*DefaultApiService) ApiV1OrganizationsOrgIdProjectsProjectNameAddonsPostgresIdActionsHibernatePost

func (a *DefaultApiService) ApiV1OrganizationsOrgIdProjectsProjectNameAddonsPostgresIdActionsHibernatePost(ctx context.Context, orgId string, projectName string, id string) ApiApiV1OrganizationsOrgIdProjectsProjectNameAddonsPostgresIdActionsHibernatePostRequest

ApiV1OrganizationsOrgIdProjectsProjectNameAddonsPostgresIdActionsHibernatePost Hibernate or wake the PostgreSQL cluster

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param orgId The ID of the organization
@param projectName The name of the project
@param id The id of record
@return ApiApiV1OrganizationsOrgIdProjectsProjectNameAddonsPostgresIdActionsHibernatePostRequest

func (*DefaultApiService) ApiV1OrganizationsOrgIdProjectsProjectNameAddonsPostgresIdActionsHibernatePostExecute

Execute executes the request

@return ApiV1OrganizationsOrgIdProjectsProjectNameAddonsPostgresIdActionsHibernatePost200Response

func (*DefaultApiService) ApiV1OrganizationsOrgIdProjectsProjectNameAddonsPostgresIdBackupsGet

func (a *DefaultApiService) ApiV1OrganizationsOrgIdProjectsProjectNameAddonsPostgresIdBackupsGet(ctx context.Context, orgId string, projectName string, id string) ApiApiV1OrganizationsOrgIdProjectsProjectNameAddonsPostgresIdBackupsGetRequest

ApiV1OrganizationsOrgIdProjectsProjectNameAddonsPostgresIdBackupsGet List backups for a PostgresAddon

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param orgId The ID of the organization
@param projectName The name of the project
@param id The id of record
@return ApiApiV1OrganizationsOrgIdProjectsProjectNameAddonsPostgresIdBackupsGetRequest

func (*DefaultApiService) ApiV1OrganizationsOrgIdProjectsProjectNameAddonsPostgresIdBackupsGetExecute

func (a *DefaultApiService) ApiV1OrganizationsOrgIdProjectsProjectNameAddonsPostgresIdBackupsGetExecute(r ApiApiV1OrganizationsOrgIdProjectsProjectNameAddonsPostgresIdBackupsGetRequest) (*PostgresBackupList, *http.Response, error)

Execute executes the request

@return PostgresBackupList

func (*DefaultApiService) ApiV1OrganizationsOrgIdProjectsProjectNameAddonsPostgresIdCredentialsDatabaseGet

func (a *DefaultApiService) ApiV1OrganizationsOrgIdProjectsProjectNameAddonsPostgresIdCredentialsDatabaseGet(ctx context.Context, orgId string, projectName string, id string, database string) ApiApiV1OrganizationsOrgIdProjectsProjectNameAddonsPostgresIdCredentialsDatabaseGetRequest

ApiV1OrganizationsOrgIdProjectsProjectNameAddonsPostgresIdCredentialsDatabaseGet Get JIT credentials for a PostgresAddon database

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param orgId The ID of the organization
@param projectName The name of the project
@param id The id of record
@param database The name of the database
@return ApiApiV1OrganizationsOrgIdProjectsProjectNameAddonsPostgresIdCredentialsDatabaseGetRequest

func (*DefaultApiService) ApiV1OrganizationsOrgIdProjectsProjectNameAddonsPostgresIdCredentialsDatabaseGetExecute

func (a *DefaultApiService) ApiV1OrganizationsOrgIdProjectsProjectNameAddonsPostgresIdCredentialsDatabaseGetExecute(r ApiApiV1OrganizationsOrgIdProjectsProjectNameAddonsPostgresIdCredentialsDatabaseGetRequest) (*PostgresCredentials, *http.Response, error)

Execute executes the request

@return PostgresCredentials

func (*DefaultApiService) ApiV1OrganizationsOrgIdProjectsProjectNameAddonsPostgresIdDelete

func (a *DefaultApiService) ApiV1OrganizationsOrgIdProjectsProjectNameAddonsPostgresIdDelete(ctx context.Context, orgId string, projectName string, id string) ApiApiV1OrganizationsOrgIdProjectsProjectNameAddonsPostgresIdDeleteRequest

ApiV1OrganizationsOrgIdProjectsProjectNameAddonsPostgresIdDelete Delete a PostgresAddon

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param orgId The ID of the organization
@param projectName The name of the project
@param id The id of record
@return ApiApiV1OrganizationsOrgIdProjectsProjectNameAddonsPostgresIdDeleteRequest

func (*DefaultApiService) ApiV1OrganizationsOrgIdProjectsProjectNameAddonsPostgresIdDeleteExecute

func (a *DefaultApiService) ApiV1OrganizationsOrgIdProjectsProjectNameAddonsPostgresIdDeleteExecute(r ApiApiV1OrganizationsOrgIdProjectsProjectNameAddonsPostgresIdDeleteRequest) (*PostgresAddon, *http.Response, error)

Execute executes the request

@return PostgresAddon

func (*DefaultApiService) ApiV1OrganizationsOrgIdProjectsProjectNameAddonsPostgresIdGet

func (a *DefaultApiService) ApiV1OrganizationsOrgIdProjectsProjectNameAddonsPostgresIdGet(ctx context.Context, orgId string, projectName string, id string) ApiApiV1OrganizationsOrgIdProjectsProjectNameAddonsPostgresIdGetRequest

ApiV1OrganizationsOrgIdProjectsProjectNameAddonsPostgresIdGet Get a specific PostgresAddon

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param orgId The ID of the organization
@param projectName The name of the project
@param id The id of record
@return ApiApiV1OrganizationsOrgIdProjectsProjectNameAddonsPostgresIdGetRequest

func (*DefaultApiService) ApiV1OrganizationsOrgIdProjectsProjectNameAddonsPostgresIdGetExecute

func (a *DefaultApiService) ApiV1OrganizationsOrgIdProjectsProjectNameAddonsPostgresIdGetExecute(r ApiApiV1OrganizationsOrgIdProjectsProjectNameAddonsPostgresIdGetRequest) (*PostgresAddon, *http.Response, error)

Execute executes the request

@return PostgresAddon

func (*DefaultApiService) ApiV1OrganizationsOrgIdProjectsProjectNameAddonsPostgresIdPut

func (a *DefaultApiService) ApiV1OrganizationsOrgIdProjectsProjectNameAddonsPostgresIdPut(ctx context.Context, orgId string, projectName string, id string) ApiApiV1OrganizationsOrgIdProjectsProjectNameAddonsPostgresIdPutRequest

ApiV1OrganizationsOrgIdProjectsProjectNameAddonsPostgresIdPut Update a PostgresAddon

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param orgId The ID of the organization
@param projectName The name of the project
@param id The id of record
@return ApiApiV1OrganizationsOrgIdProjectsProjectNameAddonsPostgresIdPutRequest

func (*DefaultApiService) ApiV1OrganizationsOrgIdProjectsProjectNameAddonsPostgresIdPutExecute

func (a *DefaultApiService) ApiV1OrganizationsOrgIdProjectsProjectNameAddonsPostgresIdPutExecute(r ApiApiV1OrganizationsOrgIdProjectsProjectNameAddonsPostgresIdPutRequest) (*PostgresAddon, *http.Response, error)

Execute executes the request

@return PostgresAddon

func (*DefaultApiService) ApiV1OrganizationsOrgIdProjectsProjectNameAddonsPostgresPost

func (a *DefaultApiService) ApiV1OrganizationsOrgIdProjectsProjectNameAddonsPostgresPost(ctx context.Context, orgId string, projectName string) ApiApiV1OrganizationsOrgIdProjectsProjectNameAddonsPostgresPostRequest

ApiV1OrganizationsOrgIdProjectsProjectNameAddonsPostgresPost Create a new PostgresAddon

Create a new PostgreSQL database cluster addon

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param orgId The ID of the organization
@param projectName The name of the project
@return ApiApiV1OrganizationsOrgIdProjectsProjectNameAddonsPostgresPostRequest

func (*DefaultApiService) ApiV1OrganizationsOrgIdProjectsProjectNameAddonsPostgresPostExecute

func (a *DefaultApiService) ApiV1OrganizationsOrgIdProjectsProjectNameAddonsPostgresPostExecute(r ApiApiV1OrganizationsOrgIdProjectsProjectNameAddonsPostgresPostRequest) (*PostgresAddon, *http.Response, error)

Execute executes the request

@return PostgresAddon

func (*DefaultApiService) ApiV1OrganizationsOrgIdProjectsProjectNameDelete

func (a *DefaultApiService) ApiV1OrganizationsOrgIdProjectsProjectNameDelete(ctx context.Context, orgId string, projectName string) ApiApiV1OrganizationsOrgIdProjectsProjectNameDeleteRequest

ApiV1OrganizationsOrgIdProjectsProjectNameDelete Delete a project

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param orgId The ID of the organization
@param projectName The name of the project
@return ApiApiV1OrganizationsOrgIdProjectsProjectNameDeleteRequest

func (*DefaultApiService) ApiV1OrganizationsOrgIdProjectsProjectNameDeleteExecute

func (a *DefaultApiService) ApiV1OrganizationsOrgIdProjectsProjectNameDeleteExecute(r ApiApiV1OrganizationsOrgIdProjectsProjectNameDeleteRequest) (*http.Response, error)

Execute executes the request

func (*DefaultApiService) ApiV1OrganizationsOrgIdProjectsProjectNameGet

func (a *DefaultApiService) ApiV1OrganizationsOrgIdProjectsProjectNameGet(ctx context.Context, orgId string, projectName string) ApiApiV1OrganizationsOrgIdProjectsProjectNameGetRequest

ApiV1OrganizationsOrgIdProjectsProjectNameGet Get a specific project by name

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param orgId The ID of the organization
@param projectName The name of the project
@return ApiApiV1OrganizationsOrgIdProjectsProjectNameGetRequest

func (*DefaultApiService) ApiV1OrganizationsOrgIdProjectsProjectNameGetExecute

func (a *DefaultApiService) ApiV1OrganizationsOrgIdProjectsProjectNameGetExecute(r ApiApiV1OrganizationsOrgIdProjectsProjectNameGetRequest) (*Project, *http.Response, error)

Execute executes the request

@return Project

func (*DefaultApiService) ApiV1OrganizationsOrgIdProjectsProjectNameMembersGet

func (a *DefaultApiService) ApiV1OrganizationsOrgIdProjectsProjectNameMembersGet(ctx context.Context, orgId string, projectName string) ApiApiV1OrganizationsOrgIdProjectsProjectNameMembersGetRequest

ApiV1OrganizationsOrgIdProjectsProjectNameMembersGet List members of a project

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param orgId The ID of the organization
@param projectName The name of the project
@return ApiApiV1OrganizationsOrgIdProjectsProjectNameMembersGetRequest

func (*DefaultApiService) ApiV1OrganizationsOrgIdProjectsProjectNameMembersGetExecute

func (a *DefaultApiService) ApiV1OrganizationsOrgIdProjectsProjectNameMembersGetExecute(r ApiApiV1OrganizationsOrgIdProjectsProjectNameMembersGetRequest) (*ProjectMembershipList, *http.Response, error)

Execute executes the request

@return ProjectMembershipList

func (*DefaultApiService) ApiV1OrganizationsOrgIdProjectsProjectNameMembersIdDelete

func (a *DefaultApiService) ApiV1OrganizationsOrgIdProjectsProjectNameMembersIdDelete(ctx context.Context, orgId string, projectName string, id string) ApiApiV1OrganizationsOrgIdProjectsProjectNameMembersIdDeleteRequest

ApiV1OrganizationsOrgIdProjectsProjectNameMembersIdDelete Remove a member from a project

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param orgId The ID of the organization
@param projectName The name of the project
@param id The id of record
@return ApiApiV1OrganizationsOrgIdProjectsProjectNameMembersIdDeleteRequest

func (*DefaultApiService) ApiV1OrganizationsOrgIdProjectsProjectNameMembersIdDeleteExecute

func (a *DefaultApiService) ApiV1OrganizationsOrgIdProjectsProjectNameMembersIdDeleteExecute(r ApiApiV1OrganizationsOrgIdProjectsProjectNameMembersIdDeleteRequest) (*http.Response, error)

Execute executes the request

func (*DefaultApiService) ApiV1OrganizationsOrgIdProjectsProjectNameMembersIdPut

func (a *DefaultApiService) ApiV1OrganizationsOrgIdProjectsProjectNameMembersIdPut(ctx context.Context, orgId string, projectName string, id string) ApiApiV1OrganizationsOrgIdProjectsProjectNameMembersIdPutRequest

ApiV1OrganizationsOrgIdProjectsProjectNameMembersIdPut Update a project member's role

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param orgId The ID of the organization
@param projectName The name of the project
@param id The id of record
@return ApiApiV1OrganizationsOrgIdProjectsProjectNameMembersIdPutRequest

func (*DefaultApiService) ApiV1OrganizationsOrgIdProjectsProjectNameMembersIdPutExecute

func (a *DefaultApiService) ApiV1OrganizationsOrgIdProjectsProjectNameMembersIdPutExecute(r ApiApiV1OrganizationsOrgIdProjectsProjectNameMembersIdPutRequest) (*ProjectMembership, *http.Response, error)

Execute executes the request

@return ProjectMembership

func (*DefaultApiService) ApiV1OrganizationsOrgIdProjectsProjectNameMembersPost

func (a *DefaultApiService) ApiV1OrganizationsOrgIdProjectsProjectNameMembersPost(ctx context.Context, orgId string, projectName string) ApiApiV1OrganizationsOrgIdProjectsProjectNameMembersPostRequest

ApiV1OrganizationsOrgIdProjectsProjectNameMembersPost Add a member to a project

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param orgId The ID of the organization
@param projectName The name of the project
@return ApiApiV1OrganizationsOrgIdProjectsProjectNameMembersPostRequest

func (*DefaultApiService) ApiV1OrganizationsOrgIdProjectsProjectNameMembersPostExecute

func (a *DefaultApiService) ApiV1OrganizationsOrgIdProjectsProjectNameMembersPostExecute(r ApiApiV1OrganizationsOrgIdProjectsProjectNameMembersPostRequest) (*ProjectMembership, *http.Response, error)

Execute executes the request

@return ProjectMembership

func (*DefaultApiService) ApiV1OrganizationsOrgIdProjectsProjectNameObjectStoresGet

func (a *DefaultApiService) ApiV1OrganizationsOrgIdProjectsProjectNameObjectStoresGet(ctx context.Context, orgId string, projectName string) ApiApiV1OrganizationsOrgIdProjectsProjectNameObjectStoresGetRequest

ApiV1OrganizationsOrgIdProjectsProjectNameObjectStoresGet List all ObjectStores for a project

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param orgId The ID of the organization
@param projectName The name of the project
@return ApiApiV1OrganizationsOrgIdProjectsProjectNameObjectStoresGetRequest

func (*DefaultApiService) ApiV1OrganizationsOrgIdProjectsProjectNameObjectStoresGetExecute

func (a *DefaultApiService) ApiV1OrganizationsOrgIdProjectsProjectNameObjectStoresGetExecute(r ApiApiV1OrganizationsOrgIdProjectsProjectNameObjectStoresGetRequest) (*ObjectStoreList, *http.Response, error)

Execute executes the request

@return ObjectStoreList

func (*DefaultApiService) ApiV1OrganizationsOrgIdProjectsProjectNameObjectStoresIdDelete

func (a *DefaultApiService) ApiV1OrganizationsOrgIdProjectsProjectNameObjectStoresIdDelete(ctx context.Context, orgId string, projectName string, id string) ApiApiV1OrganizationsOrgIdProjectsProjectNameObjectStoresIdDeleteRequest

ApiV1OrganizationsOrgIdProjectsProjectNameObjectStoresIdDelete Delete an ObjectStore

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param orgId The ID of the organization
@param projectName The name of the project
@param id The id of record
@return ApiApiV1OrganizationsOrgIdProjectsProjectNameObjectStoresIdDeleteRequest

func (*DefaultApiService) ApiV1OrganizationsOrgIdProjectsProjectNameObjectStoresIdDeleteExecute

func (a *DefaultApiService) ApiV1OrganizationsOrgIdProjectsProjectNameObjectStoresIdDeleteExecute(r ApiApiV1OrganizationsOrgIdProjectsProjectNameObjectStoresIdDeleteRequest) (*http.Response, error)

Execute executes the request

func (*DefaultApiService) ApiV1OrganizationsOrgIdProjectsProjectNameObjectStoresIdGet

func (a *DefaultApiService) ApiV1OrganizationsOrgIdProjectsProjectNameObjectStoresIdGet(ctx context.Context, orgId string, projectName string, id string) ApiApiV1OrganizationsOrgIdProjectsProjectNameObjectStoresIdGetRequest

ApiV1OrganizationsOrgIdProjectsProjectNameObjectStoresIdGet Get a specific ObjectStore

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param orgId The ID of the organization
@param projectName The name of the project
@param id The id of record
@return ApiApiV1OrganizationsOrgIdProjectsProjectNameObjectStoresIdGetRequest

func (*DefaultApiService) ApiV1OrganizationsOrgIdProjectsProjectNameObjectStoresIdGetExecute

func (a *DefaultApiService) ApiV1OrganizationsOrgIdProjectsProjectNameObjectStoresIdGetExecute(r ApiApiV1OrganizationsOrgIdProjectsProjectNameObjectStoresIdGetRequest) (*ObjectStore, *http.Response, error)

Execute executes the request

@return ObjectStore

func (*DefaultApiService) ApiV1OrganizationsOrgIdProjectsProjectNameObjectStoresIdPut

func (a *DefaultApiService) ApiV1OrganizationsOrgIdProjectsProjectNameObjectStoresIdPut(ctx context.Context, orgId string, projectName string, id string) ApiApiV1OrganizationsOrgIdProjectsProjectNameObjectStoresIdPutRequest

ApiV1OrganizationsOrgIdProjectsProjectNameObjectStoresIdPut Update an ObjectStore

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param orgId The ID of the organization
@param projectName The name of the project
@param id The id of record
@return ApiApiV1OrganizationsOrgIdProjectsProjectNameObjectStoresIdPutRequest

func (*DefaultApiService) ApiV1OrganizationsOrgIdProjectsProjectNameObjectStoresIdPutExecute

func (a *DefaultApiService) ApiV1OrganizationsOrgIdProjectsProjectNameObjectStoresIdPutExecute(r ApiApiV1OrganizationsOrgIdProjectsProjectNameObjectStoresIdPutRequest) (*ObjectStore, *http.Response, error)

Execute executes the request

@return ObjectStore

func (*DefaultApiService) ApiV1OrganizationsOrgIdProjectsProjectNameObjectStoresPost

func (a *DefaultApiService) ApiV1OrganizationsOrgIdProjectsProjectNameObjectStoresPost(ctx context.Context, orgId string, projectName string) ApiApiV1OrganizationsOrgIdProjectsProjectNameObjectStoresPostRequest

ApiV1OrganizationsOrgIdProjectsProjectNameObjectStoresPost Add a new ObjectStore for backup storage

Add a new ObjectStore configuration for storing PostgreSQL backups and WAL files

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param orgId The ID of the organization
@param projectName The name of the project
@return ApiApiV1OrganizationsOrgIdProjectsProjectNameObjectStoresPostRequest

func (*DefaultApiService) ApiV1OrganizationsOrgIdProjectsProjectNameObjectStoresPostExecute

func (a *DefaultApiService) ApiV1OrganizationsOrgIdProjectsProjectNameObjectStoresPostExecute(r ApiApiV1OrganizationsOrgIdProjectsProjectNameObjectStoresPostRequest) (*ObjectStore, *http.Response, error)

Execute executes the request

@return ObjectStore

func (*DefaultApiService) ApiV1OrganizationsOrgIdProjectsProjectNamePut

func (a *DefaultApiService) ApiV1OrganizationsOrgIdProjectsProjectNamePut(ctx context.Context, orgId string, projectName string) ApiApiV1OrganizationsOrgIdProjectsProjectNamePutRequest

ApiV1OrganizationsOrgIdProjectsProjectNamePut Update a project

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param orgId The ID of the organization
@param projectName The name of the project
@return ApiApiV1OrganizationsOrgIdProjectsProjectNamePutRequest

func (*DefaultApiService) ApiV1OrganizationsOrgIdProjectsProjectNamePutExecute

func (a *DefaultApiService) ApiV1OrganizationsOrgIdProjectsProjectNamePutExecute(r ApiApiV1OrganizationsOrgIdProjectsProjectNamePutRequest) (*Project, *http.Response, error)

Execute executes the request

@return Project

func (*DefaultApiService) ApiV1OrganizationsOrgIdProjectsProjectNameSecretsGet

func (a *DefaultApiService) ApiV1OrganizationsOrgIdProjectsProjectNameSecretsGet(ctx context.Context, orgId string, projectName string) ApiApiV1OrganizationsOrgIdProjectsProjectNameSecretsGetRequest

ApiV1OrganizationsOrgIdProjectsProjectNameSecretsGet List all secrets for a project

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param orgId The ID of the organization
@param projectName The name of the project
@return ApiApiV1OrganizationsOrgIdProjectsProjectNameSecretsGetRequest

func (*DefaultApiService) ApiV1OrganizationsOrgIdProjectsProjectNameSecretsGetExecute

func (a *DefaultApiService) ApiV1OrganizationsOrgIdProjectsProjectNameSecretsGetExecute(r ApiApiV1OrganizationsOrgIdProjectsProjectNameSecretsGetRequest) (*SecretList, *http.Response, error)

Execute executes the request

@return SecretList

func (*DefaultApiService) ApiV1OrganizationsOrgIdProjectsProjectNameSecretsIdDelete

func (a *DefaultApiService) ApiV1OrganizationsOrgIdProjectsProjectNameSecretsIdDelete(ctx context.Context, orgId string, projectName string, id string) ApiApiV1OrganizationsOrgIdProjectsProjectNameSecretsIdDeleteRequest

ApiV1OrganizationsOrgIdProjectsProjectNameSecretsIdDelete Delete a secret

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param orgId The ID of the organization
@param projectName The name of the project
@param id The id of record
@return ApiApiV1OrganizationsOrgIdProjectsProjectNameSecretsIdDeleteRequest

func (*DefaultApiService) ApiV1OrganizationsOrgIdProjectsProjectNameSecretsIdDeleteExecute

func (a *DefaultApiService) ApiV1OrganizationsOrgIdProjectsProjectNameSecretsIdDeleteExecute(r ApiApiV1OrganizationsOrgIdProjectsProjectNameSecretsIdDeleteRequest) (*http.Response, error)

Execute executes the request

func (*DefaultApiService) ApiV1OrganizationsOrgIdProjectsProjectNameSecretsIdGet

func (a *DefaultApiService) ApiV1OrganizationsOrgIdProjectsProjectNameSecretsIdGet(ctx context.Context, orgId string, projectName string, id string) ApiApiV1OrganizationsOrgIdProjectsProjectNameSecretsIdGetRequest

ApiV1OrganizationsOrgIdProjectsProjectNameSecretsIdGet Get a specific secret

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param orgId The ID of the organization
@param projectName The name of the project
@param id The id of record
@return ApiApiV1OrganizationsOrgIdProjectsProjectNameSecretsIdGetRequest

func (*DefaultApiService) ApiV1OrganizationsOrgIdProjectsProjectNameSecretsIdGetExecute

func (a *DefaultApiService) ApiV1OrganizationsOrgIdProjectsProjectNameSecretsIdGetExecute(r ApiApiV1OrganizationsOrgIdProjectsProjectNameSecretsIdGetRequest) (*Secret, *http.Response, error)

Execute executes the request

@return Secret

func (*DefaultApiService) ApiV1OrganizationsOrgIdProjectsProjectNameSecretsIdPut

func (a *DefaultApiService) ApiV1OrganizationsOrgIdProjectsProjectNameSecretsIdPut(ctx context.Context, orgId string, projectName string, id string) ApiApiV1OrganizationsOrgIdProjectsProjectNameSecretsIdPutRequest

ApiV1OrganizationsOrgIdProjectsProjectNameSecretsIdPut Update a secret

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param orgId The ID of the organization
@param projectName The name of the project
@param id The id of record
@return ApiApiV1OrganizationsOrgIdProjectsProjectNameSecretsIdPutRequest

func (*DefaultApiService) ApiV1OrganizationsOrgIdProjectsProjectNameSecretsIdPutExecute

func (a *DefaultApiService) ApiV1OrganizationsOrgIdProjectsProjectNameSecretsIdPutExecute(r ApiApiV1OrganizationsOrgIdProjectsProjectNameSecretsIdPutRequest) (*Secret, *http.Response, error)

Execute executes the request

@return Secret

func (*DefaultApiService) ApiV1OrganizationsOrgIdProjectsProjectNameSecretsPost

func (a *DefaultApiService) ApiV1OrganizationsOrgIdProjectsProjectNameSecretsPost(ctx context.Context, orgId string, projectName string) ApiApiV1OrganizationsOrgIdProjectsProjectNameSecretsPostRequest

ApiV1OrganizationsOrgIdProjectsProjectNameSecretsPost Create a new secret

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param orgId The ID of the organization
@param projectName The name of the project
@return ApiApiV1OrganizationsOrgIdProjectsProjectNameSecretsPostRequest

func (*DefaultApiService) ApiV1OrganizationsOrgIdProjectsProjectNameSecretsPostExecute

func (a *DefaultApiService) ApiV1OrganizationsOrgIdProjectsProjectNameSecretsPostExecute(r ApiApiV1OrganizationsOrgIdProjectsProjectNameSecretsPostRequest) (*Secret, *http.Response, error)

Execute executes the request

@return Secret

func (*DefaultApiService) ApiV1OrganizationsOrgIdProjectsProjectNameStacksGet

func (a *DefaultApiService) ApiV1OrganizationsOrgIdProjectsProjectNameStacksGet(ctx context.Context, orgId string, projectName string) ApiApiV1OrganizationsOrgIdProjectsProjectNameStacksGetRequest

ApiV1OrganizationsOrgIdProjectsProjectNameStacksGet List all stacks for a project

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param orgId The ID of the organization
@param projectName The name of the project
@return ApiApiV1OrganizationsOrgIdProjectsProjectNameStacksGetRequest

func (*DefaultApiService) ApiV1OrganizationsOrgIdProjectsProjectNameStacksGetExecute

func (a *DefaultApiService) ApiV1OrganizationsOrgIdProjectsProjectNameStacksGetExecute(r ApiApiV1OrganizationsOrgIdProjectsProjectNameStacksGetRequest) (*StackList, *http.Response, error)

Execute executes the request

@return StackList

func (*DefaultApiService) ApiV1OrganizationsOrgIdProjectsProjectNameStacksIdBuildsBuildIdGet

func (a *DefaultApiService) ApiV1OrganizationsOrgIdProjectsProjectNameStacksIdBuildsBuildIdGet(ctx context.Context, orgId string, projectName string, id string, buildId string) ApiApiV1OrganizationsOrgIdProjectsProjectNameStacksIdBuildsBuildIdGetRequest

ApiV1OrganizationsOrgIdProjectsProjectNameStacksIdBuildsBuildIdGet Get a specific build under a stack

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param orgId The ID of the organization
@param projectName The name of the project
@param id The id of record
@param buildId The ID of the build
@return ApiApiV1OrganizationsOrgIdProjectsProjectNameStacksIdBuildsBuildIdGetRequest

func (*DefaultApiService) ApiV1OrganizationsOrgIdProjectsProjectNameStacksIdBuildsBuildIdGetExecute

func (a *DefaultApiService) ApiV1OrganizationsOrgIdProjectsProjectNameStacksIdBuildsBuildIdGetExecute(r ApiApiV1OrganizationsOrgIdProjectsProjectNameStacksIdBuildsBuildIdGetRequest) (*ImageBuild, *http.Response, error)

Execute executes the request

@return ImageBuild

func (*DefaultApiService) ApiV1OrganizationsOrgIdProjectsProjectNameStacksIdBuildsBuildIdLogsGet

func (a *DefaultApiService) ApiV1OrganizationsOrgIdProjectsProjectNameStacksIdBuildsBuildIdLogsGet(ctx context.Context, orgId string, projectName string, id string, buildId string) ApiApiV1OrganizationsOrgIdProjectsProjectNameStacksIdBuildsBuildIdLogsGetRequest

ApiV1OrganizationsOrgIdProjectsProjectNameStacksIdBuildsBuildIdLogsGet Get logs for an image build

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param orgId The ID of the organization
@param projectName The name of the project
@param id The id of record
@param buildId The ID of the build
@return ApiApiV1OrganizationsOrgIdProjectsProjectNameStacksIdBuildsBuildIdLogsGetRequest

func (*DefaultApiService) ApiV1OrganizationsOrgIdProjectsProjectNameStacksIdBuildsBuildIdLogsGetExecute

func (a *DefaultApiService) ApiV1OrganizationsOrgIdProjectsProjectNameStacksIdBuildsBuildIdLogsGetExecute(r ApiApiV1OrganizationsOrgIdProjectsProjectNameStacksIdBuildsBuildIdLogsGetRequest) (**os.File, *http.Response, error)

Execute executes the request

@return *os.File

func (*DefaultApiService) ApiV1OrganizationsOrgIdProjectsProjectNameStacksIdBuildsGet

func (a *DefaultApiService) ApiV1OrganizationsOrgIdProjectsProjectNameStacksIdBuildsGet(ctx context.Context, orgId string, projectName string, id string) ApiApiV1OrganizationsOrgIdProjectsProjectNameStacksIdBuildsGetRequest

ApiV1OrganizationsOrgIdProjectsProjectNameStacksIdBuildsGet List all builds under a stack

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param orgId The ID of the organization
@param projectName The name of the project
@param id The id of record
@return ApiApiV1OrganizationsOrgIdProjectsProjectNameStacksIdBuildsGetRequest

func (*DefaultApiService) ApiV1OrganizationsOrgIdProjectsProjectNameStacksIdBuildsGetExecute

func (a *DefaultApiService) ApiV1OrganizationsOrgIdProjectsProjectNameStacksIdBuildsGetExecute(r ApiApiV1OrganizationsOrgIdProjectsProjectNameStacksIdBuildsGetRequest) (*ImageBuildList, *http.Response, error)

Execute executes the request

@return ImageBuildList

func (*DefaultApiService) ApiV1OrganizationsOrgIdProjectsProjectNameStacksIdConnectionsConnectionIdDelete

func (a *DefaultApiService) ApiV1OrganizationsOrgIdProjectsProjectNameStacksIdConnectionsConnectionIdDelete(ctx context.Context, orgId string, projectName string, id string, connectionId string) ApiApiV1OrganizationsOrgIdProjectsProjectNameStacksIdConnectionsConnectionIdDeleteRequest

ApiV1OrganizationsOrgIdProjectsProjectNameStacksIdConnectionsConnectionIdDelete Delete stack connection

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param orgId The ID of the organization
@param projectName The name of the project
@param id The id of record
@param connectionId The ID of the stack connection
@return ApiApiV1OrganizationsOrgIdProjectsProjectNameStacksIdConnectionsConnectionIdDeleteRequest

func (*DefaultApiService) ApiV1OrganizationsOrgIdProjectsProjectNameStacksIdConnectionsConnectionIdDeleteExecute

func (a *DefaultApiService) ApiV1OrganizationsOrgIdProjectsProjectNameStacksIdConnectionsConnectionIdDeleteExecute(r ApiApiV1OrganizationsOrgIdProjectsProjectNameStacksIdConnectionsConnectionIdDeleteRequest) (*http.Response, error)

Execute executes the request

func (*DefaultApiService) ApiV1OrganizationsOrgIdProjectsProjectNameStacksIdConnectionsConnectionIdPut

func (a *DefaultApiService) ApiV1OrganizationsOrgIdProjectsProjectNameStacksIdConnectionsConnectionIdPut(ctx context.Context, orgId string, projectName string, id string, connectionId string) ApiApiV1OrganizationsOrgIdProjectsProjectNameStacksIdConnectionsConnectionIdPutRequest

ApiV1OrganizationsOrgIdProjectsProjectNameStacksIdConnectionsConnectionIdPut Update stack connection

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param orgId The ID of the organization
@param projectName The name of the project
@param id The id of record
@param connectionId The ID of the stack connection
@return ApiApiV1OrganizationsOrgIdProjectsProjectNameStacksIdConnectionsConnectionIdPutRequest

func (*DefaultApiService) ApiV1OrganizationsOrgIdProjectsProjectNameStacksIdConnectionsConnectionIdPutExecute

func (a *DefaultApiService) ApiV1OrganizationsOrgIdProjectsProjectNameStacksIdConnectionsConnectionIdPutExecute(r ApiApiV1OrganizationsOrgIdProjectsProjectNameStacksIdConnectionsConnectionIdPutRequest) (*StackConnection, *http.Response, error)

Execute executes the request

@return StackConnection

func (*DefaultApiService) ApiV1OrganizationsOrgIdProjectsProjectNameStacksIdConnectionsGet

func (a *DefaultApiService) ApiV1OrganizationsOrgIdProjectsProjectNameStacksIdConnectionsGet(ctx context.Context, orgId string, projectName string, id string) ApiApiV1OrganizationsOrgIdProjectsProjectNameStacksIdConnectionsGetRequest

ApiV1OrganizationsOrgIdProjectsProjectNameStacksIdConnectionsGet List stack connections

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param orgId The ID of the organization
@param projectName The name of the project
@param id The id of record
@return ApiApiV1OrganizationsOrgIdProjectsProjectNameStacksIdConnectionsGetRequest

func (*DefaultApiService) ApiV1OrganizationsOrgIdProjectsProjectNameStacksIdConnectionsGetExecute

func (a *DefaultApiService) ApiV1OrganizationsOrgIdProjectsProjectNameStacksIdConnectionsGetExecute(r ApiApiV1OrganizationsOrgIdProjectsProjectNameStacksIdConnectionsGetRequest) (*StackConnectionList, *http.Response, error)

Execute executes the request

@return StackConnectionList

func (*DefaultApiService) ApiV1OrganizationsOrgIdProjectsProjectNameStacksIdConnectionsPost

func (a *DefaultApiService) ApiV1OrganizationsOrgIdProjectsProjectNameStacksIdConnectionsPost(ctx context.Context, orgId string, projectName string, id string) ApiApiV1OrganizationsOrgIdProjectsProjectNameStacksIdConnectionsPostRequest

ApiV1OrganizationsOrgIdProjectsProjectNameStacksIdConnectionsPost Create stack connection

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param orgId The ID of the organization
@param projectName The name of the project
@param id The id of record
@return ApiApiV1OrganizationsOrgIdProjectsProjectNameStacksIdConnectionsPostRequest

func (*DefaultApiService) ApiV1OrganizationsOrgIdProjectsProjectNameStacksIdConnectionsPostExecute

func (a *DefaultApiService) ApiV1OrganizationsOrgIdProjectsProjectNameStacksIdConnectionsPostExecute(r ApiApiV1OrganizationsOrgIdProjectsProjectNameStacksIdConnectionsPostRequest) (*StackConnection, *http.Response, error)

Execute executes the request

@return StackConnection

func (*DefaultApiService) ApiV1OrganizationsOrgIdProjectsProjectNameStacksIdDelete

func (a *DefaultApiService) ApiV1OrganizationsOrgIdProjectsProjectNameStacksIdDelete(ctx context.Context, orgId string, projectName string, id string) ApiApiV1OrganizationsOrgIdProjectsProjectNameStacksIdDeleteRequest

ApiV1OrganizationsOrgIdProjectsProjectNameStacksIdDelete Delete a stack

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param orgId The ID of the organization
@param projectName The name of the project
@param id The id of record
@return ApiApiV1OrganizationsOrgIdProjectsProjectNameStacksIdDeleteRequest

func (*DefaultApiService) ApiV1OrganizationsOrgIdProjectsProjectNameStacksIdDeleteExecute

func (a *DefaultApiService) ApiV1OrganizationsOrgIdProjectsProjectNameStacksIdDeleteExecute(r ApiApiV1OrganizationsOrgIdProjectsProjectNameStacksIdDeleteRequest) (*Stack, *http.Response, error)

Execute executes the request

@return Stack

func (*DefaultApiService) ApiV1OrganizationsOrgIdProjectsProjectNameStacksIdGet

func (a *DefaultApiService) ApiV1OrganizationsOrgIdProjectsProjectNameStacksIdGet(ctx context.Context, orgId string, projectName string, id string) ApiApiV1OrganizationsOrgIdProjectsProjectNameStacksIdGetRequest

ApiV1OrganizationsOrgIdProjectsProjectNameStacksIdGet Get a specific stack

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param orgId The ID of the organization
@param projectName The name of the project
@param id The id of record
@return ApiApiV1OrganizationsOrgIdProjectsProjectNameStacksIdGetRequest

func (*DefaultApiService) ApiV1OrganizationsOrgIdProjectsProjectNameStacksIdGetExecute

func (a *DefaultApiService) ApiV1OrganizationsOrgIdProjectsProjectNameStacksIdGetExecute(r ApiApiV1OrganizationsOrgIdProjectsProjectNameStacksIdGetRequest) (*Stack, *http.Response, error)

Execute executes the request

@return Stack

func (*DefaultApiService) ApiV1OrganizationsOrgIdProjectsProjectNameStacksIdLogsGet

func (a *DefaultApiService) ApiV1OrganizationsOrgIdProjectsProjectNameStacksIdLogsGet(ctx context.Context, orgId string, projectName string, id string) ApiApiV1OrganizationsOrgIdProjectsProjectNameStacksIdLogsGetRequest

ApiV1OrganizationsOrgIdProjectsProjectNameStacksIdLogsGet Get logs for a stack

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param orgId The ID of the organization
@param projectName The name of the project
@param id The id of record
@return ApiApiV1OrganizationsOrgIdProjectsProjectNameStacksIdLogsGetRequest

func (*DefaultApiService) ApiV1OrganizationsOrgIdProjectsProjectNameStacksIdLogsGetExecute

func (a *DefaultApiService) ApiV1OrganizationsOrgIdProjectsProjectNameStacksIdLogsGetExecute(r ApiApiV1OrganizationsOrgIdProjectsProjectNameStacksIdLogsGetRequest) (**os.File, *http.Response, error)

Execute executes the request

@return *os.File

func (*DefaultApiService) ApiV1OrganizationsOrgIdProjectsProjectNameStacksIdMetricsGet

func (a *DefaultApiService) ApiV1OrganizationsOrgIdProjectsProjectNameStacksIdMetricsGet(ctx context.Context, orgId string, projectName string, id string) ApiApiV1OrganizationsOrgIdProjectsProjectNameStacksIdMetricsGetRequest

ApiV1OrganizationsOrgIdProjectsProjectNameStacksIdMetricsGet Get metrics for a stack

Returns metrics for a stack. If `stream=true` is passed, the server responds using Server-Sent Events (SSE).

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param orgId The ID of the organization
@param projectName The name of the project
@param id The id of record
@return ApiApiV1OrganizationsOrgIdProjectsProjectNameStacksIdMetricsGetRequest

func (*DefaultApiService) ApiV1OrganizationsOrgIdProjectsProjectNameStacksIdMetricsGetExecute

func (a *DefaultApiService) ApiV1OrganizationsOrgIdProjectsProjectNameStacksIdMetricsGetExecute(r ApiApiV1OrganizationsOrgIdProjectsProjectNameStacksIdMetricsGetRequest) (**os.File, *http.Response, error)

Execute executes the request

@return *os.File

func (*DefaultApiService) ApiV1OrganizationsOrgIdProjectsProjectNameStacksIdPut

func (a *DefaultApiService) ApiV1OrganizationsOrgIdProjectsProjectNameStacksIdPut(ctx context.Context, orgId string, projectName string, id string) ApiApiV1OrganizationsOrgIdProjectsProjectNameStacksIdPutRequest

ApiV1OrganizationsOrgIdProjectsProjectNameStacksIdPut Update a stack

Updates only shell fields (name, labels, annotations, settings). `namespace` is immutable. Child collections (`stack_resources`, `volumes`, `connections`) in the body are ignored — use `PUT /stacks/{id}/apply` for a full reconcile.

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param orgId The ID of the organization
@param projectName The name of the project
@param id The id of record
@return ApiApiV1OrganizationsOrgIdProjectsProjectNameStacksIdPutRequest

func (*DefaultApiService) ApiV1OrganizationsOrgIdProjectsProjectNameStacksIdPutExecute

func (a *DefaultApiService) ApiV1OrganizationsOrgIdProjectsProjectNameStacksIdPutExecute(r ApiApiV1OrganizationsOrgIdProjectsProjectNameStacksIdPutRequest) (*Stack, *http.Response, error)

Execute executes the request

@return Stack

func (*DefaultApiService) ApiV1OrganizationsOrgIdProjectsProjectNameStacksIdResourcesGet

func (a *DefaultApiService) ApiV1OrganizationsOrgIdProjectsProjectNameStacksIdResourcesGet(ctx context.Context, orgId string, projectName string, id string) ApiApiV1OrganizationsOrgIdProjectsProjectNameStacksIdResourcesGetRequest

ApiV1OrganizationsOrgIdProjectsProjectNameStacksIdResourcesGet List all stack resources under a stack

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param orgId The ID of the organization
@param projectName The name of the project
@param id The id of record
@return ApiApiV1OrganizationsOrgIdProjectsProjectNameStacksIdResourcesGetRequest

func (*DefaultApiService) ApiV1OrganizationsOrgIdProjectsProjectNameStacksIdResourcesGetExecute

func (a *DefaultApiService) ApiV1OrganizationsOrgIdProjectsProjectNameStacksIdResourcesGetExecute(r ApiApiV1OrganizationsOrgIdProjectsProjectNameStacksIdResourcesGetRequest) (*StackResourceList, *http.Response, error)

Execute executes the request

@return StackResourceList

func (*DefaultApiService) ApiV1OrganizationsOrgIdProjectsProjectNameStacksIdResourcesResourceNameActionsRestartPost

func (a *DefaultApiService) ApiV1OrganizationsOrgIdProjectsProjectNameStacksIdResourcesResourceNameActionsRestartPost(ctx context.Context, orgId string, projectName string, id string, resourceName string) ApiApiV1OrganizationsOrgIdProjectsProjectNameStacksIdResourcesResourceNameActionsRestartPostRequest

ApiV1OrganizationsOrgIdProjectsProjectNameStacksIdResourcesResourceNameActionsRestartPost Restart a stack resource

Triggers a rolling restart of the stack resource by setting a new restart request timestamp.

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param orgId The ID of the organization
@param projectName The name of the project
@param id The id of record
@param resourceName The name of the stack resource
@return ApiApiV1OrganizationsOrgIdProjectsProjectNameStacksIdResourcesResourceNameActionsRestartPostRequest

func (*DefaultApiService) ApiV1OrganizationsOrgIdProjectsProjectNameStacksIdResourcesResourceNameActionsRestartPostExecute

func (a *DefaultApiService) ApiV1OrganizationsOrgIdProjectsProjectNameStacksIdResourcesResourceNameActionsRestartPostExecute(r ApiApiV1OrganizationsOrgIdProjectsProjectNameStacksIdResourcesResourceNameActionsRestartPostRequest) (*StackResource, *http.Response, error)

Execute executes the request

@return StackResource

func (*DefaultApiService) ApiV1OrganizationsOrgIdProjectsProjectNameStacksIdResourcesResourceNameBuildsGet

func (a *DefaultApiService) ApiV1OrganizationsOrgIdProjectsProjectNameStacksIdResourcesResourceNameBuildsGet(ctx context.Context, orgId string, projectName string, id string, resourceName string) ApiApiV1OrganizationsOrgIdProjectsProjectNameStacksIdResourcesResourceNameBuildsGetRequest

ApiV1OrganizationsOrgIdProjectsProjectNameStacksIdResourcesResourceNameBuildsGet List all builds for a stack resource

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param orgId The ID of the organization
@param projectName The name of the project
@param id The id of record
@param resourceName The name of the stack resource
@return ApiApiV1OrganizationsOrgIdProjectsProjectNameStacksIdResourcesResourceNameBuildsGetRequest

func (*DefaultApiService) ApiV1OrganizationsOrgIdProjectsProjectNameStacksIdResourcesResourceNameBuildsGetExecute

func (a *DefaultApiService) ApiV1OrganizationsOrgIdProjectsProjectNameStacksIdResourcesResourceNameBuildsGetExecute(r ApiApiV1OrganizationsOrgIdProjectsProjectNameStacksIdResourcesResourceNameBuildsGetRequest) (*ImageBuildList, *http.Response, error)

Execute executes the request

@return ImageBuildList

func (*DefaultApiService) ApiV1OrganizationsOrgIdProjectsProjectNameStacksIdResourcesResourceNameGet

func (a *DefaultApiService) ApiV1OrganizationsOrgIdProjectsProjectNameStacksIdResourcesResourceNameGet(ctx context.Context, orgId string, projectName string, id string, resourceName string) ApiApiV1OrganizationsOrgIdProjectsProjectNameStacksIdResourcesResourceNameGetRequest

ApiV1OrganizationsOrgIdProjectsProjectNameStacksIdResourcesResourceNameGet Get a specific stack resource by name

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param orgId The ID of the organization
@param projectName The name of the project
@param id The id of record
@param resourceName The name of the stack resource
@return ApiApiV1OrganizationsOrgIdProjectsProjectNameStacksIdResourcesResourceNameGetRequest

func (*DefaultApiService) ApiV1OrganizationsOrgIdProjectsProjectNameStacksIdResourcesResourceNameGetExecute

func (a *DefaultApiService) ApiV1OrganizationsOrgIdProjectsProjectNameStacksIdResourcesResourceNameGetExecute(r ApiApiV1OrganizationsOrgIdProjectsProjectNameStacksIdResourcesResourceNameGetRequest) (*StackResource, *http.Response, error)

Execute executes the request

@return StackResource

func (*DefaultApiService) ApiV1OrganizationsOrgIdProjectsProjectNameStacksIdResourcesResourceNameLogsGet

func (a *DefaultApiService) ApiV1OrganizationsOrgIdProjectsProjectNameStacksIdResourcesResourceNameLogsGet(ctx context.Context, orgId string, projectName string, id string, resourceName string) ApiApiV1OrganizationsOrgIdProjectsProjectNameStacksIdResourcesResourceNameLogsGetRequest

ApiV1OrganizationsOrgIdProjectsProjectNameStacksIdResourcesResourceNameLogsGet Get logs for a stack resource

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param orgId The ID of the organization
@param projectName The name of the project
@param id The id of record
@param resourceName The name of the stack resource
@return ApiApiV1OrganizationsOrgIdProjectsProjectNameStacksIdResourcesResourceNameLogsGetRequest

func (*DefaultApiService) ApiV1OrganizationsOrgIdProjectsProjectNameStacksIdResourcesResourceNameLogsGetExecute

func (a *DefaultApiService) ApiV1OrganizationsOrgIdProjectsProjectNameStacksIdResourcesResourceNameLogsGetExecute(r ApiApiV1OrganizationsOrgIdProjectsProjectNameStacksIdResourcesResourceNameLogsGetRequest) (**os.File, *http.Response, error)

Execute executes the request

@return *os.File

func (*DefaultApiService) ApiV1OrganizationsOrgIdProjectsProjectNameStacksIdResourcesResourceNameMetricsGet

func (a *DefaultApiService) ApiV1OrganizationsOrgIdProjectsProjectNameStacksIdResourcesResourceNameMetricsGet(ctx context.Context, orgId string, projectName string, id string, resourceName string) ApiApiV1OrganizationsOrgIdProjectsProjectNameStacksIdResourcesResourceNameMetricsGetRequest

ApiV1OrganizationsOrgIdProjectsProjectNameStacksIdResourcesResourceNameMetricsGet Get metrics for a stack resource

Returns metrics for a stack resource. If `stream=true` is passed, the server responds using Server-Sent Events (SSE).

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param orgId The ID of the organization
@param projectName The name of the project
@param id The id of record
@param resourceName The name of the stack resource
@return ApiApiV1OrganizationsOrgIdProjectsProjectNameStacksIdResourcesResourceNameMetricsGetRequest

func (*DefaultApiService) ApiV1OrganizationsOrgIdProjectsProjectNameStacksIdResourcesResourceNameMetricsGetExecute

func (a *DefaultApiService) ApiV1OrganizationsOrgIdProjectsProjectNameStacksIdResourcesResourceNameMetricsGetExecute(r ApiApiV1OrganizationsOrgIdProjectsProjectNameStacksIdResourcesResourceNameMetricsGetRequest) (*ResourceMetrics, *http.Response, error)

Execute executes the request

@return ResourceMetrics

func (*DefaultApiService) ApiV1OrganizationsOrgIdProjectsProjectNameStacksIdTopologyGet

func (a *DefaultApiService) ApiV1OrganizationsOrgIdProjectsProjectNameStacksIdTopologyGet(ctx context.Context, orgId string, projectName string, id string) ApiApiV1OrganizationsOrgIdProjectsProjectNameStacksIdTopologyGetRequest

ApiV1OrganizationsOrgIdProjectsProjectNameStacksIdTopologyGet Get stack topology

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param orgId The ID of the organization
@param projectName The name of the project
@param id The id of record
@return ApiApiV1OrganizationsOrgIdProjectsProjectNameStacksIdTopologyGetRequest

func (*DefaultApiService) ApiV1OrganizationsOrgIdProjectsProjectNameStacksIdTopologyGetExecute

func (a *DefaultApiService) ApiV1OrganizationsOrgIdProjectsProjectNameStacksIdTopologyGetExecute(r ApiApiV1OrganizationsOrgIdProjectsProjectNameStacksIdTopologyGetRequest) (*StackTopology, *http.Response, error)

Execute executes the request

@return StackTopology

func (*DefaultApiService) ApiV1OrganizationsOrgIdProjectsProjectNameStacksIdVolumesGet

func (a *DefaultApiService) ApiV1OrganizationsOrgIdProjectsProjectNameStacksIdVolumesGet(ctx context.Context, orgId string, projectName string, id string) ApiApiV1OrganizationsOrgIdProjectsProjectNameStacksIdVolumesGetRequest

ApiV1OrganizationsOrgIdProjectsProjectNameStacksIdVolumesGet List volumes used by the stack

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param orgId The ID of the organization
@param projectName The name of the project
@param id The id of record
@return ApiApiV1OrganizationsOrgIdProjectsProjectNameStacksIdVolumesGetRequest

func (*DefaultApiService) ApiV1OrganizationsOrgIdProjectsProjectNameStacksIdVolumesGetExecute

func (a *DefaultApiService) ApiV1OrganizationsOrgIdProjectsProjectNameStacksIdVolumesGetExecute(r ApiApiV1OrganizationsOrgIdProjectsProjectNameStacksIdVolumesGetRequest) (*VolumeList, *http.Response, error)

Execute executes the request

@return VolumeList

func (*DefaultApiService) ApiV1OrganizationsOrgIdProjectsProjectNameStacksIdVolumesPost

func (a *DefaultApiService) ApiV1OrganizationsOrgIdProjectsProjectNameStacksIdVolumesPost(ctx context.Context, orgId string, projectName string, id string) ApiApiV1OrganizationsOrgIdProjectsProjectNameStacksIdVolumesPostRequest

ApiV1OrganizationsOrgIdProjectsProjectNameStacksIdVolumesPost Create a volume and associate it with the stack

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param orgId The ID of the organization
@param projectName The name of the project
@param id The id of record
@return ApiApiV1OrganizationsOrgIdProjectsProjectNameStacksIdVolumesPostRequest

func (*DefaultApiService) ApiV1OrganizationsOrgIdProjectsProjectNameStacksIdVolumesPostExecute

func (a *DefaultApiService) ApiV1OrganizationsOrgIdProjectsProjectNameStacksIdVolumesPostExecute(r ApiApiV1OrganizationsOrgIdProjectsProjectNameStacksIdVolumesPostRequest) (*Volume, *http.Response, error)

Execute executes the request

@return Volume

func (*DefaultApiService) ApiV1OrganizationsOrgIdProjectsProjectNameStacksPost

func (a *DefaultApiService) ApiV1OrganizationsOrgIdProjectsProjectNameStacksPost(ctx context.Context, orgId string, projectName string) ApiApiV1OrganizationsOrgIdProjectsProjectNameStacksPostRequest

ApiV1OrganizationsOrgIdProjectsProjectNameStacksPost Create a new stack

Creates a thin stack shell (name, labels, annotations, settings). Any inline `stack_resources`, `volumes`, or `connections` in the body are ignored — add children via `PUT /stacks/{id}/apply` or the individual sub-resource endpoints.

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param orgId The ID of the organization
@param projectName The name of the project
@return ApiApiV1OrganizationsOrgIdProjectsProjectNameStacksPostRequest

func (*DefaultApiService) ApiV1OrganizationsOrgIdProjectsProjectNameStacksPostExecute

func (a *DefaultApiService) ApiV1OrganizationsOrgIdProjectsProjectNameStacksPostExecute(r ApiApiV1OrganizationsOrgIdProjectsProjectNameStacksPostRequest) (*Stack, *http.Response, error)

Execute executes the request

@return Stack

func (*DefaultApiService) ApiV1OrganizationsOrgIdProjectsProjectNameVolumesIdDelete

func (a *DefaultApiService) ApiV1OrganizationsOrgIdProjectsProjectNameVolumesIdDelete(ctx context.Context, orgId string, projectName string, id string) ApiApiV1OrganizationsOrgIdProjectsProjectNameVolumesIdDeleteRequest

ApiV1OrganizationsOrgIdProjectsProjectNameVolumesIdDelete Delete a volume

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param orgId The ID of the organization
@param projectName The name of the project
@param id The id of record
@return ApiApiV1OrganizationsOrgIdProjectsProjectNameVolumesIdDeleteRequest

func (*DefaultApiService) ApiV1OrganizationsOrgIdProjectsProjectNameVolumesIdDeleteExecute

func (a *DefaultApiService) ApiV1OrganizationsOrgIdProjectsProjectNameVolumesIdDeleteExecute(r ApiApiV1OrganizationsOrgIdProjectsProjectNameVolumesIdDeleteRequest) (*http.Response, error)

Execute executes the request

func (*DefaultApiService) ApiV1OrganizationsOrgIdProjectsProjectNameVolumesIdGet

func (a *DefaultApiService) ApiV1OrganizationsOrgIdProjectsProjectNameVolumesIdGet(ctx context.Context, orgId string, projectName string, id string) ApiApiV1OrganizationsOrgIdProjectsProjectNameVolumesIdGetRequest

ApiV1OrganizationsOrgIdProjectsProjectNameVolumesIdGet Get a specific volume

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param orgId The ID of the organization
@param projectName The name of the project
@param id The id of record
@return ApiApiV1OrganizationsOrgIdProjectsProjectNameVolumesIdGetRequest

func (*DefaultApiService) ApiV1OrganizationsOrgIdProjectsProjectNameVolumesIdGetExecute

func (a *DefaultApiService) ApiV1OrganizationsOrgIdProjectsProjectNameVolumesIdGetExecute(r ApiApiV1OrganizationsOrgIdProjectsProjectNameVolumesIdGetRequest) (*Volume, *http.Response, error)

Execute executes the request

@return Volume

func (*DefaultApiService) ApiV1OrganizationsOrgIdRegistryCredentialsGet

func (a *DefaultApiService) ApiV1OrganizationsOrgIdRegistryCredentialsGet(ctx context.Context, orgId string) ApiApiV1OrganizationsOrgIdRegistryCredentialsGetRequest

ApiV1OrganizationsOrgIdRegistryCredentialsGet List registry credentials for the organization

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param orgId The ID of the organization
@return ApiApiV1OrganizationsOrgIdRegistryCredentialsGetRequest

func (*DefaultApiService) ApiV1OrganizationsOrgIdRegistryCredentialsGetExecute

func (a *DefaultApiService) ApiV1OrganizationsOrgIdRegistryCredentialsGetExecute(r ApiApiV1OrganizationsOrgIdRegistryCredentialsGetRequest) (*RegistryCredentialList, *http.Response, error)

Execute executes the request

@return RegistryCredentialList

func (*DefaultApiService) ApiV1OrganizationsOrgIdRegistryCredentialsIdDelete

func (a *DefaultApiService) ApiV1OrganizationsOrgIdRegistryCredentialsIdDelete(ctx context.Context, orgId string, id string) ApiApiV1OrganizationsOrgIdRegistryCredentialsIdDeleteRequest

ApiV1OrganizationsOrgIdRegistryCredentialsIdDelete Delete a registry credential

Deletion is never blocked; the response lists stacks that were implicitly resolving against this credential so rotations are visible.

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

func (*DefaultApiService) ApiV1OrganizationsOrgIdRegistryCredentialsIdDeleteExecute

func (a *DefaultApiService) ApiV1OrganizationsOrgIdRegistryCredentialsIdDeleteExecute(r ApiApiV1OrganizationsOrgIdRegistryCredentialsIdDeleteRequest) (*RegistryCredentialDeleteResponse, *http.Response, error)

Execute executes the request

@return RegistryCredentialDeleteResponse

func (*DefaultApiService) ApiV1OrganizationsOrgIdRegistryCredentialsIdGet

func (a *DefaultApiService) ApiV1OrganizationsOrgIdRegistryCredentialsIdGet(ctx context.Context, orgId string, id string) ApiApiV1OrganizationsOrgIdRegistryCredentialsIdGetRequest

ApiV1OrganizationsOrgIdRegistryCredentialsIdGet Get a registry credential

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

func (*DefaultApiService) ApiV1OrganizationsOrgIdRegistryCredentialsIdGetExecute

func (a *DefaultApiService) ApiV1OrganizationsOrgIdRegistryCredentialsIdGetExecute(r ApiApiV1OrganizationsOrgIdRegistryCredentialsIdGetRequest) (*RegistryCredential, *http.Response, error)

Execute executes the request

@return RegistryCredential

func (*DefaultApiService) ApiV1OrganizationsOrgIdRegistryCredentialsIdPut

func (a *DefaultApiService) ApiV1OrganizationsOrgIdRegistryCredentialsIdPut(ctx context.Context, orgId string, id string) ApiApiV1OrganizationsOrgIdRegistryCredentialsIdPutRequest

ApiV1OrganizationsOrgIdRegistryCredentialsIdPut Update a registry credential (username/password rotation)

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

func (*DefaultApiService) ApiV1OrganizationsOrgIdRegistryCredentialsIdPutExecute

func (a *DefaultApiService) ApiV1OrganizationsOrgIdRegistryCredentialsIdPutExecute(r ApiApiV1OrganizationsOrgIdRegistryCredentialsIdPutRequest) (*RegistryCredential, *http.Response, error)

Execute executes the request

@return RegistryCredential

func (*DefaultApiService) ApiV1OrganizationsOrgIdRegistryCredentialsIdVerifyPost

func (a *DefaultApiService) ApiV1OrganizationsOrgIdRegistryCredentialsIdVerifyPost(ctx context.Context, orgId string, id string) ApiApiV1OrganizationsOrgIdRegistryCredentialsIdVerifyPostRequest

ApiV1OrganizationsOrgIdRegistryCredentialsIdVerifyPost Verify a registry credential against a repository

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

func (*DefaultApiService) ApiV1OrganizationsOrgIdRegistryCredentialsIdVerifyPostExecute

func (a *DefaultApiService) ApiV1OrganizationsOrgIdRegistryCredentialsIdVerifyPostExecute(r ApiApiV1OrganizationsOrgIdRegistryCredentialsIdVerifyPostRequest) (*http.Response, error)

Execute executes the request

func (*DefaultApiService) ApiV1OrganizationsOrgIdRegistryCredentialsPost

func (a *DefaultApiService) ApiV1OrganizationsOrgIdRegistryCredentialsPost(ctx context.Context, orgId string) ApiApiV1OrganizationsOrgIdRegistryCredentialsPostRequest

ApiV1OrganizationsOrgIdRegistryCredentialsPost Create a registry credential for the organization

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param orgId The ID of the organization
@return ApiApiV1OrganizationsOrgIdRegistryCredentialsPostRequest

func (*DefaultApiService) ApiV1OrganizationsOrgIdRegistryCredentialsPostExecute

func (a *DefaultApiService) ApiV1OrganizationsOrgIdRegistryCredentialsPostExecute(r ApiApiV1OrganizationsOrgIdRegistryCredentialsPostRequest) (*RegistryCredential, *http.Response, error)

Execute executes the request

@return RegistryCredential

func (*DefaultApiService) ApiV1OrganizationsOrgIdSecretsGet

func (a *DefaultApiService) ApiV1OrganizationsOrgIdSecretsGet(ctx context.Context, orgId string) ApiApiV1OrganizationsOrgIdSecretsGetRequest

ApiV1OrganizationsOrgIdSecretsGet List all secrets the user has access to across all projects

Returns secrets from all projects the user belongs to. OrgAdmins see all secrets in the org.

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param orgId The ID of the organization
@return ApiApiV1OrganizationsOrgIdSecretsGetRequest

func (*DefaultApiService) ApiV1OrganizationsOrgIdSecretsGetExecute

func (a *DefaultApiService) ApiV1OrganizationsOrgIdSecretsGetExecute(r ApiApiV1OrganizationsOrgIdSecretsGetRequest) (*SecretList, *http.Response, error)

Execute executes the request

@return SecretList

func (*DefaultApiService) ApiV1OrganizationsOrgIdStacksGet

func (a *DefaultApiService) ApiV1OrganizationsOrgIdStacksGet(ctx context.Context, orgId string) ApiApiV1OrganizationsOrgIdStacksGetRequest

ApiV1OrganizationsOrgIdStacksGet List all stacks the user has access to across all projects

Returns stacks from all projects the user belongs to. OrgAdmins see all stacks in the org.

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param orgId The ID of the organization
@return ApiApiV1OrganizationsOrgIdStacksGetRequest

func (*DefaultApiService) ApiV1OrganizationsOrgIdStacksGetExecute

func (a *DefaultApiService) ApiV1OrganizationsOrgIdStacksGetExecute(r ApiApiV1OrganizationsOrgIdStacksGetRequest) (*StackList, *http.Response, error)

Execute executes the request

@return StackList

func (*DefaultApiService) ApiV1OrganizationsOrgIdUsersGet

func (a *DefaultApiService) ApiV1OrganizationsOrgIdUsersGet(ctx context.Context, orgId string) ApiApiV1OrganizationsOrgIdUsersGetRequest

ApiV1OrganizationsOrgIdUsersGet List all users in an organization

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param orgId The ID of the organization
@return ApiApiV1OrganizationsOrgIdUsersGetRequest

func (*DefaultApiService) ApiV1OrganizationsOrgIdUsersGetExecute

func (a *DefaultApiService) ApiV1OrganizationsOrgIdUsersGetExecute(r ApiApiV1OrganizationsOrgIdUsersGetRequest) (*UserList, *http.Response, error)

Execute executes the request

@return UserList

func (*DefaultApiService) ApiV1ProjectRolesGet

func (a *DefaultApiService) ApiV1ProjectRolesGet(ctx context.Context) ApiApiV1ProjectRolesGetRequest

ApiV1ProjectRolesGet List available project membership roles

Returns the list of roles that can be assigned to project members.

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

func (*DefaultApiService) ApiV1ProjectRolesGetExecute

func (a *DefaultApiService) ApiV1ProjectRolesGetExecute(r ApiApiV1ProjectRolesGetRequest) (*ProjectRoleList, *http.Response, error)

Execute executes the request

@return ProjectRoleList

func (*DefaultApiService) ApiV1UserSignupPost

func (a *DefaultApiService) ApiV1UserSignupPost(ctx context.Context) ApiApiV1UserSignupPostRequest

ApiV1UserSignupPost Create new user

Create a new user

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

func (*DefaultApiService) ApiV1UserSignupPostExecute

Execute executes the request

@return UserSignupResponse

func (*DefaultApiService) ApiV1UsersCurrentGet

func (a *DefaultApiService) ApiV1UsersCurrentGet(ctx context.Context) ApiApiV1UsersCurrentGetRequest

ApiV1UsersCurrentGet Get the current authenticated user

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

func (*DefaultApiService) ApiV1UsersCurrentGetExecute

func (a *DefaultApiService) ApiV1UsersCurrentGetExecute(r ApiApiV1UsersCurrentGetRequest) (*User, *http.Response, error)

Execute executes the request

@return User

func (*DefaultApiService) ApiV1UsersCurrentProjectsGet

func (a *DefaultApiService) ApiV1UsersCurrentProjectsGet(ctx context.Context) ApiApiV1UsersCurrentProjectsGetRequest

ApiV1UsersCurrentProjectsGet List projects for the current authenticated user

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

func (*DefaultApiService) ApiV1UsersCurrentProjectsGetExecute

func (a *DefaultApiService) ApiV1UsersCurrentProjectsGetExecute(r ApiApiV1UsersCurrentProjectsGetRequest) (*ProjectList, *http.Response, error)

Execute executes the request

@return ProjectList

func (*DefaultApiService) ApiV1UsersIdGet

ApiV1UsersIdGet Get a user

Get a user

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

func (*DefaultApiService) ApiV1UsersIdGetExecute

func (a *DefaultApiService) ApiV1UsersIdGetExecute(r ApiApiV1UsersIdGetRequest) (*User, *http.Response, error)

Execute executes the request

@return User

func (*DefaultApiService) ApiV1WebhooksGithubPost

func (a *DefaultApiService) ApiV1WebhooksGithubPost(ctx context.Context) ApiApiV1WebhooksGithubPostRequest

ApiV1WebhooksGithubPost GitHub webhook receiver (unauthenticated, HMAC-verified)

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

func (*DefaultApiService) ApiV1WebhooksGithubPostExecute

func (a *DefaultApiService) ApiV1WebhooksGithubPostExecute(r ApiApiV1WebhooksGithubPostRequest) (*http.Response, error)

Execute executes the request

func (*DefaultApiService) ApplyStack

func (a *DefaultApiService) ApplyStack(ctx context.Context, orgId string, projectName string, id string) ApiApplyStackRequest

ApplyStack Apply a full stack document (declarative reconcile)

Declarative whole-document apply. Reconciles the stack against the supplied document: resources and connections not present in the body are deleted, while volumes are add-only and are never deleted. This is the only endpoint that accepts a full stack document.

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param orgId The ID of the organization
@param projectName The name of the project
@param id The id of record
@return ApiApplyStackRequest

func (*DefaultApiService) ApplyStackByName

func (a *DefaultApiService) ApplyStackByName(ctx context.Context, orgId string, projectName string) ApiApplyStackByNameRequest

ApplyStackByName Apply a full stack document by name (declarative upsert)

Name-addressed declarative whole-document apply. Stack identity is the `name` in the request body (unique per project). If a stack with that name exists in the project it is reconciled exactly like the id-addressed apply (resources and connections not present in the body are deleted, volumes are add-only); otherwise the stack and its children are created atomically after full validation. Idempotent — clients need not know whether the stack already exists.

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param orgId The ID of the organization
@param projectName The name of the project
@return ApiApplyStackByNameRequest

func (*DefaultApiService) ApplyStackByNameExecute

func (a *DefaultApiService) ApplyStackByNameExecute(r ApiApplyStackByNameRequest) (*Stack, *http.Response, error)

Execute executes the request

@return Stack

func (*DefaultApiService) ApplyStackExecute

func (a *DefaultApiService) ApplyStackExecute(r ApiApplyStackRequest) (*Stack, *http.Response, error)

Execute executes the request

@return Stack

func (*DefaultApiService) CreateStackResource

func (a *DefaultApiService) CreateStackResource(ctx context.Context, orgId string, projectName string, id string) ApiCreateStackResourceRequest

CreateStackResource Create a stack resource

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param orgId The ID of the organization
@param projectName The name of the project
@param id The id of record
@return ApiCreateStackResourceRequest

func (*DefaultApiService) CreateStackResourceExecute

func (a *DefaultApiService) CreateStackResourceExecute(r ApiCreateStackResourceRequest) (*StackResource, *http.Response, error)

Execute executes the request

@return StackResource

func (*DefaultApiService) DeleteStackResource

func (a *DefaultApiService) DeleteStackResource(ctx context.Context, orgId string, projectName string, id string, resourceName string) ApiDeleteStackResourceRequest

DeleteStackResource Delete a stack resource

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param orgId The ID of the organization
@param projectName The name of the project
@param id The id of record
@param resourceName The name of the stack resource
@return ApiDeleteStackResourceRequest

func (*DefaultApiService) DeleteStackResourceExecute

func (a *DefaultApiService) DeleteStackResourceExecute(r ApiDeleteStackResourceRequest) (*http.Response, error)

Execute executes the request

func (*DefaultApiService) UpdateStackResource

func (a *DefaultApiService) UpdateStackResource(ctx context.Context, orgId string, projectName string, id string, resourceName string) ApiUpdateStackResourceRequest

UpdateStackResource Update a stack resource

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param orgId The ID of the organization
@param projectName The name of the project
@param id The id of record
@param resourceName The name of the stack resource
@return ApiUpdateStackResourceRequest

func (*DefaultApiService) UpdateStackResourceExecute

func (a *DefaultApiService) UpdateStackResourceExecute(r ApiUpdateStackResourceRequest) (*StackResource, *http.Response, error)

Execute executes the request

@return StackResource

type DemoteAdminRequest

type DemoteAdminRequest struct {
	// The name of the project to place the demoted user in
	ProjectName string `json:"project_name"`
	// The project role to assign (defaults to Viewer)
	Role NullableProjectRole `json:"role,omitempty"`
}

DemoteAdminRequest struct for DemoteAdminRequest

func NewDemoteAdminRequest

func NewDemoteAdminRequest(projectName string) *DemoteAdminRequest

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

func NewDemoteAdminRequestWithDefaults

func NewDemoteAdminRequestWithDefaults() *DemoteAdminRequest

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

func (*DemoteAdminRequest) GetProjectName

func (o *DemoteAdminRequest) GetProjectName() string

GetProjectName returns the ProjectName field value

func (*DemoteAdminRequest) GetProjectNameOk

func (o *DemoteAdminRequest) GetProjectNameOk() (*string, bool)

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

func (*DemoteAdminRequest) GetRole

func (o *DemoteAdminRequest) GetRole() ProjectRole

GetRole returns the Role field value if set, zero value otherwise (both if not set or set to explicit null).

func (*DemoteAdminRequest) GetRoleOk

func (o *DemoteAdminRequest) GetRoleOk() (*ProjectRole, 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. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*DemoteAdminRequest) HasRole

func (o *DemoteAdminRequest) HasRole() bool

HasRole returns a boolean if a field has been set.

func (DemoteAdminRequest) MarshalJSON

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

func (*DemoteAdminRequest) SetProjectName

func (o *DemoteAdminRequest) SetProjectName(v string)

SetProjectName sets field value

func (*DemoteAdminRequest) SetRole

func (o *DemoteAdminRequest) SetRole(v ProjectRole)

SetRole gets a reference to the given NullableProjectRole and assigns it to the Role field.

func (*DemoteAdminRequest) SetRoleNil

func (o *DemoteAdminRequest) SetRoleNil()

SetRoleNil sets the value for Role to be an explicit nil

func (*DemoteAdminRequest) UnsetRole

func (o *DemoteAdminRequest) UnsetRole()

UnsetRole ensures that no value is present for Role, not even an explicit nil

type DomainName

type DomainName struct {
	Id *string `json:"id,omitempty"`
	// Fully Qualified Domain Name
	Fqdn *string `json:"fqdn,omitempty"`
}

DomainName struct for DomainName

func NewDomainName

func NewDomainName() *DomainName

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

func NewDomainNameWithDefaults

func NewDomainNameWithDefaults() *DomainName

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

func (*DomainName) GetFqdn

func (o *DomainName) GetFqdn() string

GetFqdn returns the Fqdn field value if set, zero value otherwise.

func (*DomainName) GetFqdnOk

func (o *DomainName) GetFqdnOk() (*string, bool)

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

func (*DomainName) GetId

func (o *DomainName) GetId() string

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

func (*DomainName) GetIdOk

func (o *DomainName) 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 (*DomainName) HasFqdn

func (o *DomainName) HasFqdn() bool

HasFqdn returns a boolean if a field has been set.

func (*DomainName) HasId

func (o *DomainName) HasId() bool

HasId returns a boolean if a field has been set.

func (DomainName) MarshalJSON

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

func (*DomainName) SetFqdn

func (o *DomainName) SetFqdn(v string)

SetFqdn gets a reference to the given string and assigns it to the Fqdn field.

func (*DomainName) SetId

func (o *DomainName) SetId(v string)

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

type EnvVar

type EnvVar struct {
	Name string `json:"name"`
	// Literal environment variable value.
	Value *string `json:"value,omitempty"`
	// Read this environment variable from one of the resource's own declared outputs, for example public_url.
	SelfOutput *string `json:"self_output,omitempty"`
}

EnvVar struct for EnvVar

func NewEnvVar

func NewEnvVar(name string) *EnvVar

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

func NewEnvVarWithDefaults

func NewEnvVarWithDefaults() *EnvVar

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

func (*EnvVar) GetName

func (o *EnvVar) GetName() string

GetName returns the Name field value

func (*EnvVar) GetNameOk

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

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

func (*EnvVar) GetSelfOutput

func (o *EnvVar) GetSelfOutput() string

GetSelfOutput returns the SelfOutput field value if set, zero value otherwise.

func (*EnvVar) GetSelfOutputOk

func (o *EnvVar) GetSelfOutputOk() (*string, bool)

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

func (*EnvVar) GetValue

func (o *EnvVar) GetValue() string

GetValue returns the Value field value if set, zero value otherwise.

func (*EnvVar) GetValueOk

func (o *EnvVar) 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 (*EnvVar) HasSelfOutput

func (o *EnvVar) HasSelfOutput() bool

HasSelfOutput returns a boolean if a field has been set.

func (*EnvVar) HasValue

func (o *EnvVar) HasValue() bool

HasValue returns a boolean if a field has been set.

func (EnvVar) MarshalJSON

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

func (*EnvVar) SetName

func (o *EnvVar) SetName(v string)

SetName sets field value

func (*EnvVar) SetSelfOutput

func (o *EnvVar) SetSelfOutput(v string)

SetSelfOutput gets a reference to the given string and assigns it to the SelfOutput field.

func (*EnvVar) SetValue

func (o *EnvVar) SetValue(v string)

SetValue gets a reference to the given string and assigns it to the Value field.

type Error

type Error struct {
	Id          *string `json:"id,omitempty"`
	Kind        *string `json:"kind,omitempty"`
	Href        *string `json:"href,omitempty"`
	Code        *string `json:"code,omitempty"`
	Reason      *string `json:"reason,omitempty"`
	OperationId *string `json:"operation_id,omitempty"`
	// Optional structured, machine-readable error context
	Details map[string]interface{} `json:"details,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) GetDetails

func (o *Error) GetDetails() map[string]interface{}

GetDetails returns the Details field value if set, zero value otherwise.

func (*Error) GetDetailsOk

func (o *Error) GetDetailsOk() (map[string]interface{}, 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 (*Error) GetHref

func (o *Error) GetHref() string

GetHref returns the Href field value if set, zero value otherwise.

func (*Error) GetHrefOk

func (o *Error) GetHrefOk() (*string, bool)

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

func (*Error) GetId

func (o *Error) GetId() string

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

func (*Error) GetIdOk

func (o *Error) 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 (*Error) GetKind

func (o *Error) GetKind() string

GetKind returns the Kind field value if set, zero value otherwise.

func (*Error) GetKindOk

func (o *Error) GetKindOk() (*string, bool)

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

func (*Error) GetOperationId

func (o *Error) GetOperationId() string

GetOperationId returns the OperationId field value if set, zero value otherwise.

func (*Error) GetOperationIdOk

func (o *Error) GetOperationIdOk() (*string, bool)

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

func (*Error) GetReason

func (o *Error) GetReason() string

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

func (*Error) GetReasonOk

func (o *Error) 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 (*Error) HasCode

func (o *Error) HasCode() bool

HasCode returns a boolean if a field has been set.

func (*Error) HasDetails

func (o *Error) HasDetails() bool

HasDetails returns a boolean if a field has been set.

func (*Error) HasHref

func (o *Error) HasHref() bool

HasHref returns a boolean if a field has been set.

func (*Error) HasId

func (o *Error) HasId() bool

HasId returns a boolean if a field has been set.

func (*Error) HasKind

func (o *Error) HasKind() bool

HasKind returns a boolean if a field has been set.

func (*Error) HasOperationId

func (o *Error) HasOperationId() bool

HasOperationId returns a boolean if a field has been set.

func (*Error) HasReason

func (o *Error) HasReason() bool

HasReason 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) SetDetails

func (o *Error) SetDetails(v map[string]interface{})

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

func (*Error) SetHref

func (o *Error) SetHref(v string)

SetHref gets a reference to the given string and assigns it to the Href field.

func (*Error) SetId

func (o *Error) SetId(v string)

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

func (*Error) SetKind

func (o *Error) SetKind(v string)

SetKind gets a reference to the given string and assigns it to the Kind field.

func (*Error) SetOperationId

func (o *Error) SetOperationId(v string)

SetOperationId gets a reference to the given string and assigns it to the OperationId field.

func (*Error) SetReason

func (o *Error) SetReason(v string)

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

type ErrorAllOf

type ErrorAllOf struct {
	Code        *string `json:"code,omitempty"`
	Reason      *string `json:"reason,omitempty"`
	OperationId *string `json:"operation_id,omitempty"`
	// Optional structured, machine-readable error context
	Details map[string]interface{} `json:"details,omitempty"`
}

ErrorAllOf struct for ErrorAllOf

func NewErrorAllOf

func NewErrorAllOf() *ErrorAllOf

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

func NewErrorAllOfWithDefaults

func NewErrorAllOfWithDefaults() *ErrorAllOf

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

func (*ErrorAllOf) GetCode

func (o *ErrorAllOf) GetCode() string

GetCode returns the Code field value if set, zero value otherwise.

func (*ErrorAllOf) GetCodeOk

func (o *ErrorAllOf) 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 (*ErrorAllOf) GetDetails

func (o *ErrorAllOf) GetDetails() map[string]interface{}

GetDetails returns the Details field value if set, zero value otherwise.

func (*ErrorAllOf) GetDetailsOk

func (o *ErrorAllOf) GetDetailsOk() (map[string]interface{}, 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 (*ErrorAllOf) GetOperationId

func (o *ErrorAllOf) GetOperationId() string

GetOperationId returns the OperationId field value if set, zero value otherwise.

func (*ErrorAllOf) GetOperationIdOk

func (o *ErrorAllOf) GetOperationIdOk() (*string, bool)

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

func (*ErrorAllOf) GetReason

func (o *ErrorAllOf) GetReason() string

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

func (*ErrorAllOf) GetReasonOk

func (o *ErrorAllOf) 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 (*ErrorAllOf) HasCode

func (o *ErrorAllOf) HasCode() bool

HasCode returns a boolean if a field has been set.

func (*ErrorAllOf) HasDetails

func (o *ErrorAllOf) HasDetails() bool

HasDetails returns a boolean if a field has been set.

func (*ErrorAllOf) HasOperationId

func (o *ErrorAllOf) HasOperationId() bool

HasOperationId returns a boolean if a field has been set.

func (*ErrorAllOf) HasReason

func (o *ErrorAllOf) HasReason() bool

HasReason returns a boolean if a field has been set.

func (ErrorAllOf) MarshalJSON

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

func (*ErrorAllOf) SetCode

func (o *ErrorAllOf) SetCode(v string)

SetCode gets a reference to the given string and assigns it to the Code field.

func (*ErrorAllOf) SetDetails

func (o *ErrorAllOf) SetDetails(v map[string]interface{})

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

func (*ErrorAllOf) SetOperationId

func (o *ErrorAllOf) SetOperationId(v string)

SetOperationId gets a reference to the given string and assigns it to the OperationId field.

func (*ErrorAllOf) SetReason

func (o *ErrorAllOf) SetReason(v string)

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

type ErrorList

type ErrorList struct {
	Items []Error `json:"items,omitempty"`
	Kind  string  `json:"kind"`
	Page  int32   `json:"page"`
	Size  int32   `json:"size"`
	Total int32   `json:"total"`
}

ErrorList struct for ErrorList

func NewErrorList

func NewErrorList(kind string, page int32, size int32, total int32) *ErrorList

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

func NewErrorListWithDefaults

func NewErrorListWithDefaults() *ErrorList

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

func (*ErrorList) GetItems

func (o *ErrorList) GetItems() []Error

GetItems returns the Items field value if set, zero value otherwise.

func (*ErrorList) GetItemsOk

func (o *ErrorList) GetItemsOk() ([]Error, bool)

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

func (*ErrorList) GetKind

func (o *ErrorList) GetKind() string

GetKind returns the Kind field value

func (*ErrorList) GetKindOk

func (o *ErrorList) GetKindOk() (*string, bool)

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

func (*ErrorList) GetPage

func (o *ErrorList) GetPage() int32

GetPage returns the Page field value

func (*ErrorList) GetPageOk

func (o *ErrorList) GetPageOk() (*int32, bool)

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

func (*ErrorList) GetSize

func (o *ErrorList) GetSize() int32

GetSize returns the Size field value

func (*ErrorList) GetSizeOk

func (o *ErrorList) GetSizeOk() (*int32, bool)

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

func (*ErrorList) GetTotal

func (o *ErrorList) GetTotal() int32

GetTotal returns the Total field value

func (*ErrorList) GetTotalOk

func (o *ErrorList) GetTotalOk() (*int32, bool)

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

func (*ErrorList) HasItems

func (o *ErrorList) HasItems() bool

HasItems returns a boolean if a field has been set.

func (ErrorList) MarshalJSON

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

func (*ErrorList) SetItems

func (o *ErrorList) SetItems(v []Error)

SetItems gets a reference to the given []Error and assigns it to the Items field.

func (*ErrorList) SetKind

func (o *ErrorList) SetKind(v string)

SetKind sets field value

func (*ErrorList) SetPage

func (o *ErrorList) SetPage(v int32)

SetPage sets field value

func (*ErrorList) SetSize

func (o *ErrorList) SetSize(v int32)

SetSize sets field value

func (*ErrorList) SetTotal

func (o *ErrorList) SetTotal(v int32)

SetTotal sets field value

type ExecutionConfig

type ExecutionConfig struct {
	Command              []string `json:"command,omitempty"`
	Args                 []string `json:"args,omitempty"`
	EnvironmentVariables []EnvVar `json:"environment_variables,omitempty"`
}

ExecutionConfig struct for ExecutionConfig

func NewExecutionConfig

func NewExecutionConfig() *ExecutionConfig

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

func NewExecutionConfigWithDefaults

func NewExecutionConfigWithDefaults() *ExecutionConfig

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

func (*ExecutionConfig) GetArgs

func (o *ExecutionConfig) GetArgs() []string

GetArgs returns the Args field value if set, zero value otherwise.

func (*ExecutionConfig) GetArgsOk

func (o *ExecutionConfig) 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 (*ExecutionConfig) GetCommand

func (o *ExecutionConfig) GetCommand() []string

GetCommand returns the Command field value if set, zero value otherwise.

func (*ExecutionConfig) GetCommandOk

func (o *ExecutionConfig) 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 (*ExecutionConfig) GetEnvironmentVariables

func (o *ExecutionConfig) GetEnvironmentVariables() []EnvVar

GetEnvironmentVariables returns the EnvironmentVariables field value if set, zero value otherwise.

func (*ExecutionConfig) GetEnvironmentVariablesOk

func (o *ExecutionConfig) GetEnvironmentVariablesOk() ([]EnvVar, bool)

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

func (*ExecutionConfig) HasArgs

func (o *ExecutionConfig) HasArgs() bool

HasArgs returns a boolean if a field has been set.

func (*ExecutionConfig) HasCommand

func (o *ExecutionConfig) HasCommand() bool

HasCommand returns a boolean if a field has been set.

func (*ExecutionConfig) HasEnvironmentVariables

func (o *ExecutionConfig) HasEnvironmentVariables() bool

HasEnvironmentVariables returns a boolean if a field has been set.

func (ExecutionConfig) MarshalJSON

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

func (*ExecutionConfig) SetArgs

func (o *ExecutionConfig) SetArgs(v []string)

SetArgs gets a reference to the given []string and assigns it to the Args field.

func (*ExecutionConfig) SetCommand

func (o *ExecutionConfig) SetCommand(v []string)

SetCommand gets a reference to the given []string and assigns it to the Command field.

func (*ExecutionConfig) SetEnvironmentVariables

func (o *ExecutionConfig) SetEnvironmentVariables(v []EnvVar)

SetEnvironmentVariables gets a reference to the given []EnvVar and assigns it to the EnvironmentVariables field.

type FieldValidationError

type FieldValidationError struct {
	// JSON path of the offending request field, e.g. \"ports[0].protocol\".
	Field *string `json:"field,omitempty"`
	// Machine-readable validation code, e.g. \"public_port_not_http\".
	Code    *string `json:"code,omitempty"`
	Message *string `json:"message,omitempty"`
}

FieldValidationError struct for FieldValidationError

func NewFieldValidationError

func NewFieldValidationError() *FieldValidationError

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

func NewFieldValidationErrorWithDefaults

func NewFieldValidationErrorWithDefaults() *FieldValidationError

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

func (*FieldValidationError) GetCode

func (o *FieldValidationError) GetCode() string

GetCode returns the Code field value if set, zero value otherwise.

func (*FieldValidationError) GetCodeOk

func (o *FieldValidationError) 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 (*FieldValidationError) GetField

func (o *FieldValidationError) GetField() string

GetField returns the Field field value if set, zero value otherwise.

func (*FieldValidationError) GetFieldOk

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

func (o *FieldValidationError) GetMessage() string

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

func (*FieldValidationError) GetMessageOk

func (o *FieldValidationError) 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 (*FieldValidationError) HasCode

func (o *FieldValidationError) HasCode() bool

HasCode returns a boolean if a field has been set.

func (*FieldValidationError) HasField

func (o *FieldValidationError) HasField() bool

HasField returns a boolean if a field has been set.

func (*FieldValidationError) HasMessage

func (o *FieldValidationError) HasMessage() bool

HasMessage returns a boolean if a field has been set.

func (FieldValidationError) MarshalJSON

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

func (*FieldValidationError) SetCode

func (o *FieldValidationError) SetCode(v string)

SetCode gets a reference to the given string and assigns it to the Code field.

func (*FieldValidationError) SetField

func (o *FieldValidationError) SetField(v string)

SetField gets a reference to the given string and assigns it to the Field field.

func (*FieldValidationError) SetMessage

func (o *FieldValidationError) SetMessage(v string)

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

type GCSCredentials

type GCSCredentials struct {
	ServiceAccountCredentials SecretReference `json:"service_account_credentials"`
}

GCSCredentials struct for GCSCredentials

func NewGCSCredentials

func NewGCSCredentials(serviceAccountCredentials SecretReference) *GCSCredentials

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

func NewGCSCredentialsWithDefaults

func NewGCSCredentialsWithDefaults() *GCSCredentials

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

func (*GCSCredentials) GetServiceAccountCredentials

func (o *GCSCredentials) GetServiceAccountCredentials() SecretReference

GetServiceAccountCredentials returns the ServiceAccountCredentials field value

func (*GCSCredentials) GetServiceAccountCredentialsOk

func (o *GCSCredentials) GetServiceAccountCredentialsOk() (*SecretReference, bool)

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

func (GCSCredentials) MarshalJSON

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

func (*GCSCredentials) SetServiceAccountCredentials

func (o *GCSCredentials) SetServiceAccountCredentials(v SecretReference)

SetServiceAccountCredentials sets field value

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 GitBranchList

type GitBranchList struct {
	Items []string `json:"items,omitempty"`
	Total *int32   `json:"total,omitempty"`
}

GitBranchList struct for GitBranchList

func NewGitBranchList

func NewGitBranchList() *GitBranchList

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

func NewGitBranchListWithDefaults

func NewGitBranchListWithDefaults() *GitBranchList

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

func (*GitBranchList) GetItems

func (o *GitBranchList) GetItems() []string

GetItems returns the Items field value if set, zero value otherwise.

func (*GitBranchList) GetItemsOk

func (o *GitBranchList) GetItemsOk() ([]string, bool)

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

func (*GitBranchList) GetTotal

func (o *GitBranchList) GetTotal() int32

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

func (*GitBranchList) GetTotalOk

func (o *GitBranchList) GetTotalOk() (*int32, 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 (*GitBranchList) HasItems

func (o *GitBranchList) HasItems() bool

HasItems returns a boolean if a field has been set.

func (*GitBranchList) HasTotal

func (o *GitBranchList) HasTotal() bool

HasTotal returns a boolean if a field has been set.

func (GitBranchList) MarshalJSON

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

func (*GitBranchList) SetItems

func (o *GitBranchList) SetItems(v []string)

SetItems gets a reference to the given []string and assigns it to the Items field.

func (*GitBranchList) SetTotal

func (o *GitBranchList) SetTotal(v int32)

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

type GitHubAppManifestFlow

type GitHubAppManifestFlow struct {
	// GitHub App manifest to POST to github_url as the manifest form field. Absent when the hub runs a platform-wide GitHub App: github_url is then the app's install page and the browser is redirected to it.
	Manifest  map[string]interface{} `json:"manifest,omitempty"`
	GithubUrl *string                `json:"github_url,omitempty"`
	State     *string                `json:"state,omitempty"`
}

GitHubAppManifestFlow struct for GitHubAppManifestFlow

func NewGitHubAppManifestFlow

func NewGitHubAppManifestFlow() *GitHubAppManifestFlow

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

func NewGitHubAppManifestFlowWithDefaults

func NewGitHubAppManifestFlowWithDefaults() *GitHubAppManifestFlow

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

func (*GitHubAppManifestFlow) GetGithubUrl

func (o *GitHubAppManifestFlow) GetGithubUrl() string

GetGithubUrl returns the GithubUrl field value if set, zero value otherwise.

func (*GitHubAppManifestFlow) GetGithubUrlOk

func (o *GitHubAppManifestFlow) GetGithubUrlOk() (*string, bool)

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

func (*GitHubAppManifestFlow) GetManifest

func (o *GitHubAppManifestFlow) GetManifest() map[string]interface{}

GetManifest returns the Manifest field value if set, zero value otherwise.

func (*GitHubAppManifestFlow) GetManifestOk

func (o *GitHubAppManifestFlow) GetManifestOk() (map[string]interface{}, bool)

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

func (*GitHubAppManifestFlow) GetState

func (o *GitHubAppManifestFlow) GetState() string

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

func (*GitHubAppManifestFlow) GetStateOk

func (o *GitHubAppManifestFlow) 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 (*GitHubAppManifestFlow) HasGithubUrl

func (o *GitHubAppManifestFlow) HasGithubUrl() bool

HasGithubUrl returns a boolean if a field has been set.

func (*GitHubAppManifestFlow) HasManifest

func (o *GitHubAppManifestFlow) HasManifest() bool

HasManifest returns a boolean if a field has been set.

func (*GitHubAppManifestFlow) HasState

func (o *GitHubAppManifestFlow) HasState() bool

HasState returns a boolean if a field has been set.

func (GitHubAppManifestFlow) MarshalJSON

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

func (*GitHubAppManifestFlow) SetGithubUrl

func (o *GitHubAppManifestFlow) SetGithubUrl(v string)

SetGithubUrl gets a reference to the given string and assigns it to the GithubUrl field.

func (*GitHubAppManifestFlow) SetManifest

func (o *GitHubAppManifestFlow) SetManifest(v map[string]interface{})

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

func (*GitHubAppManifestFlow) SetState

func (o *GitHubAppManifestFlow) SetState(v string)

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

type GitInstallation

type GitInstallation struct {
	Id                  *string    `json:"id,omitempty"`
	InstallationId      *int64     `json:"installation_id,omitempty"`
	AccountLogin        *string    `json:"account_login,omitempty"`
	AccountType         *string    `json:"account_type,omitempty"`
	RepositorySelection *string    `json:"repository_selection,omitempty"`
	CreatedAt           *time.Time `json:"created_at,omitempty"`
}

GitInstallation struct for GitInstallation

func NewGitInstallation

func NewGitInstallation() *GitInstallation

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

func NewGitInstallationWithDefaults

func NewGitInstallationWithDefaults() *GitInstallation

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

func (*GitInstallation) GetAccountLogin

func (o *GitInstallation) GetAccountLogin() string

GetAccountLogin returns the AccountLogin field value if set, zero value otherwise.

func (*GitInstallation) GetAccountLoginOk

func (o *GitInstallation) GetAccountLoginOk() (*string, bool)

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

func (*GitInstallation) GetAccountType

func (o *GitInstallation) GetAccountType() string

GetAccountType returns the AccountType field value if set, zero value otherwise.

func (*GitInstallation) GetAccountTypeOk

func (o *GitInstallation) GetAccountTypeOk() (*string, bool)

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

func (*GitInstallation) GetCreatedAt

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

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

func (*GitInstallation) GetCreatedAtOk

func (o *GitInstallation) 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 (*GitInstallation) GetId

func (o *GitInstallation) GetId() string

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

func (*GitInstallation) GetIdOk

func (o *GitInstallation) 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 (*GitInstallation) GetInstallationId

func (o *GitInstallation) GetInstallationId() int64

GetInstallationId returns the InstallationId field value if set, zero value otherwise.

func (*GitInstallation) GetInstallationIdOk

func (o *GitInstallation) GetInstallationIdOk() (*int64, 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 (*GitInstallation) GetRepositorySelection

func (o *GitInstallation) GetRepositorySelection() string

GetRepositorySelection returns the RepositorySelection field value if set, zero value otherwise.

func (*GitInstallation) GetRepositorySelectionOk

func (o *GitInstallation) GetRepositorySelectionOk() (*string, bool)

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

func (*GitInstallation) HasAccountLogin

func (o *GitInstallation) HasAccountLogin() bool

HasAccountLogin returns a boolean if a field has been set.

func (*GitInstallation) HasAccountType

func (o *GitInstallation) HasAccountType() bool

HasAccountType returns a boolean if a field has been set.

func (*GitInstallation) HasCreatedAt

func (o *GitInstallation) HasCreatedAt() bool

HasCreatedAt returns a boolean if a field has been set.

func (*GitInstallation) HasId

func (o *GitInstallation) HasId() bool

HasId returns a boolean if a field has been set.

func (*GitInstallation) HasInstallationId

func (o *GitInstallation) HasInstallationId() bool

HasInstallationId returns a boolean if a field has been set.

func (*GitInstallation) HasRepositorySelection

func (o *GitInstallation) HasRepositorySelection() bool

HasRepositorySelection returns a boolean if a field has been set.

func (GitInstallation) MarshalJSON

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

func (*GitInstallation) SetAccountLogin

func (o *GitInstallation) SetAccountLogin(v string)

SetAccountLogin gets a reference to the given string and assigns it to the AccountLogin field.

func (*GitInstallation) SetAccountType

func (o *GitInstallation) SetAccountType(v string)

SetAccountType gets a reference to the given string and assigns it to the AccountType field.

func (*GitInstallation) SetCreatedAt

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

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

func (*GitInstallation) SetId

func (o *GitInstallation) SetId(v string)

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

func (*GitInstallation) SetInstallationId

func (o *GitInstallation) SetInstallationId(v int64)

SetInstallationId gets a reference to the given int64 and assigns it to the InstallationId field.

func (*GitInstallation) SetRepositorySelection

func (o *GitInstallation) SetRepositorySelection(v string)

SetRepositorySelection gets a reference to the given string and assigns it to the RepositorySelection field.

type GitInstallationList

type GitInstallationList struct {
	Items []GitInstallation `json:"items,omitempty"`
	Total *int32            `json:"total,omitempty"`
}

GitInstallationList struct for GitInstallationList

func NewGitInstallationList

func NewGitInstallationList() *GitInstallationList

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

func NewGitInstallationListWithDefaults

func NewGitInstallationListWithDefaults() *GitInstallationList

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

func (*GitInstallationList) GetItems

func (o *GitInstallationList) GetItems() []GitInstallation

GetItems returns the Items field value if set, zero value otherwise.

func (*GitInstallationList) GetItemsOk

func (o *GitInstallationList) GetItemsOk() ([]GitInstallation, bool)

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

func (*GitInstallationList) GetTotal

func (o *GitInstallationList) GetTotal() int32

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

func (*GitInstallationList) GetTotalOk

func (o *GitInstallationList) GetTotalOk() (*int32, 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 (*GitInstallationList) HasItems

func (o *GitInstallationList) HasItems() bool

HasItems returns a boolean if a field has been set.

func (*GitInstallationList) HasTotal

func (o *GitInstallationList) HasTotal() bool

HasTotal returns a boolean if a field has been set.

func (GitInstallationList) MarshalJSON

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

func (*GitInstallationList) SetItems

func (o *GitInstallationList) SetItems(v []GitInstallation)

SetItems gets a reference to the given []GitInstallation and assigns it to the Items field.

func (*GitInstallationList) SetTotal

func (o *GitInstallationList) SetTotal(v int32)

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

type GitIntegration

type GitIntegration struct {
	Id   *string             `json:"id,omitempty"`
	Type *GitIntegrationType `json:"type,omitempty"`
	// Git host this integration covers, e.g. gitlab.example.com
	Host                  string              `json:"host"`
	Status                *string             `json:"status,omitempty"`
	Auth                  *GitIntegrationAuth `json:"auth,omitempty"`
	CredentialsConfigured *bool               `json:"credentials_configured,omitempty"`
	// GitHub install page for adding the app to more accounts (github_app only)
	InstallUrl     *string    `json:"install_url,omitempty"`
	OrganisationId *string    `json:"organisation_id,omitempty"`
	CreatedAt      *time.Time `json:"created_at,omitempty"`
	UpdatedAt      *time.Time `json:"updated_at,omitempty"`
}

GitIntegration struct for GitIntegration

func NewGitIntegration

func NewGitIntegration(host string) *GitIntegration

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

func NewGitIntegrationWithDefaults

func NewGitIntegrationWithDefaults() *GitIntegration

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

func (*GitIntegration) GetAuth

func (o *GitIntegration) GetAuth() GitIntegrationAuth

GetAuth returns the Auth field value if set, zero value otherwise.

func (*GitIntegration) GetAuthOk

func (o *GitIntegration) GetAuthOk() (*GitIntegrationAuth, bool)

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

func (*GitIntegration) GetCreatedAt

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

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

func (*GitIntegration) GetCreatedAtOk

func (o *GitIntegration) 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 (*GitIntegration) GetCredentialsConfigured

func (o *GitIntegration) GetCredentialsConfigured() bool

GetCredentialsConfigured returns the CredentialsConfigured field value if set, zero value otherwise.

func (*GitIntegration) GetCredentialsConfiguredOk

func (o *GitIntegration) GetCredentialsConfiguredOk() (*bool, bool)

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

func (*GitIntegration) GetHost

func (o *GitIntegration) GetHost() string

GetHost returns the Host field value

func (*GitIntegration) GetHostOk

func (o *GitIntegration) GetHostOk() (*string, bool)

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

func (*GitIntegration) GetId

func (o *GitIntegration) GetId() string

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

func (*GitIntegration) GetIdOk

func (o *GitIntegration) 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 (*GitIntegration) GetInstallUrl

func (o *GitIntegration) GetInstallUrl() string

GetInstallUrl returns the InstallUrl field value if set, zero value otherwise.

func (*GitIntegration) GetInstallUrlOk

func (o *GitIntegration) GetInstallUrlOk() (*string, bool)

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

func (*GitIntegration) GetOrganisationId

func (o *GitIntegration) GetOrganisationId() string

GetOrganisationId returns the OrganisationId field value if set, zero value otherwise.

func (*GitIntegration) GetOrganisationIdOk

func (o *GitIntegration) GetOrganisationIdOk() (*string, bool)

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

func (*GitIntegration) GetStatus

func (o *GitIntegration) GetStatus() string

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

func (*GitIntegration) GetStatusOk

func (o *GitIntegration) 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 (*GitIntegration) GetType

func (o *GitIntegration) GetType() GitIntegrationType

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

func (*GitIntegration) GetTypeOk

func (o *GitIntegration) GetTypeOk() (*GitIntegrationType, 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 (*GitIntegration) GetUpdatedAt

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

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

func (*GitIntegration) GetUpdatedAtOk

func (o *GitIntegration) 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 (*GitIntegration) HasAuth

func (o *GitIntegration) HasAuth() bool

HasAuth returns a boolean if a field has been set.

func (*GitIntegration) HasCreatedAt

func (o *GitIntegration) HasCreatedAt() bool

HasCreatedAt returns a boolean if a field has been set.

func (*GitIntegration) HasCredentialsConfigured

func (o *GitIntegration) HasCredentialsConfigured() bool

HasCredentialsConfigured returns a boolean if a field has been set.

func (*GitIntegration) HasId

func (o *GitIntegration) HasId() bool

HasId returns a boolean if a field has been set.

func (*GitIntegration) HasInstallUrl

func (o *GitIntegration) HasInstallUrl() bool

HasInstallUrl returns a boolean if a field has been set.

func (*GitIntegration) HasOrganisationId

func (o *GitIntegration) HasOrganisationId() bool

HasOrganisationId returns a boolean if a field has been set.

func (*GitIntegration) HasStatus

func (o *GitIntegration) HasStatus() bool

HasStatus returns a boolean if a field has been set.

func (*GitIntegration) HasType

func (o *GitIntegration) HasType() bool

HasType returns a boolean if a field has been set.

func (*GitIntegration) HasUpdatedAt

func (o *GitIntegration) HasUpdatedAt() bool

HasUpdatedAt returns a boolean if a field has been set.

func (GitIntegration) MarshalJSON

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

func (*GitIntegration) SetAuth

func (o *GitIntegration) SetAuth(v GitIntegrationAuth)

SetAuth gets a reference to the given GitIntegrationAuth and assigns it to the Auth field.

func (*GitIntegration) SetCreatedAt

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

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

func (*GitIntegration) SetCredentialsConfigured

func (o *GitIntegration) SetCredentialsConfigured(v bool)

SetCredentialsConfigured gets a reference to the given bool and assigns it to the CredentialsConfigured field.

func (*GitIntegration) SetHost

func (o *GitIntegration) SetHost(v string)

SetHost sets field value

func (*GitIntegration) SetId

func (o *GitIntegration) SetId(v string)

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

func (*GitIntegration) SetInstallUrl

func (o *GitIntegration) SetInstallUrl(v string)

SetInstallUrl gets a reference to the given string and assigns it to the InstallUrl field.

func (*GitIntegration) SetOrganisationId

func (o *GitIntegration) SetOrganisationId(v string)

SetOrganisationId gets a reference to the given string and assigns it to the OrganisationId field.

func (*GitIntegration) SetStatus

func (o *GitIntegration) SetStatus(v string)

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

func (*GitIntegration) SetType

func (o *GitIntegration) SetType(v GitIntegrationType)

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

func (*GitIntegration) SetUpdatedAt

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

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

type GitIntegrationAuth

type GitIntegrationAuth struct {
	Token *string                  `json:"token,omitempty"`
	Basic *GitIntegrationBasicAuth `json:"basic,omitempty"`
}

GitIntegrationAuth Clone auth material; exactly one of token or basic. Never echoed in responses.

func NewGitIntegrationAuth

func NewGitIntegrationAuth() *GitIntegrationAuth

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

func NewGitIntegrationAuthWithDefaults

func NewGitIntegrationAuthWithDefaults() *GitIntegrationAuth

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

func (*GitIntegrationAuth) GetBasic

GetBasic returns the Basic field value if set, zero value otherwise.

func (*GitIntegrationAuth) GetBasicOk

func (o *GitIntegrationAuth) GetBasicOk() (*GitIntegrationBasicAuth, bool)

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

func (*GitIntegrationAuth) GetToken

func (o *GitIntegrationAuth) GetToken() string

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

func (*GitIntegrationAuth) GetTokenOk

func (o *GitIntegrationAuth) 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 (*GitIntegrationAuth) HasBasic

func (o *GitIntegrationAuth) HasBasic() bool

HasBasic returns a boolean if a field has been set.

func (*GitIntegrationAuth) HasToken

func (o *GitIntegrationAuth) HasToken() bool

HasToken returns a boolean if a field has been set.

func (GitIntegrationAuth) MarshalJSON

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

func (*GitIntegrationAuth) SetBasic

SetBasic gets a reference to the given GitIntegrationBasicAuth and assigns it to the Basic field.

func (*GitIntegrationAuth) SetToken

func (o *GitIntegrationAuth) SetToken(v string)

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

type GitIntegrationBasicAuth

type GitIntegrationBasicAuth struct {
	Username string `json:"username"`
	Password string `json:"password"`
}

GitIntegrationBasicAuth struct for GitIntegrationBasicAuth

func NewGitIntegrationBasicAuth

func NewGitIntegrationBasicAuth(username string, password string) *GitIntegrationBasicAuth

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

func NewGitIntegrationBasicAuthWithDefaults

func NewGitIntegrationBasicAuthWithDefaults() *GitIntegrationBasicAuth

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

func (*GitIntegrationBasicAuth) GetPassword

func (o *GitIntegrationBasicAuth) GetPassword() string

GetPassword returns the Password field value

func (*GitIntegrationBasicAuth) GetPasswordOk

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

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

func (*GitIntegrationBasicAuth) GetUsername

func (o *GitIntegrationBasicAuth) GetUsername() string

GetUsername returns the Username field value

func (*GitIntegrationBasicAuth) GetUsernameOk

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

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

func (GitIntegrationBasicAuth) MarshalJSON

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

func (*GitIntegrationBasicAuth) SetPassword

func (o *GitIntegrationBasicAuth) SetPassword(v string)

SetPassword sets field value

func (*GitIntegrationBasicAuth) SetUsername

func (o *GitIntegrationBasicAuth) SetUsername(v string)

SetUsername sets field value

type GitIntegrationList

type GitIntegrationList struct {
	Items []GitIntegration `json:"items,omitempty"`
	Total *int32           `json:"total,omitempty"`
}

GitIntegrationList struct for GitIntegrationList

func NewGitIntegrationList

func NewGitIntegrationList() *GitIntegrationList

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

func NewGitIntegrationListWithDefaults

func NewGitIntegrationListWithDefaults() *GitIntegrationList

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

func (*GitIntegrationList) GetItems

func (o *GitIntegrationList) GetItems() []GitIntegration

GetItems returns the Items field value if set, zero value otherwise.

func (*GitIntegrationList) GetItemsOk

func (o *GitIntegrationList) GetItemsOk() ([]GitIntegration, bool)

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

func (*GitIntegrationList) GetTotal

func (o *GitIntegrationList) GetTotal() int32

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

func (*GitIntegrationList) GetTotalOk

func (o *GitIntegrationList) GetTotalOk() (*int32, 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 (*GitIntegrationList) HasItems

func (o *GitIntegrationList) HasItems() bool

HasItems returns a boolean if a field has been set.

func (*GitIntegrationList) HasTotal

func (o *GitIntegrationList) HasTotal() bool

HasTotal returns a boolean if a field has been set.

func (GitIntegrationList) MarshalJSON

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

func (*GitIntegrationList) SetItems

func (o *GitIntegrationList) SetItems(v []GitIntegration)

SetItems gets a reference to the given []GitIntegration and assigns it to the Items field.

func (*GitIntegrationList) SetTotal

func (o *GitIntegrationList) SetTotal(v int32)

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

type GitIntegrationType

type GitIntegrationType string

GitIntegrationType the model 'GitIntegrationType'

const (
	GIT_INTEGRATION_TYPE_CREDENTIALS GitIntegrationType = "git_credentials"
	GIT_INTEGRATION_TYPE_GITHUB_APP  GitIntegrationType = "github_app"
)

List of GitIntegrationType

func NewGitIntegrationTypeFromValue

func NewGitIntegrationTypeFromValue(v string) (*GitIntegrationType, error)

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

func (GitIntegrationType) IsValid

func (v GitIntegrationType) IsValid() bool

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

func (GitIntegrationType) Ptr

Ptr returns reference to GitIntegrationType value

func (*GitIntegrationType) UnmarshalJSON

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

type GitIntegrationVerifyRequest

type GitIntegrationVerifyRequest struct {
	RepoUrl string `json:"repo_url"`
}

GitIntegrationVerifyRequest struct for GitIntegrationVerifyRequest

func NewGitIntegrationVerifyRequest

func NewGitIntegrationVerifyRequest(repoUrl string) *GitIntegrationVerifyRequest

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

func NewGitIntegrationVerifyRequestWithDefaults

func NewGitIntegrationVerifyRequestWithDefaults() *GitIntegrationVerifyRequest

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

func (*GitIntegrationVerifyRequest) GetRepoUrl

func (o *GitIntegrationVerifyRequest) GetRepoUrl() string

GetRepoUrl returns the RepoUrl field value

func (*GitIntegrationVerifyRequest) GetRepoUrlOk

func (o *GitIntegrationVerifyRequest) GetRepoUrlOk() (*string, bool)

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

func (GitIntegrationVerifyRequest) MarshalJSON

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

func (*GitIntegrationVerifyRequest) SetRepoUrl

func (o *GitIntegrationVerifyRequest) SetRepoUrl(v string)

SetRepoUrl sets field value

type GitRepoRevision

type GitRepoRevision struct {
	Branch *string `json:"branch,omitempty"`
	Tag    *string `json:"tag,omitempty"`
	Commit *string `json:"commit,omitempty"`
}

GitRepoRevision struct for GitRepoRevision

func NewGitRepoRevision

func NewGitRepoRevision() *GitRepoRevision

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

func NewGitRepoRevisionWithDefaults

func NewGitRepoRevisionWithDefaults() *GitRepoRevision

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

func (*GitRepoRevision) GetBranch

func (o *GitRepoRevision) GetBranch() string

GetBranch returns the Branch field value if set, zero value otherwise.

func (*GitRepoRevision) GetBranchOk

func (o *GitRepoRevision) 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 (*GitRepoRevision) GetCommit

func (o *GitRepoRevision) GetCommit() string

GetCommit returns the Commit field value if set, zero value otherwise.

func (*GitRepoRevision) GetCommitOk

func (o *GitRepoRevision) GetCommitOk() (*string, bool)

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

func (*GitRepoRevision) GetTag

func (o *GitRepoRevision) GetTag() string

GetTag returns the Tag field value if set, zero value otherwise.

func (*GitRepoRevision) GetTagOk

func (o *GitRepoRevision) 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 (*GitRepoRevision) HasBranch

func (o *GitRepoRevision) HasBranch() bool

HasBranch returns a boolean if a field has been set.

func (*GitRepoRevision) HasCommit

func (o *GitRepoRevision) HasCommit() bool

HasCommit returns a boolean if a field has been set.

func (*GitRepoRevision) HasTag

func (o *GitRepoRevision) HasTag() bool

HasTag returns a boolean if a field has been set.

func (GitRepoRevision) MarshalJSON

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

func (*GitRepoRevision) SetBranch

func (o *GitRepoRevision) SetBranch(v string)

SetBranch gets a reference to the given string and assigns it to the Branch field.

func (*GitRepoRevision) SetCommit

func (o *GitRepoRevision) SetCommit(v string)

SetCommit gets a reference to the given string and assigns it to the Commit field.

func (*GitRepoRevision) SetTag

func (o *GitRepoRevision) SetTag(v string)

SetTag gets a reference to the given string and assigns it to the Tag field.

type GitRepoSource

type GitRepoSource struct {
	RepoUrl  string          `json:"repo_url"`
	Revision GitRepoRevision `json:"revision"`
}

GitRepoSource struct for GitRepoSource

func NewGitRepoSource

func NewGitRepoSource(repoUrl string, revision GitRepoRevision) *GitRepoSource

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

func NewGitRepoSourceWithDefaults

func NewGitRepoSourceWithDefaults() *GitRepoSource

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

func (*GitRepoSource) GetRepoUrl

func (o *GitRepoSource) GetRepoUrl() string

GetRepoUrl returns the RepoUrl field value

func (*GitRepoSource) GetRepoUrlOk

func (o *GitRepoSource) GetRepoUrlOk() (*string, bool)

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

func (*GitRepoSource) GetRevision

func (o *GitRepoSource) GetRevision() GitRepoRevision

GetRevision returns the Revision field value

func (*GitRepoSource) GetRevisionOk

func (o *GitRepoSource) GetRevisionOk() (*GitRepoRevision, bool)

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

func (GitRepoSource) MarshalJSON

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

func (*GitRepoSource) SetRepoUrl

func (o *GitRepoSource) SetRepoUrl(v string)

SetRepoUrl sets field value

func (*GitRepoSource) SetRevision

func (o *GitRepoSource) SetRevision(v GitRepoRevision)

SetRevision sets field value

type GitRepository

type GitRepository struct {
	FullName      *string    `json:"full_name,omitempty"`
	CloneUrl      *string    `json:"clone_url,omitempty"`
	DefaultBranch *string    `json:"default_branch,omitempty"`
	Private       *bool      `json:"private,omitempty"`
	PushedAt      *time.Time `json:"pushed_at,omitempty"`
	Owner         *string    `json:"owner,omitempty"`
}

GitRepository struct for GitRepository

func NewGitRepository

func NewGitRepository() *GitRepository

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

func NewGitRepositoryWithDefaults

func NewGitRepositoryWithDefaults() *GitRepository

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

func (*GitRepository) GetCloneUrl

func (o *GitRepository) GetCloneUrl() string

GetCloneUrl returns the CloneUrl field value if set, zero value otherwise.

func (*GitRepository) GetCloneUrlOk

func (o *GitRepository) GetCloneUrlOk() (*string, bool)

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

func (*GitRepository) GetDefaultBranch

func (o *GitRepository) GetDefaultBranch() string

GetDefaultBranch returns the DefaultBranch field value if set, zero value otherwise.

func (*GitRepository) GetDefaultBranchOk

func (o *GitRepository) 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 (*GitRepository) GetFullName

func (o *GitRepository) GetFullName() string

GetFullName returns the FullName field value if set, zero value otherwise.

func (*GitRepository) GetFullNameOk

func (o *GitRepository) GetFullNameOk() (*string, bool)

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

func (*GitRepository) GetOwner

func (o *GitRepository) GetOwner() string

GetOwner returns the Owner field value if set, zero value otherwise.

func (*GitRepository) GetOwnerOk

func (o *GitRepository) 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 (*GitRepository) GetPrivate

func (o *GitRepository) GetPrivate() bool

GetPrivate returns the Private field value if set, zero value otherwise.

func (*GitRepository) GetPrivateOk

func (o *GitRepository) GetPrivateOk() (*bool, bool)

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

func (*GitRepository) GetPushedAt

func (o *GitRepository) GetPushedAt() time.Time

GetPushedAt returns the PushedAt field value if set, zero value otherwise.

func (*GitRepository) GetPushedAtOk

func (o *GitRepository) GetPushedAtOk() (*time.Time, bool)

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

func (*GitRepository) HasCloneUrl

func (o *GitRepository) HasCloneUrl() bool

HasCloneUrl returns a boolean if a field has been set.

func (*GitRepository) HasDefaultBranch

func (o *GitRepository) HasDefaultBranch() bool

HasDefaultBranch returns a boolean if a field has been set.

func (*GitRepository) HasFullName

func (o *GitRepository) HasFullName() bool

HasFullName returns a boolean if a field has been set.

func (*GitRepository) HasOwner

func (o *GitRepository) HasOwner() bool

HasOwner returns a boolean if a field has been set.

func (*GitRepository) HasPrivate

func (o *GitRepository) HasPrivate() bool

HasPrivate returns a boolean if a field has been set.

func (*GitRepository) HasPushedAt

func (o *GitRepository) HasPushedAt() bool

HasPushedAt returns a boolean if a field has been set.

func (GitRepository) MarshalJSON

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

func (*GitRepository) SetCloneUrl

func (o *GitRepository) SetCloneUrl(v string)

SetCloneUrl gets a reference to the given string and assigns it to the CloneUrl field.

func (*GitRepository) SetDefaultBranch

func (o *GitRepository) SetDefaultBranch(v string)

SetDefaultBranch gets a reference to the given string and assigns it to the DefaultBranch field.

func (*GitRepository) SetFullName

func (o *GitRepository) SetFullName(v string)

SetFullName gets a reference to the given string and assigns it to the FullName field.

func (*GitRepository) SetOwner

func (o *GitRepository) SetOwner(v string)

SetOwner gets a reference to the given string and assigns it to the Owner field.

func (*GitRepository) SetPrivate

func (o *GitRepository) SetPrivate(v bool)

SetPrivate gets a reference to the given bool and assigns it to the Private field.

func (*GitRepository) SetPushedAt

func (o *GitRepository) SetPushedAt(v time.Time)

SetPushedAt gets a reference to the given time.Time and assigns it to the PushedAt field.

type GitRepositoryPage

type GitRepositoryPage struct {
	Items      []GitRepository `json:"items,omitempty"`
	Page       *int32          `json:"page,omitempty"`
	TotalCount *int32          `json:"total_count,omitempty"`
	HasNext    *bool           `json:"has_next,omitempty"`
}

GitRepositoryPage struct for GitRepositoryPage

func NewGitRepositoryPage

func NewGitRepositoryPage() *GitRepositoryPage

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

func NewGitRepositoryPageWithDefaults

func NewGitRepositoryPageWithDefaults() *GitRepositoryPage

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

func (*GitRepositoryPage) GetHasNext

func (o *GitRepositoryPage) GetHasNext() bool

GetHasNext returns the HasNext field value if set, zero value otherwise.

func (*GitRepositoryPage) GetHasNextOk

func (o *GitRepositoryPage) GetHasNextOk() (*bool, bool)

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

func (*GitRepositoryPage) GetItems

func (o *GitRepositoryPage) GetItems() []GitRepository

GetItems returns the Items field value if set, zero value otherwise.

func (*GitRepositoryPage) GetItemsOk

func (o *GitRepositoryPage) GetItemsOk() ([]GitRepository, bool)

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

func (*GitRepositoryPage) GetPage

func (o *GitRepositoryPage) GetPage() int32

GetPage returns the Page field value if set, zero value otherwise.

func (*GitRepositoryPage) GetPageOk

func (o *GitRepositoryPage) GetPageOk() (*int32, bool)

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

func (*GitRepositoryPage) GetTotalCount

func (o *GitRepositoryPage) GetTotalCount() int32

GetTotalCount returns the TotalCount field value if set, zero value otherwise.

func (*GitRepositoryPage) GetTotalCountOk

func (o *GitRepositoryPage) GetTotalCountOk() (*int32, bool)

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

func (*GitRepositoryPage) HasHasNext

func (o *GitRepositoryPage) HasHasNext() bool

HasHasNext returns a boolean if a field has been set.

func (*GitRepositoryPage) HasItems

func (o *GitRepositoryPage) HasItems() bool

HasItems returns a boolean if a field has been set.

func (*GitRepositoryPage) HasPage

func (o *GitRepositoryPage) HasPage() bool

HasPage returns a boolean if a field has been set.

func (*GitRepositoryPage) HasTotalCount

func (o *GitRepositoryPage) HasTotalCount() bool

HasTotalCount returns a boolean if a field has been set.

func (GitRepositoryPage) MarshalJSON

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

func (*GitRepositoryPage) SetHasNext

func (o *GitRepositoryPage) SetHasNext(v bool)

SetHasNext gets a reference to the given bool and assigns it to the HasNext field.

func (*GitRepositoryPage) SetItems

func (o *GitRepositoryPage) SetItems(v []GitRepository)

SetItems gets a reference to the given []GitRepository and assigns it to the Items field.

func (*GitRepositoryPage) SetPage

func (o *GitRepositoryPage) SetPage(v int32)

SetPage gets a reference to the given int32 and assigns it to the Page field.

func (*GitRepositoryPage) SetTotalCount

func (o *GitRepositoryPage) SetTotalCount(v int32)

SetTotalCount gets a reference to the given int32 and assigns it to the TotalCount field.

type GitSource

type GitSource struct {
	RepoUrl string `json:"repo_url"`
	// Defaults to the repository's default branch, resolved and stored at create time
	Branch *string `json:"branch,omitempty"`
	// Mutually exclusive with branch
	Tag *string `json:"tag,omitempty"`
	// Commit SHA pin; requires branch or tag
	Commit         *string `json:"commit,omitempty"`
	DockerfilePath *string `json:"dockerfile_path,omitempty"`
	BuildContext   *string `json:"build_context,omitempty"`
	// Org-level git integration override for clone auth
	IntegrationId *string     `json:"integration_id,omitempty"`
	Push          *PushTarget `json:"push,omitempty"`
}

GitSource struct for GitSource

func NewGitSource

func NewGitSource(repoUrl string) *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) GetBuildContext

func (o *GitSource) GetBuildContext() string

GetBuildContext returns the BuildContext field value if set, zero value otherwise.

func (*GitSource) GetBuildContextOk

func (o *GitSource) GetBuildContextOk() (*string, bool)

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

func (*GitSource) GetCommit

func (o *GitSource) GetCommit() string

GetCommit returns the Commit field value if set, zero value otherwise.

func (*GitSource) GetCommitOk

func (o *GitSource) GetCommitOk() (*string, bool)

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

func (*GitSource) GetDockerfilePath

func (o *GitSource) GetDockerfilePath() string

GetDockerfilePath returns the DockerfilePath field value if set, zero value otherwise.

func (*GitSource) GetDockerfilePathOk

func (o *GitSource) GetDockerfilePathOk() (*string, bool)

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

func (*GitSource) GetIntegrationId

func (o *GitSource) GetIntegrationId() string

GetIntegrationId returns the IntegrationId field value if set, zero value otherwise.

func (*GitSource) GetIntegrationIdOk

func (o *GitSource) GetIntegrationIdOk() (*string, bool)

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

func (*GitSource) GetPush

func (o *GitSource) GetPush() PushTarget

GetPush returns the Push field value if set, zero value otherwise.

func (*GitSource) GetPushOk

func (o *GitSource) GetPushOk() (*PushTarget, bool)

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

func (*GitSource) GetRepoUrl

func (o *GitSource) GetRepoUrl() string

GetRepoUrl returns the RepoUrl field value

func (*GitSource) GetRepoUrlOk

func (o *GitSource) GetRepoUrlOk() (*string, bool)

GetRepoUrlOk returns a tuple with the RepoUrl field value 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) HasBranch

func (o *GitSource) HasBranch() bool

HasBranch returns a boolean if a field has been set.

func (*GitSource) HasBuildContext

func (o *GitSource) HasBuildContext() bool

HasBuildContext returns a boolean if a field has been set.

func (*GitSource) HasCommit

func (o *GitSource) HasCommit() bool

HasCommit returns a boolean if a field has been set.

func (*GitSource) HasDockerfilePath

func (o *GitSource) HasDockerfilePath() bool

HasDockerfilePath returns a boolean if a field has been set.

func (*GitSource) HasIntegrationId

func (o *GitSource) HasIntegrationId() bool

HasIntegrationId returns a boolean if a field has been set.

func (*GitSource) HasPush

func (o *GitSource) HasPush() bool

HasPush 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) 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) SetBuildContext

func (o *GitSource) SetBuildContext(v string)

SetBuildContext gets a reference to the given string and assigns it to the BuildContext field.

func (*GitSource) SetCommit

func (o *GitSource) SetCommit(v string)

SetCommit gets a reference to the given string and assigns it to the Commit field.

func (*GitSource) SetDockerfilePath

func (o *GitSource) SetDockerfilePath(v string)

SetDockerfilePath gets a reference to the given string and assigns it to the DockerfilePath field.

func (*GitSource) SetIntegrationId

func (o *GitSource) SetIntegrationId(v string)

SetIntegrationId gets a reference to the given string and assigns it to the IntegrationId field.

func (*GitSource) SetPush

func (o *GitSource) SetPush(v PushTarget)

SetPush gets a reference to the given PushTarget and assigns it to the Push field.

func (*GitSource) SetRepoUrl

func (o *GitSource) SetRepoUrl(v string)

SetRepoUrl sets field value

func (*GitSource) SetTag

func (o *GitSource) SetTag(v string)

SetTag gets a reference to the given string and assigns it to the Tag field.

type ImageBuild

type ImageBuild struct {
	Id                *string             `json:"id,omitempty"`
	Namespace         *string             `json:"namespace,omitempty"`
	StackId           *string             `json:"stack_id,omitempty"`
	StackResourceId   string              `json:"stack_resource_id"`
	StackResourceName string              `json:"stack_resource_name"`
	SourceRevision    BuildSourceRevision `json:"source_revision"`
	BuildContext      BuildSourceContext  `json:"build_context"`
	ImageRepo         string              `json:"image_repo"`
	Status            *ImageBuildStatus   `json:"status,omitempty"`
	CreatedAt         *time.Time          `json:"created_at,omitempty"`
	UpdatedAt         *time.Time          `json:"updated_at,omitempty"`
}

ImageBuild struct for ImageBuild

func NewImageBuild

func NewImageBuild(stackResourceId string, stackResourceName string, sourceRevision BuildSourceRevision, buildContext BuildSourceContext, imageRepo string) *ImageBuild

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

func NewImageBuildWithDefaults

func NewImageBuildWithDefaults() *ImageBuild

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

func (*ImageBuild) GetBuildContext

func (o *ImageBuild) GetBuildContext() BuildSourceContext

GetBuildContext returns the BuildContext field value

func (*ImageBuild) GetBuildContextOk

func (o *ImageBuild) GetBuildContextOk() (*BuildSourceContext, bool)

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

func (*ImageBuild) GetCreatedAt

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

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

func (*ImageBuild) GetCreatedAtOk

func (o *ImageBuild) 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 (*ImageBuild) GetId

func (o *ImageBuild) GetId() string

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

func (*ImageBuild) GetIdOk

func (o *ImageBuild) 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 (*ImageBuild) GetImageRepo

func (o *ImageBuild) GetImageRepo() string

GetImageRepo returns the ImageRepo field value

func (*ImageBuild) GetImageRepoOk

func (o *ImageBuild) GetImageRepoOk() (*string, bool)

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

func (*ImageBuild) GetNamespace

func (o *ImageBuild) GetNamespace() string

GetNamespace returns the Namespace field value if set, zero value otherwise.

func (*ImageBuild) GetNamespaceOk

func (o *ImageBuild) GetNamespaceOk() (*string, bool)

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

func (*ImageBuild) GetSourceRevision

func (o *ImageBuild) GetSourceRevision() BuildSourceRevision

GetSourceRevision returns the SourceRevision field value

func (*ImageBuild) GetSourceRevisionOk

func (o *ImageBuild) GetSourceRevisionOk() (*BuildSourceRevision, bool)

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

func (*ImageBuild) GetStackId

func (o *ImageBuild) GetStackId() string

GetStackId returns the StackId field value if set, zero value otherwise.

func (*ImageBuild) GetStackIdOk

func (o *ImageBuild) GetStackIdOk() (*string, bool)

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

func (*ImageBuild) GetStackResourceId

func (o *ImageBuild) GetStackResourceId() string

GetStackResourceId returns the StackResourceId field value

func (*ImageBuild) GetStackResourceIdOk

func (o *ImageBuild) GetStackResourceIdOk() (*string, bool)

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

func (*ImageBuild) GetStackResourceName

func (o *ImageBuild) GetStackResourceName() string

GetStackResourceName returns the StackResourceName field value

func (*ImageBuild) GetStackResourceNameOk

func (o *ImageBuild) GetStackResourceNameOk() (*string, bool)

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

func (*ImageBuild) GetStatus

func (o *ImageBuild) GetStatus() ImageBuildStatus

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

func (*ImageBuild) GetStatusOk

func (o *ImageBuild) GetStatusOk() (*ImageBuildStatus, 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 (*ImageBuild) GetUpdatedAt

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

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

func (*ImageBuild) GetUpdatedAtOk

func (o *ImageBuild) 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 (*ImageBuild) HasCreatedAt

func (o *ImageBuild) HasCreatedAt() bool

HasCreatedAt returns a boolean if a field has been set.

func (*ImageBuild) HasId

func (o *ImageBuild) HasId() bool

HasId returns a boolean if a field has been set.

func (*ImageBuild) HasNamespace

func (o *ImageBuild) HasNamespace() bool

HasNamespace returns a boolean if a field has been set.

func (*ImageBuild) HasStackId

func (o *ImageBuild) HasStackId() bool

HasStackId returns a boolean if a field has been set.

func (*ImageBuild) HasStatus

func (o *ImageBuild) HasStatus() bool

HasStatus returns a boolean if a field has been set.

func (*ImageBuild) HasUpdatedAt

func (o *ImageBuild) HasUpdatedAt() bool

HasUpdatedAt returns a boolean if a field has been set.

func (ImageBuild) MarshalJSON

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

func (*ImageBuild) SetBuildContext

func (o *ImageBuild) SetBuildContext(v BuildSourceContext)

SetBuildContext sets field value

func (*ImageBuild) SetCreatedAt

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

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

func (*ImageBuild) SetId

func (o *ImageBuild) SetId(v string)

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

func (*ImageBuild) SetImageRepo

func (o *ImageBuild) SetImageRepo(v string)

SetImageRepo sets field value

func (*ImageBuild) SetNamespace

func (o *ImageBuild) SetNamespace(v string)

SetNamespace gets a reference to the given string and assigns it to the Namespace field.

func (*ImageBuild) SetSourceRevision

func (o *ImageBuild) SetSourceRevision(v BuildSourceRevision)

SetSourceRevision sets field value

func (*ImageBuild) SetStackId

func (o *ImageBuild) SetStackId(v string)

SetStackId gets a reference to the given string and assigns it to the StackId field.

func (*ImageBuild) SetStackResourceId

func (o *ImageBuild) SetStackResourceId(v string)

SetStackResourceId sets field value

func (*ImageBuild) SetStackResourceName

func (o *ImageBuild) SetStackResourceName(v string)

SetStackResourceName sets field value

func (*ImageBuild) SetStatus

func (o *ImageBuild) SetStatus(v ImageBuildStatus)

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

func (*ImageBuild) SetUpdatedAt

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

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

type ImageBuildList

type ImageBuildList struct {
	Items []ImageBuild `json:"items,omitempty"`
	Total *int32       `json:"total,omitempty"`
}

ImageBuildList struct for ImageBuildList

func NewImageBuildList

func NewImageBuildList() *ImageBuildList

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

func NewImageBuildListWithDefaults

func NewImageBuildListWithDefaults() *ImageBuildList

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

func (*ImageBuildList) GetItems

func (o *ImageBuildList) GetItems() []ImageBuild

GetItems returns the Items field value if set, zero value otherwise.

func (*ImageBuildList) GetItemsOk

func (o *ImageBuildList) GetItemsOk() ([]ImageBuild, bool)

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

func (*ImageBuildList) GetTotal

func (o *ImageBuildList) GetTotal() int32

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

func (*ImageBuildList) GetTotalOk

func (o *ImageBuildList) GetTotalOk() (*int32, 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 (*ImageBuildList) HasItems

func (o *ImageBuildList) HasItems() bool

HasItems returns a boolean if a field has been set.

func (*ImageBuildList) HasTotal

func (o *ImageBuildList) HasTotal() bool

HasTotal returns a boolean if a field has been set.

func (ImageBuildList) MarshalJSON

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

func (*ImageBuildList) SetItems

func (o *ImageBuildList) SetItems(v []ImageBuild)

SetItems gets a reference to the given []ImageBuild and assigns it to the Items field.

func (*ImageBuildList) SetTotal

func (o *ImageBuildList) SetTotal(v int32)

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

type ImageBuildStatus

type ImageBuildStatus struct {
	State                  *string             `json:"state,omitempty"`
	Conditions             []Condition         `json:"conditions,omitempty"`
	ImageUrl               *string             `json:"image_url,omitempty"`
	BuildSourceRevision    *string             `json:"build_source_revision,omitempty"`
	LastBuildFailureDetail *BuildFailureDetail `json:"last_build_failure_detail,omitempty"`
}

ImageBuildStatus struct for ImageBuildStatus

func NewImageBuildStatus

func NewImageBuildStatus() *ImageBuildStatus

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

func NewImageBuildStatusWithDefaults

func NewImageBuildStatusWithDefaults() *ImageBuildStatus

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

func (*ImageBuildStatus) GetBuildSourceRevision

func (o *ImageBuildStatus) GetBuildSourceRevision() string

GetBuildSourceRevision returns the BuildSourceRevision field value if set, zero value otherwise.

func (*ImageBuildStatus) GetBuildSourceRevisionOk

func (o *ImageBuildStatus) GetBuildSourceRevisionOk() (*string, bool)

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

func (*ImageBuildStatus) GetConditions

func (o *ImageBuildStatus) GetConditions() []Condition

GetConditions returns the Conditions field value if set, zero value otherwise.

func (*ImageBuildStatus) GetConditionsOk

func (o *ImageBuildStatus) GetConditionsOk() ([]Condition, bool)

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

func (*ImageBuildStatus) GetImageUrl

func (o *ImageBuildStatus) GetImageUrl() string

GetImageUrl returns the ImageUrl field value if set, zero value otherwise.

func (*ImageBuildStatus) GetImageUrlOk

func (o *ImageBuildStatus) GetImageUrlOk() (*string, bool)

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

func (*ImageBuildStatus) GetLastBuildFailureDetail

func (o *ImageBuildStatus) GetLastBuildFailureDetail() BuildFailureDetail

GetLastBuildFailureDetail returns the LastBuildFailureDetail field value if set, zero value otherwise.

func (*ImageBuildStatus) GetLastBuildFailureDetailOk

func (o *ImageBuildStatus) GetLastBuildFailureDetailOk() (*BuildFailureDetail, bool)

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

func (*ImageBuildStatus) GetState

func (o *ImageBuildStatus) GetState() string

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

func (*ImageBuildStatus) GetStateOk

func (o *ImageBuildStatus) 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 (*ImageBuildStatus) HasBuildSourceRevision

func (o *ImageBuildStatus) HasBuildSourceRevision() bool

HasBuildSourceRevision returns a boolean if a field has been set.

func (*ImageBuildStatus) HasConditions

func (o *ImageBuildStatus) HasConditions() bool

HasConditions returns a boolean if a field has been set.

func (*ImageBuildStatus) HasImageUrl

func (o *ImageBuildStatus) HasImageUrl() bool

HasImageUrl returns a boolean if a field has been set.

func (*ImageBuildStatus) HasLastBuildFailureDetail

func (o *ImageBuildStatus) HasLastBuildFailureDetail() bool

HasLastBuildFailureDetail returns a boolean if a field has been set.

func (*ImageBuildStatus) HasState

func (o *ImageBuildStatus) HasState() bool

HasState returns a boolean if a field has been set.

func (ImageBuildStatus) MarshalJSON

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

func (*ImageBuildStatus) SetBuildSourceRevision

func (o *ImageBuildStatus) SetBuildSourceRevision(v string)

SetBuildSourceRevision gets a reference to the given string and assigns it to the BuildSourceRevision field.

func (*ImageBuildStatus) SetConditions

func (o *ImageBuildStatus) SetConditions(v []Condition)

SetConditions gets a reference to the given []Condition and assigns it to the Conditions field.

func (*ImageBuildStatus) SetImageUrl

func (o *ImageBuildStatus) SetImageUrl(v string)

SetImageUrl gets a reference to the given string and assigns it to the ImageUrl field.

func (*ImageBuildStatus) SetLastBuildFailureDetail

func (o *ImageBuildStatus) SetLastBuildFailureDetail(v BuildFailureDetail)

SetLastBuildFailureDetail gets a reference to the given BuildFailureDetail and assigns it to the LastBuildFailureDetail field.

func (*ImageBuildStatus) SetState

func (o *ImageBuildStatus) SetState(v string)

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

type ImageSource

type ImageSource struct {
	Ref string `json:"ref"`
	// Org-level registry credential override for pull auth
	RegistryCredentialsId *string `json:"registry_credentials_id,omitempty"`
}

ImageSource struct for ImageSource

func NewImageSource

func NewImageSource(ref string) *ImageSource

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

func NewImageSourceWithDefaults

func NewImageSourceWithDefaults() *ImageSource

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

func (*ImageSource) GetRef

func (o *ImageSource) GetRef() string

GetRef returns the Ref field value

func (*ImageSource) GetRefOk

func (o *ImageSource) GetRefOk() (*string, bool)

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

func (*ImageSource) GetRegistryCredentialsId

func (o *ImageSource) GetRegistryCredentialsId() string

GetRegistryCredentialsId returns the RegistryCredentialsId field value if set, zero value otherwise.

func (*ImageSource) GetRegistryCredentialsIdOk

func (o *ImageSource) GetRegistryCredentialsIdOk() (*string, bool)

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

func (*ImageSource) HasRegistryCredentialsId

func (o *ImageSource) HasRegistryCredentialsId() bool

HasRegistryCredentialsId returns a boolean if a field has been set.

func (ImageSource) MarshalJSON

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

func (*ImageSource) SetRef

func (o *ImageSource) SetRef(v string)

SetRef sets field value

func (*ImageSource) SetRegistryCredentialsId

func (o *ImageSource) SetRegistryCredentialsId(v string)

SetRegistryCredentialsId gets a reference to the given string and assigns it to the RegistryCredentialsId field.

type Ingress

type Ingress struct {
	Url        *string `json:"url,omitempty"`
	TargetPort *int32  `json:"target_port,omitempty"`
}

Ingress struct for Ingress

func NewIngress

func NewIngress() *Ingress

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

func NewIngressWithDefaults

func NewIngressWithDefaults() *Ingress

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

func (*Ingress) GetTargetPort

func (o *Ingress) GetTargetPort() int32

GetTargetPort returns the TargetPort field value if set, zero value otherwise.

func (*Ingress) GetTargetPortOk

func (o *Ingress) GetTargetPortOk() (*int32, bool)

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

func (*Ingress) GetUrl

func (o *Ingress) GetUrl() string

GetUrl returns the Url field value if set, zero value otherwise.

func (*Ingress) GetUrlOk

func (o *Ingress) 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 (*Ingress) HasTargetPort

func (o *Ingress) HasTargetPort() bool

HasTargetPort returns a boolean if a field has been set.

func (*Ingress) HasUrl

func (o *Ingress) HasUrl() bool

HasUrl returns a boolean if a field has been set.

func (Ingress) MarshalJSON

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

func (*Ingress) SetTargetPort

func (o *Ingress) SetTargetPort(v int32)

SetTargetPort gets a reference to the given int32 and assigns it to the TargetPort field.

func (*Ingress) SetUrl

func (o *Ingress) SetUrl(v string)

SetUrl gets a reference to the given string and assigns it to the Url field.

type InitSpec

type InitSpec struct {
	Command []string `json:"command,omitempty"`
	Args    []string `json:"args,omitempty"`
}

InitSpec struct for InitSpec

func NewInitSpec

func NewInitSpec() *InitSpec

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

func NewInitSpecWithDefaults

func NewInitSpecWithDefaults() *InitSpec

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

func (*InitSpec) GetArgs

func (o *InitSpec) GetArgs() []string

GetArgs returns the Args field value if set, zero value otherwise.

func (*InitSpec) GetArgsOk

func (o *InitSpec) 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 (*InitSpec) GetCommand

func (o *InitSpec) GetCommand() []string

GetCommand returns the Command field value if set, zero value otherwise.

func (*InitSpec) GetCommandOk

func (o *InitSpec) 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 (*InitSpec) HasArgs

func (o *InitSpec) HasArgs() bool

HasArgs returns a boolean if a field has been set.

func (*InitSpec) HasCommand

func (o *InitSpec) HasCommand() bool

HasCommand returns a boolean if a field has been set.

func (InitSpec) MarshalJSON

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

func (*InitSpec) SetArgs

func (o *InitSpec) SetArgs(v []string)

SetArgs gets a reference to the given []string and assigns it to the Args field.

func (*InitSpec) SetCommand

func (o *InitSpec) SetCommand(v []string)

SetCommand gets a reference to the given []string and assigns it to the Command field.

type InviteStatus

type InviteStatus string

InviteStatus the model 'InviteStatus'

const (
	INVITE_PENDING  InviteStatus = "pending"
	INVITE_ACCEPTED InviteStatus = "accepted"
	INVITE_REVOKED  InviteStatus = "revoked"
	INVITE_EXPIRED  InviteStatus = "expired"
)

List of InviteStatus

func NewInviteStatusFromValue

func NewInviteStatusFromValue(v string) (*InviteStatus, error)

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

func (InviteStatus) IsValid

func (v InviteStatus) IsValid() bool

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

func (InviteStatus) Ptr

func (v InviteStatus) Ptr() *InviteStatus

Ptr returns reference to InviteStatus value

func (*InviteStatus) UnmarshalJSON

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

type Label

type Label struct {
	Key   string `json:"key"`
	Value string `json:"value"`
}

Label struct for Label

func NewLabel

func NewLabel(key string, value string) *Label

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

func NewLabelWithDefaults

func NewLabelWithDefaults() *Label

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

func (*Label) GetKey

func (o *Label) GetKey() string

GetKey returns the Key field value

func (*Label) GetKeyOk

func (o *Label) GetKeyOk() (*string, bool)

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

func (*Label) GetValue

func (o *Label) GetValue() string

GetValue returns the Value field value

func (*Label) GetValueOk

func (o *Label) GetValueOk() (*string, bool)

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

func (Label) MarshalJSON

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

func (*Label) SetKey

func (o *Label) SetKey(v string)

SetKey sets field value

func (*Label) SetValue

func (o *Label) SetValue(v string)

SetValue sets field value

type LifecycleConfig

type LifecycleConfig struct {
	RestartRequestTime *time.Time `json:"restart_request_time,omitempty"`
}

LifecycleConfig struct for LifecycleConfig

func NewLifecycleConfig

func NewLifecycleConfig() *LifecycleConfig

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

func NewLifecycleConfigWithDefaults

func NewLifecycleConfigWithDefaults() *LifecycleConfig

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

func (*LifecycleConfig) GetRestartRequestTime

func (o *LifecycleConfig) GetRestartRequestTime() time.Time

GetRestartRequestTime returns the RestartRequestTime field value if set, zero value otherwise.

func (*LifecycleConfig) GetRestartRequestTimeOk

func (o *LifecycleConfig) GetRestartRequestTimeOk() (*time.Time, bool)

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

func (*LifecycleConfig) HasRestartRequestTime

func (o *LifecycleConfig) HasRestartRequestTime() bool

HasRestartRequestTime returns a boolean if a field has been set.

func (LifecycleConfig) MarshalJSON

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

func (*LifecycleConfig) SetRestartRequestTime

func (o *LifecycleConfig) SetRestartRequestTime(v time.Time)

SetRestartRequestTime gets a reference to the given time.Time and assigns it to the RestartRequestTime field.

type List

type List struct {
	Kind  string `json:"kind"`
	Page  int32  `json:"page"`
	Size  int32  `json:"size"`
	Total int32  `json:"total"`
}

List struct for List

func NewList

func NewList(kind string, page int32, size int32, total int32) *List

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

func NewListWithDefaults

func NewListWithDefaults() *List

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

func (*List) GetKind

func (o *List) GetKind() string

GetKind returns the Kind field value

func (*List) GetKindOk

func (o *List) GetKindOk() (*string, bool)

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

func (*List) GetPage

func (o *List) GetPage() int32

GetPage returns the Page field value

func (*List) GetPageOk

func (o *List) GetPageOk() (*int32, bool)

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

func (*List) GetSize

func (o *List) GetSize() int32

GetSize returns the Size field value

func (*List) GetSizeOk

func (o *List) GetSizeOk() (*int32, bool)

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

func (*List) GetTotal

func (o *List) GetTotal() int32

GetTotal returns the Total field value

func (*List) GetTotalOk

func (o *List) GetTotalOk() (*int32, bool)

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

func (List) MarshalJSON

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

func (*List) SetKind

func (o *List) SetKind(v string)

SetKind sets field value

func (*List) SetPage

func (o *List) SetPage(v int32)

SetPage sets field value

func (*List) SetSize

func (o *List) SetSize(v int32)

SetSize sets field value

func (*List) SetTotal

func (o *List) SetTotal(v int32)

SetTotal sets field value

type LoginRequest

type LoginRequest struct {
	// User's email
	Email string `json:"email"`
	// User's password
	Password string `json:"password"`
}

LoginRequest struct for LoginRequest

func NewLoginRequest

func NewLoginRequest(email string, password string) *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

func (*LoginRequest) GetEmailOk

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

GetEmailOk returns a tuple with the Email field value 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

func (*LoginRequest) GetPasswordOk

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

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

func (LoginRequest) MarshalJSON

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

func (*LoginRequest) SetEmail

func (o *LoginRequest) SetEmail(v string)

SetEmail sets field value

func (*LoginRequest) SetPassword

func (o *LoginRequest) SetPassword(v string)

SetPassword sets field value

type LoginResponse

type LoginResponse struct {
	// Access token for authenticated requests
	Token *string `json:"token,omitempty"`
	// Refresh token for obtaining new access tokens
	RefreshToken *string `json:"refresh_token,omitempty"`
	User         *User   `json:"user,omitempty"`
	// Token expiration time in seconds
	ExpiresIn *int32 `json:"expires_in,omitempty"`
}

LoginResponse struct for LoginResponse

func NewLoginResponse

func NewLoginResponse() *LoginResponse

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

func NewLoginResponseWithDefaults

func NewLoginResponseWithDefaults() *LoginResponse

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

func (*LoginResponse) GetExpiresIn

func (o *LoginResponse) GetExpiresIn() int32

GetExpiresIn returns the ExpiresIn field value if set, zero value otherwise.

func (*LoginResponse) GetExpiresInOk

func (o *LoginResponse) GetExpiresInOk() (*int32, bool)

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

func (*LoginResponse) GetRefreshToken

func (o *LoginResponse) GetRefreshToken() string

GetRefreshToken returns the RefreshToken field value if set, zero value otherwise.

func (*LoginResponse) GetRefreshTokenOk

func (o *LoginResponse) GetRefreshTokenOk() (*string, bool)

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

func (*LoginResponse) GetToken

func (o *LoginResponse) GetToken() string

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

func (*LoginResponse) GetTokenOk

func (o *LoginResponse) 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 (*LoginResponse) GetUser

func (o *LoginResponse) GetUser() User

GetUser returns the User field value if set, zero value otherwise.

func (*LoginResponse) GetUserOk

func (o *LoginResponse) 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 (*LoginResponse) HasExpiresIn

func (o *LoginResponse) HasExpiresIn() bool

HasExpiresIn returns a boolean if a field has been set.

func (*LoginResponse) HasRefreshToken

func (o *LoginResponse) HasRefreshToken() bool

HasRefreshToken returns a boolean if a field has been set.

func (*LoginResponse) HasToken

func (o *LoginResponse) HasToken() bool

HasToken returns a boolean if a field has been set.

func (*LoginResponse) HasUser

func (o *LoginResponse) HasUser() bool

HasUser returns a boolean if a field has been set.

func (LoginResponse) MarshalJSON

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

func (*LoginResponse) SetExpiresIn

func (o *LoginResponse) SetExpiresIn(v int32)

SetExpiresIn gets a reference to the given int32 and assigns it to the ExpiresIn field.

func (*LoginResponse) SetRefreshToken

func (o *LoginResponse) SetRefreshToken(v string)

SetRefreshToken gets a reference to the given string and assigns it to the RefreshToken field.

func (*LoginResponse) SetToken

func (o *LoginResponse) SetToken(v string)

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

func (*LoginResponse) SetUser

func (o *LoginResponse) SetUser(v User)

SetUser gets a reference to the given User and assigns it to the User field.

type NullableAPIToken

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

func NewNullableAPIToken

func NewNullableAPIToken(val *APIToken) *NullableAPIToken

func (NullableAPIToken) Get

func (v NullableAPIToken) Get() *APIToken

func (NullableAPIToken) IsSet

func (v NullableAPIToken) IsSet() bool

func (NullableAPIToken) MarshalJSON

func (v NullableAPIToken) MarshalJSON() ([]byte, error)

func (*NullableAPIToken) Set

func (v *NullableAPIToken) Set(val *APIToken)

func (*NullableAPIToken) UnmarshalJSON

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

func (*NullableAPIToken) Unset

func (v *NullableAPIToken) Unset()

type NullableAPITokenCreateRequest

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

func (NullableAPITokenCreateRequest) Get

func (NullableAPITokenCreateRequest) IsSet

func (NullableAPITokenCreateRequest) MarshalJSON

func (v NullableAPITokenCreateRequest) MarshalJSON() ([]byte, error)

func (*NullableAPITokenCreateRequest) Set

func (*NullableAPITokenCreateRequest) UnmarshalJSON

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

func (*NullableAPITokenCreateRequest) Unset

func (v *NullableAPITokenCreateRequest) Unset()

type NullableAPITokenCreateResponse

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

func (NullableAPITokenCreateResponse) Get

func (NullableAPITokenCreateResponse) IsSet

func (NullableAPITokenCreateResponse) MarshalJSON

func (v NullableAPITokenCreateResponse) MarshalJSON() ([]byte, error)

func (*NullableAPITokenCreateResponse) Set

func (*NullableAPITokenCreateResponse) UnmarshalJSON

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

func (*NullableAPITokenCreateResponse) Unset

func (v *NullableAPITokenCreateResponse) Unset()

type NullableAPITokenList

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

func NewNullableAPITokenList

func NewNullableAPITokenList(val *APITokenList) *NullableAPITokenList

func (NullableAPITokenList) Get

func (NullableAPITokenList) IsSet

func (v NullableAPITokenList) IsSet() bool

func (NullableAPITokenList) MarshalJSON

func (v NullableAPITokenList) MarshalJSON() ([]byte, error)

func (*NullableAPITokenList) Set

func (v *NullableAPITokenList) Set(val *APITokenList)

func (*NullableAPITokenList) UnmarshalJSON

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

func (*NullableAPITokenList) Unset

func (v *NullableAPITokenList) Unset()

type NullableAddProjectMemberRequest

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

func (NullableAddProjectMemberRequest) Get

func (NullableAddProjectMemberRequest) IsSet

func (NullableAddProjectMemberRequest) MarshalJSON

func (v NullableAddProjectMemberRequest) MarshalJSON() ([]byte, error)

func (*NullableAddProjectMemberRequest) Set

func (*NullableAddProjectMemberRequest) UnmarshalJSON

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

func (*NullableAddProjectMemberRequest) Unset

type NullableAffectedStackRef

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

func NewNullableAffectedStackRef

func NewNullableAffectedStackRef(val *AffectedStackRef) *NullableAffectedStackRef

func (NullableAffectedStackRef) Get

func (NullableAffectedStackRef) IsSet

func (v NullableAffectedStackRef) IsSet() bool

func (NullableAffectedStackRef) MarshalJSON

func (v NullableAffectedStackRef) MarshalJSON() ([]byte, error)

func (*NullableAffectedStackRef) Set

func (*NullableAffectedStackRef) UnmarshalJSON

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

func (*NullableAffectedStackRef) Unset

func (v *NullableAffectedStackRef) Unset()

type NullableAnnotation

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

func NewNullableAnnotation

func NewNullableAnnotation(val *Annotation) *NullableAnnotation

func (NullableAnnotation) Get

func (v NullableAnnotation) Get() *Annotation

func (NullableAnnotation) IsSet

func (v NullableAnnotation) IsSet() bool

func (NullableAnnotation) MarshalJSON

func (v NullableAnnotation) MarshalJSON() ([]byte, error)

func (*NullableAnnotation) Set

func (v *NullableAnnotation) Set(val *Annotation)

func (*NullableAnnotation) UnmarshalJSON

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

func (*NullableAnnotation) Unset

func (v *NullableAnnotation) Unset()

type NullableApiV1OrganizationsOrgIdProjectsProjectNameAddonsPostgresIdActionsBackupPost202Response

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

func (NullableApiV1OrganizationsOrgIdProjectsProjectNameAddonsPostgresIdActionsBackupPost202Response) IsSet

func (NullableApiV1OrganizationsOrgIdProjectsProjectNameAddonsPostgresIdActionsBackupPost202Response) MarshalJSON

func (*NullableApiV1OrganizationsOrgIdProjectsProjectNameAddonsPostgresIdActionsBackupPost202Response) Set

func (*NullableApiV1OrganizationsOrgIdProjectsProjectNameAddonsPostgresIdActionsBackupPost202Response) UnmarshalJSON

func (*NullableApiV1OrganizationsOrgIdProjectsProjectNameAddonsPostgresIdActionsBackupPost202Response) Unset

type NullableApiV1OrganizationsOrgIdProjectsProjectNameAddonsPostgresIdActionsBackupPostRequest

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

func (NullableApiV1OrganizationsOrgIdProjectsProjectNameAddonsPostgresIdActionsBackupPostRequest) Get

func (NullableApiV1OrganizationsOrgIdProjectsProjectNameAddonsPostgresIdActionsBackupPostRequest) IsSet

func (NullableApiV1OrganizationsOrgIdProjectsProjectNameAddonsPostgresIdActionsBackupPostRequest) MarshalJSON

func (*NullableApiV1OrganizationsOrgIdProjectsProjectNameAddonsPostgresIdActionsBackupPostRequest) Set

func (*NullableApiV1OrganizationsOrgIdProjectsProjectNameAddonsPostgresIdActionsBackupPostRequest) UnmarshalJSON

func (*NullableApiV1OrganizationsOrgIdProjectsProjectNameAddonsPostgresIdActionsBackupPostRequest) Unset

type NullableApiV1OrganizationsOrgIdProjectsProjectNameAddonsPostgresIdActionsFencePost200Response

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

func (NullableApiV1OrganizationsOrgIdProjectsProjectNameAddonsPostgresIdActionsFencePost200Response) Get

func (NullableApiV1OrganizationsOrgIdProjectsProjectNameAddonsPostgresIdActionsFencePost200Response) IsSet

func (NullableApiV1OrganizationsOrgIdProjectsProjectNameAddonsPostgresIdActionsFencePost200Response) MarshalJSON

func (*NullableApiV1OrganizationsOrgIdProjectsProjectNameAddonsPostgresIdActionsFencePost200Response) Set

func (*NullableApiV1OrganizationsOrgIdProjectsProjectNameAddonsPostgresIdActionsFencePost200Response) UnmarshalJSON

func (*NullableApiV1OrganizationsOrgIdProjectsProjectNameAddonsPostgresIdActionsFencePost200Response) Unset

type NullableApiV1OrganizationsOrgIdProjectsProjectNameAddonsPostgresIdActionsFencePostRequest

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

func (NullableApiV1OrganizationsOrgIdProjectsProjectNameAddonsPostgresIdActionsFencePostRequest) Get

func (NullableApiV1OrganizationsOrgIdProjectsProjectNameAddonsPostgresIdActionsFencePostRequest) IsSet

func (NullableApiV1OrganizationsOrgIdProjectsProjectNameAddonsPostgresIdActionsFencePostRequest) MarshalJSON

func (*NullableApiV1OrganizationsOrgIdProjectsProjectNameAddonsPostgresIdActionsFencePostRequest) Set

func (*NullableApiV1OrganizationsOrgIdProjectsProjectNameAddonsPostgresIdActionsFencePostRequest) UnmarshalJSON

func (*NullableApiV1OrganizationsOrgIdProjectsProjectNameAddonsPostgresIdActionsFencePostRequest) Unset

type NullableApiV1OrganizationsOrgIdProjectsProjectNameAddonsPostgresIdActionsHibernatePost200Response

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

func (NullableApiV1OrganizationsOrgIdProjectsProjectNameAddonsPostgresIdActionsHibernatePost200Response) IsSet

func (NullableApiV1OrganizationsOrgIdProjectsProjectNameAddonsPostgresIdActionsHibernatePost200Response) MarshalJSON

func (*NullableApiV1OrganizationsOrgIdProjectsProjectNameAddonsPostgresIdActionsHibernatePost200Response) Set

func (*NullableApiV1OrganizationsOrgIdProjectsProjectNameAddonsPostgresIdActionsHibernatePost200Response) UnmarshalJSON

func (*NullableApiV1OrganizationsOrgIdProjectsProjectNameAddonsPostgresIdActionsHibernatePost200Response) Unset

type NullableApiV1OrganizationsOrgIdProjectsProjectNameAddonsPostgresIdActionsHibernatePostRequest

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

func (NullableApiV1OrganizationsOrgIdProjectsProjectNameAddonsPostgresIdActionsHibernatePostRequest) Get

func (NullableApiV1OrganizationsOrgIdProjectsProjectNameAddonsPostgresIdActionsHibernatePostRequest) IsSet

func (NullableApiV1OrganizationsOrgIdProjectsProjectNameAddonsPostgresIdActionsHibernatePostRequest) MarshalJSON

func (*NullableApiV1OrganizationsOrgIdProjectsProjectNameAddonsPostgresIdActionsHibernatePostRequest) Set

func (*NullableApiV1OrganizationsOrgIdProjectsProjectNameAddonsPostgresIdActionsHibernatePostRequest) UnmarshalJSON

func (*NullableApiV1OrganizationsOrgIdProjectsProjectNameAddonsPostgresIdActionsHibernatePostRequest) Unset

type NullableAppConfigResponse

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

func NewNullableAppConfigResponse

func NewNullableAppConfigResponse(val *AppConfigResponse) *NullableAppConfigResponse

func (NullableAppConfigResponse) Get

func (NullableAppConfigResponse) IsSet

func (v NullableAppConfigResponse) IsSet() bool

func (NullableAppConfigResponse) MarshalJSON

func (v NullableAppConfigResponse) MarshalJSON() ([]byte, error)

func (*NullableAppConfigResponse) Set

func (*NullableAppConfigResponse) UnmarshalJSON

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

func (*NullableAppConfigResponse) Unset

func (v *NullableAppConfigResponse) Unset()

type NullableAzureCredentials

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

func NewNullableAzureCredentials

func NewNullableAzureCredentials(val *AzureCredentials) *NullableAzureCredentials

func (NullableAzureCredentials) Get

func (NullableAzureCredentials) IsSet

func (v NullableAzureCredentials) IsSet() bool

func (NullableAzureCredentials) MarshalJSON

func (v NullableAzureCredentials) MarshalJSON() ([]byte, error)

func (*NullableAzureCredentials) Set

func (*NullableAzureCredentials) UnmarshalJSON

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

func (*NullableAzureCredentials) Unset

func (v *NullableAzureCredentials) 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 NullableBuildArtifact

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

func NewNullableBuildArtifact

func NewNullableBuildArtifact(val *BuildArtifact) *NullableBuildArtifact

func (NullableBuildArtifact) Get

func (NullableBuildArtifact) IsSet

func (v NullableBuildArtifact) IsSet() bool

func (NullableBuildArtifact) MarshalJSON

func (v NullableBuildArtifact) MarshalJSON() ([]byte, error)

func (*NullableBuildArtifact) Set

func (v *NullableBuildArtifact) Set(val *BuildArtifact)

func (*NullableBuildArtifact) UnmarshalJSON

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

func (*NullableBuildArtifact) Unset

func (v *NullableBuildArtifact) Unset()

type NullableBuildArtifactSourceConfig

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

func (NullableBuildArtifactSourceConfig) Get

func (NullableBuildArtifactSourceConfig) IsSet

func (NullableBuildArtifactSourceConfig) MarshalJSON

func (v NullableBuildArtifactSourceConfig) MarshalJSON() ([]byte, error)

func (*NullableBuildArtifactSourceConfig) Set

func (*NullableBuildArtifactSourceConfig) UnmarshalJSON

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

func (*NullableBuildArtifactSourceConfig) Unset

type NullableBuildArtifactSyncInfo

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

func (NullableBuildArtifactSyncInfo) Get

func (NullableBuildArtifactSyncInfo) IsSet

func (NullableBuildArtifactSyncInfo) MarshalJSON

func (v NullableBuildArtifactSyncInfo) MarshalJSON() ([]byte, error)

func (*NullableBuildArtifactSyncInfo) Set

func (*NullableBuildArtifactSyncInfo) UnmarshalJSON

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

func (*NullableBuildArtifactSyncInfo) Unset

func (v *NullableBuildArtifactSyncInfo) Unset()

type NullableBuildFailureDetail

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

func NewNullableBuildFailureDetail

func NewNullableBuildFailureDetail(val *BuildFailureDetail) *NullableBuildFailureDetail

func (NullableBuildFailureDetail) Get

func (NullableBuildFailureDetail) IsSet

func (v NullableBuildFailureDetail) IsSet() bool

func (NullableBuildFailureDetail) MarshalJSON

func (v NullableBuildFailureDetail) MarshalJSON() ([]byte, error)

func (*NullableBuildFailureDetail) Set

func (*NullableBuildFailureDetail) UnmarshalJSON

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

func (*NullableBuildFailureDetail) Unset

func (v *NullableBuildFailureDetail) Unset()

type NullableBuildSourceContext

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

func NewNullableBuildSourceContext

func NewNullableBuildSourceContext(val *BuildSourceContext) *NullableBuildSourceContext

func (NullableBuildSourceContext) Get

func (NullableBuildSourceContext) IsSet

func (v NullableBuildSourceContext) IsSet() bool

func (NullableBuildSourceContext) MarshalJSON

func (v NullableBuildSourceContext) MarshalJSON() ([]byte, error)

func (*NullableBuildSourceContext) Set

func (*NullableBuildSourceContext) UnmarshalJSON

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

func (*NullableBuildSourceContext) Unset

func (v *NullableBuildSourceContext) Unset()

type NullableBuildSourceContextGitRepo

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

func (NullableBuildSourceContextGitRepo) Get

func (NullableBuildSourceContextGitRepo) IsSet

func (NullableBuildSourceContextGitRepo) MarshalJSON

func (v NullableBuildSourceContextGitRepo) MarshalJSON() ([]byte, error)

func (*NullableBuildSourceContextGitRepo) Set

func (*NullableBuildSourceContextGitRepo) UnmarshalJSON

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

func (*NullableBuildSourceContextGitRepo) Unset

type NullableBuildSourceContextVolume

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

func (NullableBuildSourceContextVolume) Get

func (NullableBuildSourceContextVolume) IsSet

func (NullableBuildSourceContextVolume) MarshalJSON

func (v NullableBuildSourceContextVolume) MarshalJSON() ([]byte, error)

func (*NullableBuildSourceContextVolume) Set

func (*NullableBuildSourceContextVolume) UnmarshalJSON

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

func (*NullableBuildSourceContextVolume) Unset

type NullableBuildSourceRevision

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

func NewNullableBuildSourceRevision

func NewNullableBuildSourceRevision(val *BuildSourceRevision) *NullableBuildSourceRevision

func (NullableBuildSourceRevision) Get

func (NullableBuildSourceRevision) IsSet

func (NullableBuildSourceRevision) MarshalJSON

func (v NullableBuildSourceRevision) MarshalJSON() ([]byte, error)

func (*NullableBuildSourceRevision) Set

func (*NullableBuildSourceRevision) UnmarshalJSON

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

func (*NullableBuildSourceRevision) Unset

func (v *NullableBuildSourceRevision) Unset()

type NullableBuildSourceRevisionVolumeSourceRevision

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

func (NullableBuildSourceRevisionVolumeSourceRevision) Get

func (NullableBuildSourceRevisionVolumeSourceRevision) IsSet

func (NullableBuildSourceRevisionVolumeSourceRevision) MarshalJSON

func (*NullableBuildSourceRevisionVolumeSourceRevision) Set

func (*NullableBuildSourceRevisionVolumeSourceRevision) UnmarshalJSON

func (*NullableBuildSourceRevisionVolumeSourceRevision) Unset

type NullableCluster

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

func NewNullableCluster

func NewNullableCluster(val *Cluster) *NullableCluster

func (NullableCluster) Get

func (v NullableCluster) Get() *Cluster

func (NullableCluster) IsSet

func (v NullableCluster) IsSet() bool

func (NullableCluster) MarshalJSON

func (v NullableCluster) MarshalJSON() ([]byte, error)

func (*NullableCluster) Set

func (v *NullableCluster) Set(val *Cluster)

func (*NullableCluster) UnmarshalJSON

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

func (*NullableCluster) Unset

func (v *NullableCluster) Unset()

type NullableClusterImageRegistry

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

func NewNullableClusterImageRegistry

func NewNullableClusterImageRegistry(val *ClusterImageRegistry) *NullableClusterImageRegistry

func (NullableClusterImageRegistry) Get

func (NullableClusterImageRegistry) IsSet

func (NullableClusterImageRegistry) MarshalJSON

func (v NullableClusterImageRegistry) MarshalJSON() ([]byte, error)

func (*NullableClusterImageRegistry) Set

func (*NullableClusterImageRegistry) UnmarshalJSON

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

func (*NullableClusterImageRegistry) Unset

func (v *NullableClusterImageRegistry) Unset()

type NullableClusterImageRegistryList

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

func (NullableClusterImageRegistryList) Get

func (NullableClusterImageRegistryList) IsSet

func (NullableClusterImageRegistryList) MarshalJSON

func (v NullableClusterImageRegistryList) MarshalJSON() ([]byte, error)

func (*NullableClusterImageRegistryList) Set

func (*NullableClusterImageRegistryList) UnmarshalJSON

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

func (*NullableClusterImageRegistryList) Unset

type NullableClusterImageRegistrySpec

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

func (NullableClusterImageRegistrySpec) Get

func (NullableClusterImageRegistrySpec) IsSet

func (NullableClusterImageRegistrySpec) MarshalJSON

func (v NullableClusterImageRegistrySpec) MarshalJSON() ([]byte, error)

func (*NullableClusterImageRegistrySpec) Set

func (*NullableClusterImageRegistrySpec) UnmarshalJSON

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

func (*NullableClusterImageRegistrySpec) Unset

type NullableClusterImageRegistryState

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

func (NullableClusterImageRegistryState) Get

func (NullableClusterImageRegistryState) IsSet

func (NullableClusterImageRegistryState) MarshalJSON

func (v NullableClusterImageRegistryState) MarshalJSON() ([]byte, error)

func (*NullableClusterImageRegistryState) Set

func (*NullableClusterImageRegistryState) UnmarshalJSON

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

func (*NullableClusterImageRegistryState) Unset

type NullableClusterImageRegistryStatus

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

func (NullableClusterImageRegistryStatus) Get

func (NullableClusterImageRegistryStatus) IsSet

func (NullableClusterImageRegistryStatus) MarshalJSON

func (v NullableClusterImageRegistryStatus) MarshalJSON() ([]byte, error)

func (*NullableClusterImageRegistryStatus) Set

func (*NullableClusterImageRegistryStatus) UnmarshalJSON

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

func (*NullableClusterImageRegistryStatus) Unset

type NullableClusterList

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

func NewNullableClusterList

func NewNullableClusterList(val *ClusterList) *NullableClusterList

func (NullableClusterList) Get

func (NullableClusterList) IsSet

func (v NullableClusterList) IsSet() bool

func (NullableClusterList) MarshalJSON

func (v NullableClusterList) MarshalJSON() ([]byte, error)

func (*NullableClusterList) Set

func (v *NullableClusterList) Set(val *ClusterList)

func (*NullableClusterList) UnmarshalJSON

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

func (*NullableClusterList) Unset

func (v *NullableClusterList) Unset()

type NullableCondition

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

func NewNullableCondition

func NewNullableCondition(val *Condition) *NullableCondition

func (NullableCondition) Get

func (v NullableCondition) Get() *Condition

func (NullableCondition) IsSet

func (v NullableCondition) IsSet() bool

func (NullableCondition) MarshalJSON

func (v NullableCondition) MarshalJSON() ([]byte, error)

func (*NullableCondition) Set

func (v *NullableCondition) Set(val *Condition)

func (*NullableCondition) UnmarshalJSON

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

func (*NullableCondition) Unset

func (v *NullableCondition) Unset()

type NullableConnectionMapping

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

func NewNullableConnectionMapping

func NewNullableConnectionMapping(val *ConnectionMapping) *NullableConnectionMapping

func (NullableConnectionMapping) Get

func (NullableConnectionMapping) IsSet

func (v NullableConnectionMapping) IsSet() bool

func (NullableConnectionMapping) MarshalJSON

func (v NullableConnectionMapping) MarshalJSON() ([]byte, error)

func (*NullableConnectionMapping) Set

func (*NullableConnectionMapping) UnmarshalJSON

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

func (*NullableConnectionMapping) Unset

func (v *NullableConnectionMapping) Unset()

type NullableConnectionTarget

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

func NewNullableConnectionTarget

func NewNullableConnectionTarget(val *ConnectionTarget) *NullableConnectionTarget

func (NullableConnectionTarget) Get

func (NullableConnectionTarget) IsSet

func (v NullableConnectionTarget) IsSet() bool

func (NullableConnectionTarget) MarshalJSON

func (v NullableConnectionTarget) MarshalJSON() ([]byte, error)

func (*NullableConnectionTarget) Set

func (*NullableConnectionTarget) UnmarshalJSON

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

func (*NullableConnectionTarget) Unset

func (v *NullableConnectionTarget) Unset()

type NullableContainerFailureDetail

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

func (NullableContainerFailureDetail) Get

func (NullableContainerFailureDetail) IsSet

func (NullableContainerFailureDetail) MarshalJSON

func (v NullableContainerFailureDetail) MarshalJSON() ([]byte, error)

func (*NullableContainerFailureDetail) Set

func (*NullableContainerFailureDetail) UnmarshalJSON

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

func (*NullableContainerFailureDetail) Unset

func (v *NullableContainerFailureDetail) Unset()

type NullableCreateReleaseRequest

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

func NewNullableCreateReleaseRequest

func NewNullableCreateReleaseRequest(val *CreateReleaseRequest) *NullableCreateReleaseRequest

func (NullableCreateReleaseRequest) Get

func (NullableCreateReleaseRequest) IsSet

func (NullableCreateReleaseRequest) MarshalJSON

func (v NullableCreateReleaseRequest) MarshalJSON() ([]byte, error)

func (*NullableCreateReleaseRequest) Set

func (*NullableCreateReleaseRequest) UnmarshalJSON

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

func (*NullableCreateReleaseRequest) Unset

func (v *NullableCreateReleaseRequest) Unset()

type NullableDemoteAdminRequest

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

func NewNullableDemoteAdminRequest

func NewNullableDemoteAdminRequest(val *DemoteAdminRequest) *NullableDemoteAdminRequest

func (NullableDemoteAdminRequest) Get

func (NullableDemoteAdminRequest) IsSet

func (v NullableDemoteAdminRequest) IsSet() bool

func (NullableDemoteAdminRequest) MarshalJSON

func (v NullableDemoteAdminRequest) MarshalJSON() ([]byte, error)

func (*NullableDemoteAdminRequest) Set

func (*NullableDemoteAdminRequest) UnmarshalJSON

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

func (*NullableDemoteAdminRequest) Unset

func (v *NullableDemoteAdminRequest) Unset()

type NullableDomainName

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

func NewNullableDomainName

func NewNullableDomainName(val *DomainName) *NullableDomainName

func (NullableDomainName) Get

func (v NullableDomainName) Get() *DomainName

func (NullableDomainName) IsSet

func (v NullableDomainName) IsSet() bool

func (NullableDomainName) MarshalJSON

func (v NullableDomainName) MarshalJSON() ([]byte, error)

func (*NullableDomainName) Set

func (v *NullableDomainName) Set(val *DomainName)

func (*NullableDomainName) UnmarshalJSON

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

func (*NullableDomainName) Unset

func (v *NullableDomainName) Unset()

type NullableEnvVar

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

func NewNullableEnvVar

func NewNullableEnvVar(val *EnvVar) *NullableEnvVar

func (NullableEnvVar) Get

func (v NullableEnvVar) Get() *EnvVar

func (NullableEnvVar) IsSet

func (v NullableEnvVar) IsSet() bool

func (NullableEnvVar) MarshalJSON

func (v NullableEnvVar) MarshalJSON() ([]byte, error)

func (*NullableEnvVar) Set

func (v *NullableEnvVar) Set(val *EnvVar)

func (*NullableEnvVar) UnmarshalJSON

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

func (*NullableEnvVar) Unset

func (v *NullableEnvVar) 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 NullableErrorAllOf

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

func NewNullableErrorAllOf

func NewNullableErrorAllOf(val *ErrorAllOf) *NullableErrorAllOf

func (NullableErrorAllOf) Get

func (v NullableErrorAllOf) Get() *ErrorAllOf

func (NullableErrorAllOf) IsSet

func (v NullableErrorAllOf) IsSet() bool

func (NullableErrorAllOf) MarshalJSON

func (v NullableErrorAllOf) MarshalJSON() ([]byte, error)

func (*NullableErrorAllOf) Set

func (v *NullableErrorAllOf) Set(val *ErrorAllOf)

func (*NullableErrorAllOf) UnmarshalJSON

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

func (*NullableErrorAllOf) Unset

func (v *NullableErrorAllOf) Unset()

type NullableErrorList

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

func NewNullableErrorList

func NewNullableErrorList(val *ErrorList) *NullableErrorList

func (NullableErrorList) Get

func (v NullableErrorList) Get() *ErrorList

func (NullableErrorList) IsSet

func (v NullableErrorList) IsSet() bool

func (NullableErrorList) MarshalJSON

func (v NullableErrorList) MarshalJSON() ([]byte, error)

func (*NullableErrorList) Set

func (v *NullableErrorList) Set(val *ErrorList)

func (*NullableErrorList) UnmarshalJSON

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

func (*NullableErrorList) Unset

func (v *NullableErrorList) Unset()

type NullableExecutionConfig

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

func NewNullableExecutionConfig

func NewNullableExecutionConfig(val *ExecutionConfig) *NullableExecutionConfig

func (NullableExecutionConfig) Get

func (NullableExecutionConfig) IsSet

func (v NullableExecutionConfig) IsSet() bool

func (NullableExecutionConfig) MarshalJSON

func (v NullableExecutionConfig) MarshalJSON() ([]byte, error)

func (*NullableExecutionConfig) Set

func (*NullableExecutionConfig) UnmarshalJSON

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

func (*NullableExecutionConfig) Unset

func (v *NullableExecutionConfig) Unset()

type NullableFieldValidationError

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

func NewNullableFieldValidationError

func NewNullableFieldValidationError(val *FieldValidationError) *NullableFieldValidationError

func (NullableFieldValidationError) Get

func (NullableFieldValidationError) IsSet

func (NullableFieldValidationError) MarshalJSON

func (v NullableFieldValidationError) MarshalJSON() ([]byte, error)

func (*NullableFieldValidationError) Set

func (*NullableFieldValidationError) UnmarshalJSON

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

func (*NullableFieldValidationError) Unset

func (v *NullableFieldValidationError) 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 NullableGCSCredentials

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

func NewNullableGCSCredentials

func NewNullableGCSCredentials(val *GCSCredentials) *NullableGCSCredentials

func (NullableGCSCredentials) Get

func (NullableGCSCredentials) IsSet

func (v NullableGCSCredentials) IsSet() bool

func (NullableGCSCredentials) MarshalJSON

func (v NullableGCSCredentials) MarshalJSON() ([]byte, error)

func (*NullableGCSCredentials) Set

func (*NullableGCSCredentials) UnmarshalJSON

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

func (*NullableGCSCredentials) Unset

func (v *NullableGCSCredentials) Unset()

type NullableGitBranchList

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

func NewNullableGitBranchList

func NewNullableGitBranchList(val *GitBranchList) *NullableGitBranchList

func (NullableGitBranchList) Get

func (NullableGitBranchList) IsSet

func (v NullableGitBranchList) IsSet() bool

func (NullableGitBranchList) MarshalJSON

func (v NullableGitBranchList) MarshalJSON() ([]byte, error)

func (*NullableGitBranchList) Set

func (v *NullableGitBranchList) Set(val *GitBranchList)

func (*NullableGitBranchList) UnmarshalJSON

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

func (*NullableGitBranchList) Unset

func (v *NullableGitBranchList) Unset()

type NullableGitHubAppManifestFlow

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

func (NullableGitHubAppManifestFlow) Get

func (NullableGitHubAppManifestFlow) IsSet

func (NullableGitHubAppManifestFlow) MarshalJSON

func (v NullableGitHubAppManifestFlow) MarshalJSON() ([]byte, error)

func (*NullableGitHubAppManifestFlow) Set

func (*NullableGitHubAppManifestFlow) UnmarshalJSON

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

func (*NullableGitHubAppManifestFlow) Unset

func (v *NullableGitHubAppManifestFlow) Unset()

type NullableGitInstallation

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

func NewNullableGitInstallation

func NewNullableGitInstallation(val *GitInstallation) *NullableGitInstallation

func (NullableGitInstallation) Get

func (NullableGitInstallation) IsSet

func (v NullableGitInstallation) IsSet() bool

func (NullableGitInstallation) MarshalJSON

func (v NullableGitInstallation) MarshalJSON() ([]byte, error)

func (*NullableGitInstallation) Set

func (*NullableGitInstallation) UnmarshalJSON

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

func (*NullableGitInstallation) Unset

func (v *NullableGitInstallation) Unset()

type NullableGitInstallationList

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

func NewNullableGitInstallationList

func NewNullableGitInstallationList(val *GitInstallationList) *NullableGitInstallationList

func (NullableGitInstallationList) Get

func (NullableGitInstallationList) IsSet

func (NullableGitInstallationList) MarshalJSON

func (v NullableGitInstallationList) MarshalJSON() ([]byte, error)

func (*NullableGitInstallationList) Set

func (*NullableGitInstallationList) UnmarshalJSON

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

func (*NullableGitInstallationList) Unset

func (v *NullableGitInstallationList) Unset()

type NullableGitIntegration

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

func NewNullableGitIntegration

func NewNullableGitIntegration(val *GitIntegration) *NullableGitIntegration

func (NullableGitIntegration) Get

func (NullableGitIntegration) IsSet

func (v NullableGitIntegration) IsSet() bool

func (NullableGitIntegration) MarshalJSON

func (v NullableGitIntegration) MarshalJSON() ([]byte, error)

func (*NullableGitIntegration) Set

func (*NullableGitIntegration) UnmarshalJSON

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

func (*NullableGitIntegration) Unset

func (v *NullableGitIntegration) Unset()

type NullableGitIntegrationAuth

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

func NewNullableGitIntegrationAuth

func NewNullableGitIntegrationAuth(val *GitIntegrationAuth) *NullableGitIntegrationAuth

func (NullableGitIntegrationAuth) Get

func (NullableGitIntegrationAuth) IsSet

func (v NullableGitIntegrationAuth) IsSet() bool

func (NullableGitIntegrationAuth) MarshalJSON

func (v NullableGitIntegrationAuth) MarshalJSON() ([]byte, error)

func (*NullableGitIntegrationAuth) Set

func (*NullableGitIntegrationAuth) UnmarshalJSON

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

func (*NullableGitIntegrationAuth) Unset

func (v *NullableGitIntegrationAuth) Unset()

type NullableGitIntegrationBasicAuth

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

func (NullableGitIntegrationBasicAuth) Get

func (NullableGitIntegrationBasicAuth) IsSet

func (NullableGitIntegrationBasicAuth) MarshalJSON

func (v NullableGitIntegrationBasicAuth) MarshalJSON() ([]byte, error)

func (*NullableGitIntegrationBasicAuth) Set

func (*NullableGitIntegrationBasicAuth) UnmarshalJSON

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

func (*NullableGitIntegrationBasicAuth) Unset

type NullableGitIntegrationList

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

func NewNullableGitIntegrationList

func NewNullableGitIntegrationList(val *GitIntegrationList) *NullableGitIntegrationList

func (NullableGitIntegrationList) Get

func (NullableGitIntegrationList) IsSet

func (v NullableGitIntegrationList) IsSet() bool

func (NullableGitIntegrationList) MarshalJSON

func (v NullableGitIntegrationList) MarshalJSON() ([]byte, error)

func (*NullableGitIntegrationList) Set

func (*NullableGitIntegrationList) UnmarshalJSON

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

func (*NullableGitIntegrationList) Unset

func (v *NullableGitIntegrationList) Unset()

type NullableGitIntegrationType

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

func NewNullableGitIntegrationType

func NewNullableGitIntegrationType(val *GitIntegrationType) *NullableGitIntegrationType

func (NullableGitIntegrationType) Get

func (NullableGitIntegrationType) IsSet

func (v NullableGitIntegrationType) IsSet() bool

func (NullableGitIntegrationType) MarshalJSON

func (v NullableGitIntegrationType) MarshalJSON() ([]byte, error)

func (*NullableGitIntegrationType) Set

func (*NullableGitIntegrationType) UnmarshalJSON

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

func (*NullableGitIntegrationType) Unset

func (v *NullableGitIntegrationType) Unset()

type NullableGitIntegrationVerifyRequest

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

func (NullableGitIntegrationVerifyRequest) Get

func (NullableGitIntegrationVerifyRequest) IsSet

func (NullableGitIntegrationVerifyRequest) MarshalJSON

func (v NullableGitIntegrationVerifyRequest) MarshalJSON() ([]byte, error)

func (*NullableGitIntegrationVerifyRequest) Set

func (*NullableGitIntegrationVerifyRequest) UnmarshalJSON

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

func (*NullableGitIntegrationVerifyRequest) Unset

type NullableGitRepoRevision

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

func NewNullableGitRepoRevision

func NewNullableGitRepoRevision(val *GitRepoRevision) *NullableGitRepoRevision

func (NullableGitRepoRevision) Get

func (NullableGitRepoRevision) IsSet

func (v NullableGitRepoRevision) IsSet() bool

func (NullableGitRepoRevision) MarshalJSON

func (v NullableGitRepoRevision) MarshalJSON() ([]byte, error)

func (*NullableGitRepoRevision) Set

func (*NullableGitRepoRevision) UnmarshalJSON

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

func (*NullableGitRepoRevision) Unset

func (v *NullableGitRepoRevision) Unset()

type NullableGitRepoSource

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

func NewNullableGitRepoSource

func NewNullableGitRepoSource(val *GitRepoSource) *NullableGitRepoSource

func (NullableGitRepoSource) Get

func (NullableGitRepoSource) IsSet

func (v NullableGitRepoSource) IsSet() bool

func (NullableGitRepoSource) MarshalJSON

func (v NullableGitRepoSource) MarshalJSON() ([]byte, error)

func (*NullableGitRepoSource) Set

func (v *NullableGitRepoSource) Set(val *GitRepoSource)

func (*NullableGitRepoSource) UnmarshalJSON

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

func (*NullableGitRepoSource) Unset

func (v *NullableGitRepoSource) Unset()

type NullableGitRepository

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

func NewNullableGitRepository

func NewNullableGitRepository(val *GitRepository) *NullableGitRepository

func (NullableGitRepository) Get

func (NullableGitRepository) IsSet

func (v NullableGitRepository) IsSet() bool

func (NullableGitRepository) MarshalJSON

func (v NullableGitRepository) MarshalJSON() ([]byte, error)

func (*NullableGitRepository) Set

func (v *NullableGitRepository) Set(val *GitRepository)

func (*NullableGitRepository) UnmarshalJSON

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

func (*NullableGitRepository) Unset

func (v *NullableGitRepository) Unset()

type NullableGitRepositoryPage

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

func NewNullableGitRepositoryPage

func NewNullableGitRepositoryPage(val *GitRepositoryPage) *NullableGitRepositoryPage

func (NullableGitRepositoryPage) Get

func (NullableGitRepositoryPage) IsSet

func (v NullableGitRepositoryPage) IsSet() bool

func (NullableGitRepositoryPage) MarshalJSON

func (v NullableGitRepositoryPage) MarshalJSON() ([]byte, error)

func (*NullableGitRepositoryPage) Set

func (*NullableGitRepositoryPage) UnmarshalJSON

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

func (*NullableGitRepositoryPage) Unset

func (v *NullableGitRepositoryPage) 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 NullableImageBuild

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

func NewNullableImageBuild

func NewNullableImageBuild(val *ImageBuild) *NullableImageBuild

func (NullableImageBuild) Get

func (v NullableImageBuild) Get() *ImageBuild

func (NullableImageBuild) IsSet

func (v NullableImageBuild) IsSet() bool

func (NullableImageBuild) MarshalJSON

func (v NullableImageBuild) MarshalJSON() ([]byte, error)

func (*NullableImageBuild) Set

func (v *NullableImageBuild) Set(val *ImageBuild)

func (*NullableImageBuild) UnmarshalJSON

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

func (*NullableImageBuild) Unset

func (v *NullableImageBuild) Unset()

type NullableImageBuildList

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

func NewNullableImageBuildList

func NewNullableImageBuildList(val *ImageBuildList) *NullableImageBuildList

func (NullableImageBuildList) Get

func (NullableImageBuildList) IsSet

func (v NullableImageBuildList) IsSet() bool

func (NullableImageBuildList) MarshalJSON

func (v NullableImageBuildList) MarshalJSON() ([]byte, error)

func (*NullableImageBuildList) Set

func (*NullableImageBuildList) UnmarshalJSON

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

func (*NullableImageBuildList) Unset

func (v *NullableImageBuildList) Unset()

type NullableImageBuildStatus

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

func NewNullableImageBuildStatus

func NewNullableImageBuildStatus(val *ImageBuildStatus) *NullableImageBuildStatus

func (NullableImageBuildStatus) Get

func (NullableImageBuildStatus) IsSet

func (v NullableImageBuildStatus) IsSet() bool

func (NullableImageBuildStatus) MarshalJSON

func (v NullableImageBuildStatus) MarshalJSON() ([]byte, error)

func (*NullableImageBuildStatus) Set

func (*NullableImageBuildStatus) UnmarshalJSON

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

func (*NullableImageBuildStatus) Unset

func (v *NullableImageBuildStatus) Unset()

type NullableImageSource

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

func NewNullableImageSource

func NewNullableImageSource(val *ImageSource) *NullableImageSource

func (NullableImageSource) Get

func (NullableImageSource) IsSet

func (v NullableImageSource) IsSet() bool

func (NullableImageSource) MarshalJSON

func (v NullableImageSource) MarshalJSON() ([]byte, error)

func (*NullableImageSource) Set

func (v *NullableImageSource) Set(val *ImageSource)

func (*NullableImageSource) UnmarshalJSON

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

func (*NullableImageSource) Unset

func (v *NullableImageSource) Unset()

type NullableIngress

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

func NewNullableIngress

func NewNullableIngress(val *Ingress) *NullableIngress

func (NullableIngress) Get

func (v NullableIngress) Get() *Ingress

func (NullableIngress) IsSet

func (v NullableIngress) IsSet() bool

func (NullableIngress) MarshalJSON

func (v NullableIngress) MarshalJSON() ([]byte, error)

func (*NullableIngress) Set

func (v *NullableIngress) Set(val *Ingress)

func (*NullableIngress) UnmarshalJSON

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

func (*NullableIngress) Unset

func (v *NullableIngress) Unset()

type NullableInitSpec

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

func NewNullableInitSpec

func NewNullableInitSpec(val *InitSpec) *NullableInitSpec

func (NullableInitSpec) Get

func (v NullableInitSpec) Get() *InitSpec

func (NullableInitSpec) IsSet

func (v NullableInitSpec) IsSet() bool

func (NullableInitSpec) MarshalJSON

func (v NullableInitSpec) MarshalJSON() ([]byte, error)

func (*NullableInitSpec) Set

func (v *NullableInitSpec) Set(val *InitSpec)

func (*NullableInitSpec) UnmarshalJSON

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

func (*NullableInitSpec) Unset

func (v *NullableInitSpec) 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 NullableInviteStatus

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

func NewNullableInviteStatus

func NewNullableInviteStatus(val *InviteStatus) *NullableInviteStatus

func (NullableInviteStatus) Get

func (NullableInviteStatus) IsSet

func (v NullableInviteStatus) IsSet() bool

func (NullableInviteStatus) MarshalJSON

func (v NullableInviteStatus) MarshalJSON() ([]byte, error)

func (*NullableInviteStatus) Set

func (v *NullableInviteStatus) Set(val *InviteStatus)

func (*NullableInviteStatus) UnmarshalJSON

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

func (*NullableInviteStatus) Unset

func (v *NullableInviteStatus) Unset()

type NullableLabel

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

func NewNullableLabel

func NewNullableLabel(val *Label) *NullableLabel

func (NullableLabel) Get

func (v NullableLabel) Get() *Label

func (NullableLabel) IsSet

func (v NullableLabel) IsSet() bool

func (NullableLabel) MarshalJSON

func (v NullableLabel) MarshalJSON() ([]byte, error)

func (*NullableLabel) Set

func (v *NullableLabel) Set(val *Label)

func (*NullableLabel) UnmarshalJSON

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

func (*NullableLabel) Unset

func (v *NullableLabel) Unset()

type NullableLifecycleConfig

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

func NewNullableLifecycleConfig

func NewNullableLifecycleConfig(val *LifecycleConfig) *NullableLifecycleConfig

func (NullableLifecycleConfig) Get

func (NullableLifecycleConfig) IsSet

func (v NullableLifecycleConfig) IsSet() bool

func (NullableLifecycleConfig) MarshalJSON

func (v NullableLifecycleConfig) MarshalJSON() ([]byte, error)

func (*NullableLifecycleConfig) Set

func (*NullableLifecycleConfig) UnmarshalJSON

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

func (*NullableLifecycleConfig) Unset

func (v *NullableLifecycleConfig) Unset()

type NullableList

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

func NewNullableList

func NewNullableList(val *List) *NullableList

func (NullableList) Get

func (v NullableList) Get() *List

func (NullableList) IsSet

func (v NullableList) IsSet() bool

func (NullableList) MarshalJSON

func (v NullableList) MarshalJSON() ([]byte, error)

func (*NullableList) Set

func (v *NullableList) Set(val *List)

func (*NullableList) UnmarshalJSON

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

func (*NullableList) Unset

func (v *NullableList) 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 NullableLoginResponse

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

func NewNullableLoginResponse

func NewNullableLoginResponse(val *LoginResponse) *NullableLoginResponse

func (NullableLoginResponse) Get

func (NullableLoginResponse) IsSet

func (v NullableLoginResponse) IsSet() bool

func (NullableLoginResponse) MarshalJSON

func (v NullableLoginResponse) MarshalJSON() ([]byte, error)

func (*NullableLoginResponse) Set

func (v *NullableLoginResponse) Set(val *LoginResponse)

func (*NullableLoginResponse) UnmarshalJSON

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

func (*NullableLoginResponse) Unset

func (v *NullableLoginResponse) Unset()

type NullableObjectReference

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

func NewNullableObjectReference

func NewNullableObjectReference(val *ObjectReference) *NullableObjectReference

func (NullableObjectReference) Get

func (NullableObjectReference) IsSet

func (v NullableObjectReference) IsSet() bool

func (NullableObjectReference) MarshalJSON

func (v NullableObjectReference) MarshalJSON() ([]byte, error)

func (*NullableObjectReference) Set

func (*NullableObjectReference) UnmarshalJSON

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

func (*NullableObjectReference) Unset

func (v *NullableObjectReference) Unset()

type NullableObjectStore

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

func NewNullableObjectStore

func NewNullableObjectStore(val *ObjectStore) *NullableObjectStore

func (NullableObjectStore) Get

func (NullableObjectStore) IsSet

func (v NullableObjectStore) IsSet() bool

func (NullableObjectStore) MarshalJSON

func (v NullableObjectStore) MarshalJSON() ([]byte, error)

func (*NullableObjectStore) Set

func (v *NullableObjectStore) Set(val *ObjectStore)

func (*NullableObjectStore) UnmarshalJSON

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

func (*NullableObjectStore) Unset

func (v *NullableObjectStore) Unset()

type NullableObjectStoreConfiguration

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

func (NullableObjectStoreConfiguration) Get

func (NullableObjectStoreConfiguration) IsSet

func (NullableObjectStoreConfiguration) MarshalJSON

func (v NullableObjectStoreConfiguration) MarshalJSON() ([]byte, error)

func (*NullableObjectStoreConfiguration) Set

func (*NullableObjectStoreConfiguration) UnmarshalJSON

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

func (*NullableObjectStoreConfiguration) Unset

type NullableObjectStoreList

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

func NewNullableObjectStoreList

func NewNullableObjectStoreList(val *ObjectStoreList) *NullableObjectStoreList

func (NullableObjectStoreList) Get

func (NullableObjectStoreList) IsSet

func (v NullableObjectStoreList) IsSet() bool

func (NullableObjectStoreList) MarshalJSON

func (v NullableObjectStoreList) MarshalJSON() ([]byte, error)

func (*NullableObjectStoreList) Set

func (*NullableObjectStoreList) UnmarshalJSON

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

func (*NullableObjectStoreList) Unset

func (v *NullableObjectStoreList) Unset()

type NullableObjectStoreSpec

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

func NewNullableObjectStoreSpec

func NewNullableObjectStoreSpec(val *ObjectStoreSpec) *NullableObjectStoreSpec

func (NullableObjectStoreSpec) Get

func (NullableObjectStoreSpec) IsSet

func (v NullableObjectStoreSpec) IsSet() bool

func (NullableObjectStoreSpec) MarshalJSON

func (v NullableObjectStoreSpec) MarshalJSON() ([]byte, error)

func (*NullableObjectStoreSpec) Set

func (*NullableObjectStoreSpec) UnmarshalJSON

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

func (*NullableObjectStoreSpec) Unset

func (v *NullableObjectStoreSpec) Unset()

type NullableObjectStoreStatus

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

func NewNullableObjectStoreStatus

func NewNullableObjectStoreStatus(val *ObjectStoreStatus) *NullableObjectStoreStatus

func (NullableObjectStoreStatus) Get

func (NullableObjectStoreStatus) IsSet

func (v NullableObjectStoreStatus) IsSet() bool

func (NullableObjectStoreStatus) MarshalJSON

func (v NullableObjectStoreStatus) MarshalJSON() ([]byte, error)

func (*NullableObjectStoreStatus) Set

func (*NullableObjectStoreStatus) UnmarshalJSON

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

func (*NullableObjectStoreStatus) Unset

func (v *NullableObjectStoreStatus) Unset()

type NullableOrgInvite

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

func NewNullableOrgInvite

func NewNullableOrgInvite(val *OrgInvite) *NullableOrgInvite

func (NullableOrgInvite) Get

func (v NullableOrgInvite) Get() *OrgInvite

func (NullableOrgInvite) IsSet

func (v NullableOrgInvite) IsSet() bool

func (NullableOrgInvite) MarshalJSON

func (v NullableOrgInvite) MarshalJSON() ([]byte, error)

func (*NullableOrgInvite) Set

func (v *NullableOrgInvite) Set(val *OrgInvite)

func (*NullableOrgInvite) UnmarshalJSON

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

func (*NullableOrgInvite) Unset

func (v *NullableOrgInvite) Unset()

type NullableOrgInviteCreateRequest

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

func (NullableOrgInviteCreateRequest) Get

func (NullableOrgInviteCreateRequest) IsSet

func (NullableOrgInviteCreateRequest) MarshalJSON

func (v NullableOrgInviteCreateRequest) MarshalJSON() ([]byte, error)

func (*NullableOrgInviteCreateRequest) Set

func (*NullableOrgInviteCreateRequest) UnmarshalJSON

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

func (*NullableOrgInviteCreateRequest) Unset

func (v *NullableOrgInviteCreateRequest) Unset()

type NullableOrgInviteCreateResponse

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

func (NullableOrgInviteCreateResponse) Get

func (NullableOrgInviteCreateResponse) IsSet

func (NullableOrgInviteCreateResponse) MarshalJSON

func (v NullableOrgInviteCreateResponse) MarshalJSON() ([]byte, error)

func (*NullableOrgInviteCreateResponse) Set

func (*NullableOrgInviteCreateResponse) UnmarshalJSON

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

func (*NullableOrgInviteCreateResponse) Unset

type NullableOrgInviteInfo

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

func NewNullableOrgInviteInfo

func NewNullableOrgInviteInfo(val *OrgInviteInfo) *NullableOrgInviteInfo

func (NullableOrgInviteInfo) Get

func (NullableOrgInviteInfo) IsSet

func (v NullableOrgInviteInfo) IsSet() bool

func (NullableOrgInviteInfo) MarshalJSON

func (v NullableOrgInviteInfo) MarshalJSON() ([]byte, error)

func (*NullableOrgInviteInfo) Set

func (v *NullableOrgInviteInfo) Set(val *OrgInviteInfo)

func (*NullableOrgInviteInfo) UnmarshalJSON

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

func (*NullableOrgInviteInfo) Unset

func (v *NullableOrgInviteInfo) Unset()

type NullableOrgInviteList

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

func NewNullableOrgInviteList

func NewNullableOrgInviteList(val *OrgInviteList) *NullableOrgInviteList

func (NullableOrgInviteList) Get

func (NullableOrgInviteList) IsSet

func (v NullableOrgInviteList) IsSet() bool

func (NullableOrgInviteList) MarshalJSON

func (v NullableOrgInviteList) MarshalJSON() ([]byte, error)

func (*NullableOrgInviteList) Set

func (v *NullableOrgInviteList) Set(val *OrgInviteList)

func (*NullableOrgInviteList) UnmarshalJSON

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

func (*NullableOrgInviteList) Unset

func (v *NullableOrgInviteList) Unset()

type NullableOrganisation

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

func NewNullableOrganisation

func NewNullableOrganisation(val *Organisation) *NullableOrganisation

func (NullableOrganisation) Get

func (NullableOrganisation) IsSet

func (v NullableOrganisation) IsSet() bool

func (NullableOrganisation) MarshalJSON

func (v NullableOrganisation) MarshalJSON() ([]byte, error)

func (*NullableOrganisation) Set

func (v *NullableOrganisation) Set(val *Organisation)

func (*NullableOrganisation) UnmarshalJSON

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

func (*NullableOrganisation) Unset

func (v *NullableOrganisation) Unset()

type NullableOutputDescriptor

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

func NewNullableOutputDescriptor

func NewNullableOutputDescriptor(val *OutputDescriptor) *NullableOutputDescriptor

func (NullableOutputDescriptor) Get

func (NullableOutputDescriptor) IsSet

func (v NullableOutputDescriptor) IsSet() bool

func (NullableOutputDescriptor) MarshalJSON

func (v NullableOutputDescriptor) MarshalJSON() ([]byte, error)

func (*NullableOutputDescriptor) Set

func (*NullableOutputDescriptor) UnmarshalJSON

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

func (*NullableOutputDescriptor) Unset

func (v *NullableOutputDescriptor) Unset()

type NullableOutputValueRef

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

func NewNullableOutputValueRef

func NewNullableOutputValueRef(val *OutputValueRef) *NullableOutputValueRef

func (NullableOutputValueRef) Get

func (NullableOutputValueRef) IsSet

func (v NullableOutputValueRef) IsSet() bool

func (NullableOutputValueRef) MarshalJSON

func (v NullableOutputValueRef) MarshalJSON() ([]byte, error)

func (*NullableOutputValueRef) Set

func (*NullableOutputValueRef) UnmarshalJSON

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

func (*NullableOutputValueRef) Unset

func (v *NullableOutputValueRef) 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 NullablePostgresAddon

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

func NewNullablePostgresAddon

func NewNullablePostgresAddon(val *PostgresAddon) *NullablePostgresAddon

func (NullablePostgresAddon) Get

func (NullablePostgresAddon) IsSet

func (v NullablePostgresAddon) IsSet() bool

func (NullablePostgresAddon) MarshalJSON

func (v NullablePostgresAddon) MarshalJSON() ([]byte, error)

func (*NullablePostgresAddon) Set

func (v *NullablePostgresAddon) Set(val *PostgresAddon)

func (*NullablePostgresAddon) UnmarshalJSON

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

func (*NullablePostgresAddon) Unset

func (v *NullablePostgresAddon) Unset()

type NullablePostgresAddonList

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

func NewNullablePostgresAddonList

func NewNullablePostgresAddonList(val *PostgresAddonList) *NullablePostgresAddonList

func (NullablePostgresAddonList) Get

func (NullablePostgresAddonList) IsSet

func (v NullablePostgresAddonList) IsSet() bool

func (NullablePostgresAddonList) MarshalJSON

func (v NullablePostgresAddonList) MarshalJSON() ([]byte, error)

func (*NullablePostgresAddonList) Set

func (*NullablePostgresAddonList) UnmarshalJSON

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

func (*NullablePostgresAddonList) Unset

func (v *NullablePostgresAddonList) Unset()

type NullablePostgresAddonSpec

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

func NewNullablePostgresAddonSpec

func NewNullablePostgresAddonSpec(val *PostgresAddonSpec) *NullablePostgresAddonSpec

func (NullablePostgresAddonSpec) Get

func (NullablePostgresAddonSpec) IsSet

func (v NullablePostgresAddonSpec) IsSet() bool

func (NullablePostgresAddonSpec) MarshalJSON

func (v NullablePostgresAddonSpec) MarshalJSON() ([]byte, error)

func (*NullablePostgresAddonSpec) Set

func (*NullablePostgresAddonSpec) UnmarshalJSON

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

func (*NullablePostgresAddonSpec) Unset

func (v *NullablePostgresAddonSpec) Unset()

type NullablePostgresAddonStatus

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

func NewNullablePostgresAddonStatus

func NewNullablePostgresAddonStatus(val *PostgresAddonStatus) *NullablePostgresAddonStatus

func (NullablePostgresAddonStatus) Get

func (NullablePostgresAddonStatus) IsSet

func (NullablePostgresAddonStatus) MarshalJSON

func (v NullablePostgresAddonStatus) MarshalJSON() ([]byte, error)

func (*NullablePostgresAddonStatus) Set

func (*NullablePostgresAddonStatus) UnmarshalJSON

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

func (*NullablePostgresAddonStatus) Unset

func (v *NullablePostgresAddonStatus) Unset()

type NullablePostgresBackup

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

func NewNullablePostgresBackup

func NewNullablePostgresBackup(val *PostgresBackup) *NullablePostgresBackup

func (NullablePostgresBackup) Get

func (NullablePostgresBackup) IsSet

func (v NullablePostgresBackup) IsSet() bool

func (NullablePostgresBackup) MarshalJSON

func (v NullablePostgresBackup) MarshalJSON() ([]byte, error)

func (*NullablePostgresBackup) Set

func (*NullablePostgresBackup) UnmarshalJSON

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

func (*NullablePostgresBackup) Unset

func (v *NullablePostgresBackup) Unset()

type NullablePostgresBackupConfig

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

func NewNullablePostgresBackupConfig

func NewNullablePostgresBackupConfig(val *PostgresBackupConfig) *NullablePostgresBackupConfig

func (NullablePostgresBackupConfig) Get

func (NullablePostgresBackupConfig) IsSet

func (NullablePostgresBackupConfig) MarshalJSON

func (v NullablePostgresBackupConfig) MarshalJSON() ([]byte, error)

func (*NullablePostgresBackupConfig) Set

func (*NullablePostgresBackupConfig) UnmarshalJSON

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

func (*NullablePostgresBackupConfig) Unset

func (v *NullablePostgresBackupConfig) Unset()

type NullablePostgresBackupList

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

func NewNullablePostgresBackupList

func NewNullablePostgresBackupList(val *PostgresBackupList) *NullablePostgresBackupList

func (NullablePostgresBackupList) Get

func (NullablePostgresBackupList) IsSet

func (v NullablePostgresBackupList) IsSet() bool

func (NullablePostgresBackupList) MarshalJSON

func (v NullablePostgresBackupList) MarshalJSON() ([]byte, error)

func (*NullablePostgresBackupList) Set

func (*NullablePostgresBackupList) UnmarshalJSON

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

func (*NullablePostgresBackupList) Unset

func (v *NullablePostgresBackupList) Unset()

type NullablePostgresClusterInfo

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

func NewNullablePostgresClusterInfo

func NewNullablePostgresClusterInfo(val *PostgresClusterInfo) *NullablePostgresClusterInfo

func (NullablePostgresClusterInfo) Get

func (NullablePostgresClusterInfo) IsSet

func (NullablePostgresClusterInfo) MarshalJSON

func (v NullablePostgresClusterInfo) MarshalJSON() ([]byte, error)

func (*NullablePostgresClusterInfo) Set

func (*NullablePostgresClusterInfo) UnmarshalJSON

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

func (*NullablePostgresClusterInfo) Unset

func (v *NullablePostgresClusterInfo) Unset()

type NullablePostgresConfiguration

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

func (NullablePostgresConfiguration) Get

func (NullablePostgresConfiguration) IsSet

func (NullablePostgresConfiguration) MarshalJSON

func (v NullablePostgresConfiguration) MarshalJSON() ([]byte, error)

func (*NullablePostgresConfiguration) Set

func (*NullablePostgresConfiguration) UnmarshalJSON

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

func (*NullablePostgresConfiguration) Unset

func (v *NullablePostgresConfiguration) Unset()

type NullablePostgresConnectionInfo

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

func (NullablePostgresConnectionInfo) Get

func (NullablePostgresConnectionInfo) IsSet

func (NullablePostgresConnectionInfo) MarshalJSON

func (v NullablePostgresConnectionInfo) MarshalJSON() ([]byte, error)

func (*NullablePostgresConnectionInfo) Set

func (*NullablePostgresConnectionInfo) UnmarshalJSON

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

func (*NullablePostgresConnectionInfo) Unset

func (v *NullablePostgresConnectionInfo) Unset()

type NullablePostgresConnectionInfoCredentials

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

func (NullablePostgresConnectionInfoCredentials) Get

func (NullablePostgresConnectionInfoCredentials) IsSet

func (NullablePostgresConnectionInfoCredentials) MarshalJSON

func (*NullablePostgresConnectionInfoCredentials) Set

func (*NullablePostgresConnectionInfoCredentials) UnmarshalJSON

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

func (*NullablePostgresConnectionInfoCredentials) Unset

type NullablePostgresConnectionInfoDatabasesInner

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

func (NullablePostgresConnectionInfoDatabasesInner) Get

func (NullablePostgresConnectionInfoDatabasesInner) IsSet

func (NullablePostgresConnectionInfoDatabasesInner) MarshalJSON

func (*NullablePostgresConnectionInfoDatabasesInner) Set

func (*NullablePostgresConnectionInfoDatabasesInner) UnmarshalJSON

func (*NullablePostgresConnectionInfoDatabasesInner) Unset

type NullablePostgresCredentials

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

func NewNullablePostgresCredentials

func NewNullablePostgresCredentials(val *PostgresCredentials) *NullablePostgresCredentials

func (NullablePostgresCredentials) Get

func (NullablePostgresCredentials) IsSet

func (NullablePostgresCredentials) MarshalJSON

func (v NullablePostgresCredentials) MarshalJSON() ([]byte, error)

func (*NullablePostgresCredentials) Set

func (*NullablePostgresCredentials) UnmarshalJSON

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

func (*NullablePostgresCredentials) Unset

func (v *NullablePostgresCredentials) Unset()

type NullablePostgresDatabase

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

func NewNullablePostgresDatabase

func NewNullablePostgresDatabase(val *PostgresDatabase) *NullablePostgresDatabase

func (NullablePostgresDatabase) Get

func (NullablePostgresDatabase) IsSet

func (v NullablePostgresDatabase) IsSet() bool

func (NullablePostgresDatabase) MarshalJSON

func (v NullablePostgresDatabase) MarshalJSON() ([]byte, error)

func (*NullablePostgresDatabase) Set

func (*NullablePostgresDatabase) UnmarshalJSON

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

func (*NullablePostgresDatabase) Unset

func (v *NullablePostgresDatabase) Unset()

type NullablePostgresEnvConfig

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

func NewNullablePostgresEnvConfig

func NewNullablePostgresEnvConfig(val *PostgresEnvConfig) *NullablePostgresEnvConfig

func (NullablePostgresEnvConfig) Get

func (NullablePostgresEnvConfig) IsSet

func (v NullablePostgresEnvConfig) IsSet() bool

func (NullablePostgresEnvConfig) MarshalJSON

func (v NullablePostgresEnvConfig) MarshalJSON() ([]byte, error)

func (*NullablePostgresEnvConfig) Set

func (*NullablePostgresEnvConfig) UnmarshalJSON

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

func (*NullablePostgresEnvConfig) Unset

func (v *NullablePostgresEnvConfig) Unset()

type NullablePostgresInitialization

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

func (NullablePostgresInitialization) Get

func (NullablePostgresInitialization) IsSet

func (NullablePostgresInitialization) MarshalJSON

func (v NullablePostgresInitialization) MarshalJSON() ([]byte, error)

func (*NullablePostgresInitialization) Set

func (*NullablePostgresInitialization) UnmarshalJSON

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

func (*NullablePostgresInitialization) Unset

func (v *NullablePostgresInitialization) Unset()

type NullablePostgresInitializationImportFromExternal

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

func (NullablePostgresInitializationImportFromExternal) Get

func (NullablePostgresInitializationImportFromExternal) IsSet

func (NullablePostgresInitializationImportFromExternal) MarshalJSON

func (*NullablePostgresInitializationImportFromExternal) Set

func (*NullablePostgresInitializationImportFromExternal) UnmarshalJSON

func (*NullablePostgresInitializationImportFromExternal) Unset

type NullablePostgresInitializationRestoreFromBackup

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

func (NullablePostgresInitializationRestoreFromBackup) Get

func (NullablePostgresInitializationRestoreFromBackup) IsSet

func (NullablePostgresInitializationRestoreFromBackup) MarshalJSON

func (*NullablePostgresInitializationRestoreFromBackup) Set

func (*NullablePostgresInitializationRestoreFromBackup) UnmarshalJSON

func (*NullablePostgresInitializationRestoreFromBackup) Unset

type NullablePostgresInitializationRestoreFromObjectStore

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

func (NullablePostgresInitializationRestoreFromObjectStore) Get

func (NullablePostgresInitializationRestoreFromObjectStore) IsSet

func (NullablePostgresInitializationRestoreFromObjectStore) MarshalJSON

func (*NullablePostgresInitializationRestoreFromObjectStore) Set

func (*NullablePostgresInitializationRestoreFromObjectStore) UnmarshalJSON

func (*NullablePostgresInitializationRestoreFromObjectStore) Unset

type NullablePostgresInstances

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

func NewNullablePostgresInstances

func NewNullablePostgresInstances(val *PostgresInstances) *NullablePostgresInstances

func (NullablePostgresInstances) Get

func (NullablePostgresInstances) IsSet

func (v NullablePostgresInstances) IsSet() bool

func (NullablePostgresInstances) MarshalJSON

func (v NullablePostgresInstances) MarshalJSON() ([]byte, error)

func (*NullablePostgresInstances) Set

func (*NullablePostgresInstances) UnmarshalJSON

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

func (*NullablePostgresInstances) Unset

func (v *NullablePostgresInstances) Unset()

type NullablePostgresInstancesPlacement

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

func (NullablePostgresInstancesPlacement) Get

func (NullablePostgresInstancesPlacement) IsSet

func (NullablePostgresInstancesPlacement) MarshalJSON

func (v NullablePostgresInstancesPlacement) MarshalJSON() ([]byte, error)

func (*NullablePostgresInstancesPlacement) Set

func (*NullablePostgresInstancesPlacement) UnmarshalJSON

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

func (*NullablePostgresInstancesPlacement) Unset

type NullablePostgresInstancesPlacementTolerationsInner

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

func (NullablePostgresInstancesPlacementTolerationsInner) Get

func (NullablePostgresInstancesPlacementTolerationsInner) IsSet

func (NullablePostgresInstancesPlacementTolerationsInner) MarshalJSON

func (*NullablePostgresInstancesPlacementTolerationsInner) Set

func (*NullablePostgresInstancesPlacementTolerationsInner) UnmarshalJSON

func (*NullablePostgresInstancesPlacementTolerationsInner) Unset

type NullablePostgresResources

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

func NewNullablePostgresResources

func NewNullablePostgresResources(val *PostgresResources) *NullablePostgresResources

func (NullablePostgresResources) Get

func (NullablePostgresResources) IsSet

func (v NullablePostgresResources) IsSet() bool

func (NullablePostgresResources) MarshalJSON

func (v NullablePostgresResources) MarshalJSON() ([]byte, error)

func (*NullablePostgresResources) Set

func (*NullablePostgresResources) UnmarshalJSON

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

func (*NullablePostgresResources) Unset

func (v *NullablePostgresResources) Unset()

type NullablePostgresResourcesCpu

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

func NewNullablePostgresResourcesCpu

func NewNullablePostgresResourcesCpu(val *PostgresResourcesCpu) *NullablePostgresResourcesCpu

func (NullablePostgresResourcesCpu) Get

func (NullablePostgresResourcesCpu) IsSet

func (NullablePostgresResourcesCpu) MarshalJSON

func (v NullablePostgresResourcesCpu) MarshalJSON() ([]byte, error)

func (*NullablePostgresResourcesCpu) Set

func (*NullablePostgresResourcesCpu) UnmarshalJSON

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

func (*NullablePostgresResourcesCpu) Unset

func (v *NullablePostgresResourcesCpu) Unset()

type NullablePostgresResourcesMemory

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

func (NullablePostgresResourcesMemory) Get

func (NullablePostgresResourcesMemory) IsSet

func (NullablePostgresResourcesMemory) MarshalJSON

func (v NullablePostgresResourcesMemory) MarshalJSON() ([]byte, error)

func (*NullablePostgresResourcesMemory) Set

func (*NullablePostgresResourcesMemory) UnmarshalJSON

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

func (*NullablePostgresResourcesMemory) Unset

type NullablePostgresStorage

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

func NewNullablePostgresStorage

func NewNullablePostgresStorage(val *PostgresStorage) *NullablePostgresStorage

func (NullablePostgresStorage) Get

func (NullablePostgresStorage) IsSet

func (v NullablePostgresStorage) IsSet() bool

func (NullablePostgresStorage) MarshalJSON

func (v NullablePostgresStorage) MarshalJSON() ([]byte, error)

func (*NullablePostgresStorage) Set

func (*NullablePostgresStorage) UnmarshalJSON

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

func (*NullablePostgresStorage) Unset

func (v *NullablePostgresStorage) Unset()

type NullablePostgresVersion

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

func NewNullablePostgresVersion

func NewNullablePostgresVersion(val *PostgresVersion) *NullablePostgresVersion

func (NullablePostgresVersion) Get

func (NullablePostgresVersion) IsSet

func (v NullablePostgresVersion) IsSet() bool

func (NullablePostgresVersion) MarshalJSON

func (v NullablePostgresVersion) MarshalJSON() ([]byte, error)

func (*NullablePostgresVersion) Set

func (*NullablePostgresVersion) UnmarshalJSON

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

func (*NullablePostgresVersion) Unset

func (v *NullablePostgresVersion) Unset()

type NullablePreviewGitRepository

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

func NewNullablePreviewGitRepository

func NewNullablePreviewGitRepository(val *PreviewGitRepository) *NullablePreviewGitRepository

func (NullablePreviewGitRepository) Get

func (NullablePreviewGitRepository) IsSet

func (NullablePreviewGitRepository) MarshalJSON

func (v NullablePreviewGitRepository) MarshalJSON() ([]byte, error)

func (*NullablePreviewGitRepository) Set

func (*NullablePreviewGitRepository) UnmarshalJSON

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

func (*NullablePreviewGitRepository) Unset

func (v *NullablePreviewGitRepository) Unset()

type NullablePreviewStack

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

func NewNullablePreviewStack

func NewNullablePreviewStack(val *PreviewStack) *NullablePreviewStack

func (NullablePreviewStack) Get

func (NullablePreviewStack) IsSet

func (v NullablePreviewStack) IsSet() bool

func (NullablePreviewStack) MarshalJSON

func (v NullablePreviewStack) MarshalJSON() ([]byte, error)

func (*NullablePreviewStack) Set

func (v *NullablePreviewStack) Set(val *PreviewStack)

func (*NullablePreviewStack) UnmarshalJSON

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

func (*NullablePreviewStack) Unset

func (v *NullablePreviewStack) Unset()

type NullablePreviewStackCreate

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

func NewNullablePreviewStackCreate

func NewNullablePreviewStackCreate(val *PreviewStackCreate) *NullablePreviewStackCreate

func (NullablePreviewStackCreate) Get

func (NullablePreviewStackCreate) IsSet

func (v NullablePreviewStackCreate) IsSet() bool

func (NullablePreviewStackCreate) MarshalJSON

func (v NullablePreviewStackCreate) MarshalJSON() ([]byte, error)

func (*NullablePreviewStackCreate) Set

func (*NullablePreviewStackCreate) UnmarshalJSON

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

func (*NullablePreviewStackCreate) Unset

func (v *NullablePreviewStackCreate) Unset()

type NullablePreviewStackList

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

func NewNullablePreviewStackList

func NewNullablePreviewStackList(val *PreviewStackList) *NullablePreviewStackList

func (NullablePreviewStackList) Get

func (NullablePreviewStackList) IsSet

func (v NullablePreviewStackList) IsSet() bool

func (NullablePreviewStackList) MarshalJSON

func (v NullablePreviewStackList) MarshalJSON() ([]byte, error)

func (*NullablePreviewStackList) Set

func (*NullablePreviewStackList) UnmarshalJSON

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

func (*NullablePreviewStackList) Unset

func (v *NullablePreviewStackList) Unset()

type NullablePreviewStackStatus

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

func NewNullablePreviewStackStatus

func NewNullablePreviewStackStatus(val *PreviewStackStatus) *NullablePreviewStackStatus

func (NullablePreviewStackStatus) Get

func (NullablePreviewStackStatus) IsSet

func (v NullablePreviewStackStatus) IsSet() bool

func (NullablePreviewStackStatus) MarshalJSON

func (v NullablePreviewStackStatus) MarshalJSON() ([]byte, error)

func (*NullablePreviewStackStatus) Set

func (*NullablePreviewStackStatus) UnmarshalJSON

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

func (*NullablePreviewStackStatus) Unset

func (v *NullablePreviewStackStatus) Unset()

type NullablePreviewStackStatusOutputs

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

func (NullablePreviewStackStatusOutputs) Get

func (NullablePreviewStackStatusOutputs) IsSet

func (NullablePreviewStackStatusOutputs) MarshalJSON

func (v NullablePreviewStackStatusOutputs) MarshalJSON() ([]byte, error)

func (*NullablePreviewStackStatusOutputs) Set

func (*NullablePreviewStackStatusOutputs) UnmarshalJSON

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

func (*NullablePreviewStackStatusOutputs) Unset

type NullablePreviewStackStatusOutputsUrlsInner

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

func (NullablePreviewStackStatusOutputsUrlsInner) Get

func (NullablePreviewStackStatusOutputsUrlsInner) IsSet

func (NullablePreviewStackStatusOutputsUrlsInner) MarshalJSON

func (*NullablePreviewStackStatusOutputsUrlsInner) Set

func (*NullablePreviewStackStatusOutputsUrlsInner) UnmarshalJSON

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

func (*NullablePreviewStackStatusOutputsUrlsInner) Unset

type NullablePreviewStackSync

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

func NewNullablePreviewStackSync

func NewNullablePreviewStackSync(val *PreviewStackSync) *NullablePreviewStackSync

func (NullablePreviewStackSync) Get

func (NullablePreviewStackSync) IsSet

func (v NullablePreviewStackSync) IsSet() bool

func (NullablePreviewStackSync) MarshalJSON

func (v NullablePreviewStackSync) MarshalJSON() ([]byte, error)

func (*NullablePreviewStackSync) Set

func (*NullablePreviewStackSync) UnmarshalJSON

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

func (*NullablePreviewStackSync) Unset

func (v *NullablePreviewStackSync) Unset()

type NullableProject

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

func NewNullableProject

func NewNullableProject(val *Project) *NullableProject

func (NullableProject) Get

func (v NullableProject) Get() *Project

func (NullableProject) IsSet

func (v NullableProject) IsSet() bool

func (NullableProject) MarshalJSON

func (v NullableProject) MarshalJSON() ([]byte, error)

func (*NullableProject) Set

func (v *NullableProject) Set(val *Project)

func (*NullableProject) UnmarshalJSON

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

func (*NullableProject) Unset

func (v *NullableProject) Unset()

type NullableProjectCreateRequest

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

func NewNullableProjectCreateRequest

func NewNullableProjectCreateRequest(val *ProjectCreateRequest) *NullableProjectCreateRequest

func (NullableProjectCreateRequest) Get

func (NullableProjectCreateRequest) IsSet

func (NullableProjectCreateRequest) MarshalJSON

func (v NullableProjectCreateRequest) MarshalJSON() ([]byte, error)

func (*NullableProjectCreateRequest) Set

func (*NullableProjectCreateRequest) UnmarshalJSON

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

func (*NullableProjectCreateRequest) Unset

func (v *NullableProjectCreateRequest) Unset()

type NullableProjectList

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

func NewNullableProjectList

func NewNullableProjectList(val *ProjectList) *NullableProjectList

func (NullableProjectList) Get

func (NullableProjectList) IsSet

func (v NullableProjectList) IsSet() bool

func (NullableProjectList) MarshalJSON

func (v NullableProjectList) MarshalJSON() ([]byte, error)

func (*NullableProjectList) Set

func (v *NullableProjectList) Set(val *ProjectList)

func (*NullableProjectList) UnmarshalJSON

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

func (*NullableProjectList) Unset

func (v *NullableProjectList) Unset()

type NullableProjectMembership

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

func NewNullableProjectMembership

func NewNullableProjectMembership(val *ProjectMembership) *NullableProjectMembership

func (NullableProjectMembership) Get

func (NullableProjectMembership) IsSet

func (v NullableProjectMembership) IsSet() bool

func (NullableProjectMembership) MarshalJSON

func (v NullableProjectMembership) MarshalJSON() ([]byte, error)

func (*NullableProjectMembership) Set

func (*NullableProjectMembership) UnmarshalJSON

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

func (*NullableProjectMembership) Unset

func (v *NullableProjectMembership) Unset()

type NullableProjectMembershipList

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

func (NullableProjectMembershipList) Get

func (NullableProjectMembershipList) IsSet

func (NullableProjectMembershipList) MarshalJSON

func (v NullableProjectMembershipList) MarshalJSON() ([]byte, error)

func (*NullableProjectMembershipList) Set

func (*NullableProjectMembershipList) UnmarshalJSON

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

func (*NullableProjectMembershipList) Unset

func (v *NullableProjectMembershipList) Unset()

type NullableProjectRole

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

func NewNullableProjectRole

func NewNullableProjectRole(val *ProjectRole) *NullableProjectRole

func (NullableProjectRole) Get

func (NullableProjectRole) IsSet

func (v NullableProjectRole) IsSet() bool

func (NullableProjectRole) MarshalJSON

func (v NullableProjectRole) MarshalJSON() ([]byte, error)

func (*NullableProjectRole) Set

func (v *NullableProjectRole) Set(val *ProjectRole)

func (*NullableProjectRole) UnmarshalJSON

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

func (*NullableProjectRole) Unset

func (v *NullableProjectRole) Unset()

type NullableProjectRoleList

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

func NewNullableProjectRoleList

func NewNullableProjectRoleList(val *ProjectRoleList) *NullableProjectRoleList

func (NullableProjectRoleList) Get

func (NullableProjectRoleList) IsSet

func (v NullableProjectRoleList) IsSet() bool

func (NullableProjectRoleList) MarshalJSON

func (v NullableProjectRoleList) MarshalJSON() ([]byte, error)

func (*NullableProjectRoleList) Set

func (*NullableProjectRoleList) UnmarshalJSON

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

func (*NullableProjectRoleList) Unset

func (v *NullableProjectRoleList) Unset()

type NullableProjectUpdateRequest

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

func NewNullableProjectUpdateRequest

func NewNullableProjectUpdateRequest(val *ProjectUpdateRequest) *NullableProjectUpdateRequest

func (NullableProjectUpdateRequest) Get

func (NullableProjectUpdateRequest) IsSet

func (NullableProjectUpdateRequest) MarshalJSON

func (v NullableProjectUpdateRequest) MarshalJSON() ([]byte, error)

func (*NullableProjectUpdateRequest) Set

func (*NullableProjectUpdateRequest) UnmarshalJSON

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

func (*NullableProjectUpdateRequest) Unset

func (v *NullableProjectUpdateRequest) Unset()

type NullablePromoteAdminRequest

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

func NewNullablePromoteAdminRequest

func NewNullablePromoteAdminRequest(val *PromoteAdminRequest) *NullablePromoteAdminRequest

func (NullablePromoteAdminRequest) Get

func (NullablePromoteAdminRequest) IsSet

func (NullablePromoteAdminRequest) MarshalJSON

func (v NullablePromoteAdminRequest) MarshalJSON() ([]byte, error)

func (*NullablePromoteAdminRequest) Set

func (*NullablePromoteAdminRequest) UnmarshalJSON

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

func (*NullablePromoteAdminRequest) Unset

func (v *NullablePromoteAdminRequest) Unset()

type NullablePushTarget

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

func NewNullablePushTarget

func NewNullablePushTarget(val *PushTarget) *NullablePushTarget

func (NullablePushTarget) Get

func (v NullablePushTarget) Get() *PushTarget

func (NullablePushTarget) IsSet

func (v NullablePushTarget) IsSet() bool

func (NullablePushTarget) MarshalJSON

func (v NullablePushTarget) MarshalJSON() ([]byte, error)

func (*NullablePushTarget) Set

func (v *NullablePushTarget) Set(val *PushTarget)

func (*NullablePushTarget) UnmarshalJSON

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

func (*NullablePushTarget) Unset

func (v *NullablePushTarget) Unset()

type NullableRefreshTokenRequest

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

func NewNullableRefreshTokenRequest

func NewNullableRefreshTokenRequest(val *RefreshTokenRequest) *NullableRefreshTokenRequest

func (NullableRefreshTokenRequest) Get

func (NullableRefreshTokenRequest) IsSet

func (NullableRefreshTokenRequest) MarshalJSON

func (v NullableRefreshTokenRequest) MarshalJSON() ([]byte, error)

func (*NullableRefreshTokenRequest) Set

func (*NullableRefreshTokenRequest) UnmarshalJSON

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

func (*NullableRefreshTokenRequest) Unset

func (v *NullableRefreshTokenRequest) Unset()

type NullableRefreshTokenResponse

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

func NewNullableRefreshTokenResponse

func NewNullableRefreshTokenResponse(val *RefreshTokenResponse) *NullableRefreshTokenResponse

func (NullableRefreshTokenResponse) Get

func (NullableRefreshTokenResponse) IsSet

func (NullableRefreshTokenResponse) MarshalJSON

func (v NullableRefreshTokenResponse) MarshalJSON() ([]byte, error)

func (*NullableRefreshTokenResponse) Set

func (*NullableRefreshTokenResponse) UnmarshalJSON

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

func (*NullableRefreshTokenResponse) Unset

func (v *NullableRefreshTokenResponse) Unset()

type NullableRegistryCredential

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

func NewNullableRegistryCredential

func NewNullableRegistryCredential(val *RegistryCredential) *NullableRegistryCredential

func (NullableRegistryCredential) Get

func (NullableRegistryCredential) IsSet

func (v NullableRegistryCredential) IsSet() bool

func (NullableRegistryCredential) MarshalJSON

func (v NullableRegistryCredential) MarshalJSON() ([]byte, error)

func (*NullableRegistryCredential) Set

func (*NullableRegistryCredential) UnmarshalJSON

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

func (*NullableRegistryCredential) Unset

func (v *NullableRegistryCredential) Unset()

type NullableRegistryCredentialDeleteResponse

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

func (NullableRegistryCredentialDeleteResponse) Get

func (NullableRegistryCredentialDeleteResponse) IsSet

func (NullableRegistryCredentialDeleteResponse) MarshalJSON

func (*NullableRegistryCredentialDeleteResponse) Set

func (*NullableRegistryCredentialDeleteResponse) UnmarshalJSON

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

func (*NullableRegistryCredentialDeleteResponse) Unset

type NullableRegistryCredentialList

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

func (NullableRegistryCredentialList) Get

func (NullableRegistryCredentialList) IsSet

func (NullableRegistryCredentialList) MarshalJSON

func (v NullableRegistryCredentialList) MarshalJSON() ([]byte, error)

func (*NullableRegistryCredentialList) Set

func (*NullableRegistryCredentialList) UnmarshalJSON

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

func (*NullableRegistryCredentialList) Unset

func (v *NullableRegistryCredentialList) Unset()

type NullableRegistryCredentialPurpose

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

func (NullableRegistryCredentialPurpose) Get

func (NullableRegistryCredentialPurpose) IsSet

func (NullableRegistryCredentialPurpose) MarshalJSON

func (v NullableRegistryCredentialPurpose) MarshalJSON() ([]byte, error)

func (*NullableRegistryCredentialPurpose) Set

func (*NullableRegistryCredentialPurpose) UnmarshalJSON

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

func (*NullableRegistryCredentialPurpose) Unset

type NullableRegistryCredentialVerifyRequest

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

func (NullableRegistryCredentialVerifyRequest) Get

func (NullableRegistryCredentialVerifyRequest) IsSet

func (NullableRegistryCredentialVerifyRequest) MarshalJSON

func (v NullableRegistryCredentialVerifyRequest) MarshalJSON() ([]byte, error)

func (*NullableRegistryCredentialVerifyRequest) Set

func (*NullableRegistryCredentialVerifyRequest) UnmarshalJSON

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

func (*NullableRegistryCredentialVerifyRequest) Unset

type NullableReleaseCause

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

func NewNullableReleaseCause

func NewNullableReleaseCause(val *ReleaseCause) *NullableReleaseCause

func (NullableReleaseCause) Get

func (NullableReleaseCause) IsSet

func (v NullableReleaseCause) IsSet() bool

func (NullableReleaseCause) MarshalJSON

func (v NullableReleaseCause) MarshalJSON() ([]byte, error)

func (*NullableReleaseCause) Set

func (v *NullableReleaseCause) Set(val *ReleaseCause)

func (*NullableReleaseCause) UnmarshalJSON

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

func (*NullableReleaseCause) Unset

func (v *NullableReleaseCause) Unset()

type NullableReleaseCauseKind

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

func NewNullableReleaseCauseKind

func NewNullableReleaseCauseKind(val *ReleaseCauseKind) *NullableReleaseCauseKind

func (NullableReleaseCauseKind) Get

func (NullableReleaseCauseKind) IsSet

func (v NullableReleaseCauseKind) IsSet() bool

func (NullableReleaseCauseKind) MarshalJSON

func (v NullableReleaseCauseKind) MarshalJSON() ([]byte, error)

func (*NullableReleaseCauseKind) Set

func (*NullableReleaseCauseKind) UnmarshalJSON

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

func (*NullableReleaseCauseKind) Unset

func (v *NullableReleaseCauseKind) Unset()

type NullableReleaseEvent

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

func NewNullableReleaseEvent

func NewNullableReleaseEvent(val *ReleaseEvent) *NullableReleaseEvent

func (NullableReleaseEvent) Get

func (NullableReleaseEvent) IsSet

func (v NullableReleaseEvent) IsSet() bool

func (NullableReleaseEvent) MarshalJSON

func (v NullableReleaseEvent) MarshalJSON() ([]byte, error)

func (*NullableReleaseEvent) Set

func (v *NullableReleaseEvent) Set(val *ReleaseEvent)

func (*NullableReleaseEvent) UnmarshalJSON

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

func (*NullableReleaseEvent) Unset

func (v *NullableReleaseEvent) Unset()
type NullableReleaseEventLink struct {
	// contains filtered or unexported fields
}
func NewNullableReleaseEventLink(val *ReleaseEventLink) *NullableReleaseEventLink

func (NullableReleaseEventLink) Get

func (NullableReleaseEventLink) IsSet

func (v NullableReleaseEventLink) IsSet() bool

func (NullableReleaseEventLink) MarshalJSON

func (v NullableReleaseEventLink) MarshalJSON() ([]byte, error)

func (*NullableReleaseEventLink) Set

func (*NullableReleaseEventLink) UnmarshalJSON

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

func (*NullableReleaseEventLink) Unset

func (v *NullableReleaseEventLink) Unset()

type NullableReleaseEventList

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

func NewNullableReleaseEventList

func NewNullableReleaseEventList(val *ReleaseEventList) *NullableReleaseEventList

func (NullableReleaseEventList) Get

func (NullableReleaseEventList) IsSet

func (v NullableReleaseEventList) IsSet() bool

func (NullableReleaseEventList) MarshalJSON

func (v NullableReleaseEventList) MarshalJSON() ([]byte, error)

func (*NullableReleaseEventList) Set

func (*NullableReleaseEventList) UnmarshalJSON

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

func (*NullableReleaseEventList) Unset

func (v *NullableReleaseEventList) Unset()

type NullableReleaseHealth

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

func NewNullableReleaseHealth

func NewNullableReleaseHealth(val *ReleaseHealth) *NullableReleaseHealth

func (NullableReleaseHealth) Get

func (NullableReleaseHealth) IsSet

func (v NullableReleaseHealth) IsSet() bool

func (NullableReleaseHealth) MarshalJSON

func (v NullableReleaseHealth) MarshalJSON() ([]byte, error)

func (*NullableReleaseHealth) Set

func (v *NullableReleaseHealth) Set(val *ReleaseHealth)

func (*NullableReleaseHealth) UnmarshalJSON

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

func (*NullableReleaseHealth) Unset

func (v *NullableReleaseHealth) Unset()

type NullableReleaseLiveStatus

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

func NewNullableReleaseLiveStatus

func NewNullableReleaseLiveStatus(val *ReleaseLiveStatus) *NullableReleaseLiveStatus

func (NullableReleaseLiveStatus) Get

func (NullableReleaseLiveStatus) IsSet

func (v NullableReleaseLiveStatus) IsSet() bool

func (NullableReleaseLiveStatus) MarshalJSON

func (v NullableReleaseLiveStatus) MarshalJSON() ([]byte, error)

func (*NullableReleaseLiveStatus) Set

func (*NullableReleaseLiveStatus) UnmarshalJSON

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

func (*NullableReleaseLiveStatus) Unset

func (v *NullableReleaseLiveStatus) Unset()

type NullableReleaseOutcome

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

func NewNullableReleaseOutcome

func NewNullableReleaseOutcome(val *ReleaseOutcome) *NullableReleaseOutcome

func (NullableReleaseOutcome) Get

func (NullableReleaseOutcome) IsSet

func (v NullableReleaseOutcome) IsSet() bool

func (NullableReleaseOutcome) MarshalJSON

func (v NullableReleaseOutcome) MarshalJSON() ([]byte, error)

func (*NullableReleaseOutcome) Set

func (*NullableReleaseOutcome) UnmarshalJSON

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

func (*NullableReleaseOutcome) Unset

func (v *NullableReleaseOutcome) Unset()

type NullableReleasePins

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

func NewNullableReleasePins

func NewNullableReleasePins(val *ReleasePins) *NullableReleasePins

func (NullableReleasePins) Get

func (NullableReleasePins) IsSet

func (v NullableReleasePins) IsSet() bool

func (NullableReleasePins) MarshalJSON

func (v NullableReleasePins) MarshalJSON() ([]byte, error)

func (*NullableReleasePins) Set

func (v *NullableReleasePins) Set(val *ReleasePins)

func (*NullableReleasePins) UnmarshalJSON

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

func (*NullableReleasePins) Unset

func (v *NullableReleasePins) Unset()

type NullableReleaseSummary

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

func NewNullableReleaseSummary

func NewNullableReleaseSummary(val *ReleaseSummary) *NullableReleaseSummary

func (NullableReleaseSummary) Get

func (NullableReleaseSummary) IsSet

func (v NullableReleaseSummary) IsSet() bool

func (NullableReleaseSummary) MarshalJSON

func (v NullableReleaseSummary) MarshalJSON() ([]byte, error)

func (*NullableReleaseSummary) Set

func (*NullableReleaseSummary) UnmarshalJSON

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

func (*NullableReleaseSummary) Unset

func (v *NullableReleaseSummary) Unset()

type NullableReleaseValidationError

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

func (NullableReleaseValidationError) Get

func (NullableReleaseValidationError) IsSet

func (NullableReleaseValidationError) MarshalJSON

func (v NullableReleaseValidationError) MarshalJSON() ([]byte, error)

func (*NullableReleaseValidationError) Set

func (*NullableReleaseValidationError) UnmarshalJSON

func (v *NullableReleaseValidationError) UnmarshalJSON(src []byte) error

func (*NullableReleaseValidationError) Unset

func (v *NullableReleaseValidationError) Unset()

type NullableRemoteSource

type NullableRemoteSource struct {
	// contains filtered or unexported fields
}

func NewNullableRemoteSource

func NewNullableRemoteSource(val *RemoteSource) *NullableRemoteSource

func (NullableRemoteSource) Get

func (NullableRemoteSource) IsSet

func (v NullableRemoteSource) IsSet() bool

func (NullableRemoteSource) MarshalJSON

func (v NullableRemoteSource) MarshalJSON() ([]byte, error)

func (*NullableRemoteSource) Set

func (v *NullableRemoteSource) Set(val *RemoteSource)

func (*NullableRemoteSource) UnmarshalJSON

func (v *NullableRemoteSource) UnmarshalJSON(src []byte) error

func (*NullableRemoteSource) Unset

func (v *NullableRemoteSource) Unset()

type NullableResourceMetrics

type NullableResourceMetrics struct {
	// contains filtered or unexported fields
}

func NewNullableResourceMetrics

func NewNullableResourceMetrics(val *ResourceMetrics) *NullableResourceMetrics

func (NullableResourceMetrics) Get

func (NullableResourceMetrics) IsSet

func (v NullableResourceMetrics) IsSet() bool

func (NullableResourceMetrics) MarshalJSON

func (v NullableResourceMetrics) MarshalJSON() ([]byte, error)

func (*NullableResourceMetrics) Set

func (*NullableResourceMetrics) UnmarshalJSON

func (v *NullableResourceMetrics) UnmarshalJSON(src []byte) error

func (*NullableResourceMetrics) Unset

func (v *NullableResourceMetrics) Unset()

type NullableResourceMetricsNodeCapacitiesInner

type NullableResourceMetricsNodeCapacitiesInner struct {
	// contains filtered or unexported fields
}

func (NullableResourceMetricsNodeCapacitiesInner) Get

func (NullableResourceMetricsNodeCapacitiesInner) IsSet

func (NullableResourceMetricsNodeCapacitiesInner) MarshalJSON

func (*NullableResourceMetricsNodeCapacitiesInner) Set

func (*NullableResourceMetricsNodeCapacitiesInner) UnmarshalJSON

func (v *NullableResourceMetricsNodeCapacitiesInner) UnmarshalJSON(src []byte) error

func (*NullableResourceMetricsNodeCapacitiesInner) Unset

type NullableResourceOutcome

type NullableResourceOutcome struct {
	// contains filtered or unexported fields
}

func NewNullableResourceOutcome

func NewNullableResourceOutcome(val *ResourceOutcome) *NullableResourceOutcome

func (NullableResourceOutcome) Get

func (NullableResourceOutcome) IsSet

func (v NullableResourceOutcome) IsSet() bool

func (NullableResourceOutcome) MarshalJSON

func (v NullableResourceOutcome) MarshalJSON() ([]byte, error)

func (*NullableResourceOutcome) Set

func (*NullableResourceOutcome) UnmarshalJSON

func (v *NullableResourceOutcome) UnmarshalJSON(src []byte) error

func (*NullableResourceOutcome) Unset

func (v *NullableResourceOutcome) Unset()

type NullableResourcePins

type NullableResourcePins struct {
	// contains filtered or unexported fields
}

func NewNullableResourcePins

func NewNullableResourcePins(val *ResourcePins) *NullableResourcePins

func (NullableResourcePins) Get

func (NullableResourcePins) IsSet

func (v NullableResourcePins) IsSet() bool

func (NullableResourcePins) MarshalJSON

func (v NullableResourcePins) MarshalJSON() ([]byte, error)

func (*NullableResourcePins) Set

func (v *NullableResourcePins) Set(val *ResourcePins)

func (*NullableResourcePins) UnmarshalJSON

func (v *NullableResourcePins) UnmarshalJSON(src []byte) error

func (*NullableResourcePins) Unset

func (v *NullableResourcePins) Unset()

type NullableS3Credentials

type NullableS3Credentials struct {
	// contains filtered or unexported fields
}

func NewNullableS3Credentials

func NewNullableS3Credentials(val *S3Credentials) *NullableS3Credentials

func (NullableS3Credentials) Get

func (NullableS3Credentials) IsSet

func (v NullableS3Credentials) IsSet() bool

func (NullableS3Credentials) MarshalJSON

func (v NullableS3Credentials) MarshalJSON() ([]byte, error)

func (*NullableS3Credentials) Set

func (v *NullableS3Credentials) Set(val *S3Credentials)

func (*NullableS3Credentials) UnmarshalJSON

func (v *NullableS3Credentials) UnmarshalJSON(src []byte) error

func (*NullableS3Credentials) Unset

func (v *NullableS3Credentials) Unset()

type NullableSSHConfig

type NullableSSHConfig struct {
	// contains filtered or unexported fields
}

func NewNullableSSHConfig

func NewNullableSSHConfig(val *SSHConfig) *NullableSSHConfig

func (NullableSSHConfig) Get

func (v NullableSSHConfig) Get() *SSHConfig

func (NullableSSHConfig) IsSet

func (v NullableSSHConfig) IsSet() bool

func (NullableSSHConfig) MarshalJSON

func (v NullableSSHConfig) MarshalJSON() ([]byte, error)

func (*NullableSSHConfig) Set

func (v *NullableSSHConfig) Set(val *SSHConfig)

func (*NullableSSHConfig) UnmarshalJSON

func (v *NullableSSHConfig) UnmarshalJSON(src []byte) error

func (*NullableSSHConfig) Unset

func (v *NullableSSHConfig) Unset()

type NullableScopeList

type NullableScopeList struct {
	// contains filtered or unexported fields
}

func NewNullableScopeList

func NewNullableScopeList(val *ScopeList) *NullableScopeList

func (NullableScopeList) Get

func (v NullableScopeList) Get() *ScopeList

func (NullableScopeList) IsSet

func (v NullableScopeList) IsSet() bool

func (NullableScopeList) MarshalJSON

func (v NullableScopeList) MarshalJSON() ([]byte, error)

func (*NullableScopeList) Set

func (v *NullableScopeList) Set(val *ScopeList)

func (*NullableScopeList) UnmarshalJSON

func (v *NullableScopeList) UnmarshalJSON(src []byte) error

func (*NullableScopeList) Unset

func (v *NullableScopeList) Unset()

type NullableScopeResource

type NullableScopeResource struct {
	// contains filtered or unexported fields
}

func NewNullableScopeResource

func NewNullableScopeResource(val *ScopeResource) *NullableScopeResource

func (NullableScopeResource) Get

func (NullableScopeResource) IsSet

func (v NullableScopeResource) IsSet() bool

func (NullableScopeResource) MarshalJSON

func (v NullableScopeResource) MarshalJSON() ([]byte, error)

func (*NullableScopeResource) Set

func (v *NullableScopeResource) Set(val *ScopeResource)

func (*NullableScopeResource) UnmarshalJSON

func (v *NullableScopeResource) UnmarshalJSON(src []byte) error

func (*NullableScopeResource) Unset

func (v *NullableScopeResource) 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 NullableSecretData

type NullableSecretData struct {
	// contains filtered or unexported fields
}

func NewNullableSecretData

func NewNullableSecretData(val *SecretData) *NullableSecretData

func (NullableSecretData) Get

func (v NullableSecretData) Get() *SecretData

func (NullableSecretData) IsSet

func (v NullableSecretData) IsSet() bool

func (NullableSecretData) MarshalJSON

func (v NullableSecretData) MarshalJSON() ([]byte, error)

func (*NullableSecretData) Set

func (v *NullableSecretData) Set(val *SecretData)

func (*NullableSecretData) UnmarshalJSON

func (v *NullableSecretData) UnmarshalJSON(src []byte) error

func (*NullableSecretData) Unset

func (v *NullableSecretData) Unset()

type NullableSecretList

type NullableSecretList struct {
	// contains filtered or unexported fields
}

func NewNullableSecretList

func NewNullableSecretList(val *SecretList) *NullableSecretList

func (NullableSecretList) Get

func (v NullableSecretList) Get() *SecretList

func (NullableSecretList) IsSet

func (v NullableSecretList) IsSet() bool

func (NullableSecretList) MarshalJSON

func (v NullableSecretList) MarshalJSON() ([]byte, error)

func (*NullableSecretList) Set

func (v *NullableSecretList) Set(val *SecretList)

func (*NullableSecretList) UnmarshalJSON

func (v *NullableSecretList) UnmarshalJSON(src []byte) error

func (*NullableSecretList) Unset

func (v *NullableSecretList) Unset()

type NullableSecretReference

type NullableSecretReference struct {
	// contains filtered or unexported fields
}

func NewNullableSecretReference

func NewNullableSecretReference(val *SecretReference) *NullableSecretReference

func (NullableSecretReference) Get

func (NullableSecretReference) IsSet

func (v NullableSecretReference) IsSet() bool

func (NullableSecretReference) MarshalJSON

func (v NullableSecretReference) MarshalJSON() ([]byte, error)

func (*NullableSecretReference) Set

func (*NullableSecretReference) UnmarshalJSON

func (v *NullableSecretReference) UnmarshalJSON(src []byte) error

func (*NullableSecretReference) Unset

func (v *NullableSecretReference) 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 NullableSignupConfigResponse

type NullableSignupConfigResponse struct {
	// contains filtered or unexported fields
}

func NewNullableSignupConfigResponse

func NewNullableSignupConfigResponse(val *SignupConfigResponse) *NullableSignupConfigResponse

func (NullableSignupConfigResponse) Get

func (NullableSignupConfigResponse) IsSet

func (NullableSignupConfigResponse) MarshalJSON

func (v NullableSignupConfigResponse) MarshalJSON() ([]byte, error)

func (*NullableSignupConfigResponse) Set

func (*NullableSignupConfigResponse) UnmarshalJSON

func (v *NullableSignupConfigResponse) UnmarshalJSON(src []byte) error

func (*NullableSignupConfigResponse) Unset

func (v *NullableSignupConfigResponse) Unset()

type NullableSourceSpec

type NullableSourceSpec struct {
	// contains filtered or unexported fields
}

func NewNullableSourceSpec

func NewNullableSourceSpec(val *SourceSpec) *NullableSourceSpec

func (NullableSourceSpec) Get

func (v NullableSourceSpec) Get() *SourceSpec

func (NullableSourceSpec) IsSet

func (v NullableSourceSpec) IsSet() bool

func (NullableSourceSpec) MarshalJSON

func (v NullableSourceSpec) MarshalJSON() ([]byte, error)

func (*NullableSourceSpec) Set

func (v *NullableSourceSpec) Set(val *SourceSpec)

func (*NullableSourceSpec) UnmarshalJSON

func (v *NullableSourceSpec) UnmarshalJSON(src []byte) error

func (*NullableSourceSpec) Unset

func (v *NullableSourceSpec) Unset()

type NullableStack

type NullableStack struct {
	// contains filtered or unexported fields
}

func NewNullableStack

func NewNullableStack(val *Stack) *NullableStack

func (NullableStack) Get

func (v NullableStack) Get() *Stack

func (NullableStack) IsSet

func (v NullableStack) IsSet() bool

func (NullableStack) MarshalJSON

func (v NullableStack) MarshalJSON() ([]byte, error)

func (*NullableStack) Set

func (v *NullableStack) Set(val *Stack)

func (*NullableStack) UnmarshalJSON

func (v *NullableStack) UnmarshalJSON(src []byte) error

func (*NullableStack) Unset

func (v *NullableStack) Unset()

type NullableStackConnection

type NullableStackConnection struct {
	// contains filtered or unexported fields
}

func NewNullableStackConnection

func NewNullableStackConnection(val *StackConnection) *NullableStackConnection

func (NullableStackConnection) Get

func (NullableStackConnection) IsSet

func (v NullableStackConnection) IsSet() bool

func (NullableStackConnection) MarshalJSON

func (v NullableStackConnection) MarshalJSON() ([]byte, error)

func (*NullableStackConnection) Set

func (*NullableStackConnection) UnmarshalJSON

func (v *NullableStackConnection) UnmarshalJSON(src []byte) error

func (*NullableStackConnection) Unset

func (v *NullableStackConnection) Unset()

type NullableStackConnectionConfig

type NullableStackConnectionConfig struct {
	// contains filtered or unexported fields
}

func (NullableStackConnectionConfig) Get

func (NullableStackConnectionConfig) IsSet

func (NullableStackConnectionConfig) MarshalJSON

func (v NullableStackConnectionConfig) MarshalJSON() ([]byte, error)

func (*NullableStackConnectionConfig) Set

func (*NullableStackConnectionConfig) UnmarshalJSON

func (v *NullableStackConnectionConfig) UnmarshalJSON(src []byte) error

func (*NullableStackConnectionConfig) Unset

func (v *NullableStackConnectionConfig) Unset()

type NullableStackConnectionList

type NullableStackConnectionList struct {
	// contains filtered or unexported fields
}

func NewNullableStackConnectionList

func NewNullableStackConnectionList(val *StackConnectionList) *NullableStackConnectionList

func (NullableStackConnectionList) Get

func (NullableStackConnectionList) IsSet

func (NullableStackConnectionList) MarshalJSON

func (v NullableStackConnectionList) MarshalJSON() ([]byte, error)

func (*NullableStackConnectionList) Set

func (*NullableStackConnectionList) UnmarshalJSON

func (v *NullableStackConnectionList) UnmarshalJSON(src []byte) error

func (*NullableStackConnectionList) Unset

func (v *NullableStackConnectionList) Unset()

type NullableStackLifecycle

type NullableStackLifecycle struct {
	// contains filtered or unexported fields
}

func NewNullableStackLifecycle

func NewNullableStackLifecycle(val *StackLifecycle) *NullableStackLifecycle

func (NullableStackLifecycle) Get

func (NullableStackLifecycle) IsSet

func (v NullableStackLifecycle) IsSet() bool

func (NullableStackLifecycle) MarshalJSON

func (v NullableStackLifecycle) MarshalJSON() ([]byte, error)

func (*NullableStackLifecycle) Set

func (*NullableStackLifecycle) UnmarshalJSON

func (v *NullableStackLifecycle) UnmarshalJSON(src []byte) error

func (*NullableStackLifecycle) Unset

func (v *NullableStackLifecycle) Unset()

type NullableStackList

type NullableStackList struct {
	// contains filtered or unexported fields
}

func NewNullableStackList

func NewNullableStackList(val *StackList) *NullableStackList

func (NullableStackList) Get

func (v NullableStackList) Get() *StackList

func (NullableStackList) IsSet

func (v NullableStackList) IsSet() bool

func (NullableStackList) MarshalJSON

func (v NullableStackList) MarshalJSON() ([]byte, error)

func (*NullableStackList) Set

func (v *NullableStackList) Set(val *StackList)

func (*NullableStackList) UnmarshalJSON

func (v *NullableStackList) UnmarshalJSON(src []byte) error

func (*NullableStackList) Unset

func (v *NullableStackList) Unset()

type NullableStackPreviewConfig

type NullableStackPreviewConfig struct {
	// contains filtered or unexported fields
}

func NewNullableStackPreviewConfig

func NewNullableStackPreviewConfig(val *StackPreviewConfig) *NullableStackPreviewConfig

func (NullableStackPreviewConfig) Get

func (NullableStackPreviewConfig) IsSet

func (v NullableStackPreviewConfig) IsSet() bool

func (NullableStackPreviewConfig) MarshalJSON

func (v NullableStackPreviewConfig) MarshalJSON() ([]byte, error)

func (*NullableStackPreviewConfig) Set

func (*NullableStackPreviewConfig) UnmarshalJSON

func (v *NullableStackPreviewConfig) UnmarshalJSON(src []byte) error

func (*NullableStackPreviewConfig) Unset

func (v *NullableStackPreviewConfig) Unset()

type NullableStackPreviewConfigCreate

type NullableStackPreviewConfigCreate struct {
	// contains filtered or unexported fields
}

func (NullableStackPreviewConfigCreate) Get

func (NullableStackPreviewConfigCreate) IsSet

func (NullableStackPreviewConfigCreate) MarshalJSON

func (v NullableStackPreviewConfigCreate) MarshalJSON() ([]byte, error)

func (*NullableStackPreviewConfigCreate) Set

func (*NullableStackPreviewConfigCreate) UnmarshalJSON

func (v *NullableStackPreviewConfigCreate) UnmarshalJSON(src []byte) error

func (*NullableStackPreviewConfigCreate) Unset

type NullableStackPreviewConfigList

type NullableStackPreviewConfigList struct {
	// contains filtered or unexported fields
}

func (NullableStackPreviewConfigList) Get

func (NullableStackPreviewConfigList) IsSet

func (NullableStackPreviewConfigList) MarshalJSON

func (v NullableStackPreviewConfigList) MarshalJSON() ([]byte, error)

func (*NullableStackPreviewConfigList) Set

func (*NullableStackPreviewConfigList) UnmarshalJSON

func (v *NullableStackPreviewConfigList) UnmarshalJSON(src []byte) error

func (*NullableStackPreviewConfigList) Unset

func (v *NullableStackPreviewConfigList) Unset()

type NullableStackPreviewConfigUpdate

type NullableStackPreviewConfigUpdate struct {
	// contains filtered or unexported fields
}

func (NullableStackPreviewConfigUpdate) Get

func (NullableStackPreviewConfigUpdate) IsSet

func (NullableStackPreviewConfigUpdate) MarshalJSON

func (v NullableStackPreviewConfigUpdate) MarshalJSON() ([]byte, error)

func (*NullableStackPreviewConfigUpdate) Set

func (*NullableStackPreviewConfigUpdate) UnmarshalJSON

func (v *NullableStackPreviewConfigUpdate) UnmarshalJSON(src []byte) error

func (*NullableStackPreviewConfigUpdate) Unset

type NullableStackRelease

type NullableStackRelease struct {
	// contains filtered or unexported fields
}

func NewNullableStackRelease

func NewNullableStackRelease(val *StackRelease) *NullableStackRelease

func (NullableStackRelease) Get

func (NullableStackRelease) IsSet

func (v NullableStackRelease) IsSet() bool

func (NullableStackRelease) MarshalJSON

func (v NullableStackRelease) MarshalJSON() ([]byte, error)

func (*NullableStackRelease) Set

func (v *NullableStackRelease) Set(val *StackRelease)

func (*NullableStackRelease) UnmarshalJSON

func (v *NullableStackRelease) UnmarshalJSON(src []byte) error

func (*NullableStackRelease) Unset

func (v *NullableStackRelease) Unset()

type NullableStackReleaseDetail

type NullableStackReleaseDetail struct {
	// contains filtered or unexported fields
}

func NewNullableStackReleaseDetail

func NewNullableStackReleaseDetail(val *StackReleaseDetail) *NullableStackReleaseDetail

func (NullableStackReleaseDetail) Get

func (NullableStackReleaseDetail) IsSet

func (v NullableStackReleaseDetail) IsSet() bool

func (NullableStackReleaseDetail) MarshalJSON

func (v NullableStackReleaseDetail) MarshalJSON() ([]byte, error)

func (*NullableStackReleaseDetail) Set

func (*NullableStackReleaseDetail) UnmarshalJSON

func (v *NullableStackReleaseDetail) UnmarshalJSON(src []byte) error

func (*NullableStackReleaseDetail) Unset

func (v *NullableStackReleaseDetail) Unset()

type NullableStackReleaseDetailAllOf

type NullableStackReleaseDetailAllOf struct {
	// contains filtered or unexported fields
}

func (NullableStackReleaseDetailAllOf) Get

func (NullableStackReleaseDetailAllOf) IsSet

func (NullableStackReleaseDetailAllOf) MarshalJSON

func (v NullableStackReleaseDetailAllOf) MarshalJSON() ([]byte, error)

func (*NullableStackReleaseDetailAllOf) Set

func (*NullableStackReleaseDetailAllOf) UnmarshalJSON

func (v *NullableStackReleaseDetailAllOf) UnmarshalJSON(src []byte) error

func (*NullableStackReleaseDetailAllOf) Unset

type NullableStackReleaseList

type NullableStackReleaseList struct {
	// contains filtered or unexported fields
}

func NewNullableStackReleaseList

func NewNullableStackReleaseList(val *StackReleaseList) *NullableStackReleaseList

func (NullableStackReleaseList) Get

func (NullableStackReleaseList) IsSet

func (v NullableStackReleaseList) IsSet() bool

func (NullableStackReleaseList) MarshalJSON

func (v NullableStackReleaseList) MarshalJSON() ([]byte, error)

func (*NullableStackReleaseList) Set

func (*NullableStackReleaseList) UnmarshalJSON

func (v *NullableStackReleaseList) UnmarshalJSON(src []byte) error

func (*NullableStackReleaseList) Unset

func (v *NullableStackReleaseList) Unset()

type NullableStackReleaseSnapshot

type NullableStackReleaseSnapshot struct {
	// contains filtered or unexported fields
}

func NewNullableStackReleaseSnapshot

func NewNullableStackReleaseSnapshot(val *StackReleaseSnapshot) *NullableStackReleaseSnapshot

func (NullableStackReleaseSnapshot) Get

func (NullableStackReleaseSnapshot) IsSet

func (NullableStackReleaseSnapshot) MarshalJSON

func (v NullableStackReleaseSnapshot) MarshalJSON() ([]byte, error)

func (*NullableStackReleaseSnapshot) Set

func (*NullableStackReleaseSnapshot) UnmarshalJSON

func (v *NullableStackReleaseSnapshot) UnmarshalJSON(src []byte) error

func (*NullableStackReleaseSnapshot) Unset

func (v *NullableStackReleaseSnapshot) Unset()

type NullableStackReleaseSnapshotStack

type NullableStackReleaseSnapshotStack struct {
	// contains filtered or unexported fields
}

func (NullableStackReleaseSnapshotStack) Get

func (NullableStackReleaseSnapshotStack) IsSet

func (NullableStackReleaseSnapshotStack) MarshalJSON

func (v NullableStackReleaseSnapshotStack) MarshalJSON() ([]byte, error)

func (*NullableStackReleaseSnapshotStack) Set

func (*NullableStackReleaseSnapshotStack) UnmarshalJSON

func (v *NullableStackReleaseSnapshotStack) UnmarshalJSON(src []byte) error

func (*NullableStackReleaseSnapshotStack) Unset

type NullableStackReleaseState

type NullableStackReleaseState struct {
	// contains filtered or unexported fields
}

func NewNullableStackReleaseState

func NewNullableStackReleaseState(val *StackReleaseState) *NullableStackReleaseState

func (NullableStackReleaseState) Get

func (NullableStackReleaseState) IsSet

func (v NullableStackReleaseState) IsSet() bool

func (NullableStackReleaseState) MarshalJSON

func (v NullableStackReleaseState) MarshalJSON() ([]byte, error)

func (*NullableStackReleaseState) Set

func (*NullableStackReleaseState) UnmarshalJSON

func (v *NullableStackReleaseState) UnmarshalJSON(src []byte) error

func (*NullableStackReleaseState) Unset

func (v *NullableStackReleaseState) Unset()

type NullableStackResource

type NullableStackResource struct {
	// contains filtered or unexported fields
}

func NewNullableStackResource

func NewNullableStackResource(val *StackResource) *NullableStackResource

func (NullableStackResource) Get

func (NullableStackResource) IsSet

func (v NullableStackResource) IsSet() bool

func (NullableStackResource) MarshalJSON

func (v NullableStackResource) MarshalJSON() ([]byte, error)

func (*NullableStackResource) Set

func (v *NullableStackResource) Set(val *StackResource)

func (*NullableStackResource) UnmarshalJSON

func (v *NullableStackResource) UnmarshalJSON(src []byte) error

func (*NullableStackResource) Unset

func (v *NullableStackResource) Unset()

type NullableStackResourceFailure

type NullableStackResourceFailure struct {
	// contains filtered or unexported fields
}

func NewNullableStackResourceFailure

func NewNullableStackResourceFailure(val *StackResourceFailure) *NullableStackResourceFailure

func (NullableStackResourceFailure) Get

func (NullableStackResourceFailure) IsSet

func (NullableStackResourceFailure) MarshalJSON

func (v NullableStackResourceFailure) MarshalJSON() ([]byte, error)

func (*NullableStackResourceFailure) Set

func (*NullableStackResourceFailure) UnmarshalJSON

func (v *NullableStackResourceFailure) UnmarshalJSON(src []byte) error

func (*NullableStackResourceFailure) Unset

func (v *NullableStackResourceFailure) Unset()

type NullableStackResourceList

type NullableStackResourceList struct {
	// contains filtered or unexported fields
}

func NewNullableStackResourceList

func NewNullableStackResourceList(val *StackResourceList) *NullableStackResourceList

func (NullableStackResourceList) Get

func (NullableStackResourceList) IsSet

func (v NullableStackResourceList) IsSet() bool

func (NullableStackResourceList) MarshalJSON

func (v NullableStackResourceList) MarshalJSON() ([]byte, error)

func (*NullableStackResourceList) Set

func (*NullableStackResourceList) UnmarshalJSON

func (v *NullableStackResourceList) UnmarshalJSON(src []byte) error

func (*NullableStackResourceList) Unset

func (v *NullableStackResourceList) Unset()

type NullableStackResourceStatus

type NullableStackResourceStatus struct {
	// contains filtered or unexported fields
}

func NewNullableStackResourceStatus

func NewNullableStackResourceStatus(val *StackResourceStatus) *NullableStackResourceStatus

func (NullableStackResourceStatus) Get

func (NullableStackResourceStatus) IsSet

func (NullableStackResourceStatus) MarshalJSON

func (v NullableStackResourceStatus) MarshalJSON() ([]byte, error)

func (*NullableStackResourceStatus) Set

func (*NullableStackResourceStatus) UnmarshalJSON

func (v *NullableStackResourceStatus) UnmarshalJSON(src []byte) error

func (*NullableStackResourceStatus) Unset

func (v *NullableStackResourceStatus) Unset()

type NullableStackSettings

type NullableStackSettings struct {
	// contains filtered or unexported fields
}

func NewNullableStackSettings

func NewNullableStackSettings(val *StackSettings) *NullableStackSettings

func (NullableStackSettings) Get

func (NullableStackSettings) IsSet

func (v NullableStackSettings) IsSet() bool

func (NullableStackSettings) MarshalJSON

func (v NullableStackSettings) MarshalJSON() ([]byte, error)

func (*NullableStackSettings) Set

func (v *NullableStackSettings) Set(val *StackSettings)

func (*NullableStackSettings) UnmarshalJSON

func (v *NullableStackSettings) UnmarshalJSON(src []byte) error

func (*NullableStackSettings) Unset

func (v *NullableStackSettings) Unset()

type NullableStackSpec

type NullableStackSpec struct {
	// contains filtered or unexported fields
}

func NewNullableStackSpec

func NewNullableStackSpec(val *StackSpec) *NullableStackSpec

func (NullableStackSpec) Get

func (v NullableStackSpec) Get() *StackSpec

func (NullableStackSpec) IsSet

func (v NullableStackSpec) IsSet() bool

func (NullableStackSpec) MarshalJSON

func (v NullableStackSpec) MarshalJSON() ([]byte, error)

func (*NullableStackSpec) Set

func (v *NullableStackSpec) Set(val *StackSpec)

func (*NullableStackSpec) UnmarshalJSON

func (v *NullableStackSpec) UnmarshalJSON(src []byte) error

func (*NullableStackSpec) Unset

func (v *NullableStackSpec) Unset()

type NullableStackTopology

type NullableStackTopology struct {
	// contains filtered or unexported fields
}

func NewNullableStackTopology

func NewNullableStackTopology(val *StackTopology) *NullableStackTopology

func (NullableStackTopology) Get

func (NullableStackTopology) IsSet

func (v NullableStackTopology) IsSet() bool

func (NullableStackTopology) MarshalJSON

func (v NullableStackTopology) MarshalJSON() ([]byte, error)

func (*NullableStackTopology) Set

func (v *NullableStackTopology) Set(val *StackTopology)

func (*NullableStackTopology) UnmarshalJSON

func (v *NullableStackTopology) UnmarshalJSON(src []byte) error

func (*NullableStackTopology) Unset

func (v *NullableStackTopology) Unset()

type NullableString

type NullableString struct {
	// contains filtered or unexported fields
}

func NewNullableString

func NewNullableString(val *string) *NullableString

func (NullableString) Get

func (v NullableString) Get() *string

func (NullableString) IsSet

func (v NullableString) IsSet() bool

func (NullableString) MarshalJSON

func (v NullableString) MarshalJSON() ([]byte, error)

func (*NullableString) Set

func (v *NullableString) Set(val *string)

func (*NullableString) UnmarshalJSON

func (v *NullableString) UnmarshalJSON(src []byte) error

func (*NullableString) Unset

func (v *NullableString) Unset()

type NullableTime

type NullableTime struct {
	// contains filtered or unexported fields
}

func NewNullableTime

func NewNullableTime(val *time.Time) *NullableTime

func (NullableTime) Get

func (v NullableTime) Get() *time.Time

func (NullableTime) IsSet

func (v NullableTime) IsSet() bool

func (NullableTime) MarshalJSON

func (v NullableTime) MarshalJSON() ([]byte, error)

func (*NullableTime) Set

func (v *NullableTime) Set(val *time.Time)

func (*NullableTime) UnmarshalJSON

func (v *NullableTime) UnmarshalJSON(src []byte) error

func (*NullableTime) Unset

func (v *NullableTime) Unset()

type NullableTopologyEdge

type NullableTopologyEdge struct {
	// contains filtered or unexported fields
}

func NewNullableTopologyEdge

func NewNullableTopologyEdge(val *TopologyEdge) *NullableTopologyEdge

func (NullableTopologyEdge) Get

func (NullableTopologyEdge) IsSet

func (v NullableTopologyEdge) IsSet() bool

func (NullableTopologyEdge) MarshalJSON

func (v NullableTopologyEdge) MarshalJSON() ([]byte, error)

func (*NullableTopologyEdge) Set

func (v *NullableTopologyEdge) Set(val *TopologyEdge)

func (*NullableTopologyEdge) UnmarshalJSON

func (v *NullableTopologyEdge) UnmarshalJSON(src []byte) error

func (*NullableTopologyEdge) Unset

func (v *NullableTopologyEdge) Unset()

type NullableTopologyNode

type NullableTopologyNode struct {
	// contains filtered or unexported fields
}

func NewNullableTopologyNode

func NewNullableTopologyNode(val *TopologyNode) *NullableTopologyNode

func (NullableTopologyNode) Get

func (NullableTopologyNode) IsSet

func (v NullableTopologyNode) IsSet() bool

func (NullableTopologyNode) MarshalJSON

func (v NullableTopologyNode) MarshalJSON() ([]byte, error)

func (*NullableTopologyNode) Set

func (v *NullableTopologyNode) Set(val *TopologyNode)

func (*NullableTopologyNode) UnmarshalJSON

func (v *NullableTopologyNode) UnmarshalJSON(src []byte) error

func (*NullableTopologyNode) Unset

func (v *NullableTopologyNode) Unset()

type NullableTopologyNodeRef

type NullableTopologyNodeRef struct {
	// contains filtered or unexported fields
}

func NewNullableTopologyNodeRef

func NewNullableTopologyNodeRef(val *TopologyNodeRef) *NullableTopologyNodeRef

func (NullableTopologyNodeRef) Get

func (NullableTopologyNodeRef) IsSet

func (v NullableTopologyNodeRef) IsSet() bool

func (NullableTopologyNodeRef) MarshalJSON

func (v NullableTopologyNodeRef) MarshalJSON() ([]byte, error)

func (*NullableTopologyNodeRef) Set

func (*NullableTopologyNodeRef) UnmarshalJSON

func (v *NullableTopologyNodeRef) UnmarshalJSON(src []byte) error

func (*NullableTopologyNodeRef) Unset

func (v *NullableTopologyNodeRef) Unset()

type NullableTurnstileConfigResponse

type NullableTurnstileConfigResponse struct {
	// contains filtered or unexported fields
}

func (NullableTurnstileConfigResponse) Get

func (NullableTurnstileConfigResponse) IsSet

func (NullableTurnstileConfigResponse) MarshalJSON

func (v NullableTurnstileConfigResponse) MarshalJSON() ([]byte, error)

func (*NullableTurnstileConfigResponse) Set

func (*NullableTurnstileConfigResponse) UnmarshalJSON

func (v *NullableTurnstileConfigResponse) UnmarshalJSON(src []byte) error

func (*NullableTurnstileConfigResponse) Unset

type NullableUpdateProjectMemberRoleRequest

type NullableUpdateProjectMemberRoleRequest struct {
	// contains filtered or unexported fields
}

func (NullableUpdateProjectMemberRoleRequest) Get

func (NullableUpdateProjectMemberRoleRequest) IsSet

func (NullableUpdateProjectMemberRoleRequest) MarshalJSON

func (v NullableUpdateProjectMemberRoleRequest) MarshalJSON() ([]byte, error)

func (*NullableUpdateProjectMemberRoleRequest) Set

func (*NullableUpdateProjectMemberRoleRequest) UnmarshalJSON

func (v *NullableUpdateProjectMemberRoleRequest) UnmarshalJSON(src []byte) error

func (*NullableUpdateProjectMemberRoleRequest) 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 NullableUserList

type NullableUserList struct {
	// contains filtered or unexported fields
}

func NewNullableUserList

func NewNullableUserList(val *UserList) *NullableUserList

func (NullableUserList) Get

func (v NullableUserList) Get() *UserList

func (NullableUserList) IsSet

func (v NullableUserList) IsSet() bool

func (NullableUserList) MarshalJSON

func (v NullableUserList) MarshalJSON() ([]byte, error)

func (*NullableUserList) Set

func (v *NullableUserList) Set(val *UserList)

func (*NullableUserList) UnmarshalJSON

func (v *NullableUserList) UnmarshalJSON(src []byte) error

func (*NullableUserList) Unset

func (v *NullableUserList) Unset()

type NullableUserProjectMembership

type NullableUserProjectMembership struct {
	// contains filtered or unexported fields
}

func (NullableUserProjectMembership) Get

func (NullableUserProjectMembership) IsSet

func (NullableUserProjectMembership) MarshalJSON

func (v NullableUserProjectMembership) MarshalJSON() ([]byte, error)

func (*NullableUserProjectMembership) Set

func (*NullableUserProjectMembership) UnmarshalJSON

func (v *NullableUserProjectMembership) UnmarshalJSON(src []byte) error

func (*NullableUserProjectMembership) Unset

func (v *NullableUserProjectMembership) Unset()

type NullableUserRole

type NullableUserRole struct {
	// contains filtered or unexported fields
}

func NewNullableUserRole

func NewNullableUserRole(val *UserRole) *NullableUserRole

func (NullableUserRole) Get

func (v NullableUserRole) Get() *UserRole

func (NullableUserRole) IsSet

func (v NullableUserRole) IsSet() bool

func (NullableUserRole) MarshalJSON

func (v NullableUserRole) MarshalJSON() ([]byte, error)

func (*NullableUserRole) Set

func (v *NullableUserRole) Set(val *UserRole)

func (*NullableUserRole) UnmarshalJSON

func (v *NullableUserRole) UnmarshalJSON(src []byte) error

func (*NullableUserRole) Unset

func (v *NullableUserRole) Unset()

type NullableUserSignupRequest

type NullableUserSignupRequest struct {
	// contains filtered or unexported fields
}

func NewNullableUserSignupRequest

func NewNullableUserSignupRequest(val *UserSignupRequest) *NullableUserSignupRequest

func (NullableUserSignupRequest) Get

func (NullableUserSignupRequest) IsSet

func (v NullableUserSignupRequest) IsSet() bool

func (NullableUserSignupRequest) MarshalJSON

func (v NullableUserSignupRequest) MarshalJSON() ([]byte, error)

func (*NullableUserSignupRequest) Set

func (*NullableUserSignupRequest) UnmarshalJSON

func (v *NullableUserSignupRequest) UnmarshalJSON(src []byte) error

func (*NullableUserSignupRequest) Unset

func (v *NullableUserSignupRequest) Unset()

type NullableUserSignupResponse

type NullableUserSignupResponse struct {
	// contains filtered or unexported fields
}

func NewNullableUserSignupResponse

func NewNullableUserSignupResponse(val *UserSignupResponse) *NullableUserSignupResponse

func (NullableUserSignupResponse) Get

func (NullableUserSignupResponse) IsSet

func (v NullableUserSignupResponse) IsSet() bool

func (NullableUserSignupResponse) MarshalJSON

func (v NullableUserSignupResponse) MarshalJSON() ([]byte, error)

func (*NullableUserSignupResponse) Set

func (*NullableUserSignupResponse) UnmarshalJSON

func (v *NullableUserSignupResponse) UnmarshalJSON(src []byte) error

func (*NullableUserSignupResponse) Unset

func (v *NullableUserSignupResponse) Unset()

type NullableValidationErrorDetail

type NullableValidationErrorDetail struct {
	// contains filtered or unexported fields
}

func (NullableValidationErrorDetail) Get

func (NullableValidationErrorDetail) IsSet

func (NullableValidationErrorDetail) MarshalJSON

func (v NullableValidationErrorDetail) MarshalJSON() ([]byte, error)

func (*NullableValidationErrorDetail) Set

func (*NullableValidationErrorDetail) UnmarshalJSON

func (v *NullableValidationErrorDetail) UnmarshalJSON(src []byte) error

func (*NullableValidationErrorDetail) Unset

func (v *NullableValidationErrorDetail) Unset()

type NullableValueRef

type NullableValueRef struct {
	// contains filtered or unexported fields
}

func NewNullableValueRef

func NewNullableValueRef(val *ValueRef) *NullableValueRef

func (NullableValueRef) Get

func (v NullableValueRef) Get() *ValueRef

func (NullableValueRef) IsSet

func (v NullableValueRef) IsSet() bool

func (NullableValueRef) MarshalJSON

func (v NullableValueRef) MarshalJSON() ([]byte, error)

func (*NullableValueRef) Set

func (v *NullableValueRef) Set(val *ValueRef)

func (*NullableValueRef) UnmarshalJSON

func (v *NullableValueRef) UnmarshalJSON(src []byte) error

func (*NullableValueRef) Unset

func (v *NullableValueRef) Unset()

type NullableVolume

type NullableVolume struct {
	// contains filtered or unexported fields
}

func NewNullableVolume

func NewNullableVolume(val *Volume) *NullableVolume

func (NullableVolume) Get

func (v NullableVolume) Get() *Volume

func (NullableVolume) IsSet

func (v NullableVolume) IsSet() bool

func (NullableVolume) MarshalJSON

func (v NullableVolume) MarshalJSON() ([]byte, error)

func (*NullableVolume) Set

func (v *NullableVolume) Set(val *Volume)

func (*NullableVolume) UnmarshalJSON

func (v *NullableVolume) UnmarshalJSON(src []byte) error

func (*NullableVolume) Unset

func (v *NullableVolume) Unset()

type NullableVolumeAccessMode

type NullableVolumeAccessMode struct {
	// contains filtered or unexported fields
}

func NewNullableVolumeAccessMode

func NewNullableVolumeAccessMode(val *VolumeAccessMode) *NullableVolumeAccessMode

func (NullableVolumeAccessMode) Get

func (NullableVolumeAccessMode) IsSet

func (v NullableVolumeAccessMode) IsSet() bool

func (NullableVolumeAccessMode) MarshalJSON

func (v NullableVolumeAccessMode) MarshalJSON() ([]byte, error)

func (*NullableVolumeAccessMode) Set

func (*NullableVolumeAccessMode) UnmarshalJSON

func (v *NullableVolumeAccessMode) UnmarshalJSON(src []byte) error

func (*NullableVolumeAccessMode) Unset

func (v *NullableVolumeAccessMode) Unset()

type NullableVolumeBuildSource

type NullableVolumeBuildSource struct {
	// contains filtered or unexported fields
}

func NewNullableVolumeBuildSource

func NewNullableVolumeBuildSource(val *VolumeBuildSource) *NullableVolumeBuildSource

func (NullableVolumeBuildSource) Get

func (NullableVolumeBuildSource) IsSet

func (v NullableVolumeBuildSource) IsSet() bool

func (NullableVolumeBuildSource) MarshalJSON

func (v NullableVolumeBuildSource) MarshalJSON() ([]byte, error)

func (*NullableVolumeBuildSource) Set

func (*NullableVolumeBuildSource) UnmarshalJSON

func (v *NullableVolumeBuildSource) UnmarshalJSON(src []byte) error

func (*NullableVolumeBuildSource) Unset

func (v *NullableVolumeBuildSource) Unset()

type NullableVolumeList

type NullableVolumeList struct {
	// contains filtered or unexported fields
}

func NewNullableVolumeList

func NewNullableVolumeList(val *VolumeList) *NullableVolumeList

func (NullableVolumeList) Get

func (v NullableVolumeList) Get() *VolumeList

func (NullableVolumeList) IsSet

func (v NullableVolumeList) IsSet() bool

func (NullableVolumeList) MarshalJSON

func (v NullableVolumeList) MarshalJSON() ([]byte, error)

func (*NullableVolumeList) Set

func (v *NullableVolumeList) Set(val *VolumeList)

func (*NullableVolumeList) UnmarshalJSON

func (v *NullableVolumeList) UnmarshalJSON(src []byte) error

func (*NullableVolumeList) Unset

func (v *NullableVolumeList) Unset()

type NullableVolumeMount

type NullableVolumeMount struct {
	// contains filtered or unexported fields
}

func NewNullableVolumeMount

func NewNullableVolumeMount(val *VolumeMount) *NullableVolumeMount

func (NullableVolumeMount) Get

func (NullableVolumeMount) IsSet

func (v NullableVolumeMount) IsSet() bool

func (NullableVolumeMount) MarshalJSON

func (v NullableVolumeMount) MarshalJSON() ([]byte, error)

func (*NullableVolumeMount) Set

func (v *NullableVolumeMount) Set(val *VolumeMount)

func (*NullableVolumeMount) UnmarshalJSON

func (v *NullableVolumeMount) UnmarshalJSON(src []byte) error

func (*NullableVolumeMount) Unset

func (v *NullableVolumeMount) Unset()

type NullableVolumeMountConfig

type NullableVolumeMountConfig struct {
	// contains filtered or unexported fields
}

func NewNullableVolumeMountConfig

func NewNullableVolumeMountConfig(val *VolumeMountConfig) *NullableVolumeMountConfig

func (NullableVolumeMountConfig) Get

func (NullableVolumeMountConfig) IsSet

func (v NullableVolumeMountConfig) IsSet() bool

func (NullableVolumeMountConfig) MarshalJSON

func (v NullableVolumeMountConfig) MarshalJSON() ([]byte, error)

func (*NullableVolumeMountConfig) Set

func (*NullableVolumeMountConfig) UnmarshalJSON

func (v *NullableVolumeMountConfig) UnmarshalJSON(src []byte) error

func (*NullableVolumeMountConfig) Unset

func (v *NullableVolumeMountConfig) Unset()

type NullableVolumeMountSourceType

type NullableVolumeMountSourceType struct {
	// contains filtered or unexported fields
}

func (NullableVolumeMountSourceType) Get

func (NullableVolumeMountSourceType) IsSet

func (NullableVolumeMountSourceType) MarshalJSON

func (v NullableVolumeMountSourceType) MarshalJSON() ([]byte, error)

func (*NullableVolumeMountSourceType) Set

func (*NullableVolumeMountSourceType) UnmarshalJSON

func (v *NullableVolumeMountSourceType) UnmarshalJSON(src []byte) error

func (*NullableVolumeMountSourceType) Unset

func (v *NullableVolumeMountSourceType) Unset()

type NullableVolumeSource

type NullableVolumeSource struct {
	// contains filtered or unexported fields
}

func NewNullableVolumeSource

func NewNullableVolumeSource(val *VolumeSource) *NullableVolumeSource

func (NullableVolumeSource) Get

func (NullableVolumeSource) IsSet

func (v NullableVolumeSource) IsSet() bool

func (NullableVolumeSource) MarshalJSON

func (v NullableVolumeSource) MarshalJSON() ([]byte, error)

func (*NullableVolumeSource) Set

func (v *NullableVolumeSource) Set(val *VolumeSource)

func (*NullableVolumeSource) UnmarshalJSON

func (v *NullableVolumeSource) UnmarshalJSON(src []byte) error

func (*NullableVolumeSource) Unset

func (v *NullableVolumeSource) Unset()

type NullableVolumeSourceTypes

type NullableVolumeSourceTypes struct {
	// contains filtered or unexported fields
}

func NewNullableVolumeSourceTypes

func NewNullableVolumeSourceTypes(val *VolumeSourceTypes) *NullableVolumeSourceTypes

func (NullableVolumeSourceTypes) Get

func (NullableVolumeSourceTypes) IsSet

func (v NullableVolumeSourceTypes) IsSet() bool

func (NullableVolumeSourceTypes) MarshalJSON

func (v NullableVolumeSourceTypes) MarshalJSON() ([]byte, error)

func (*NullableVolumeSourceTypes) Set

func (*NullableVolumeSourceTypes) UnmarshalJSON

func (v *NullableVolumeSourceTypes) UnmarshalJSON(src []byte) error

func (*NullableVolumeSourceTypes) Unset

func (v *NullableVolumeSourceTypes) Unset()

type NullableVolumeSpec

type NullableVolumeSpec struct {
	// contains filtered or unexported fields
}

func NewNullableVolumeSpec

func NewNullableVolumeSpec(val *VolumeSpec) *NullableVolumeSpec

func (NullableVolumeSpec) Get

func (v NullableVolumeSpec) Get() *VolumeSpec

func (NullableVolumeSpec) IsSet

func (v NullableVolumeSpec) IsSet() bool

func (NullableVolumeSpec) MarshalJSON

func (v NullableVolumeSpec) MarshalJSON() ([]byte, error)

func (*NullableVolumeSpec) Set

func (v *NullableVolumeSpec) Set(val *VolumeSpec)

func (*NullableVolumeSpec) UnmarshalJSON

func (v *NullableVolumeSpec) UnmarshalJSON(src []byte) error

func (*NullableVolumeSpec) Unset

func (v *NullableVolumeSpec) Unset()

type NullableVolumeStatus

type NullableVolumeStatus struct {
	// contains filtered or unexported fields
}

func NewNullableVolumeStatus

func NewNullableVolumeStatus(val *VolumeStatus) *NullableVolumeStatus

func (NullableVolumeStatus) Get

func (NullableVolumeStatus) IsSet

func (v NullableVolumeStatus) IsSet() bool

func (NullableVolumeStatus) MarshalJSON

func (v NullableVolumeStatus) MarshalJSON() ([]byte, error)

func (*NullableVolumeStatus) Set

func (v *NullableVolumeStatus) Set(val *VolumeStatus)

func (*NullableVolumeStatus) UnmarshalJSON

func (v *NullableVolumeStatus) UnmarshalJSON(src []byte) error

func (*NullableVolumeStatus) Unset

func (v *NullableVolumeStatus) Unset()

type NullableWALConfiguration

type NullableWALConfiguration struct {
	// contains filtered or unexported fields
}

func NewNullableWALConfiguration

func NewNullableWALConfiguration(val *WALConfiguration) *NullableWALConfiguration

func (NullableWALConfiguration) Get

func (NullableWALConfiguration) IsSet

func (v NullableWALConfiguration) IsSet() bool

func (NullableWALConfiguration) MarshalJSON

func (v NullableWALConfiguration) MarshalJSON() ([]byte, error)

func (*NullableWALConfiguration) Set

func (*NullableWALConfiguration) UnmarshalJSON

func (v *NullableWALConfiguration) UnmarshalJSON(src []byte) error

func (*NullableWALConfiguration) Unset

func (v *NullableWALConfiguration) Unset()

type ObjectReference

type ObjectReference struct {
	Id   *string `json:"id,omitempty"`
	Kind *string `json:"kind,omitempty"`
	Href *string `json:"href,omitempty"`
}

ObjectReference struct for ObjectReference

func NewObjectReference

func NewObjectReference() *ObjectReference

NewObjectReference instantiates a new ObjectReference object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewObjectReferenceWithDefaults

func NewObjectReferenceWithDefaults() *ObjectReference

NewObjectReferenceWithDefaults instantiates a new ObjectReference object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*ObjectReference) GetHref

func (o *ObjectReference) GetHref() string

GetHref returns the Href field value if set, zero value otherwise.

func (*ObjectReference) GetHrefOk

func (o *ObjectReference) GetHrefOk() (*string, bool)

GetHrefOk returns a tuple with the Href field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ObjectReference) GetId

func (o *ObjectReference) GetId() string

GetId returns the Id field value if set, zero value otherwise.

func (*ObjectReference) GetIdOk

func (o *ObjectReference) 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 (*ObjectReference) GetKind

func (o *ObjectReference) GetKind() string

GetKind returns the Kind field value if set, zero value otherwise.

func (*ObjectReference) GetKindOk

func (o *ObjectReference) GetKindOk() (*string, bool)

GetKindOk returns a tuple with the Kind field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ObjectReference) HasHref

func (o *ObjectReference) HasHref() bool

HasHref returns a boolean if a field has been set.

func (*ObjectReference) HasId

func (o *ObjectReference) HasId() bool

HasId returns a boolean if a field has been set.

func (*ObjectReference) HasKind

func (o *ObjectReference) HasKind() bool

HasKind returns a boolean if a field has been set.

func (ObjectReference) MarshalJSON

func (o ObjectReference) MarshalJSON() ([]byte, error)

func (*ObjectReference) SetHref

func (o *ObjectReference) SetHref(v string)

SetHref gets a reference to the given string and assigns it to the Href field.

func (*ObjectReference) SetId

func (o *ObjectReference) SetId(v string)

SetId gets a reference to the given string and assigns it to the Id field.

func (*ObjectReference) SetKind

func (o *ObjectReference) SetKind(v string)

SetKind gets a reference to the given string and assigns it to the Kind field.

type ObjectStore

type ObjectStore struct {
	Id             *string `json:"id,omitempty"`
	OrganisationId *string `json:"organisation_id,omitempty"`
	ProjectId      *string `json:"project_id,omitempty"`
	// Unique name for this object store configuration
	Name      string             `json:"name"`
	Spec      ObjectStoreSpec    `json:"spec"`
	Status    *ObjectStoreStatus `json:"status,omitempty"`
	CreatedAt *time.Time         `json:"created_at,omitempty"`
	UpdatedAt *time.Time         `json:"updated_at,omitempty"`
}

ObjectStore struct for ObjectStore

func NewObjectStore

func NewObjectStore(name string, spec ObjectStoreSpec) *ObjectStore

NewObjectStore instantiates a new ObjectStore object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewObjectStoreWithDefaults

func NewObjectStoreWithDefaults() *ObjectStore

NewObjectStoreWithDefaults instantiates a new ObjectStore object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*ObjectStore) GetCreatedAt

func (o *ObjectStore) GetCreatedAt() time.Time

GetCreatedAt returns the CreatedAt field value if set, zero value otherwise.

func (*ObjectStore) GetCreatedAtOk

func (o *ObjectStore) 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 (*ObjectStore) GetId

func (o *ObjectStore) GetId() string

GetId returns the Id field value if set, zero value otherwise.

func (*ObjectStore) GetIdOk

func (o *ObjectStore) 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 (*ObjectStore) GetName

func (o *ObjectStore) GetName() string

GetName returns the Name field value

func (*ObjectStore) GetNameOk

func (o *ObjectStore) GetNameOk() (*string, bool)

GetNameOk returns a tuple with the Name field value and a boolean to check if the value has been set.

func (*ObjectStore) GetOrganisationId

func (o *ObjectStore) GetOrganisationId() string

GetOrganisationId returns the OrganisationId field value if set, zero value otherwise.

func (*ObjectStore) GetOrganisationIdOk

func (o *ObjectStore) GetOrganisationIdOk() (*string, bool)

GetOrganisationIdOk returns a tuple with the OrganisationId field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ObjectStore) GetProjectId

func (o *ObjectStore) GetProjectId() string

GetProjectId returns the ProjectId field value if set, zero value otherwise.

func (*ObjectStore) GetProjectIdOk

func (o *ObjectStore) GetProjectIdOk() (*string, bool)

GetProjectIdOk returns a tuple with the ProjectId field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ObjectStore) GetSpec

func (o *ObjectStore) GetSpec() ObjectStoreSpec

GetSpec returns the Spec field value

func (*ObjectStore) GetSpecOk

func (o *ObjectStore) GetSpecOk() (*ObjectStoreSpec, bool)

GetSpecOk returns a tuple with the Spec field value and a boolean to check if the value has been set.

func (*ObjectStore) GetStatus

func (o *ObjectStore) GetStatus() ObjectStoreStatus

GetStatus returns the Status field value if set, zero value otherwise.

func (*ObjectStore) GetStatusOk

func (o *ObjectStore) GetStatusOk() (*ObjectStoreStatus, 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 (*ObjectStore) GetUpdatedAt

func (o *ObjectStore) GetUpdatedAt() time.Time

GetUpdatedAt returns the UpdatedAt field value if set, zero value otherwise.

func (*ObjectStore) GetUpdatedAtOk

func (o *ObjectStore) 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 (*ObjectStore) HasCreatedAt

func (o *ObjectStore) HasCreatedAt() bool

HasCreatedAt returns a boolean if a field has been set.

func (*ObjectStore) HasId

func (o *ObjectStore) HasId() bool

HasId returns a boolean if a field has been set.

func (*ObjectStore) HasOrganisationId

func (o *ObjectStore) HasOrganisationId() bool

HasOrganisationId returns a boolean if a field has been set.

func (*ObjectStore) HasProjectId

func (o *ObjectStore) HasProjectId() bool

HasProjectId returns a boolean if a field has been set.

func (*ObjectStore) HasStatus

func (o *ObjectStore) HasStatus() bool

HasStatus returns a boolean if a field has been set.

func (*ObjectStore) HasUpdatedAt

func (o *ObjectStore) HasUpdatedAt() bool

HasUpdatedAt returns a boolean if a field has been set.

func (ObjectStore) MarshalJSON

func (o ObjectStore) MarshalJSON() ([]byte, error)

func (*ObjectStore) SetCreatedAt

func (o *ObjectStore) SetCreatedAt(v time.Time)

SetCreatedAt gets a reference to the given time.Time and assigns it to the CreatedAt field.

func (*ObjectStore) SetId

func (o *ObjectStore) SetId(v string)

SetId gets a reference to the given string and assigns it to the Id field.

func (*ObjectStore) SetName

func (o *ObjectStore) SetName(v string)

SetName sets field value

func (*ObjectStore) SetOrganisationId

func (o *ObjectStore) SetOrganisationId(v string)

SetOrganisationId gets a reference to the given string and assigns it to the OrganisationId field.

func (*ObjectStore) SetProjectId

func (o *ObjectStore) SetProjectId(v string)

SetProjectId gets a reference to the given string and assigns it to the ProjectId field.

func (*ObjectStore) SetSpec

func (o *ObjectStore) SetSpec(v ObjectStoreSpec)

SetSpec sets field value

func (*ObjectStore) SetStatus

func (o *ObjectStore) SetStatus(v ObjectStoreStatus)

SetStatus gets a reference to the given ObjectStoreStatus and assigns it to the Status field.

func (*ObjectStore) SetUpdatedAt

func (o *ObjectStore) SetUpdatedAt(v time.Time)

SetUpdatedAt gets a reference to the given time.Time and assigns it to the UpdatedAt field.

type ObjectStoreConfiguration

type ObjectStoreConfiguration struct {
	S3Credentials    *S3Credentials    `json:"s3_credentials,omitempty"`
	AzureCredentials *AzureCredentials `json:"azure_credentials,omitempty"`
	GcsCredentials   *GCSCredentials   `json:"gcs_credentials,omitempty"`
}

ObjectStoreConfiguration struct for ObjectStoreConfiguration

func NewObjectStoreConfiguration

func NewObjectStoreConfiguration() *ObjectStoreConfiguration

NewObjectStoreConfiguration instantiates a new ObjectStoreConfiguration object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewObjectStoreConfigurationWithDefaults

func NewObjectStoreConfigurationWithDefaults() *ObjectStoreConfiguration

NewObjectStoreConfigurationWithDefaults instantiates a new ObjectStoreConfiguration object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*ObjectStoreConfiguration) GetAzureCredentials

func (o *ObjectStoreConfiguration) GetAzureCredentials() AzureCredentials

GetAzureCredentials returns the AzureCredentials field value if set, zero value otherwise.

func (*ObjectStoreConfiguration) GetAzureCredentialsOk

func (o *ObjectStoreConfiguration) GetAzureCredentialsOk() (*AzureCredentials, bool)

GetAzureCredentialsOk returns a tuple with the AzureCredentials field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ObjectStoreConfiguration) GetGcsCredentials

func (o *ObjectStoreConfiguration) GetGcsCredentials() GCSCredentials

GetGcsCredentials returns the GcsCredentials field value if set, zero value otherwise.

func (*ObjectStoreConfiguration) GetGcsCredentialsOk

func (o *ObjectStoreConfiguration) GetGcsCredentialsOk() (*GCSCredentials, bool)

GetGcsCredentialsOk returns a tuple with the GcsCredentials field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ObjectStoreConfiguration) GetS3Credentials

func (o *ObjectStoreConfiguration) GetS3Credentials() S3Credentials

GetS3Credentials returns the S3Credentials field value if set, zero value otherwise.

func (*ObjectStoreConfiguration) GetS3CredentialsOk

func (o *ObjectStoreConfiguration) GetS3CredentialsOk() (*S3Credentials, bool)

GetS3CredentialsOk returns a tuple with the S3Credentials field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ObjectStoreConfiguration) HasAzureCredentials

func (o *ObjectStoreConfiguration) HasAzureCredentials() bool

HasAzureCredentials returns a boolean if a field has been set.

func (*ObjectStoreConfiguration) HasGcsCredentials

func (o *ObjectStoreConfiguration) HasGcsCredentials() bool

HasGcsCredentials returns a boolean if a field has been set.

func (*ObjectStoreConfiguration) HasS3Credentials

func (o *ObjectStoreConfiguration) HasS3Credentials() bool

HasS3Credentials returns a boolean if a field has been set.

func (ObjectStoreConfiguration) MarshalJSON

func (o ObjectStoreConfiguration) MarshalJSON() ([]byte, error)

func (*ObjectStoreConfiguration) SetAzureCredentials

func (o *ObjectStoreConfiguration) SetAzureCredentials(v AzureCredentials)

SetAzureCredentials gets a reference to the given AzureCredentials and assigns it to the AzureCredentials field.

func (*ObjectStoreConfiguration) SetGcsCredentials

func (o *ObjectStoreConfiguration) SetGcsCredentials(v GCSCredentials)

SetGcsCredentials gets a reference to the given GCSCredentials and assigns it to the GcsCredentials field.

func (*ObjectStoreConfiguration) SetS3Credentials

func (o *ObjectStoreConfiguration) SetS3Credentials(v S3Credentials)

SetS3Credentials gets a reference to the given S3Credentials and assigns it to the S3Credentials field.

type ObjectStoreList

type ObjectStoreList struct {
	Items []ObjectStore `json:"items,omitempty"`
	Total *int32        `json:"total,omitempty"`
}

ObjectStoreList struct for ObjectStoreList

func NewObjectStoreList

func NewObjectStoreList() *ObjectStoreList

NewObjectStoreList instantiates a new ObjectStoreList object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewObjectStoreListWithDefaults

func NewObjectStoreListWithDefaults() *ObjectStoreList

NewObjectStoreListWithDefaults instantiates a new ObjectStoreList object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*ObjectStoreList) GetItems

func (o *ObjectStoreList) GetItems() []ObjectStore

GetItems returns the Items field value if set, zero value otherwise.

func (*ObjectStoreList) GetItemsOk

func (o *ObjectStoreList) GetItemsOk() ([]ObjectStore, bool)

GetItemsOk returns a tuple with the Items field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ObjectStoreList) GetTotal

func (o *ObjectStoreList) GetTotal() int32

GetTotal returns the Total field value if set, zero value otherwise.

func (*ObjectStoreList) GetTotalOk

func (o *ObjectStoreList) GetTotalOk() (*int32, 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 (*ObjectStoreList) HasItems

func (o *ObjectStoreList) HasItems() bool

HasItems returns a boolean if a field has been set.

func (*ObjectStoreList) HasTotal

func (o *ObjectStoreList) HasTotal() bool

HasTotal returns a boolean if a field has been set.

func (ObjectStoreList) MarshalJSON

func (o ObjectStoreList) MarshalJSON() ([]byte, error)

func (*ObjectStoreList) SetItems

func (o *ObjectStoreList) SetItems(v []ObjectStore)

SetItems gets a reference to the given []ObjectStore and assigns it to the Items field.

func (*ObjectStoreList) SetTotal

func (o *ObjectStoreList) SetTotal(v int32)

SetTotal gets a reference to the given int32 and assigns it to the Total field.

type ObjectStoreSpec

type ObjectStoreSpec struct {
	Configuration ObjectStoreConfiguration `json:"configuration"`
	// Storage destination URL (e.g., s3://bucket/path, https://account.blob.core.windows.net/container/path)
	DestinationPath string `json:"destination_path"`
	// Retention policy (e.g., '1d', '7d', '30d')
	RetentionPolicy *string `json:"retention_policy,omitempty"`
}

ObjectStoreSpec struct for ObjectStoreSpec

func NewObjectStoreSpec

func NewObjectStoreSpec(configuration ObjectStoreConfiguration, destinationPath string) *ObjectStoreSpec

NewObjectStoreSpec instantiates a new ObjectStoreSpec object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewObjectStoreSpecWithDefaults

func NewObjectStoreSpecWithDefaults() *ObjectStoreSpec

NewObjectStoreSpecWithDefaults instantiates a new ObjectStoreSpec object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*ObjectStoreSpec) GetConfiguration

func (o *ObjectStoreSpec) GetConfiguration() ObjectStoreConfiguration

GetConfiguration returns the Configuration field value

func (*ObjectStoreSpec) GetConfigurationOk

func (o *ObjectStoreSpec) GetConfigurationOk() (*ObjectStoreConfiguration, bool)

GetConfigurationOk returns a tuple with the Configuration field value and a boolean to check if the value has been set.

func (*ObjectStoreSpec) GetDestinationPath

func (o *ObjectStoreSpec) GetDestinationPath() string

GetDestinationPath returns the DestinationPath field value

func (*ObjectStoreSpec) GetDestinationPathOk

func (o *ObjectStoreSpec) GetDestinationPathOk() (*string, bool)

GetDestinationPathOk returns a tuple with the DestinationPath field value and a boolean to check if the value has been set.

func (*ObjectStoreSpec) GetRetentionPolicy

func (o *ObjectStoreSpec) GetRetentionPolicy() string

GetRetentionPolicy returns the RetentionPolicy field value if set, zero value otherwise.

func (*ObjectStoreSpec) GetRetentionPolicyOk

func (o *ObjectStoreSpec) GetRetentionPolicyOk() (*string, bool)

GetRetentionPolicyOk returns a tuple with the RetentionPolicy field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ObjectStoreSpec) HasRetentionPolicy

func (o *ObjectStoreSpec) HasRetentionPolicy() bool

HasRetentionPolicy returns a boolean if a field has been set.

func (ObjectStoreSpec) MarshalJSON

func (o ObjectStoreSpec) MarshalJSON() ([]byte, error)

func (*ObjectStoreSpec) SetConfiguration

func (o *ObjectStoreSpec) SetConfiguration(v ObjectStoreConfiguration)

SetConfiguration sets field value

func (*ObjectStoreSpec) SetDestinationPath

func (o *ObjectStoreSpec) SetDestinationPath(v string)

SetDestinationPath sets field value

func (*ObjectStoreSpec) SetRetentionPolicy

func (o *ObjectStoreSpec) SetRetentionPolicy(v string)

SetRetentionPolicy gets a reference to the given string and assigns it to the RetentionPolicy field.

type ObjectStoreStatus

type ObjectStoreStatus struct {
	State   *string `json:"state,omitempty"`
	Message *string `json:"message,omitempty"`
}

ObjectStoreStatus struct for ObjectStoreStatus

func NewObjectStoreStatus

func NewObjectStoreStatus() *ObjectStoreStatus

NewObjectStoreStatus instantiates a new ObjectStoreStatus object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewObjectStoreStatusWithDefaults

func NewObjectStoreStatusWithDefaults() *ObjectStoreStatus

NewObjectStoreStatusWithDefaults instantiates a new ObjectStoreStatus object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*ObjectStoreStatus) GetMessage

func (o *ObjectStoreStatus) GetMessage() string

GetMessage returns the Message field value if set, zero value otherwise.

func (*ObjectStoreStatus) GetMessageOk

func (o *ObjectStoreStatus) 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 (*ObjectStoreStatus) GetState

func (o *ObjectStoreStatus) GetState() string

GetState returns the State field value if set, zero value otherwise.

func (*ObjectStoreStatus) GetStateOk

func (o *ObjectStoreStatus) 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 (*ObjectStoreStatus) HasMessage

func (o *ObjectStoreStatus) HasMessage() bool

HasMessage returns a boolean if a field has been set.

func (*ObjectStoreStatus) HasState

func (o *ObjectStoreStatus) HasState() bool

HasState returns a boolean if a field has been set.

func (ObjectStoreStatus) MarshalJSON

func (o ObjectStoreStatus) MarshalJSON() ([]byte, error)

func (*ObjectStoreStatus) SetMessage

func (o *ObjectStoreStatus) SetMessage(v string)

SetMessage gets a reference to the given string and assigns it to the Message field.

func (*ObjectStoreStatus) SetState

func (o *ObjectStoreStatus) SetState(v string)

SetState gets a reference to the given string and assigns it to the State field.

type OrgInvite

type OrgInvite struct {
	Id             *string       `json:"id,omitempty"`
	Email          *string       `json:"email,omitempty"`
	OrganisationId *string       `json:"organisation_id,omitempty"`
	ProjectName    *string       `json:"project_name,omitempty"`
	Role           *string       `json:"role,omitempty"`
	Status         *InviteStatus `json:"status,omitempty"`
	ExpiresAt      *time.Time    `json:"expires_at,omitempty"`
	InvitedBy      *string       `json:"invited_by,omitempty"`
	EmailSent      *bool         `json:"email_sent,omitempty"`
	EmailError     *string       `json:"email_error,omitempty"`
	CreatedAt      *time.Time    `json:"created_at,omitempty"`
	AcceptedAt     *time.Time    `json:"accepted_at,omitempty"`
}

OrgInvite struct for OrgInvite

func NewOrgInvite

func NewOrgInvite() *OrgInvite

NewOrgInvite instantiates a new OrgInvite object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewOrgInviteWithDefaults

func NewOrgInviteWithDefaults() *OrgInvite

NewOrgInviteWithDefaults instantiates a new OrgInvite object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*OrgInvite) GetAcceptedAt

func (o *OrgInvite) GetAcceptedAt() time.Time

GetAcceptedAt returns the AcceptedAt field value if set, zero value otherwise.

func (*OrgInvite) GetAcceptedAtOk

func (o *OrgInvite) GetAcceptedAtOk() (*time.Time, bool)

GetAcceptedAtOk returns a tuple with the AcceptedAt field value if set, nil otherwise and a boolean to check if the value has been set.

func (*OrgInvite) GetCreatedAt

func (o *OrgInvite) GetCreatedAt() time.Time

GetCreatedAt returns the CreatedAt field value if set, zero value otherwise.

func (*OrgInvite) GetCreatedAtOk

func (o *OrgInvite) 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 (*OrgInvite) GetEmail

func (o *OrgInvite) GetEmail() string

GetEmail returns the Email field value if set, zero value otherwise.

func (*OrgInvite) GetEmailError

func (o *OrgInvite) GetEmailError() string

GetEmailError returns the EmailError field value if set, zero value otherwise.

func (*OrgInvite) GetEmailErrorOk

func (o *OrgInvite) GetEmailErrorOk() (*string, bool)

GetEmailErrorOk returns a tuple with the EmailError field value if set, nil otherwise and a boolean to check if the value has been set.

func (*OrgInvite) GetEmailOk

func (o *OrgInvite) 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 (*OrgInvite) GetEmailSent

func (o *OrgInvite) GetEmailSent() bool

GetEmailSent returns the EmailSent field value if set, zero value otherwise.

func (*OrgInvite) GetEmailSentOk

func (o *OrgInvite) GetEmailSentOk() (*bool, bool)

GetEmailSentOk returns a tuple with the EmailSent field value if set, nil otherwise and a boolean to check if the value has been set.

func (*OrgInvite) GetExpiresAt

func (o *OrgInvite) GetExpiresAt() time.Time

GetExpiresAt returns the ExpiresAt field value if set, zero value otherwise.

func (*OrgInvite) GetExpiresAtOk

func (o *OrgInvite) 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 (*OrgInvite) GetId

func (o *OrgInvite) GetId() string

GetId returns the Id field value if set, zero value otherwise.

func (*OrgInvite) GetIdOk

func (o *OrgInvite) 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 (*OrgInvite) GetInvitedBy

func (o *OrgInvite) GetInvitedBy() string

GetInvitedBy returns the InvitedBy field value if set, zero value otherwise.

func (*OrgInvite) GetInvitedByOk

func (o *OrgInvite) GetInvitedByOk() (*string, bool)

GetInvitedByOk returns a tuple with the InvitedBy field value if set, nil otherwise and a boolean to check if the value has been set.

func (*OrgInvite) GetOrganisationId

func (o *OrgInvite) GetOrganisationId() string

GetOrganisationId returns the OrganisationId field value if set, zero value otherwise.

func (*OrgInvite) GetOrganisationIdOk

func (o *OrgInvite) GetOrganisationIdOk() (*string, bool)

GetOrganisationIdOk returns a tuple with the OrganisationId field value if set, nil otherwise and a boolean to check if the value has been set.

func (*OrgInvite) GetProjectName

func (o *OrgInvite) GetProjectName() string

GetProjectName returns the ProjectName field value if set, zero value otherwise.

func (*OrgInvite) GetProjectNameOk

func (o *OrgInvite) GetProjectNameOk() (*string, bool)

GetProjectNameOk returns a tuple with the ProjectName field value if set, nil otherwise and a boolean to check if the value has been set.

func (*OrgInvite) GetRole

func (o *OrgInvite) GetRole() string

GetRole returns the Role field value if set, zero value otherwise.

func (*OrgInvite) GetRoleOk

func (o *OrgInvite) GetRoleOk() (*string, 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 (*OrgInvite) GetStatus

func (o *OrgInvite) GetStatus() InviteStatus

GetStatus returns the Status field value if set, zero value otherwise.

func (*OrgInvite) GetStatusOk

func (o *OrgInvite) GetStatusOk() (*InviteStatus, 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 (*OrgInvite) HasAcceptedAt

func (o *OrgInvite) HasAcceptedAt() bool

HasAcceptedAt returns a boolean if a field has been set.

func (*OrgInvite) HasCreatedAt

func (o *OrgInvite) HasCreatedAt() bool

HasCreatedAt returns a boolean if a field has been set.

func (*OrgInvite) HasEmail

func (o *OrgInvite) HasEmail() bool

HasEmail returns a boolean if a field has been set.

func (*OrgInvite) HasEmailError

func (o *OrgInvite) HasEmailError() bool

HasEmailError returns a boolean if a field has been set.

func (*OrgInvite) HasEmailSent

func (o *OrgInvite) HasEmailSent() bool

HasEmailSent returns a boolean if a field has been set.

func (*OrgInvite) HasExpiresAt

func (o *OrgInvite) HasExpiresAt() bool

HasExpiresAt returns a boolean if a field has been set.

func (*OrgInvite) HasId

func (o *OrgInvite) HasId() bool

HasId returns a boolean if a field has been set.

func (*OrgInvite) HasInvitedBy

func (o *OrgInvite) HasInvitedBy() bool

HasInvitedBy returns a boolean if a field has been set.

func (*OrgInvite) HasOrganisationId

func (o *OrgInvite) HasOrganisationId() bool

HasOrganisationId returns a boolean if a field has been set.

func (*OrgInvite) HasProjectName

func (o *OrgInvite) HasProjectName() bool

HasProjectName returns a boolean if a field has been set.

func (*OrgInvite) HasRole

func (o *OrgInvite) HasRole() bool

HasRole returns a boolean if a field has been set.

func (*OrgInvite) HasStatus

func (o *OrgInvite) HasStatus() bool

HasStatus returns a boolean if a field has been set.

func (OrgInvite) MarshalJSON

func (o OrgInvite) MarshalJSON() ([]byte, error)

func (*OrgInvite) SetAcceptedAt

func (o *OrgInvite) SetAcceptedAt(v time.Time)

SetAcceptedAt gets a reference to the given time.Time and assigns it to the AcceptedAt field.

func (*OrgInvite) SetCreatedAt

func (o *OrgInvite) SetCreatedAt(v time.Time)

SetCreatedAt gets a reference to the given time.Time and assigns it to the CreatedAt field.

func (*OrgInvite) SetEmail

func (o *OrgInvite) SetEmail(v string)

SetEmail gets a reference to the given string and assigns it to the Email field.

func (*OrgInvite) SetEmailError

func (o *OrgInvite) SetEmailError(v string)

SetEmailError gets a reference to the given string and assigns it to the EmailError field.

func (*OrgInvite) SetEmailSent

func (o *OrgInvite) SetEmailSent(v bool)

SetEmailSent gets a reference to the given bool and assigns it to the EmailSent field.

func (*OrgInvite) SetExpiresAt

func (o *OrgInvite) SetExpiresAt(v time.Time)

SetExpiresAt gets a reference to the given time.Time and assigns it to the ExpiresAt field.

func (*OrgInvite) SetId

func (o *OrgInvite) SetId(v string)

SetId gets a reference to the given string and assigns it to the Id field.

func (*OrgInvite) SetInvitedBy

func (o *OrgInvite) SetInvitedBy(v string)

SetInvitedBy gets a reference to the given string and assigns it to the InvitedBy field.

func (*OrgInvite) SetOrganisationId

func (o *OrgInvite) SetOrganisationId(v string)

SetOrganisationId gets a reference to the given string and assigns it to the OrganisationId field.

func (*OrgInvite) SetProjectName

func (o *OrgInvite) SetProjectName(v string)

SetProjectName gets a reference to the given string and assigns it to the ProjectName field.

func (*OrgInvite) SetRole

func (o *OrgInvite) SetRole(v string)

SetRole gets a reference to the given string and assigns it to the Role field.

func (*OrgInvite) SetStatus

func (o *OrgInvite) SetStatus(v InviteStatus)

SetStatus gets a reference to the given InviteStatus and assigns it to the Status field.

type OrgInviteCreateRequest

type OrgInviteCreateRequest struct {
	Email         string `json:"email"`
	ProjectName   string `json:"project_name"`
	Role          string `json:"role"`
	ExpiresInDays int32  `json:"expires_in_days"`
}

OrgInviteCreateRequest struct for OrgInviteCreateRequest

func NewOrgInviteCreateRequest

func NewOrgInviteCreateRequest(email string, projectName string, role string, expiresInDays int32) *OrgInviteCreateRequest

NewOrgInviteCreateRequest instantiates a new OrgInviteCreateRequest object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewOrgInviteCreateRequestWithDefaults

func NewOrgInviteCreateRequestWithDefaults() *OrgInviteCreateRequest

NewOrgInviteCreateRequestWithDefaults instantiates a new OrgInviteCreateRequest object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*OrgInviteCreateRequest) GetEmail

func (o *OrgInviteCreateRequest) GetEmail() string

GetEmail returns the Email field value

func (*OrgInviteCreateRequest) GetEmailOk

func (o *OrgInviteCreateRequest) GetEmailOk() (*string, bool)

GetEmailOk returns a tuple with the Email field value and a boolean to check if the value has been set.

func (*OrgInviteCreateRequest) GetExpiresInDays

func (o *OrgInviteCreateRequest) GetExpiresInDays() int32

GetExpiresInDays returns the ExpiresInDays field value

func (*OrgInviteCreateRequest) GetExpiresInDaysOk

func (o *OrgInviteCreateRequest) GetExpiresInDaysOk() (*int32, bool)

GetExpiresInDaysOk returns a tuple with the ExpiresInDays field value and a boolean to check if the value has been set.

func (*OrgInviteCreateRequest) GetProjectName

func (o *OrgInviteCreateRequest) GetProjectName() string

GetProjectName returns the ProjectName field value

func (*OrgInviteCreateRequest) GetProjectNameOk

func (o *OrgInviteCreateRequest) GetProjectNameOk() (*string, bool)

GetProjectNameOk returns a tuple with the ProjectName field value and a boolean to check if the value has been set.

func (*OrgInviteCreateRequest) GetRole

func (o *OrgInviteCreateRequest) GetRole() string

GetRole returns the Role field value

func (*OrgInviteCreateRequest) GetRoleOk

func (o *OrgInviteCreateRequest) GetRoleOk() (*string, bool)

GetRoleOk returns a tuple with the Role field value and a boolean to check if the value has been set.

func (OrgInviteCreateRequest) MarshalJSON

func (o OrgInviteCreateRequest) MarshalJSON() ([]byte, error)

func (*OrgInviteCreateRequest) SetEmail

func (o *OrgInviteCreateRequest) SetEmail(v string)

SetEmail sets field value

func (*OrgInviteCreateRequest) SetExpiresInDays

func (o *OrgInviteCreateRequest) SetExpiresInDays(v int32)

SetExpiresInDays sets field value

func (*OrgInviteCreateRequest) SetProjectName

func (o *OrgInviteCreateRequest) SetProjectName(v string)

SetProjectName sets field value

func (*OrgInviteCreateRequest) SetRole

func (o *OrgInviteCreateRequest) SetRole(v string)

SetRole sets field value

type OrgInviteCreateResponse

type OrgInviteCreateResponse struct {
	Id             *string       `json:"id,omitempty"`
	Email          *string       `json:"email,omitempty"`
	OrganisationId *string       `json:"organisation_id,omitempty"`
	ProjectName    *string       `json:"project_name,omitempty"`
	Role           *string       `json:"role,omitempty"`
	Status         *InviteStatus `json:"status,omitempty"`
	ExpiresAt      *time.Time    `json:"expires_at,omitempty"`
	InvitedBy      *string       `json:"invited_by,omitempty"`
	EmailSent      *bool         `json:"email_sent,omitempty"`
	// Raw invite token (shown only once at creation)
	InviteToken *string    `json:"invite_token,omitempty"`
	CreatedAt   *time.Time `json:"created_at,omitempty"`
}

OrgInviteCreateResponse struct for OrgInviteCreateResponse

func NewOrgInviteCreateResponse

func NewOrgInviteCreateResponse() *OrgInviteCreateResponse

NewOrgInviteCreateResponse instantiates a new OrgInviteCreateResponse object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewOrgInviteCreateResponseWithDefaults

func NewOrgInviteCreateResponseWithDefaults() *OrgInviteCreateResponse

NewOrgInviteCreateResponseWithDefaults instantiates a new OrgInviteCreateResponse object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*OrgInviteCreateResponse) GetCreatedAt

func (o *OrgInviteCreateResponse) GetCreatedAt() time.Time

GetCreatedAt returns the CreatedAt field value if set, zero value otherwise.

func (*OrgInviteCreateResponse) GetCreatedAtOk

func (o *OrgInviteCreateResponse) 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 (*OrgInviteCreateResponse) GetEmail

func (o *OrgInviteCreateResponse) GetEmail() string

GetEmail returns the Email field value if set, zero value otherwise.

func (*OrgInviteCreateResponse) GetEmailOk

func (o *OrgInviteCreateResponse) 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 (*OrgInviteCreateResponse) GetEmailSent

func (o *OrgInviteCreateResponse) GetEmailSent() bool

GetEmailSent returns the EmailSent field value if set, zero value otherwise.

func (*OrgInviteCreateResponse) GetEmailSentOk

func (o *OrgInviteCreateResponse) GetEmailSentOk() (*bool, bool)

GetEmailSentOk returns a tuple with the EmailSent field value if set, nil otherwise and a boolean to check if the value has been set.

func (*OrgInviteCreateResponse) GetExpiresAt

func (o *OrgInviteCreateResponse) GetExpiresAt() time.Time

GetExpiresAt returns the ExpiresAt field value if set, zero value otherwise.

func (*OrgInviteCreateResponse) GetExpiresAtOk

func (o *OrgInviteCreateResponse) 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 (*OrgInviteCreateResponse) GetId

func (o *OrgInviteCreateResponse) GetId() string

GetId returns the Id field value if set, zero value otherwise.

func (*OrgInviteCreateResponse) GetIdOk

func (o *OrgInviteCreateResponse) 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 (*OrgInviteCreateResponse) GetInviteToken

func (o *OrgInviteCreateResponse) GetInviteToken() string

GetInviteToken returns the InviteToken field value if set, zero value otherwise.

func (*OrgInviteCreateResponse) GetInviteTokenOk

func (o *OrgInviteCreateResponse) GetInviteTokenOk() (*string, bool)

GetInviteTokenOk returns a tuple with the InviteToken field value if set, nil otherwise and a boolean to check if the value has been set.

func (*OrgInviteCreateResponse) GetInvitedBy

func (o *OrgInviteCreateResponse) GetInvitedBy() string

GetInvitedBy returns the InvitedBy field value if set, zero value otherwise.

func (*OrgInviteCreateResponse) GetInvitedByOk

func (o *OrgInviteCreateResponse) GetInvitedByOk() (*string, bool)

GetInvitedByOk returns a tuple with the InvitedBy field value if set, nil otherwise and a boolean to check if the value has been set.

func (*OrgInviteCreateResponse) GetOrganisationId

func (o *OrgInviteCreateResponse) GetOrganisationId() string

GetOrganisationId returns the OrganisationId field value if set, zero value otherwise.

func (*OrgInviteCreateResponse) GetOrganisationIdOk

func (o *OrgInviteCreateResponse) GetOrganisationIdOk() (*string, bool)

GetOrganisationIdOk returns a tuple with the OrganisationId field value if set, nil otherwise and a boolean to check if the value has been set.

func (*OrgInviteCreateResponse) GetProjectName

func (o *OrgInviteCreateResponse) GetProjectName() string

GetProjectName returns the ProjectName field value if set, zero value otherwise.

func (*OrgInviteCreateResponse) GetProjectNameOk

func (o *OrgInviteCreateResponse) GetProjectNameOk() (*string, bool)

GetProjectNameOk returns a tuple with the ProjectName field value if set, nil otherwise and a boolean to check if the value has been set.

func (*OrgInviteCreateResponse) GetRole

func (o *OrgInviteCreateResponse) GetRole() string

GetRole returns the Role field value if set, zero value otherwise.

func (*OrgInviteCreateResponse) GetRoleOk

func (o *OrgInviteCreateResponse) GetRoleOk() (*string, 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 (*OrgInviteCreateResponse) GetStatus

func (o *OrgInviteCreateResponse) GetStatus() InviteStatus

GetStatus returns the Status field value if set, zero value otherwise.

func (*OrgInviteCreateResponse) GetStatusOk

func (o *OrgInviteCreateResponse) GetStatusOk() (*InviteStatus, 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 (*OrgInviteCreateResponse) HasCreatedAt

func (o *OrgInviteCreateResponse) HasCreatedAt() bool

HasCreatedAt returns a boolean if a field has been set.

func (*OrgInviteCreateResponse) HasEmail

func (o *OrgInviteCreateResponse) HasEmail() bool

HasEmail returns a boolean if a field has been set.

func (*OrgInviteCreateResponse) HasEmailSent

func (o *OrgInviteCreateResponse) HasEmailSent() bool

HasEmailSent returns a boolean if a field has been set.

func (*OrgInviteCreateResponse) HasExpiresAt

func (o *OrgInviteCreateResponse) HasExpiresAt() bool

HasExpiresAt returns a boolean if a field has been set.

func (*OrgInviteCreateResponse) HasId

func (o *OrgInviteCreateResponse) HasId() bool

HasId returns a boolean if a field has been set.

func (*OrgInviteCreateResponse) HasInviteToken

func (o *OrgInviteCreateResponse) HasInviteToken() bool

HasInviteToken returns a boolean if a field has been set.

func (*OrgInviteCreateResponse) HasInvitedBy

func (o *OrgInviteCreateResponse) HasInvitedBy() bool

HasInvitedBy returns a boolean if a field has been set.

func (*OrgInviteCreateResponse) HasOrganisationId

func (o *OrgInviteCreateResponse) HasOrganisationId() bool

HasOrganisationId returns a boolean if a field has been set.

func (*OrgInviteCreateResponse) HasProjectName

func (o *OrgInviteCreateResponse) HasProjectName() bool

HasProjectName returns a boolean if a field has been set.

func (*OrgInviteCreateResponse) HasRole

func (o *OrgInviteCreateResponse) HasRole() bool

HasRole returns a boolean if a field has been set.

func (*OrgInviteCreateResponse) HasStatus

func (o *OrgInviteCreateResponse) HasStatus() bool

HasStatus returns a boolean if a field has been set.

func (OrgInviteCreateResponse) MarshalJSON

func (o OrgInviteCreateResponse) MarshalJSON() ([]byte, error)

func (*OrgInviteCreateResponse) SetCreatedAt

func (o *OrgInviteCreateResponse) SetCreatedAt(v time.Time)

SetCreatedAt gets a reference to the given time.Time and assigns it to the CreatedAt field.

func (*OrgInviteCreateResponse) SetEmail

func (o *OrgInviteCreateResponse) SetEmail(v string)

SetEmail gets a reference to the given string and assigns it to the Email field.

func (*OrgInviteCreateResponse) SetEmailSent

func (o *OrgInviteCreateResponse) SetEmailSent(v bool)

SetEmailSent gets a reference to the given bool and assigns it to the EmailSent field.

func (*OrgInviteCreateResponse) SetExpiresAt

func (o *OrgInviteCreateResponse) SetExpiresAt(v time.Time)

SetExpiresAt gets a reference to the given time.Time and assigns it to the ExpiresAt field.

func (*OrgInviteCreateResponse) SetId

func (o *OrgInviteCreateResponse) SetId(v string)

SetId gets a reference to the given string and assigns it to the Id field.

func (*OrgInviteCreateResponse) SetInviteToken

func (o *OrgInviteCreateResponse) SetInviteToken(v string)

SetInviteToken gets a reference to the given string and assigns it to the InviteToken field.

func (*OrgInviteCreateResponse) SetInvitedBy

func (o *OrgInviteCreateResponse) SetInvitedBy(v string)

SetInvitedBy gets a reference to the given string and assigns it to the InvitedBy field.

func (*OrgInviteCreateResponse) SetOrganisationId

func (o *OrgInviteCreateResponse) SetOrganisationId(v string)

SetOrganisationId gets a reference to the given string and assigns it to the OrganisationId field.

func (*OrgInviteCreateResponse) SetProjectName

func (o *OrgInviteCreateResponse) SetProjectName(v string)

SetProjectName gets a reference to the given string and assigns it to the ProjectName field.

func (*OrgInviteCreateResponse) SetRole

func (o *OrgInviteCreateResponse) SetRole(v string)

SetRole gets a reference to the given string and assigns it to the Role field.

func (*OrgInviteCreateResponse) SetStatus

func (o *OrgInviteCreateResponse) SetStatus(v InviteStatus)

SetStatus gets a reference to the given InviteStatus and assigns it to the Status field.

type OrgInviteInfo

type OrgInviteInfo struct {
	OrgName     *string    `json:"org_name,omitempty"`
	ProjectName *string    `json:"project_name,omitempty"`
	InviterName *string    `json:"inviter_name,omitempty"`
	ExpiresAt   *time.Time `json:"expires_at,omitempty"`
}

OrgInviteInfo struct for OrgInviteInfo

func NewOrgInviteInfo

func NewOrgInviteInfo() *OrgInviteInfo

NewOrgInviteInfo instantiates a new OrgInviteInfo object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewOrgInviteInfoWithDefaults

func NewOrgInviteInfoWithDefaults() *OrgInviteInfo

NewOrgInviteInfoWithDefaults instantiates a new OrgInviteInfo object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*OrgInviteInfo) GetExpiresAt

func (o *OrgInviteInfo) GetExpiresAt() time.Time

GetExpiresAt returns the ExpiresAt field value if set, zero value otherwise.

func (*OrgInviteInfo) GetExpiresAtOk

func (o *OrgInviteInfo) 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 (*OrgInviteInfo) GetInviterName

func (o *OrgInviteInfo) GetInviterName() string

GetInviterName returns the InviterName field value if set, zero value otherwise.

func (*OrgInviteInfo) GetInviterNameOk

func (o *OrgInviteInfo) GetInviterNameOk() (*string, bool)

GetInviterNameOk returns a tuple with the InviterName field value if set, nil otherwise and a boolean to check if the value has been set.

func (*OrgInviteInfo) GetOrgName

func (o *OrgInviteInfo) GetOrgName() string

GetOrgName returns the OrgName field value if set, zero value otherwise.

func (*OrgInviteInfo) GetOrgNameOk

func (o *OrgInviteInfo) GetOrgNameOk() (*string, bool)

GetOrgNameOk returns a tuple with the OrgName field value if set, nil otherwise and a boolean to check if the value has been set.

func (*OrgInviteInfo) GetProjectName

func (o *OrgInviteInfo) GetProjectName() string

GetProjectName returns the ProjectName field value if set, zero value otherwise.

func (*OrgInviteInfo) GetProjectNameOk

func (o *OrgInviteInfo) GetProjectNameOk() (*string, bool)

GetProjectNameOk returns a tuple with the ProjectName field value if set, nil otherwise and a boolean to check if the value has been set.

func (*OrgInviteInfo) HasExpiresAt

func (o *OrgInviteInfo) HasExpiresAt() bool

HasExpiresAt returns a boolean if a field has been set.

func (*OrgInviteInfo) HasInviterName

func (o *OrgInviteInfo) HasInviterName() bool

HasInviterName returns a boolean if a field has been set.

func (*OrgInviteInfo) HasOrgName

func (o *OrgInviteInfo) HasOrgName() bool

HasOrgName returns a boolean if a field has been set.

func (*OrgInviteInfo) HasProjectName

func (o *OrgInviteInfo) HasProjectName() bool

HasProjectName returns a boolean if a field has been set.

func (OrgInviteInfo) MarshalJSON

func (o OrgInviteInfo) MarshalJSON() ([]byte, error)

func (*OrgInviteInfo) SetExpiresAt

func (o *OrgInviteInfo) SetExpiresAt(v time.Time)

SetExpiresAt gets a reference to the given time.Time and assigns it to the ExpiresAt field.

func (*OrgInviteInfo) SetInviterName

func (o *OrgInviteInfo) SetInviterName(v string)

SetInviterName gets a reference to the given string and assigns it to the InviterName field.

func (*OrgInviteInfo) SetOrgName

func (o *OrgInviteInfo) SetOrgName(v string)

SetOrgName gets a reference to the given string and assigns it to the OrgName field.

func (*OrgInviteInfo) SetProjectName

func (o *OrgInviteInfo) SetProjectName(v string)

SetProjectName gets a reference to the given string and assigns it to the ProjectName field.

type OrgInviteList

type OrgInviteList struct {
	Items []OrgInvite `json:"items,omitempty"`
	Total *int32      `json:"total,omitempty"`
}

OrgInviteList struct for OrgInviteList

func NewOrgInviteList

func NewOrgInviteList() *OrgInviteList

NewOrgInviteList instantiates a new OrgInviteList object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewOrgInviteListWithDefaults

func NewOrgInviteListWithDefaults() *OrgInviteList

NewOrgInviteListWithDefaults instantiates a new OrgInviteList object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*OrgInviteList) GetItems

func (o *OrgInviteList) GetItems() []OrgInvite

GetItems returns the Items field value if set, zero value otherwise.

func (*OrgInviteList) GetItemsOk

func (o *OrgInviteList) GetItemsOk() ([]OrgInvite, bool)

GetItemsOk returns a tuple with the Items field value if set, nil otherwise and a boolean to check if the value has been set.

func (*OrgInviteList) GetTotal

func (o *OrgInviteList) GetTotal() int32

GetTotal returns the Total field value if set, zero value otherwise.

func (*OrgInviteList) GetTotalOk

func (o *OrgInviteList) GetTotalOk() (*int32, 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 (*OrgInviteList) HasItems

func (o *OrgInviteList) HasItems() bool

HasItems returns a boolean if a field has been set.

func (*OrgInviteList) HasTotal

func (o *OrgInviteList) HasTotal() bool

HasTotal returns a boolean if a field has been set.

func (OrgInviteList) MarshalJSON

func (o OrgInviteList) MarshalJSON() ([]byte, error)

func (*OrgInviteList) SetItems

func (o *OrgInviteList) SetItems(v []OrgInvite)

SetItems gets a reference to the given []OrgInvite and assigns it to the Items field.

func (*OrgInviteList) SetTotal

func (o *OrgInviteList) SetTotal(v int32)

SetTotal gets a reference to the given int32 and assigns it to the Total field.

type Organisation

type Organisation struct {
	Id         *string      `json:"id,omitempty"`
	Name       *string      `json:"name,omitempty"`
	Domains    []DomainName `json:"domains,omitempty"`
	IsPlatform *bool        `json:"is_platform,omitempty"`
	CreatedAt  *time.Time   `json:"created_at,omitempty"`
	UpdatedAt  *time.Time   `json:"updated_at,omitempty"`
}

Organisation struct for Organisation

func NewOrganisation

func NewOrganisation() *Organisation

NewOrganisation instantiates a new Organisation object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewOrganisationWithDefaults

func NewOrganisationWithDefaults() *Organisation

NewOrganisationWithDefaults instantiates a new Organisation object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*Organisation) GetCreatedAt

func (o *Organisation) GetCreatedAt() time.Time

GetCreatedAt returns the CreatedAt field value if set, zero value otherwise.

func (*Organisation) GetCreatedAtOk

func (o *Organisation) 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 (*Organisation) GetDomains

func (o *Organisation) GetDomains() []DomainName

GetDomains returns the Domains field value if set, zero value otherwise.

func (*Organisation) GetDomainsOk

func (o *Organisation) GetDomainsOk() ([]DomainName, 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 (*Organisation) GetId

func (o *Organisation) GetId() string

GetId returns the Id field value if set, zero value otherwise.

func (*Organisation) GetIdOk

func (o *Organisation) 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 (*Organisation) GetIsPlatform

func (o *Organisation) GetIsPlatform() bool

GetIsPlatform returns the IsPlatform field value if set, zero value otherwise.

func (*Organisation) GetIsPlatformOk

func (o *Organisation) GetIsPlatformOk() (*bool, bool)

GetIsPlatformOk returns a tuple with the IsPlatform field value if set, nil otherwise and a boolean to check if the value has been set.

func (*Organisation) GetName

func (o *Organisation) GetName() string

GetName returns the Name field value if set, zero value otherwise.

func (*Organisation) GetNameOk

func (o *Organisation) 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 (*Organisation) GetUpdatedAt

func (o *Organisation) GetUpdatedAt() time.Time

GetUpdatedAt returns the UpdatedAt field value if set, zero value otherwise.

func (*Organisation) GetUpdatedAtOk

func (o *Organisation) 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 (*Organisation) HasCreatedAt

func (o *Organisation) HasCreatedAt() bool

HasCreatedAt returns a boolean if a field has been set.

func (*Organisation) HasDomains

func (o *Organisation) HasDomains() bool

HasDomains returns a boolean if a field has been set.

func (*Organisation) HasId

func (o *Organisation) HasId() bool

HasId returns a boolean if a field has been set.

func (*Organisation) HasIsPlatform

func (o *Organisation) HasIsPlatform() bool

HasIsPlatform returns a boolean if a field has been set.

func (*Organisation) HasName

func (o *Organisation) HasName() bool

HasName returns a boolean if a field has been set.

func (*Organisation) HasUpdatedAt

func (o *Organisation) HasUpdatedAt() bool

HasUpdatedAt returns a boolean if a field has been set.

func (Organisation) MarshalJSON

func (o Organisation) MarshalJSON() ([]byte, error)

func (*Organisation) SetCreatedAt

func (o *Organisation) SetCreatedAt(v time.Time)

SetCreatedAt gets a reference to the given time.Time and assigns it to the CreatedAt field.

func (*Organisation) SetDomains

func (o *Organisation) SetDomains(v []DomainName)

SetDomains gets a reference to the given []DomainName and assigns it to the Domains field.

func (*Organisation) SetId

func (o *Organisation) SetId(v string)

SetId gets a reference to the given string and assigns it to the Id field.

func (*Organisation) SetIsPlatform

func (o *Organisation) SetIsPlatform(v bool)

SetIsPlatform gets a reference to the given bool and assigns it to the IsPlatform field.

func (*Organisation) SetName

func (o *Organisation) SetName(v string)

SetName gets a reference to the given string and assigns it to the Name field.

func (*Organisation) SetUpdatedAt

func (o *Organisation) SetUpdatedAt(v time.Time)

SetUpdatedAt gets a reference to the given time.Time and assigns it to the UpdatedAt field.

type OutputDescriptor

type OutputDescriptor struct {
	// Stable output accessor name, for example `host` or `public_url`.
	Name string `json:"name"`
	// Scalar value type exposed by this output.
	Type string `json:"type"`
	// True when the output value is sensitive and should never be returned in normal metadata APIs.
	Sensitive bool `json:"sensitive"`
}

OutputDescriptor Declared output metadata for a topology node. Values are not returned here.

func NewOutputDescriptor

func NewOutputDescriptor(name string, type_ string, sensitive bool) *OutputDescriptor

NewOutputDescriptor instantiates a new OutputDescriptor object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewOutputDescriptorWithDefaults

func NewOutputDescriptorWithDefaults() *OutputDescriptor

NewOutputDescriptorWithDefaults instantiates a new OutputDescriptor object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*OutputDescriptor) GetName

func (o *OutputDescriptor) GetName() string

GetName returns the Name field value

func (*OutputDescriptor) GetNameOk

func (o *OutputDescriptor) GetNameOk() (*string, bool)

GetNameOk returns a tuple with the Name field value and a boolean to check if the value has been set.

func (*OutputDescriptor) GetSensitive

func (o *OutputDescriptor) GetSensitive() bool

GetSensitive returns the Sensitive field value

func (*OutputDescriptor) GetSensitiveOk

func (o *OutputDescriptor) GetSensitiveOk() (*bool, bool)

GetSensitiveOk returns a tuple with the Sensitive field value and a boolean to check if the value has been set.

func (*OutputDescriptor) GetType

func (o *OutputDescriptor) GetType() string

GetType returns the Type field value

func (*OutputDescriptor) GetTypeOk

func (o *OutputDescriptor) GetTypeOk() (*string, bool)

GetTypeOk returns a tuple with the Type field value and a boolean to check if the value has been set.

func (OutputDescriptor) MarshalJSON

func (o OutputDescriptor) MarshalJSON() ([]byte, error)

func (*OutputDescriptor) SetName

func (o *OutputDescriptor) SetName(v string)

SetName sets field value

func (*OutputDescriptor) SetSensitive

func (o *OutputDescriptor) SetSensitive(v bool)

SetSensitive sets field value

func (*OutputDescriptor) SetType

func (o *OutputDescriptor) SetType(v string)

SetType sets field value

type OutputValueRef

type OutputValueRef struct {
	// Output accessor on the connection's `from` node.
	Output string `json:"output"`
}

OutputValueRef References one output on the connection's `from` node.

func NewOutputValueRef

func NewOutputValueRef(output string) *OutputValueRef

NewOutputValueRef instantiates a new OutputValueRef object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewOutputValueRefWithDefaults

func NewOutputValueRefWithDefaults() *OutputValueRef

NewOutputValueRefWithDefaults instantiates a new OutputValueRef object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*OutputValueRef) GetOutput

func (o *OutputValueRef) GetOutput() string

GetOutput returns the Output field value

func (*OutputValueRef) GetOutputOk

func (o *OutputValueRef) GetOutputOk() (*string, bool)

GetOutputOk returns a tuple with the Output field value and a boolean to check if the value has been set.

func (OutputValueRef) MarshalJSON

func (o OutputValueRef) MarshalJSON() ([]byte, error)

func (*OutputValueRef) SetOutput

func (o *OutputValueRef) SetOutput(v string)

SetOutput sets field value

type Port

type Port struct {
	Name            string  `json:"name"`
	Number          int32   `json:"number"`
	Protocol        *string `json:"protocol,omitempty"`
	ExposedToPublic bool    `json:"exposed_to_public"`
	SubdomainPrefix *string `json:"subdomain_prefix,omitempty"`
}

Port struct for Port

func NewPort

func NewPort(name string, number int32, exposedToPublic bool) *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) GetExposedToPublic

func (o *Port) GetExposedToPublic() bool

GetExposedToPublic returns the ExposedToPublic field value

func (*Port) GetExposedToPublicOk

func (o *Port) GetExposedToPublicOk() (*bool, bool)

GetExposedToPublicOk returns a tuple with the ExposedToPublic field value and a boolean to check if the value has been set.

func (*Port) GetName

func (o *Port) GetName() string

GetName returns the Name field value

func (*Port) GetNameOk

func (o *Port) GetNameOk() (*string, bool)

GetNameOk returns a tuple with the Name field value and a boolean to check if the value has been set.

func (*Port) GetNumber

func (o *Port) GetNumber() int32

GetNumber returns the Number field value

func (*Port) GetNumberOk

func (o *Port) GetNumberOk() (*int32, bool)

GetNumberOk returns a tuple with the Number field value 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) GetSubdomainPrefix

func (o *Port) GetSubdomainPrefix() string

GetSubdomainPrefix returns the SubdomainPrefix field value if set, zero value otherwise.

func (*Port) GetSubdomainPrefixOk

func (o *Port) GetSubdomainPrefixOk() (*string, bool)

GetSubdomainPrefixOk returns a tuple with the SubdomainPrefix field value if set, nil otherwise and a boolean to check if the value has been set.

func (*Port) HasProtocol

func (o *Port) HasProtocol() bool

HasProtocol returns a boolean if a field has been set.

func (*Port) HasSubdomainPrefix

func (o *Port) HasSubdomainPrefix() bool

HasSubdomainPrefix returns a boolean if a field has been set.

func (Port) MarshalJSON

func (o Port) MarshalJSON() ([]byte, error)

func (*Port) SetExposedToPublic

func (o *Port) SetExposedToPublic(v bool)

SetExposedToPublic sets field value

func (*Port) SetName

func (o *Port) SetName(v string)

SetName sets field value

func (*Port) SetNumber

func (o *Port) SetNumber(v int32)

SetNumber sets field value

func (*Port) SetProtocol

func (o *Port) SetProtocol(v string)

SetProtocol gets a reference to the given string and assigns it to the Protocol field.

func (*Port) SetSubdomainPrefix

func (o *Port) SetSubdomainPrefix(v string)

SetSubdomainPrefix gets a reference to the given string and assigns it to the SubdomainPrefix field.

type PostgresAddon

type PostgresAddon struct {
	Id             *string `json:"id,omitempty"`
	OrganisationId *string `json:"organisation_id,omitempty"`
	ProjectId      *string `json:"project_id,omitempty"`
	UserId         *string `json:"user_id,omitempty"`
	ClusterId      *string `json:"cluster_id,omitempty"`
	// Unique name for this PostgreSQL cluster
	Name        string               `json:"name"`
	Namespace   *string              `json:"namespace,omitempty"`
	Labels      []Label              `json:"labels,omitempty"`
	Annotations []Annotation         `json:"annotations,omitempty"`
	Revision    *string              `json:"revision,omitempty"`
	Outputs     []OutputDescriptor   `json:"outputs,omitempty"`
	Spec        PostgresAddonSpec    `json:"spec"`
	Status      *PostgresAddonStatus `json:"status,omitempty"`
	CreatedAt   *time.Time           `json:"created_at,omitempty"`
	UpdatedAt   *time.Time           `json:"updated_at,omitempty"`
}

PostgresAddon struct for PostgresAddon

func NewPostgresAddon

func NewPostgresAddon(name string, spec PostgresAddonSpec) *PostgresAddon

NewPostgresAddon instantiates a new PostgresAddon object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewPostgresAddonWithDefaults

func NewPostgresAddonWithDefaults() *PostgresAddon

NewPostgresAddonWithDefaults instantiates a new PostgresAddon object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*PostgresAddon) GetAnnotations

func (o *PostgresAddon) GetAnnotations() []Annotation

GetAnnotations returns the Annotations field value if set, zero value otherwise.

func (*PostgresAddon) GetAnnotationsOk

func (o *PostgresAddon) GetAnnotationsOk() ([]Annotation, bool)

GetAnnotationsOk returns a tuple with the Annotations field value if set, nil otherwise and a boolean to check if the value has been set.

func (*PostgresAddon) GetClusterId

func (o *PostgresAddon) GetClusterId() string

GetClusterId returns the ClusterId field value if set, zero value otherwise.

func (*PostgresAddon) GetClusterIdOk

func (o *PostgresAddon) GetClusterIdOk() (*string, bool)

GetClusterIdOk returns a tuple with the ClusterId field value if set, nil otherwise and a boolean to check if the value has been set.

func (*PostgresAddon) GetCreatedAt

func (o *PostgresAddon) GetCreatedAt() time.Time

GetCreatedAt returns the CreatedAt field value if set, zero value otherwise.

func (*PostgresAddon) GetCreatedAtOk

func (o *PostgresAddon) 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 (*PostgresAddon) GetId

func (o *PostgresAddon) GetId() string

GetId returns the Id field value if set, zero value otherwise.

func (*PostgresAddon) GetIdOk

func (o *PostgresAddon) 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 (*PostgresAddon) GetLabels

func (o *PostgresAddon) GetLabels() []Label

GetLabels returns the Labels field value if set, zero value otherwise.

func (*PostgresAddon) GetLabelsOk

func (o *PostgresAddon) GetLabelsOk() ([]Label, 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 (*PostgresAddon) GetName

func (o *PostgresAddon) GetName() string

GetName returns the Name field value

func (*PostgresAddon) GetNameOk

func (o *PostgresAddon) GetNameOk() (*string, bool)

GetNameOk returns a tuple with the Name field value and a boolean to check if the value has been set.

func (*PostgresAddon) GetNamespace

func (o *PostgresAddon) GetNamespace() string

GetNamespace returns the Namespace field value if set, zero value otherwise.

func (*PostgresAddon) GetNamespaceOk

func (o *PostgresAddon) GetNamespaceOk() (*string, bool)

GetNamespaceOk returns a tuple with the Namespace field value if set, nil otherwise and a boolean to check if the value has been set.

func (*PostgresAddon) GetOrganisationId

func (o *PostgresAddon) GetOrganisationId() string

GetOrganisationId returns the OrganisationId field value if set, zero value otherwise.

func (*PostgresAddon) GetOrganisationIdOk

func (o *PostgresAddon) GetOrganisationIdOk() (*string, bool)

GetOrganisationIdOk returns a tuple with the OrganisationId field value if set, nil otherwise and a boolean to check if the value has been set.

func (*PostgresAddon) GetOutputs

func (o *PostgresAddon) GetOutputs() []OutputDescriptor

GetOutputs returns the Outputs field value if set, zero value otherwise.

func (*PostgresAddon) GetOutputsOk

func (o *PostgresAddon) GetOutputsOk() ([]OutputDescriptor, bool)

GetOutputsOk returns a tuple with the Outputs field value if set, nil otherwise and a boolean to check if the value has been set.

func (*PostgresAddon) GetProjectId

func (o *PostgresAddon) GetProjectId() string

GetProjectId returns the ProjectId field value if set, zero value otherwise.

func (*PostgresAddon) GetProjectIdOk

func (o *PostgresAddon) GetProjectIdOk() (*string, bool)

GetProjectIdOk returns a tuple with the ProjectId field value if set, nil otherwise and a boolean to check if the value has been set.

func (*PostgresAddon) GetRevision

func (o *PostgresAddon) GetRevision() string

GetRevision returns the Revision field value if set, zero value otherwise.

func (*PostgresAddon) GetRevisionOk

func (o *PostgresAddon) GetRevisionOk() (*string, bool)

GetRevisionOk returns a tuple with the Revision field value if set, nil otherwise and a boolean to check if the value has been set.

func (*PostgresAddon) GetSpec

func (o *PostgresAddon) GetSpec() PostgresAddonSpec

GetSpec returns the Spec field value

func (*PostgresAddon) GetSpecOk

func (o *PostgresAddon) GetSpecOk() (*PostgresAddonSpec, bool)

GetSpecOk returns a tuple with the Spec field value and a boolean to check if the value has been set.

func (*PostgresAddon) GetStatus

func (o *PostgresAddon) GetStatus() PostgresAddonStatus

GetStatus returns the Status field value if set, zero value otherwise.

func (*PostgresAddon) GetStatusOk

func (o *PostgresAddon) GetStatusOk() (*PostgresAddonStatus, 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 (*PostgresAddon) GetUpdatedAt

func (o *PostgresAddon) GetUpdatedAt() time.Time

GetUpdatedAt returns the UpdatedAt field value if set, zero value otherwise.

func (*PostgresAddon) GetUpdatedAtOk

func (o *PostgresAddon) 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 (*PostgresAddon) GetUserId

func (o *PostgresAddon) GetUserId() string

GetUserId returns the UserId field value if set, zero value otherwise.

func (*PostgresAddon) GetUserIdOk

func (o *PostgresAddon) 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 (*PostgresAddon) HasAnnotations

func (o *PostgresAddon) HasAnnotations() bool

HasAnnotations returns a boolean if a field has been set.

func (*PostgresAddon) HasClusterId

func (o *PostgresAddon) HasClusterId() bool

HasClusterId returns a boolean if a field has been set.

func (*PostgresAddon) HasCreatedAt

func (o *PostgresAddon) HasCreatedAt() bool

HasCreatedAt returns a boolean if a field has been set.

func (*PostgresAddon) HasId

func (o *PostgresAddon) HasId() bool

HasId returns a boolean if a field has been set.

func (*PostgresAddon) HasLabels

func (o *PostgresAddon) HasLabels() bool

HasLabels returns a boolean if a field has been set.

func (*PostgresAddon) HasNamespace

func (o *PostgresAddon) HasNamespace() bool

HasNamespace returns a boolean if a field has been set.

func (*PostgresAddon) HasOrganisationId

func (o *PostgresAddon) HasOrganisationId() bool

HasOrganisationId returns a boolean if a field has been set.

func (*PostgresAddon) HasOutputs

func (o *PostgresAddon) HasOutputs() bool

HasOutputs returns a boolean if a field has been set.

func (*PostgresAddon) HasProjectId

func (o *PostgresAddon) HasProjectId() bool

HasProjectId returns a boolean if a field has been set.

func (*PostgresAddon) HasRevision

func (o *PostgresAddon) HasRevision() bool

HasRevision returns a boolean if a field has been set.

func (*PostgresAddon) HasStatus

func (o *PostgresAddon) HasStatus() bool

HasStatus returns a boolean if a field has been set.

func (*PostgresAddon) HasUpdatedAt

func (o *PostgresAddon) HasUpdatedAt() bool

HasUpdatedAt returns a boolean if a field has been set.

func (*PostgresAddon) HasUserId

func (o *PostgresAddon) HasUserId() bool

HasUserId returns a boolean if a field has been set.

func (PostgresAddon) MarshalJSON

func (o PostgresAddon) MarshalJSON() ([]byte, error)

func (*PostgresAddon) SetAnnotations

func (o *PostgresAddon) SetAnnotations(v []Annotation)

SetAnnotations gets a reference to the given []Annotation and assigns it to the Annotations field.

func (*PostgresAddon) SetClusterId

func (o *PostgresAddon) SetClusterId(v string)

SetClusterId gets a reference to the given string and assigns it to the ClusterId field.

func (*PostgresAddon) SetCreatedAt

func (o *PostgresAddon) SetCreatedAt(v time.Time)

SetCreatedAt gets a reference to the given time.Time and assigns it to the CreatedAt field.

func (*PostgresAddon) SetId

func (o *PostgresAddon) SetId(v string)

SetId gets a reference to the given string and assigns it to the Id field.

func (*PostgresAddon) SetLabels

func (o *PostgresAddon) SetLabels(v []Label)

SetLabels gets a reference to the given []Label and assigns it to the Labels field.

func (*PostgresAddon) SetName

func (o *PostgresAddon) SetName(v string)

SetName sets field value

func (*PostgresAddon) SetNamespace

func (o *PostgresAddon) SetNamespace(v string)

SetNamespace gets a reference to the given string and assigns it to the Namespace field.

func (*PostgresAddon) SetOrganisationId

func (o *PostgresAddon) SetOrganisationId(v string)

SetOrganisationId gets a reference to the given string and assigns it to the OrganisationId field.

func (*PostgresAddon) SetOutputs

func (o *PostgresAddon) SetOutputs(v []OutputDescriptor)

SetOutputs gets a reference to the given []OutputDescriptor and assigns it to the Outputs field.

func (*PostgresAddon) SetProjectId

func (o *PostgresAddon) SetProjectId(v string)

SetProjectId gets a reference to the given string and assigns it to the ProjectId field.

func (*PostgresAddon) SetRevision

func (o *PostgresAddon) SetRevision(v string)

SetRevision gets a reference to the given string and assigns it to the Revision field.

func (*PostgresAddon) SetSpec

func (o *PostgresAddon) SetSpec(v PostgresAddonSpec)

SetSpec sets field value

func (*PostgresAddon) SetStatus

func (o *PostgresAddon) SetStatus(v PostgresAddonStatus)

SetStatus gets a reference to the given PostgresAddonStatus and assigns it to the Status field.

func (*PostgresAddon) SetUpdatedAt

func (o *PostgresAddon) SetUpdatedAt(v time.Time)

SetUpdatedAt gets a reference to the given time.Time and assigns it to the UpdatedAt field.

func (*PostgresAddon) SetUserId

func (o *PostgresAddon) SetUserId(v string)

SetUserId gets a reference to the given string and assigns it to the UserId field.

type PostgresAddonList

type PostgresAddonList struct {
	Items []PostgresAddon `json:"items,omitempty"`
	Total *int32          `json:"total,omitempty"`
}

PostgresAddonList struct for PostgresAddonList

func NewPostgresAddonList

func NewPostgresAddonList() *PostgresAddonList

NewPostgresAddonList instantiates a new PostgresAddonList object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewPostgresAddonListWithDefaults

func NewPostgresAddonListWithDefaults() *PostgresAddonList

NewPostgresAddonListWithDefaults instantiates a new PostgresAddonList object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*PostgresAddonList) GetItems

func (o *PostgresAddonList) GetItems() []PostgresAddon

GetItems returns the Items field value if set, zero value otherwise.

func (*PostgresAddonList) GetItemsOk

func (o *PostgresAddonList) GetItemsOk() ([]PostgresAddon, bool)

GetItemsOk returns a tuple with the Items field value if set, nil otherwise and a boolean to check if the value has been set.

func (*PostgresAddonList) GetTotal

func (o *PostgresAddonList) GetTotal() int32

GetTotal returns the Total field value if set, zero value otherwise.

func (*PostgresAddonList) GetTotalOk

func (o *PostgresAddonList) GetTotalOk() (*int32, 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 (*PostgresAddonList) HasItems

func (o *PostgresAddonList) HasItems() bool

HasItems returns a boolean if a field has been set.

func (*PostgresAddonList) HasTotal

func (o *PostgresAddonList) HasTotal() bool

HasTotal returns a boolean if a field has been set.

func (PostgresAddonList) MarshalJSON

func (o PostgresAddonList) MarshalJSON() ([]byte, error)

func (*PostgresAddonList) SetItems

func (o *PostgresAddonList) SetItems(v []PostgresAddon)

SetItems gets a reference to the given []PostgresAddon and assigns it to the Items field.

func (*PostgresAddonList) SetTotal

func (o *PostgresAddonList) SetTotal(v int32)

SetTotal gets a reference to the given int32 and assigns it to the Total field.

type PostgresAddonSpec

type PostgresAddonSpec struct {
	Version        PostgresVersion         `json:"version"`
	Instances      PostgresInstances       `json:"instances"`
	Storage        PostgresStorage         `json:"storage"`
	Resources      *PostgresResources      `json:"resources,omitempty"`
	Backup         *PostgresBackupConfig   `json:"backup,omitempty"`
	Initialization *PostgresInitialization `json:"initialization,omitempty"`
	Databases      []PostgresDatabase      `json:"databases,omitempty"`
	Configuration  *PostgresConfiguration  `json:"configuration,omitempty"`
}

PostgresAddonSpec struct for PostgresAddonSpec

func NewPostgresAddonSpec

func NewPostgresAddonSpec(version PostgresVersion, instances PostgresInstances, storage PostgresStorage) *PostgresAddonSpec

NewPostgresAddonSpec instantiates a new PostgresAddonSpec object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewPostgresAddonSpecWithDefaults

func NewPostgresAddonSpecWithDefaults() *PostgresAddonSpec

NewPostgresAddonSpecWithDefaults instantiates a new PostgresAddonSpec object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*PostgresAddonSpec) GetBackup

func (o *PostgresAddonSpec) GetBackup() PostgresBackupConfig

GetBackup returns the Backup field value if set, zero value otherwise.

func (*PostgresAddonSpec) GetBackupOk

func (o *PostgresAddonSpec) GetBackupOk() (*PostgresBackupConfig, bool)

GetBackupOk returns a tuple with the Backup field value if set, nil otherwise and a boolean to check if the value has been set.

func (*PostgresAddonSpec) GetConfiguration

func (o *PostgresAddonSpec) GetConfiguration() PostgresConfiguration

GetConfiguration returns the Configuration field value if set, zero value otherwise.

func (*PostgresAddonSpec) GetConfigurationOk

func (o *PostgresAddonSpec) GetConfigurationOk() (*PostgresConfiguration, bool)

GetConfigurationOk returns a tuple with the Configuration field value if set, nil otherwise and a boolean to check if the value has been set.

func (*PostgresAddonSpec) GetDatabases

func (o *PostgresAddonSpec) GetDatabases() []PostgresDatabase

GetDatabases returns the Databases field value if set, zero value otherwise.

func (*PostgresAddonSpec) GetDatabasesOk

func (o *PostgresAddonSpec) GetDatabasesOk() ([]PostgresDatabase, bool)

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 (*PostgresAddonSpec) GetInitialization

func (o *PostgresAddonSpec) GetInitialization() PostgresInitialization

GetInitialization returns the Initialization field value if set, zero value otherwise.

func (*PostgresAddonSpec) GetInitializationOk

func (o *PostgresAddonSpec) GetInitializationOk() (*PostgresInitialization, bool)

GetInitializationOk returns a tuple with the Initialization field value if set, nil otherwise and a boolean to check if the value has been set.

func (*PostgresAddonSpec) GetInstances

func (o *PostgresAddonSpec) GetInstances() PostgresInstances

GetInstances returns the Instances field value

func (*PostgresAddonSpec) GetInstancesOk

func (o *PostgresAddonSpec) GetInstancesOk() (*PostgresInstances, bool)

GetInstancesOk returns a tuple with the Instances field value and a boolean to check if the value has been set.

func (*PostgresAddonSpec) GetResources

func (o *PostgresAddonSpec) GetResources() PostgresResources

GetResources returns the Resources field value if set, zero value otherwise.

func (*PostgresAddonSpec) GetResourcesOk

func (o *PostgresAddonSpec) GetResourcesOk() (*PostgresResources, bool)

GetResourcesOk returns a tuple with the Resources field value if set, nil otherwise and a boolean to check if the value has been set.

func (*PostgresAddonSpec) GetStorage

func (o *PostgresAddonSpec) GetStorage() PostgresStorage

GetStorage returns the Storage field value

func (*PostgresAddonSpec) GetStorageOk

func (o *PostgresAddonSpec) GetStorageOk() (*PostgresStorage, bool)

GetStorageOk returns a tuple with the Storage field value and a boolean to check if the value has been set.

func (*PostgresAddonSpec) GetVersion

func (o *PostgresAddonSpec) GetVersion() PostgresVersion

GetVersion returns the Version field value

func (*PostgresAddonSpec) GetVersionOk

func (o *PostgresAddonSpec) GetVersionOk() (*PostgresVersion, bool)

GetVersionOk returns a tuple with the Version field value and a boolean to check if the value has been set.

func (*PostgresAddonSpec) HasBackup

func (o *PostgresAddonSpec) HasBackup() bool

HasBackup returns a boolean if a field has been set.

func (*PostgresAddonSpec) HasConfiguration

func (o *PostgresAddonSpec) HasConfiguration() bool

HasConfiguration returns a boolean if a field has been set.

func (*PostgresAddonSpec) HasDatabases

func (o *PostgresAddonSpec) HasDatabases() bool

HasDatabases returns a boolean if a field has been set.

func (*PostgresAddonSpec) HasInitialization

func (o *PostgresAddonSpec) HasInitialization() bool

HasInitialization returns a boolean if a field has been set.

func (*PostgresAddonSpec) HasResources

func (o *PostgresAddonSpec) HasResources() bool

HasResources returns a boolean if a field has been set.

func (PostgresAddonSpec) MarshalJSON

func (o PostgresAddonSpec) MarshalJSON() ([]byte, error)

func (*PostgresAddonSpec) SetBackup

func (o *PostgresAddonSpec) SetBackup(v PostgresBackupConfig)

SetBackup gets a reference to the given PostgresBackupConfig and assigns it to the Backup field.

func (*PostgresAddonSpec) SetConfiguration

func (o *PostgresAddonSpec) SetConfiguration(v PostgresConfiguration)

SetConfiguration gets a reference to the given PostgresConfiguration and assigns it to the Configuration field.

func (*PostgresAddonSpec) SetDatabases

func (o *PostgresAddonSpec) SetDatabases(v []PostgresDatabase)

SetDatabases gets a reference to the given []PostgresDatabase and assigns it to the Databases field.

func (*PostgresAddonSpec) SetInitialization

func (o *PostgresAddonSpec) SetInitialization(v PostgresInitialization)

SetInitialization gets a reference to the given PostgresInitialization and assigns it to the Initialization field.

func (*PostgresAddonSpec) SetInstances

func (o *PostgresAddonSpec) SetInstances(v PostgresInstances)

SetInstances sets field value

func (*PostgresAddonSpec) SetResources

func (o *PostgresAddonSpec) SetResources(v PostgresResources)

SetResources gets a reference to the given PostgresResources and assigns it to the Resources field.

func (*PostgresAddonSpec) SetStorage

func (o *PostgresAddonSpec) SetStorage(v PostgresStorage)

SetStorage sets field value

func (*PostgresAddonSpec) SetVersion

func (o *PostgresAddonSpec) SetVersion(v PostgresVersion)

SetVersion sets field value

type PostgresAddonStatus

type PostgresAddonStatus struct {
	State              *string                 `json:"state,omitempty"`
	Message            *string                 `json:"message,omitempty"`
	Phase              *string                 `json:"phase,omitempty"`
	Conditions         []Condition             `json:"conditions,omitempty"`
	ObservedRevision   *string                 `json:"observed_revision,omitempty"`
	ObservedGeneration *int32                  `json:"observed_generation,omitempty"`
	ClusterInfo        *PostgresClusterInfo    `json:"cluster_info,omitempty"`
	ConnectionInfo     *PostgresConnectionInfo `json:"connection_info,omitempty"`
}

PostgresAddonStatus struct for PostgresAddonStatus

func NewPostgresAddonStatus

func NewPostgresAddonStatus() *PostgresAddonStatus

NewPostgresAddonStatus instantiates a new PostgresAddonStatus object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewPostgresAddonStatusWithDefaults

func NewPostgresAddonStatusWithDefaults() *PostgresAddonStatus

NewPostgresAddonStatusWithDefaults instantiates a new PostgresAddonStatus object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*PostgresAddonStatus) GetClusterInfo

func (o *PostgresAddonStatus) GetClusterInfo() PostgresClusterInfo

GetClusterInfo returns the ClusterInfo field value if set, zero value otherwise.

func (*PostgresAddonStatus) GetClusterInfoOk

func (o *PostgresAddonStatus) GetClusterInfoOk() (*PostgresClusterInfo, bool)

GetClusterInfoOk returns a tuple with the ClusterInfo field value if set, nil otherwise and a boolean to check if the value has been set.

func (*PostgresAddonStatus) GetConditions

func (o *PostgresAddonStatus) GetConditions() []Condition

GetConditions returns the Conditions field value if set, zero value otherwise.

func (*PostgresAddonStatus) GetConditionsOk

func (o *PostgresAddonStatus) GetConditionsOk() ([]Condition, bool)

GetConditionsOk returns a tuple with the Conditions field value if set, nil otherwise and a boolean to check if the value has been set.

func (*PostgresAddonStatus) GetConnectionInfo

func (o *PostgresAddonStatus) GetConnectionInfo() PostgresConnectionInfo

GetConnectionInfo returns the ConnectionInfo field value if set, zero value otherwise.

func (*PostgresAddonStatus) GetConnectionInfoOk

func (o *PostgresAddonStatus) GetConnectionInfoOk() (*PostgresConnectionInfo, bool)

GetConnectionInfoOk returns a tuple with the ConnectionInfo field value if set, nil otherwise and a boolean to check if the value has been set.

func (*PostgresAddonStatus) GetMessage

func (o *PostgresAddonStatus) GetMessage() string

GetMessage returns the Message field value if set, zero value otherwise.

func (*PostgresAddonStatus) GetMessageOk

func (o *PostgresAddonStatus) 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 (*PostgresAddonStatus) GetObservedGeneration

func (o *PostgresAddonStatus) GetObservedGeneration() int32

GetObservedGeneration returns the ObservedGeneration field value if set, zero value otherwise.

func (*PostgresAddonStatus) GetObservedGenerationOk

func (o *PostgresAddonStatus) GetObservedGenerationOk() (*int32, bool)

GetObservedGenerationOk returns a tuple with the ObservedGeneration field value if set, nil otherwise and a boolean to check if the value has been set.

func (*PostgresAddonStatus) GetObservedRevision

func (o *PostgresAddonStatus) GetObservedRevision() string

GetObservedRevision returns the ObservedRevision field value if set, zero value otherwise.

func (*PostgresAddonStatus) GetObservedRevisionOk

func (o *PostgresAddonStatus) GetObservedRevisionOk() (*string, bool)

GetObservedRevisionOk returns a tuple with the ObservedRevision field value if set, nil otherwise and a boolean to check if the value has been set.

func (*PostgresAddonStatus) GetPhase

func (o *PostgresAddonStatus) GetPhase() string

GetPhase returns the Phase field value if set, zero value otherwise.

func (*PostgresAddonStatus) GetPhaseOk

func (o *PostgresAddonStatus) GetPhaseOk() (*string, bool)

GetPhaseOk returns a tuple with the Phase field value if set, nil otherwise and a boolean to check if the value has been set.

func (*PostgresAddonStatus) GetState

func (o *PostgresAddonStatus) GetState() string

GetState returns the State field value if set, zero value otherwise.

func (*PostgresAddonStatus) GetStateOk

func (o *PostgresAddonStatus) 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 (*PostgresAddonStatus) HasClusterInfo

func (o *PostgresAddonStatus) HasClusterInfo() bool

HasClusterInfo returns a boolean if a field has been set.

func (*PostgresAddonStatus) HasConditions

func (o *PostgresAddonStatus) HasConditions() bool

HasConditions returns a boolean if a field has been set.

func (*PostgresAddonStatus) HasConnectionInfo

func (o *PostgresAddonStatus) HasConnectionInfo() bool

HasConnectionInfo returns a boolean if a field has been set.

func (*PostgresAddonStatus) HasMessage

func (o *PostgresAddonStatus) HasMessage() bool

HasMessage returns a boolean if a field has been set.

func (*PostgresAddonStatus) HasObservedGeneration

func (o *PostgresAddonStatus) HasObservedGeneration() bool

HasObservedGeneration returns a boolean if a field has been set.

func (*PostgresAddonStatus) HasObservedRevision

func (o *PostgresAddonStatus) HasObservedRevision() bool

HasObservedRevision returns a boolean if a field has been set.

func (*PostgresAddonStatus) HasPhase

func (o *PostgresAddonStatus) HasPhase() bool

HasPhase returns a boolean if a field has been set.

func (*PostgresAddonStatus) HasState

func (o *PostgresAddonStatus) HasState() bool

HasState returns a boolean if a field has been set.

func (PostgresAddonStatus) MarshalJSON

func (o PostgresAddonStatus) MarshalJSON() ([]byte, error)

func (*PostgresAddonStatus) SetClusterInfo

func (o *PostgresAddonStatus) SetClusterInfo(v PostgresClusterInfo)

SetClusterInfo gets a reference to the given PostgresClusterInfo and assigns it to the ClusterInfo field.

func (*PostgresAddonStatus) SetConditions

func (o *PostgresAddonStatus) SetConditions(v []Condition)

SetConditions gets a reference to the given []Condition and assigns it to the Conditions field.

func (*PostgresAddonStatus) SetConnectionInfo

func (o *PostgresAddonStatus) SetConnectionInfo(v PostgresConnectionInfo)

SetConnectionInfo gets a reference to the given PostgresConnectionInfo and assigns it to the ConnectionInfo field.

func (*PostgresAddonStatus) SetMessage

func (o *PostgresAddonStatus) SetMessage(v string)

SetMessage gets a reference to the given string and assigns it to the Message field.

func (*PostgresAddonStatus) SetObservedGeneration

func (o *PostgresAddonStatus) SetObservedGeneration(v int32)

SetObservedGeneration gets a reference to the given int32 and assigns it to the ObservedGeneration field.

func (*PostgresAddonStatus) SetObservedRevision

func (o *PostgresAddonStatus) SetObservedRevision(v string)

SetObservedRevision gets a reference to the given string and assigns it to the ObservedRevision field.

func (*PostgresAddonStatus) SetPhase

func (o *PostgresAddonStatus) SetPhase(v string)

SetPhase gets a reference to the given string and assigns it to the Phase field.

func (*PostgresAddonStatus) SetState

func (o *PostgresAddonStatus) SetState(v string)

SetState gets a reference to the given string and assigns it to the State field.

type PostgresBackup

type PostgresBackup struct {
	// Unique backup identifier
	Id *string `json:"id,omitempty"`
	// ID of the PostgreSQL addon this backup belongs to
	PostgresAddonId *string `json:"postgres_addon_id,omitempty"`
	// Human-readable backup name
	Name *string `json:"name,omitempty"`
	// Optional backup description
	Description *string `json:"description,omitempty"`
	// How the backup was initiated
	Type *string `json:"type,omitempty"`
	// Current backup status
	Phase *string `json:"phase,omitempty"`
	// When the backup started
	StartedAt *time.Time `json:"started_at,omitempty"`
	// When the backup completed (if finished)
	CompletedAt *time.Time `json:"completed_at,omitempty"`
	// Error message if backup failed
	Error *string `json:"error,omitempty"`
	// Backup size in bytes (if available)
	SizeBytes *int32 `json:"size_bytes,omitempty"`
	// When the backup record was created
	CreatedAt *time.Time `json:"created_at,omitempty"`
}

PostgresBackup struct for PostgresBackup

func NewPostgresBackup

func NewPostgresBackup() *PostgresBackup

NewPostgresBackup instantiates a new PostgresBackup object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewPostgresBackupWithDefaults

func NewPostgresBackupWithDefaults() *PostgresBackup

NewPostgresBackupWithDefaults instantiates a new PostgresBackup object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*PostgresBackup) GetCompletedAt

func (o *PostgresBackup) GetCompletedAt() time.Time

GetCompletedAt returns the CompletedAt field value if set, zero value otherwise.

func (*PostgresBackup) GetCompletedAtOk

func (o *PostgresBackup) GetCompletedAtOk() (*time.Time, bool)

GetCompletedAtOk returns a tuple with the CompletedAt field value if set, nil otherwise and a boolean to check if the value has been set.

func (*PostgresBackup) GetCreatedAt

func (o *PostgresBackup) GetCreatedAt() time.Time

GetCreatedAt returns the CreatedAt field value if set, zero value otherwise.

func (*PostgresBackup) GetCreatedAtOk

func (o *PostgresBackup) 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 (*PostgresBackup) GetDescription

func (o *PostgresBackup) GetDescription() string

GetDescription returns the Description field value if set, zero value otherwise.

func (*PostgresBackup) GetDescriptionOk

func (o *PostgresBackup) 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 (*PostgresBackup) GetError

func (o *PostgresBackup) GetError() string

GetError returns the Error field value if set, zero value otherwise.

func (*PostgresBackup) GetErrorOk

func (o *PostgresBackup) GetErrorOk() (*string, 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 (*PostgresBackup) GetId

func (o *PostgresBackup) GetId() string

GetId returns the Id field value if set, zero value otherwise.

func (*PostgresBackup) GetIdOk

func (o *PostgresBackup) 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 (*PostgresBackup) GetName

func (o *PostgresBackup) GetName() string

GetName returns the Name field value if set, zero value otherwise.

func (*PostgresBackup) GetNameOk

func (o *PostgresBackup) 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 (*PostgresBackup) GetPhase

func (o *PostgresBackup) GetPhase() string

GetPhase returns the Phase field value if set, zero value otherwise.

func (*PostgresBackup) GetPhaseOk

func (o *PostgresBackup) GetPhaseOk() (*string, bool)

GetPhaseOk returns a tuple with the Phase field value if set, nil otherwise and a boolean to check if the value has been set.

func (*PostgresBackup) GetPostgresAddonId

func (o *PostgresBackup) GetPostgresAddonId() string

GetPostgresAddonId returns the PostgresAddonId field value if set, zero value otherwise.

func (*PostgresBackup) GetPostgresAddonIdOk

func (o *PostgresBackup) GetPostgresAddonIdOk() (*string, bool)

GetPostgresAddonIdOk returns a tuple with the PostgresAddonId field value if set, nil otherwise and a boolean to check if the value has been set.

func (*PostgresBackup) GetSizeBytes

func (o *PostgresBackup) GetSizeBytes() int32

GetSizeBytes returns the SizeBytes field value if set, zero value otherwise.

func (*PostgresBackup) GetSizeBytesOk

func (o *PostgresBackup) GetSizeBytesOk() (*int32, bool)

GetSizeBytesOk returns a tuple with the SizeBytes field value if set, nil otherwise and a boolean to check if the value has been set.

func (*PostgresBackup) GetStartedAt

func (o *PostgresBackup) GetStartedAt() time.Time

GetStartedAt returns the StartedAt field value if set, zero value otherwise.

func (*PostgresBackup) GetStartedAtOk

func (o *PostgresBackup) 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 (*PostgresBackup) GetType

func (o *PostgresBackup) GetType() string

GetType returns the Type field value if set, zero value otherwise.

func (*PostgresBackup) GetTypeOk

func (o *PostgresBackup) 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 (*PostgresBackup) HasCompletedAt

func (o *PostgresBackup) HasCompletedAt() bool

HasCompletedAt returns a boolean if a field has been set.

func (*PostgresBackup) HasCreatedAt

func (o *PostgresBackup) HasCreatedAt() bool

HasCreatedAt returns a boolean if a field has been set.

func (*PostgresBackup) HasDescription

func (o *PostgresBackup) HasDescription() bool

HasDescription returns a boolean if a field has been set.

func (*PostgresBackup) HasError

func (o *PostgresBackup) HasError() bool

HasError returns a boolean if a field has been set.

func (*PostgresBackup) HasId

func (o *PostgresBackup) HasId() bool

HasId returns a boolean if a field has been set.

func (*PostgresBackup) HasName

func (o *PostgresBackup) HasName() bool

HasName returns a boolean if a field has been set.

func (*PostgresBackup) HasPhase

func (o *PostgresBackup) HasPhase() bool

HasPhase returns a boolean if a field has been set.

func (*PostgresBackup) HasPostgresAddonId

func (o *PostgresBackup) HasPostgresAddonId() bool

HasPostgresAddonId returns a boolean if a field has been set.

func (*PostgresBackup) HasSizeBytes

func (o *PostgresBackup) HasSizeBytes() bool

HasSizeBytes returns a boolean if a field has been set.

func (*PostgresBackup) HasStartedAt

func (o *PostgresBackup) HasStartedAt() bool

HasStartedAt returns a boolean if a field has been set.

func (*PostgresBackup) HasType

func (o *PostgresBackup) HasType() bool

HasType returns a boolean if a field has been set.

func (PostgresBackup) MarshalJSON

func (o PostgresBackup) MarshalJSON() ([]byte, error)

func (*PostgresBackup) SetCompletedAt

func (o *PostgresBackup) SetCompletedAt(v time.Time)

SetCompletedAt gets a reference to the given time.Time and assigns it to the CompletedAt field.

func (*PostgresBackup) SetCreatedAt

func (o *PostgresBackup) SetCreatedAt(v time.Time)

SetCreatedAt gets a reference to the given time.Time and assigns it to the CreatedAt field.

func (*PostgresBackup) SetDescription

func (o *PostgresBackup) SetDescription(v string)

SetDescription gets a reference to the given string and assigns it to the Description field.

func (*PostgresBackup) SetError

func (o *PostgresBackup) SetError(v string)

SetError gets a reference to the given string and assigns it to the Error field.

func (*PostgresBackup) SetId

func (o *PostgresBackup) SetId(v string)

SetId gets a reference to the given string and assigns it to the Id field.

func (*PostgresBackup) SetName

func (o *PostgresBackup) SetName(v string)

SetName gets a reference to the given string and assigns it to the Name field.

func (*PostgresBackup) SetPhase

func (o *PostgresBackup) SetPhase(v string)

SetPhase gets a reference to the given string and assigns it to the Phase field.

func (*PostgresBackup) SetPostgresAddonId

func (o *PostgresBackup) SetPostgresAddonId(v string)

SetPostgresAddonId gets a reference to the given string and assigns it to the PostgresAddonId field.

func (*PostgresBackup) SetSizeBytes

func (o *PostgresBackup) SetSizeBytes(v int32)

SetSizeBytes gets a reference to the given int32 and assigns it to the SizeBytes field.

func (*PostgresBackup) SetStartedAt

func (o *PostgresBackup) SetStartedAt(v time.Time)

SetStartedAt gets a reference to the given time.Time and assigns it to the StartedAt field.

func (*PostgresBackup) SetType

func (o *PostgresBackup) SetType(v string)

SetType gets a reference to the given string and assigns it to the Type field.

type PostgresBackupConfig

type PostgresBackupConfig struct {
	// Enable backup functionality
	Enabled *bool `json:"enabled,omitempty"`
	// Reference to ObjectStore for backup storage
	ObjectStoreId *string `json:"object_store_id,omitempty"`
	// Cron schedule for automated backups
	Schedule *string `json:"schedule,omitempty"`
	// Enable WAL archiving for point-in-time recovery
	WalArchiving *bool `json:"wal_archiving,omitempty"`
}

PostgresBackupConfig struct for PostgresBackupConfig

func NewPostgresBackupConfig

func NewPostgresBackupConfig() *PostgresBackupConfig

NewPostgresBackupConfig instantiates a new PostgresBackupConfig object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewPostgresBackupConfigWithDefaults

func NewPostgresBackupConfigWithDefaults() *PostgresBackupConfig

NewPostgresBackupConfigWithDefaults instantiates a new PostgresBackupConfig object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*PostgresBackupConfig) GetEnabled

func (o *PostgresBackupConfig) GetEnabled() bool

GetEnabled returns the Enabled field value if set, zero value otherwise.

func (*PostgresBackupConfig) GetEnabledOk

func (o *PostgresBackupConfig) GetEnabledOk() (*bool, bool)

GetEnabledOk returns a tuple with the Enabled field value if set, nil otherwise and a boolean to check if the value has been set.

func (*PostgresBackupConfig) GetObjectStoreId

func (o *PostgresBackupConfig) GetObjectStoreId() string

GetObjectStoreId returns the ObjectStoreId field value if set, zero value otherwise.

func (*PostgresBackupConfig) GetObjectStoreIdOk

func (o *PostgresBackupConfig) GetObjectStoreIdOk() (*string, bool)

GetObjectStoreIdOk returns a tuple with the ObjectStoreId field value if set, nil otherwise and a boolean to check if the value has been set.

func (*PostgresBackupConfig) GetSchedule

func (o *PostgresBackupConfig) GetSchedule() string

GetSchedule returns the Schedule field value if set, zero value otherwise.

func (*PostgresBackupConfig) GetScheduleOk

func (o *PostgresBackupConfig) GetScheduleOk() (*string, bool)

GetScheduleOk returns a tuple with the Schedule field value if set, nil otherwise and a boolean to check if the value has been set.

func (*PostgresBackupConfig) GetWalArchiving

func (o *PostgresBackupConfig) GetWalArchiving() bool

GetWalArchiving returns the WalArchiving field value if set, zero value otherwise.

func (*PostgresBackupConfig) GetWalArchivingOk

func (o *PostgresBackupConfig) GetWalArchivingOk() (*bool, bool)

GetWalArchivingOk returns a tuple with the WalArchiving field value if set, nil otherwise and a boolean to check if the value has been set.

func (*PostgresBackupConfig) HasEnabled

func (o *PostgresBackupConfig) HasEnabled() bool

HasEnabled returns a boolean if a field has been set.

func (*PostgresBackupConfig) HasObjectStoreId

func (o *PostgresBackupConfig) HasObjectStoreId() bool

HasObjectStoreId returns a boolean if a field has been set.

func (*PostgresBackupConfig) HasSchedule

func (o *PostgresBackupConfig) HasSchedule() bool

HasSchedule returns a boolean if a field has been set.

func (*PostgresBackupConfig) HasWalArchiving

func (o *PostgresBackupConfig) HasWalArchiving() bool

HasWalArchiving returns a boolean if a field has been set.

func (PostgresBackupConfig) MarshalJSON

func (o PostgresBackupConfig) MarshalJSON() ([]byte, error)

func (*PostgresBackupConfig) SetEnabled

func (o *PostgresBackupConfig) SetEnabled(v bool)

SetEnabled gets a reference to the given bool and assigns it to the Enabled field.

func (*PostgresBackupConfig) SetObjectStoreId

func (o *PostgresBackupConfig) SetObjectStoreId(v string)

SetObjectStoreId gets a reference to the given string and assigns it to the ObjectStoreId field.

func (*PostgresBackupConfig) SetSchedule

func (o *PostgresBackupConfig) SetSchedule(v string)

SetSchedule gets a reference to the given string and assigns it to the Schedule field.

func (*PostgresBackupConfig) SetWalArchiving

func (o *PostgresBackupConfig) SetWalArchiving(v bool)

SetWalArchiving gets a reference to the given bool and assigns it to the WalArchiving field.

type PostgresBackupList

type PostgresBackupList struct {
	Items []PostgresBackup `json:"items,omitempty"`
	Total *int32           `json:"total,omitempty"`
}

PostgresBackupList struct for PostgresBackupList

func NewPostgresBackupList

func NewPostgresBackupList() *PostgresBackupList

NewPostgresBackupList instantiates a new PostgresBackupList object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewPostgresBackupListWithDefaults

func NewPostgresBackupListWithDefaults() *PostgresBackupList

NewPostgresBackupListWithDefaults instantiates a new PostgresBackupList object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*PostgresBackupList) GetItems

func (o *PostgresBackupList) GetItems() []PostgresBackup

GetItems returns the Items field value if set, zero value otherwise.

func (*PostgresBackupList) GetItemsOk

func (o *PostgresBackupList) GetItemsOk() ([]PostgresBackup, bool)

GetItemsOk returns a tuple with the Items field value if set, nil otherwise and a boolean to check if the value has been set.

func (*PostgresBackupList) GetTotal

func (o *PostgresBackupList) GetTotal() int32

GetTotal returns the Total field value if set, zero value otherwise.

func (*PostgresBackupList) GetTotalOk

func (o *PostgresBackupList) GetTotalOk() (*int32, 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 (*PostgresBackupList) HasItems

func (o *PostgresBackupList) HasItems() bool

HasItems returns a boolean if a field has been set.

func (*PostgresBackupList) HasTotal

func (o *PostgresBackupList) HasTotal() bool

HasTotal returns a boolean if a field has been set.

func (PostgresBackupList) MarshalJSON

func (o PostgresBackupList) MarshalJSON() ([]byte, error)

func (*PostgresBackupList) SetItems

func (o *PostgresBackupList) SetItems(v []PostgresBackup)

SetItems gets a reference to the given []PostgresBackup and assigns it to the Items field.

func (*PostgresBackupList) SetTotal

func (o *PostgresBackupList) SetTotal(v int32)

SetTotal gets a reference to the given int32 and assigns it to the Total field.

type PostgresClusterInfo

type PostgresClusterInfo struct {
	// Current PostgreSQL version
	Version *string `json:"version,omitempty"`
}

PostgresClusterInfo struct for PostgresClusterInfo

func NewPostgresClusterInfo

func NewPostgresClusterInfo() *PostgresClusterInfo

NewPostgresClusterInfo instantiates a new PostgresClusterInfo object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewPostgresClusterInfoWithDefaults

func NewPostgresClusterInfoWithDefaults() *PostgresClusterInfo

NewPostgresClusterInfoWithDefaults instantiates a new PostgresClusterInfo object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*PostgresClusterInfo) GetVersion

func (o *PostgresClusterInfo) GetVersion() string

GetVersion returns the Version field value if set, zero value otherwise.

func (*PostgresClusterInfo) GetVersionOk

func (o *PostgresClusterInfo) 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 (*PostgresClusterInfo) HasVersion

func (o *PostgresClusterInfo) HasVersion() bool

HasVersion returns a boolean if a field has been set.

func (PostgresClusterInfo) MarshalJSON

func (o PostgresClusterInfo) MarshalJSON() ([]byte, error)

func (*PostgresClusterInfo) SetVersion

func (o *PostgresClusterInfo) SetVersion(v string)

SetVersion gets a reference to the given string and assigns it to the Version field.

type PostgresConfiguration

type PostgresConfiguration struct {
	// Enable superuser access to the database
	EnableSuperuserAccess *bool `json:"enable_superuser_access,omitempty"`
	// PostgreSQL configuration parameters
	Parameters *map[string]string `json:"parameters,omitempty"`
}

PostgresConfiguration struct for PostgresConfiguration

func NewPostgresConfiguration

func NewPostgresConfiguration() *PostgresConfiguration

NewPostgresConfiguration instantiates a new PostgresConfiguration object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewPostgresConfigurationWithDefaults

func NewPostgresConfigurationWithDefaults() *PostgresConfiguration

NewPostgresConfigurationWithDefaults instantiates a new PostgresConfiguration object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*PostgresConfiguration) GetEnableSuperuserAccess

func (o *PostgresConfiguration) GetEnableSuperuserAccess() bool

GetEnableSuperuserAccess returns the EnableSuperuserAccess field value if set, zero value otherwise.

func (*PostgresConfiguration) GetEnableSuperuserAccessOk

func (o *PostgresConfiguration) GetEnableSuperuserAccessOk() (*bool, bool)

GetEnableSuperuserAccessOk returns a tuple with the EnableSuperuserAccess field value if set, nil otherwise and a boolean to check if the value has been set.

func (*PostgresConfiguration) GetParameters

func (o *PostgresConfiguration) GetParameters() map[string]string

GetParameters returns the Parameters field value if set, zero value otherwise.

func (*PostgresConfiguration) GetParametersOk

func (o *PostgresConfiguration) GetParametersOk() (*map[string]string, bool)

GetParametersOk returns a tuple with the Parameters field value if set, nil otherwise and a boolean to check if the value has been set.

func (*PostgresConfiguration) HasEnableSuperuserAccess

func (o *PostgresConfiguration) HasEnableSuperuserAccess() bool

HasEnableSuperuserAccess returns a boolean if a field has been set.

func (*PostgresConfiguration) HasParameters

func (o *PostgresConfiguration) HasParameters() bool

HasParameters returns a boolean if a field has been set.

func (PostgresConfiguration) MarshalJSON

func (o PostgresConfiguration) MarshalJSON() ([]byte, error)

func (*PostgresConfiguration) SetEnableSuperuserAccess

func (o *PostgresConfiguration) SetEnableSuperuserAccess(v bool)

SetEnableSuperuserAccess gets a reference to the given bool and assigns it to the EnableSuperuserAccess field.

func (*PostgresConfiguration) SetParameters

func (o *PostgresConfiguration) SetParameters(v map[string]string)

SetParameters gets a reference to the given map[string]string and assigns it to the Parameters field.

type PostgresConnectionInfo

type PostgresConnectionInfo struct {
	// Primary host endpoint
	Host        *string                                `json:"host,omitempty"`
	Port        *int32                                 `json:"port,omitempty"`
	Databases   []PostgresConnectionInfoDatabasesInner `json:"databases,omitempty"`
	Credentials *PostgresConnectionInfoCredentials     `json:"credentials,omitempty"`
}

PostgresConnectionInfo struct for PostgresConnectionInfo

func NewPostgresConnectionInfo

func NewPostgresConnectionInfo() *PostgresConnectionInfo

NewPostgresConnectionInfo instantiates a new PostgresConnectionInfo object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewPostgresConnectionInfoWithDefaults

func NewPostgresConnectionInfoWithDefaults() *PostgresConnectionInfo

NewPostgresConnectionInfoWithDefaults instantiates a new PostgresConnectionInfo object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*PostgresConnectionInfo) GetCredentials

GetCredentials returns the Credentials field value if set, zero value otherwise.

func (*PostgresConnectionInfo) GetCredentialsOk

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 (*PostgresConnectionInfo) GetDatabases

GetDatabases returns the Databases field value if set, zero value otherwise.

func (*PostgresConnectionInfo) 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 (*PostgresConnectionInfo) GetHost

func (o *PostgresConnectionInfo) GetHost() string

GetHost returns the Host field value if set, zero value otherwise.

func (*PostgresConnectionInfo) GetHostOk

func (o *PostgresConnectionInfo) GetHostOk() (*string, bool)

GetHostOk returns a tuple with the Host field value if set, nil otherwise and a boolean to check if the value has been set.

func (*PostgresConnectionInfo) GetPort

func (o *PostgresConnectionInfo) GetPort() int32

GetPort returns the Port field value if set, zero value otherwise.

func (*PostgresConnectionInfo) GetPortOk

func (o *PostgresConnectionInfo) GetPortOk() (*int32, 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 (*PostgresConnectionInfo) HasCredentials

func (o *PostgresConnectionInfo) HasCredentials() bool

HasCredentials returns a boolean if a field has been set.

func (*PostgresConnectionInfo) HasDatabases

func (o *PostgresConnectionInfo) HasDatabases() bool

HasDatabases returns a boolean if a field has been set.

func (*PostgresConnectionInfo) HasHost

func (o *PostgresConnectionInfo) HasHost() bool

HasHost returns a boolean if a field has been set.

func (*PostgresConnectionInfo) HasPort

func (o *PostgresConnectionInfo) HasPort() bool

HasPort returns a boolean if a field has been set.

func (PostgresConnectionInfo) MarshalJSON

func (o PostgresConnectionInfo) MarshalJSON() ([]byte, error)

func (*PostgresConnectionInfo) SetCredentials

SetCredentials gets a reference to the given PostgresConnectionInfoCredentials and assigns it to the Credentials field.

func (*PostgresConnectionInfo) SetDatabases

SetDatabases gets a reference to the given []PostgresConnectionInfoDatabasesInner and assigns it to the Databases field.

func (*PostgresConnectionInfo) SetHost

func (o *PostgresConnectionInfo) SetHost(v string)

SetHost gets a reference to the given string and assigns it to the Host field.

func (*PostgresConnectionInfo) SetPort

func (o *PostgresConnectionInfo) SetPort(v int32)

SetPort gets a reference to the given int32 and assigns it to the Port field.

type PostgresConnectionInfoCredentials

type PostgresConnectionInfoCredentials struct {
	// Secret containing superuser credentials
	SuperuserSecretId *string `json:"superuser_secret_id,omitempty"`
	// Map of database to app user secret IDs
	AppUserSecrets *map[string]string `json:"app_user_secrets,omitempty"`
	// Secret containing CA certificate
	CaCertificateSecretId *string `json:"ca_certificate_secret_id,omitempty"`
}

PostgresConnectionInfoCredentials struct for PostgresConnectionInfoCredentials

func NewPostgresConnectionInfoCredentials

func NewPostgresConnectionInfoCredentials() *PostgresConnectionInfoCredentials

NewPostgresConnectionInfoCredentials instantiates a new PostgresConnectionInfoCredentials object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewPostgresConnectionInfoCredentialsWithDefaults

func NewPostgresConnectionInfoCredentialsWithDefaults() *PostgresConnectionInfoCredentials

NewPostgresConnectionInfoCredentialsWithDefaults instantiates a new PostgresConnectionInfoCredentials object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*PostgresConnectionInfoCredentials) GetAppUserSecrets

func (o *PostgresConnectionInfoCredentials) GetAppUserSecrets() map[string]string

GetAppUserSecrets returns the AppUserSecrets field value if set, zero value otherwise.

func (*PostgresConnectionInfoCredentials) GetAppUserSecretsOk

func (o *PostgresConnectionInfoCredentials) GetAppUserSecretsOk() (*map[string]string, bool)

GetAppUserSecretsOk returns a tuple with the AppUserSecrets field value if set, nil otherwise and a boolean to check if the value has been set.

func (*PostgresConnectionInfoCredentials) GetCaCertificateSecretId

func (o *PostgresConnectionInfoCredentials) GetCaCertificateSecretId() string

GetCaCertificateSecretId returns the CaCertificateSecretId field value if set, zero value otherwise.

func (*PostgresConnectionInfoCredentials) GetCaCertificateSecretIdOk

func (o *PostgresConnectionInfoCredentials) GetCaCertificateSecretIdOk() (*string, bool)

GetCaCertificateSecretIdOk returns a tuple with the CaCertificateSecretId field value if set, nil otherwise and a boolean to check if the value has been set.

func (*PostgresConnectionInfoCredentials) GetSuperuserSecretId

func (o *PostgresConnectionInfoCredentials) GetSuperuserSecretId() string

GetSuperuserSecretId returns the SuperuserSecretId field value if set, zero value otherwise.

func (*PostgresConnectionInfoCredentials) GetSuperuserSecretIdOk

func (o *PostgresConnectionInfoCredentials) GetSuperuserSecretIdOk() (*string, bool)

GetSuperuserSecretIdOk returns a tuple with the SuperuserSecretId field value if set, nil otherwise and a boolean to check if the value has been set.

func (*PostgresConnectionInfoCredentials) HasAppUserSecrets

func (o *PostgresConnectionInfoCredentials) HasAppUserSecrets() bool

HasAppUserSecrets returns a boolean if a field has been set.

func (*PostgresConnectionInfoCredentials) HasCaCertificateSecretId

func (o *PostgresConnectionInfoCredentials) HasCaCertificateSecretId() bool

HasCaCertificateSecretId returns a boolean if a field has been set.

func (*PostgresConnectionInfoCredentials) HasSuperuserSecretId

func (o *PostgresConnectionInfoCredentials) HasSuperuserSecretId() bool

HasSuperuserSecretId returns a boolean if a field has been set.

func (PostgresConnectionInfoCredentials) MarshalJSON

func (o PostgresConnectionInfoCredentials) MarshalJSON() ([]byte, error)

func (*PostgresConnectionInfoCredentials) SetAppUserSecrets

func (o *PostgresConnectionInfoCredentials) SetAppUserSecrets(v map[string]string)

SetAppUserSecrets gets a reference to the given map[string]string and assigns it to the AppUserSecrets field.

func (*PostgresConnectionInfoCredentials) SetCaCertificateSecretId

func (o *PostgresConnectionInfoCredentials) SetCaCertificateSecretId(v string)

SetCaCertificateSecretId gets a reference to the given string and assigns it to the CaCertificateSecretId field.

func (*PostgresConnectionInfoCredentials) SetSuperuserSecretId

func (o *PostgresConnectionInfoCredentials) SetSuperuserSecretId(v string)

SetSuperuserSecretId gets a reference to the given string and assigns it to the SuperuserSecretId field.

type PostgresConnectionInfoDatabasesInner

type PostgresConnectionInfoDatabasesInner struct {
	Name  *string `json:"name,omitempty"`
	Owner *string `json:"owner,omitempty"`
}

PostgresConnectionInfoDatabasesInner struct for PostgresConnectionInfoDatabasesInner

func NewPostgresConnectionInfoDatabasesInner

func NewPostgresConnectionInfoDatabasesInner() *PostgresConnectionInfoDatabasesInner

NewPostgresConnectionInfoDatabasesInner instantiates a new PostgresConnectionInfoDatabasesInner object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewPostgresConnectionInfoDatabasesInnerWithDefaults

func NewPostgresConnectionInfoDatabasesInnerWithDefaults() *PostgresConnectionInfoDatabasesInner

NewPostgresConnectionInfoDatabasesInnerWithDefaults instantiates a new PostgresConnectionInfoDatabasesInner object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*PostgresConnectionInfoDatabasesInner) GetName

GetName returns the Name field value if set, zero value otherwise.

func (*PostgresConnectionInfoDatabasesInner) 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 (*PostgresConnectionInfoDatabasesInner) GetOwner

GetOwner returns the Owner field value if set, zero value otherwise.

func (*PostgresConnectionInfoDatabasesInner) GetOwnerOk

func (o *PostgresConnectionInfoDatabasesInner) 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 (*PostgresConnectionInfoDatabasesInner) HasName

HasName returns a boolean if a field has been set.

func (*PostgresConnectionInfoDatabasesInner) HasOwner

HasOwner returns a boolean if a field has been set.

func (PostgresConnectionInfoDatabasesInner) MarshalJSON

func (o PostgresConnectionInfoDatabasesInner) MarshalJSON() ([]byte, error)

func (*PostgresConnectionInfoDatabasesInner) SetName

SetName gets a reference to the given string and assigns it to the Name field.

func (*PostgresConnectionInfoDatabasesInner) SetOwner

SetOwner gets a reference to the given string and assigns it to the Owner field.

type PostgresCredentials

type PostgresCredentials struct {
	Database         *string `json:"database,omitempty"`
	Host             *string `json:"host,omitempty"`
	Port             *int32  `json:"port,omitempty"`
	Username         *string `json:"username,omitempty"`
	Password         *string `json:"password,omitempty"`
	SslMode          *string `json:"sslMode,omitempty"`
	ConnectionString *string `json:"connectionString,omitempty"`
	CaCertificate    *string `json:"caCertificate,omitempty"`
}

PostgresCredentials struct for PostgresCredentials

func NewPostgresCredentials

func NewPostgresCredentials() *PostgresCredentials

NewPostgresCredentials instantiates a new PostgresCredentials object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewPostgresCredentialsWithDefaults

func NewPostgresCredentialsWithDefaults() *PostgresCredentials

NewPostgresCredentialsWithDefaults instantiates a new PostgresCredentials object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*PostgresCredentials) GetCaCertificate

func (o *PostgresCredentials) GetCaCertificate() string

GetCaCertificate returns the CaCertificate field value if set, zero value otherwise.

func (*PostgresCredentials) GetCaCertificateOk

func (o *PostgresCredentials) GetCaCertificateOk() (*string, bool)

GetCaCertificateOk returns a tuple with the CaCertificate field value if set, nil otherwise and a boolean to check if the value has been set.

func (*PostgresCredentials) GetConnectionString

func (o *PostgresCredentials) GetConnectionString() string

GetConnectionString returns the ConnectionString field value if set, zero value otherwise.

func (*PostgresCredentials) GetConnectionStringOk

func (o *PostgresCredentials) GetConnectionStringOk() (*string, bool)

GetConnectionStringOk returns a tuple with the ConnectionString field value if set, nil otherwise and a boolean to check if the value has been set.

func (*PostgresCredentials) GetDatabase

func (o *PostgresCredentials) GetDatabase() string

GetDatabase returns the Database field value if set, zero value otherwise.

func (*PostgresCredentials) GetDatabaseOk

func (o *PostgresCredentials) GetDatabaseOk() (*string, 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 (*PostgresCredentials) GetHost

func (o *PostgresCredentials) GetHost() string

GetHost returns the Host field value if set, zero value otherwise.

func (*PostgresCredentials) GetHostOk

func (o *PostgresCredentials) GetHostOk() (*string, bool)

GetHostOk returns a tuple with the Host field value if set, nil otherwise and a boolean to check if the value has been set.

func (*PostgresCredentials) GetPassword

func (o *PostgresCredentials) GetPassword() string

GetPassword returns the Password field value if set, zero value otherwise.

func (*PostgresCredentials) GetPasswordOk

func (o *PostgresCredentials) 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 (*PostgresCredentials) GetPort

func (o *PostgresCredentials) GetPort() int32

GetPort returns the Port field value if set, zero value otherwise.

func (*PostgresCredentials) GetPortOk

func (o *PostgresCredentials) GetPortOk() (*int32, 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 (*PostgresCredentials) GetSslMode

func (o *PostgresCredentials) GetSslMode() string

GetSslMode returns the SslMode field value if set, zero value otherwise.

func (*PostgresCredentials) GetSslModeOk

func (o *PostgresCredentials) GetSslModeOk() (*string, bool)

GetSslModeOk returns a tuple with the SslMode field value if set, nil otherwise and a boolean to check if the value has been set.

func (*PostgresCredentials) GetUsername

func (o *PostgresCredentials) GetUsername() string

GetUsername returns the Username field value if set, zero value otherwise.

func (*PostgresCredentials) GetUsernameOk

func (o *PostgresCredentials) 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 (*PostgresCredentials) HasCaCertificate

func (o *PostgresCredentials) HasCaCertificate() bool

HasCaCertificate returns a boolean if a field has been set.

func (*PostgresCredentials) HasConnectionString

func (o *PostgresCredentials) HasConnectionString() bool

HasConnectionString returns a boolean if a field has been set.

func (*PostgresCredentials) HasDatabase

func (o *PostgresCredentials) HasDatabase() bool

HasDatabase returns a boolean if a field has been set.

func (*PostgresCredentials) HasHost

func (o *PostgresCredentials) HasHost() bool

HasHost returns a boolean if a field has been set.

func (*PostgresCredentials) HasPassword

func (o *PostgresCredentials) HasPassword() bool

HasPassword returns a boolean if a field has been set.

func (*PostgresCredentials) HasPort

func (o *PostgresCredentials) HasPort() bool

HasPort returns a boolean if a field has been set.

func (*PostgresCredentials) HasSslMode

func (o *PostgresCredentials) HasSslMode() bool

HasSslMode returns a boolean if a field has been set.

func (*PostgresCredentials) HasUsername

func (o *PostgresCredentials) HasUsername() bool

HasUsername returns a boolean if a field has been set.

func (PostgresCredentials) MarshalJSON

func (o PostgresCredentials) MarshalJSON() ([]byte, error)

func (*PostgresCredentials) SetCaCertificate

func (o *PostgresCredentials) SetCaCertificate(v string)

SetCaCertificate gets a reference to the given string and assigns it to the CaCertificate field.

func (*PostgresCredentials) SetConnectionString

func (o *PostgresCredentials) SetConnectionString(v string)

SetConnectionString gets a reference to the given string and assigns it to the ConnectionString field.

func (*PostgresCredentials) SetDatabase

func (o *PostgresCredentials) SetDatabase(v string)

SetDatabase gets a reference to the given string and assigns it to the Database field.

func (*PostgresCredentials) SetHost

func (o *PostgresCredentials) SetHost(v string)

SetHost gets a reference to the given string and assigns it to the Host field.

func (*PostgresCredentials) SetPassword

func (o *PostgresCredentials) SetPassword(v string)

SetPassword gets a reference to the given string and assigns it to the Password field.

func (*PostgresCredentials) SetPort

func (o *PostgresCredentials) SetPort(v int32)

SetPort gets a reference to the given int32 and assigns it to the Port field.

func (*PostgresCredentials) SetSslMode

func (o *PostgresCredentials) SetSslMode(v string)

SetSslMode gets a reference to the given string and assigns it to the SslMode field.

func (*PostgresCredentials) SetUsername

func (o *PostgresCredentials) SetUsername(v string)

SetUsername gets a reference to the given string and assigns it to the Username field.

type PostgresDatabase

type PostgresDatabase struct {
	// Database name
	Name string `json:"name"`
	// PostgreSQL extensions to enable
	Extensions []string `json:"extensions,omitempty"`
}

PostgresDatabase struct for PostgresDatabase

func NewPostgresDatabase

func NewPostgresDatabase(name string) *PostgresDatabase

NewPostgresDatabase instantiates a new PostgresDatabase object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewPostgresDatabaseWithDefaults

func NewPostgresDatabaseWithDefaults() *PostgresDatabase

NewPostgresDatabaseWithDefaults instantiates a new PostgresDatabase object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*PostgresDatabase) GetExtensions

func (o *PostgresDatabase) GetExtensions() []string

GetExtensions returns the Extensions field value if set, zero value otherwise.

func (*PostgresDatabase) GetExtensionsOk

func (o *PostgresDatabase) GetExtensionsOk() ([]string, bool)

GetExtensionsOk returns a tuple with the Extensions field value if set, nil otherwise and a boolean to check if the value has been set.

func (*PostgresDatabase) GetName

func (o *PostgresDatabase) GetName() string

GetName returns the Name field value

func (*PostgresDatabase) GetNameOk

func (o *PostgresDatabase) GetNameOk() (*string, bool)

GetNameOk returns a tuple with the Name field value and a boolean to check if the value has been set.

func (*PostgresDatabase) HasExtensions

func (o *PostgresDatabase) HasExtensions() bool

HasExtensions returns a boolean if a field has been set.

func (PostgresDatabase) MarshalJSON

func (o PostgresDatabase) MarshalJSON() ([]byte, error)

func (*PostgresDatabase) SetExtensions

func (o *PostgresDatabase) SetExtensions(v []string)

SetExtensions gets a reference to the given []string and assigns it to the Extensions field.

func (*PostgresDatabase) SetName

func (o *PostgresDatabase) SetName(v string)

SetName sets field value

type PostgresEnvConfig

type PostgresEnvConfig struct {
	// Target database name within the addon.
	Database *string `json:"database,omitempty"`
	// Which credential set to inject. Mutually exclusive with superuser.
	CredentialScope *string `json:"credential_scope,omitempty"`
	// Use superuser credentials. Mutually exclusive with credential_scope.
	Superuser *bool `json:"superuser,omitempty"`
}

PostgresEnvConfig Config for env connections from a PostgreSQL addon (kind=env, from.type=addon/postgres). credential_scope and superuser are mutually exclusive.

func NewPostgresEnvConfig

func NewPostgresEnvConfig() *PostgresEnvConfig

NewPostgresEnvConfig instantiates a new PostgresEnvConfig object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewPostgresEnvConfigWithDefaults

func NewPostgresEnvConfigWithDefaults() *PostgresEnvConfig

NewPostgresEnvConfigWithDefaults instantiates a new PostgresEnvConfig object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*PostgresEnvConfig) GetCredentialScope

func (o *PostgresEnvConfig) GetCredentialScope() string

GetCredentialScope returns the CredentialScope field value if set, zero value otherwise.

func (*PostgresEnvConfig) GetCredentialScopeOk

func (o *PostgresEnvConfig) GetCredentialScopeOk() (*string, bool)

GetCredentialScopeOk returns a tuple with the CredentialScope field value if set, nil otherwise and a boolean to check if the value has been set.

func (*PostgresEnvConfig) GetDatabase

func (o *PostgresEnvConfig) GetDatabase() string

GetDatabase returns the Database field value if set, zero value otherwise.

func (*PostgresEnvConfig) GetDatabaseOk

func (o *PostgresEnvConfig) GetDatabaseOk() (*string, 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 (*PostgresEnvConfig) GetSuperuser

func (o *PostgresEnvConfig) GetSuperuser() bool

GetSuperuser returns the Superuser field value if set, zero value otherwise.

func (*PostgresEnvConfig) GetSuperuserOk

func (o *PostgresEnvConfig) GetSuperuserOk() (*bool, bool)

GetSuperuserOk returns a tuple with the Superuser field value if set, nil otherwise and a boolean to check if the value has been set.

func (*PostgresEnvConfig) HasCredentialScope

func (o *PostgresEnvConfig) HasCredentialScope() bool

HasCredentialScope returns a boolean if a field has been set.

func (*PostgresEnvConfig) HasDatabase

func (o *PostgresEnvConfig) HasDatabase() bool

HasDatabase returns a boolean if a field has been set.

func (*PostgresEnvConfig) HasSuperuser

func (o *PostgresEnvConfig) HasSuperuser() bool

HasSuperuser returns a boolean if a field has been set.

func (PostgresEnvConfig) MarshalJSON

func (o PostgresEnvConfig) MarshalJSON() ([]byte, error)

func (*PostgresEnvConfig) SetCredentialScope

func (o *PostgresEnvConfig) SetCredentialScope(v string)

SetCredentialScope gets a reference to the given string and assigns it to the CredentialScope field.

func (*PostgresEnvConfig) SetDatabase

func (o *PostgresEnvConfig) SetDatabase(v string)

SetDatabase gets a reference to the given string and assigns it to the Database field.

func (*PostgresEnvConfig) SetSuperuser

func (o *PostgresEnvConfig) SetSuperuser(v bool)

SetSuperuser gets a reference to the given bool and assigns it to the Superuser field.

type PostgresInitialization

type PostgresInitialization struct {
	Type                   *string                                       `json:"type,omitempty"`
	RestoreFromBackup      *PostgresInitializationRestoreFromBackup      `json:"restore_from_backup,omitempty"`
	RestoreFromObjectStore *PostgresInitializationRestoreFromObjectStore `json:"restore_from_object_store,omitempty"`
	ImportFromExternal     *PostgresInitializationImportFromExternal     `json:"import_from_external,omitempty"`
}

PostgresInitialization struct for PostgresInitialization

func NewPostgresInitialization

func NewPostgresInitialization() *PostgresInitialization

NewPostgresInitialization instantiates a new PostgresInitialization object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewPostgresInitializationWithDefaults

func NewPostgresInitializationWithDefaults() *PostgresInitialization

NewPostgresInitializationWithDefaults instantiates a new PostgresInitialization object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*PostgresInitialization) GetImportFromExternal

GetImportFromExternal returns the ImportFromExternal field value if set, zero value otherwise.

func (*PostgresInitialization) GetImportFromExternalOk

func (o *PostgresInitialization) GetImportFromExternalOk() (*PostgresInitializationImportFromExternal, bool)

GetImportFromExternalOk returns a tuple with the ImportFromExternal field value if set, nil otherwise and a boolean to check if the value has been set.

func (*PostgresInitialization) GetRestoreFromBackup

GetRestoreFromBackup returns the RestoreFromBackup field value if set, zero value otherwise.

func (*PostgresInitialization) GetRestoreFromBackupOk

GetRestoreFromBackupOk returns a tuple with the RestoreFromBackup field value if set, nil otherwise and a boolean to check if the value has been set.

func (*PostgresInitialization) GetRestoreFromObjectStore

GetRestoreFromObjectStore returns the RestoreFromObjectStore field value if set, zero value otherwise.

func (*PostgresInitialization) GetRestoreFromObjectStoreOk

func (o *PostgresInitialization) GetRestoreFromObjectStoreOk() (*PostgresInitializationRestoreFromObjectStore, bool)

GetRestoreFromObjectStoreOk returns a tuple with the RestoreFromObjectStore field value if set, nil otherwise and a boolean to check if the value has been set.

func (*PostgresInitialization) GetType

func (o *PostgresInitialization) GetType() string

GetType returns the Type field value if set, zero value otherwise.

func (*PostgresInitialization) GetTypeOk

func (o *PostgresInitialization) 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 (*PostgresInitialization) HasImportFromExternal

func (o *PostgresInitialization) HasImportFromExternal() bool

HasImportFromExternal returns a boolean if a field has been set.

func (*PostgresInitialization) HasRestoreFromBackup

func (o *PostgresInitialization) HasRestoreFromBackup() bool

HasRestoreFromBackup returns a boolean if a field has been set.

func (*PostgresInitialization) HasRestoreFromObjectStore

func (o *PostgresInitialization) HasRestoreFromObjectStore() bool

HasRestoreFromObjectStore returns a boolean if a field has been set.

func (*PostgresInitialization) HasType

func (o *PostgresInitialization) HasType() bool

HasType returns a boolean if a field has been set.

func (PostgresInitialization) MarshalJSON

func (o PostgresInitialization) MarshalJSON() ([]byte, error)

func (*PostgresInitialization) SetImportFromExternal

SetImportFromExternal gets a reference to the given PostgresInitializationImportFromExternal and assigns it to the ImportFromExternal field.

func (*PostgresInitialization) SetRestoreFromBackup

SetRestoreFromBackup gets a reference to the given PostgresInitializationRestoreFromBackup and assigns it to the RestoreFromBackup field.

func (*PostgresInitialization) SetRestoreFromObjectStore

SetRestoreFromObjectStore gets a reference to the given PostgresInitializationRestoreFromObjectStore and assigns it to the RestoreFromObjectStore field.

func (*PostgresInitialization) SetType

func (o *PostgresInitialization) SetType(v string)

SetType gets a reference to the given string and assigns it to the Type field.

type PostgresInitializationImportFromExternal

type PostgresInitializationImportFromExternal struct {
	Host     string `json:"host"`
	Port     int32  `json:"port"`
	Database string `json:"database"`
	Username string `json:"username"`
	// Secret containing the password
	PasswordSecretId string  `json:"password_secret_id"`
	SslMode          *string `json:"ssl_mode,omitempty"`
	// Specific databases to import
	DatabasesToImport []string `json:"databases_to_import,omitempty"`
}

PostgresInitializationImportFromExternal struct for PostgresInitializationImportFromExternal

func NewPostgresInitializationImportFromExternal

func NewPostgresInitializationImportFromExternal(host string, port int32, database string, username string, passwordSecretId string) *PostgresInitializationImportFromExternal

NewPostgresInitializationImportFromExternal instantiates a new PostgresInitializationImportFromExternal object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewPostgresInitializationImportFromExternalWithDefaults

func NewPostgresInitializationImportFromExternalWithDefaults() *PostgresInitializationImportFromExternal

NewPostgresInitializationImportFromExternalWithDefaults instantiates a new PostgresInitializationImportFromExternal object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*PostgresInitializationImportFromExternal) GetDatabase

GetDatabase returns the Database field value

func (*PostgresInitializationImportFromExternal) GetDatabaseOk

func (o *PostgresInitializationImportFromExternal) GetDatabaseOk() (*string, bool)

GetDatabaseOk returns a tuple with the Database field value and a boolean to check if the value has been set.

func (*PostgresInitializationImportFromExternal) GetDatabasesToImport

func (o *PostgresInitializationImportFromExternal) GetDatabasesToImport() []string

GetDatabasesToImport returns the DatabasesToImport field value if set, zero value otherwise.

func (*PostgresInitializationImportFromExternal) GetDatabasesToImportOk

func (o *PostgresInitializationImportFromExternal) GetDatabasesToImportOk() ([]string, bool)

GetDatabasesToImportOk returns a tuple with the DatabasesToImport field value if set, nil otherwise and a boolean to check if the value has been set.

func (*PostgresInitializationImportFromExternal) GetHost

GetHost returns the Host field value

func (*PostgresInitializationImportFromExternal) GetHostOk

GetHostOk returns a tuple with the Host field value and a boolean to check if the value has been set.

func (*PostgresInitializationImportFromExternal) GetPasswordSecretId

func (o *PostgresInitializationImportFromExternal) GetPasswordSecretId() string

GetPasswordSecretId returns the PasswordSecretId field value

func (*PostgresInitializationImportFromExternal) GetPasswordSecretIdOk

func (o *PostgresInitializationImportFromExternal) GetPasswordSecretIdOk() (*string, bool)

GetPasswordSecretIdOk returns a tuple with the PasswordSecretId field value and a boolean to check if the value has been set.

func (*PostgresInitializationImportFromExternal) GetPort

GetPort returns the Port field value

func (*PostgresInitializationImportFromExternal) GetPortOk

GetPortOk returns a tuple with the Port field value and a boolean to check if the value has been set.

func (*PostgresInitializationImportFromExternal) GetSslMode

GetSslMode returns the SslMode field value if set, zero value otherwise.

func (*PostgresInitializationImportFromExternal) GetSslModeOk

GetSslModeOk returns a tuple with the SslMode field value if set, nil otherwise and a boolean to check if the value has been set.

func (*PostgresInitializationImportFromExternal) GetUsername

GetUsername returns the Username field value

func (*PostgresInitializationImportFromExternal) GetUsernameOk

func (o *PostgresInitializationImportFromExternal) GetUsernameOk() (*string, bool)

GetUsernameOk returns a tuple with the Username field value and a boolean to check if the value has been set.

func (*PostgresInitializationImportFromExternal) HasDatabasesToImport

func (o *PostgresInitializationImportFromExternal) HasDatabasesToImport() bool

HasDatabasesToImport returns a boolean if a field has been set.

func (*PostgresInitializationImportFromExternal) HasSslMode

HasSslMode returns a boolean if a field has been set.

func (PostgresInitializationImportFromExternal) MarshalJSON

func (*PostgresInitializationImportFromExternal) SetDatabase

SetDatabase sets field value

func (*PostgresInitializationImportFromExternal) SetDatabasesToImport

func (o *PostgresInitializationImportFromExternal) SetDatabasesToImport(v []string)

SetDatabasesToImport gets a reference to the given []string and assigns it to the DatabasesToImport field.

func (*PostgresInitializationImportFromExternal) SetHost

SetHost sets field value

func (*PostgresInitializationImportFromExternal) SetPasswordSecretId

func (o *PostgresInitializationImportFromExternal) SetPasswordSecretId(v string)

SetPasswordSecretId sets field value

func (*PostgresInitializationImportFromExternal) SetPort

SetPort sets field value

func (*PostgresInitializationImportFromExternal) SetSslMode

SetSslMode gets a reference to the given string and assigns it to the SslMode field.

func (*PostgresInitializationImportFromExternal) SetUsername

SetUsername sets field value

type PostgresInitializationRestoreFromBackup

type PostgresInitializationRestoreFromBackup struct {
	// ID of backup to restore from
	BackupId *string `json:"backup_id,omitempty"`
}

PostgresInitializationRestoreFromBackup struct for PostgresInitializationRestoreFromBackup

func NewPostgresInitializationRestoreFromBackup

func NewPostgresInitializationRestoreFromBackup() *PostgresInitializationRestoreFromBackup

NewPostgresInitializationRestoreFromBackup instantiates a new PostgresInitializationRestoreFromBackup object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewPostgresInitializationRestoreFromBackupWithDefaults

func NewPostgresInitializationRestoreFromBackupWithDefaults() *PostgresInitializationRestoreFromBackup

NewPostgresInitializationRestoreFromBackupWithDefaults instantiates a new PostgresInitializationRestoreFromBackup object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*PostgresInitializationRestoreFromBackup) GetBackupId

GetBackupId returns the BackupId field value if set, zero value otherwise.

func (*PostgresInitializationRestoreFromBackup) GetBackupIdOk

func (o *PostgresInitializationRestoreFromBackup) GetBackupIdOk() (*string, bool)

GetBackupIdOk returns a tuple with the BackupId field value if set, nil otherwise and a boolean to check if the value has been set.

func (*PostgresInitializationRestoreFromBackup) HasBackupId

HasBackupId returns a boolean if a field has been set.

func (PostgresInitializationRestoreFromBackup) MarshalJSON

func (o PostgresInitializationRestoreFromBackup) MarshalJSON() ([]byte, error)

func (*PostgresInitializationRestoreFromBackup) SetBackupId

SetBackupId gets a reference to the given string and assigns it to the BackupId field.

type PostgresInitializationRestoreFromObjectStore

type PostgresInitializationRestoreFromObjectStore struct {
	// Object store containing the backup
	ObjectStoreId *string `json:"object_store_id,omitempty"`
	// Source PostgresAddon that created the backup
	SourcePostgresAddonId *string `json:"source_postgres_addon_id,omitempty"`
	// Point-in-time recovery target
	RecoveryTargetTime *time.Time `json:"recovery_target_time,omitempty"`
}

PostgresInitializationRestoreFromObjectStore struct for PostgresInitializationRestoreFromObjectStore

func NewPostgresInitializationRestoreFromObjectStore

func NewPostgresInitializationRestoreFromObjectStore() *PostgresInitializationRestoreFromObjectStore

NewPostgresInitializationRestoreFromObjectStore instantiates a new PostgresInitializationRestoreFromObjectStore object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewPostgresInitializationRestoreFromObjectStoreWithDefaults

func NewPostgresInitializationRestoreFromObjectStoreWithDefaults() *PostgresInitializationRestoreFromObjectStore

NewPostgresInitializationRestoreFromObjectStoreWithDefaults instantiates a new PostgresInitializationRestoreFromObjectStore object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*PostgresInitializationRestoreFromObjectStore) GetObjectStoreId

GetObjectStoreId returns the ObjectStoreId field value if set, zero value otherwise.

func (*PostgresInitializationRestoreFromObjectStore) GetObjectStoreIdOk

func (o *PostgresInitializationRestoreFromObjectStore) GetObjectStoreIdOk() (*string, bool)

GetObjectStoreIdOk returns a tuple with the ObjectStoreId field value if set, nil otherwise and a boolean to check if the value has been set.

func (*PostgresInitializationRestoreFromObjectStore) GetRecoveryTargetTime

func (o *PostgresInitializationRestoreFromObjectStore) GetRecoveryTargetTime() time.Time

GetRecoveryTargetTime returns the RecoveryTargetTime field value if set, zero value otherwise.

func (*PostgresInitializationRestoreFromObjectStore) GetRecoveryTargetTimeOk

func (o *PostgresInitializationRestoreFromObjectStore) GetRecoveryTargetTimeOk() (*time.Time, bool)

GetRecoveryTargetTimeOk returns a tuple with the RecoveryTargetTime field value if set, nil otherwise and a boolean to check if the value has been set.

func (*PostgresInitializationRestoreFromObjectStore) GetSourcePostgresAddonId

func (o *PostgresInitializationRestoreFromObjectStore) GetSourcePostgresAddonId() string

GetSourcePostgresAddonId returns the SourcePostgresAddonId field value if set, zero value otherwise.

func (*PostgresInitializationRestoreFromObjectStore) GetSourcePostgresAddonIdOk

func (o *PostgresInitializationRestoreFromObjectStore) GetSourcePostgresAddonIdOk() (*string, bool)

GetSourcePostgresAddonIdOk returns a tuple with the SourcePostgresAddonId field value if set, nil otherwise and a boolean to check if the value has been set.

func (*PostgresInitializationRestoreFromObjectStore) HasObjectStoreId

func (o *PostgresInitializationRestoreFromObjectStore) HasObjectStoreId() bool

HasObjectStoreId returns a boolean if a field has been set.

func (*PostgresInitializationRestoreFromObjectStore) HasRecoveryTargetTime

func (o *PostgresInitializationRestoreFromObjectStore) HasRecoveryTargetTime() bool

HasRecoveryTargetTime returns a boolean if a field has been set.

func (*PostgresInitializationRestoreFromObjectStore) HasSourcePostgresAddonId

func (o *PostgresInitializationRestoreFromObjectStore) HasSourcePostgresAddonId() bool

HasSourcePostgresAddonId returns a boolean if a field has been set.

func (PostgresInitializationRestoreFromObjectStore) MarshalJSON

func (*PostgresInitializationRestoreFromObjectStore) SetObjectStoreId

SetObjectStoreId gets a reference to the given string and assigns it to the ObjectStoreId field.

func (*PostgresInitializationRestoreFromObjectStore) SetRecoveryTargetTime

func (o *PostgresInitializationRestoreFromObjectStore) SetRecoveryTargetTime(v time.Time)

SetRecoveryTargetTime gets a reference to the given time.Time and assigns it to the RecoveryTargetTime field.

func (*PostgresInitializationRestoreFromObjectStore) SetSourcePostgresAddonId

func (o *PostgresInitializationRestoreFromObjectStore) SetSourcePostgresAddonId(v string)

SetSourcePostgresAddonId gets a reference to the given string and assigns it to the SourcePostgresAddonId field.

type PostgresInstances

type PostgresInstances struct {
	// Number of PostgreSQL instances
	Count     int32                       `json:"count"`
	Placement *PostgresInstancesPlacement `json:"placement,omitempty"`
}

PostgresInstances struct for PostgresInstances

func NewPostgresInstances

func NewPostgresInstances(count int32) *PostgresInstances

NewPostgresInstances instantiates a new PostgresInstances object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewPostgresInstancesWithDefaults

func NewPostgresInstancesWithDefaults() *PostgresInstances

NewPostgresInstancesWithDefaults instantiates a new PostgresInstances object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*PostgresInstances) GetCount

func (o *PostgresInstances) GetCount() int32

GetCount returns the Count field value

func (*PostgresInstances) GetCountOk

func (o *PostgresInstances) GetCountOk() (*int32, bool)

GetCountOk returns a tuple with the Count field value and a boolean to check if the value has been set.

func (*PostgresInstances) GetPlacement

GetPlacement returns the Placement field value if set, zero value otherwise.

func (*PostgresInstances) GetPlacementOk

func (o *PostgresInstances) GetPlacementOk() (*PostgresInstancesPlacement, bool)

GetPlacementOk returns a tuple with the Placement field value if set, nil otherwise and a boolean to check if the value has been set.

func (*PostgresInstances) HasPlacement

func (o *PostgresInstances) HasPlacement() bool

HasPlacement returns a boolean if a field has been set.

func (PostgresInstances) MarshalJSON

func (o PostgresInstances) MarshalJSON() ([]byte, error)

func (*PostgresInstances) SetCount

func (o *PostgresInstances) SetCount(v int32)

SetCount sets field value

func (*PostgresInstances) SetPlacement

func (o *PostgresInstances) SetPlacement(v PostgresInstancesPlacement)

SetPlacement gets a reference to the given PostgresInstancesPlacement and assigns it to the Placement field.

type PostgresInstancesPlacement

type PostgresInstancesPlacement struct {
	// Topology key for instance spreading
	TopologyKey *string `json:"topology_key,omitempty"`
	// Instance placement policy
	Policy *string `json:"policy,omitempty"`
	// Node selector for instance placement
	NodeSelector *map[string]string                           `json:"node_selector,omitempty"`
	Tolerations  []PostgresInstancesPlacementTolerationsInner `json:"tolerations,omitempty"`
}

PostgresInstancesPlacement struct for PostgresInstancesPlacement

func NewPostgresInstancesPlacement

func NewPostgresInstancesPlacement() *PostgresInstancesPlacement

NewPostgresInstancesPlacement instantiates a new PostgresInstancesPlacement object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewPostgresInstancesPlacementWithDefaults

func NewPostgresInstancesPlacementWithDefaults() *PostgresInstancesPlacement

NewPostgresInstancesPlacementWithDefaults instantiates a new PostgresInstancesPlacement object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*PostgresInstancesPlacement) GetNodeSelector

func (o *PostgresInstancesPlacement) GetNodeSelector() map[string]string

GetNodeSelector returns the NodeSelector field value if set, zero value otherwise.

func (*PostgresInstancesPlacement) GetNodeSelectorOk

func (o *PostgresInstancesPlacement) GetNodeSelectorOk() (*map[string]string, bool)

GetNodeSelectorOk returns a tuple with the NodeSelector field value if set, nil otherwise and a boolean to check if the value has been set.

func (*PostgresInstancesPlacement) GetPolicy

func (o *PostgresInstancesPlacement) GetPolicy() string

GetPolicy returns the Policy field value if set, zero value otherwise.

func (*PostgresInstancesPlacement) GetPolicyOk

func (o *PostgresInstancesPlacement) GetPolicyOk() (*string, bool)

GetPolicyOk returns a tuple with the Policy field value if set, nil otherwise and a boolean to check if the value has been set.

func (*PostgresInstancesPlacement) GetTolerations

GetTolerations returns the Tolerations field value if set, zero value otherwise.

func (*PostgresInstancesPlacement) GetTolerationsOk

GetTolerationsOk returns a tuple with the Tolerations field value if set, nil otherwise and a boolean to check if the value has been set.

func (*PostgresInstancesPlacement) GetTopologyKey

func (o *PostgresInstancesPlacement) GetTopologyKey() string

GetTopologyKey returns the TopologyKey field value if set, zero value otherwise.

func (*PostgresInstancesPlacement) GetTopologyKeyOk

func (o *PostgresInstancesPlacement) GetTopologyKeyOk() (*string, bool)

GetTopologyKeyOk returns a tuple with the TopologyKey field value if set, nil otherwise and a boolean to check if the value has been set.

func (*PostgresInstancesPlacement) HasNodeSelector

func (o *PostgresInstancesPlacement) HasNodeSelector() bool

HasNodeSelector returns a boolean if a field has been set.

func (*PostgresInstancesPlacement) HasPolicy

func (o *PostgresInstancesPlacement) HasPolicy() bool

HasPolicy returns a boolean if a field has been set.

func (*PostgresInstancesPlacement) HasTolerations

func (o *PostgresInstancesPlacement) HasTolerations() bool

HasTolerations returns a boolean if a field has been set.

func (*PostgresInstancesPlacement) HasTopologyKey

func (o *PostgresInstancesPlacement) HasTopologyKey() bool

HasTopologyKey returns a boolean if a field has been set.

func (PostgresInstancesPlacement) MarshalJSON

func (o PostgresInstancesPlacement) MarshalJSON() ([]byte, error)

func (*PostgresInstancesPlacement) SetNodeSelector

func (o *PostgresInstancesPlacement) SetNodeSelector(v map[string]string)

SetNodeSelector gets a reference to the given map[string]string and assigns it to the NodeSelector field.

func (*PostgresInstancesPlacement) SetPolicy

func (o *PostgresInstancesPlacement) SetPolicy(v string)

SetPolicy gets a reference to the given string and assigns it to the Policy field.

func (*PostgresInstancesPlacement) SetTolerations

SetTolerations gets a reference to the given []PostgresInstancesPlacementTolerationsInner and assigns it to the Tolerations field.

func (*PostgresInstancesPlacement) SetTopologyKey

func (o *PostgresInstancesPlacement) SetTopologyKey(v string)

SetTopologyKey gets a reference to the given string and assigns it to the TopologyKey field.

type PostgresInstancesPlacementTolerationsInner

type PostgresInstancesPlacementTolerationsInner struct {
	Key      *string `json:"key,omitempty"`
	Operator *string `json:"operator,omitempty"`
	Value    *string `json:"value,omitempty"`
	Effect   *string `json:"effect,omitempty"`
}

PostgresInstancesPlacementTolerationsInner struct for PostgresInstancesPlacementTolerationsInner

func NewPostgresInstancesPlacementTolerationsInner

func NewPostgresInstancesPlacementTolerationsInner() *PostgresInstancesPlacementTolerationsInner

NewPostgresInstancesPlacementTolerationsInner instantiates a new PostgresInstancesPlacementTolerationsInner object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewPostgresInstancesPlacementTolerationsInnerWithDefaults

func NewPostgresInstancesPlacementTolerationsInnerWithDefaults() *PostgresInstancesPlacementTolerationsInner

NewPostgresInstancesPlacementTolerationsInnerWithDefaults instantiates a new PostgresInstancesPlacementTolerationsInner object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*PostgresInstancesPlacementTolerationsInner) GetEffect

GetEffect returns the Effect field value if set, zero value otherwise.

func (*PostgresInstancesPlacementTolerationsInner) GetEffectOk

GetEffectOk returns a tuple with the Effect field value if set, nil otherwise and a boolean to check if the value has been set.

func (*PostgresInstancesPlacementTolerationsInner) GetKey

GetKey returns the Key field value if set, zero value otherwise.

func (*PostgresInstancesPlacementTolerationsInner) GetKeyOk

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 (*PostgresInstancesPlacementTolerationsInner) GetOperator

GetOperator returns the Operator field value if set, zero value otherwise.

func (*PostgresInstancesPlacementTolerationsInner) GetOperatorOk

GetOperatorOk returns a tuple with the Operator field value if set, nil otherwise and a boolean to check if the value has been set.

func (*PostgresInstancesPlacementTolerationsInner) GetValue

GetValue returns the Value field value if set, zero value otherwise.

func (*PostgresInstancesPlacementTolerationsInner) 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 (*PostgresInstancesPlacementTolerationsInner) HasEffect

HasEffect returns a boolean if a field has been set.

func (*PostgresInstancesPlacementTolerationsInner) HasKey

HasKey returns a boolean if a field has been set.

func (*PostgresInstancesPlacementTolerationsInner) HasOperator

HasOperator returns a boolean if a field has been set.

func (*PostgresInstancesPlacementTolerationsInner) HasValue

HasValue returns a boolean if a field has been set.

func (PostgresInstancesPlacementTolerationsInner) MarshalJSON

func (*PostgresInstancesPlacementTolerationsInner) SetEffect

SetEffect gets a reference to the given string and assigns it to the Effect field.

func (*PostgresInstancesPlacementTolerationsInner) SetKey

SetKey gets a reference to the given string and assigns it to the Key field.

func (*PostgresInstancesPlacementTolerationsInner) SetOperator

SetOperator gets a reference to the given string and assigns it to the Operator field.

func (*PostgresInstancesPlacementTolerationsInner) SetValue

SetValue gets a reference to the given string and assigns it to the Value field.

type PostgresResources

type PostgresResources struct {
	Cpu    *PostgresResourcesCpu    `json:"cpu,omitempty"`
	Memory *PostgresResourcesMemory `json:"memory,omitempty"`
}

PostgresResources struct for PostgresResources

func NewPostgresResources

func NewPostgresResources() *PostgresResources

NewPostgresResources instantiates a new PostgresResources object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewPostgresResourcesWithDefaults

func NewPostgresResourcesWithDefaults() *PostgresResources

NewPostgresResourcesWithDefaults instantiates a new PostgresResources object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*PostgresResources) GetCpu

GetCpu returns the Cpu field value if set, zero value otherwise.

func (*PostgresResources) GetCpuOk

func (o *PostgresResources) GetCpuOk() (*PostgresResourcesCpu, bool)

GetCpuOk returns a tuple with the Cpu field value if set, nil otherwise and a boolean to check if the value has been set.

func (*PostgresResources) GetMemory

GetMemory returns the Memory field value if set, zero value otherwise.

func (*PostgresResources) GetMemoryOk

func (o *PostgresResources) GetMemoryOk() (*PostgresResourcesMemory, 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 (*PostgresResources) HasCpu

func (o *PostgresResources) HasCpu() bool

HasCpu returns a boolean if a field has been set.

func (*PostgresResources) HasMemory

func (o *PostgresResources) HasMemory() bool

HasMemory returns a boolean if a field has been set.

func (PostgresResources) MarshalJSON

func (o PostgresResources) MarshalJSON() ([]byte, error)

func (*PostgresResources) SetCpu

SetCpu gets a reference to the given PostgresResourcesCpu and assigns it to the Cpu field.

func (*PostgresResources) SetMemory

SetMemory gets a reference to the given PostgresResourcesMemory and assigns it to the Memory field.

type PostgresResourcesCpu

type PostgresResourcesCpu struct {
	// CPU request (e.g., 100m, 1)
	Request *string `json:"request,omitempty"`
	// CPU limit
	Limit *string `json:"limit,omitempty"`
}

PostgresResourcesCpu struct for PostgresResourcesCpu

func NewPostgresResourcesCpu

func NewPostgresResourcesCpu() *PostgresResourcesCpu

NewPostgresResourcesCpu instantiates a new PostgresResourcesCpu object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewPostgresResourcesCpuWithDefaults

func NewPostgresResourcesCpuWithDefaults() *PostgresResourcesCpu

NewPostgresResourcesCpuWithDefaults instantiates a new PostgresResourcesCpu object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*PostgresResourcesCpu) GetLimit

func (o *PostgresResourcesCpu) GetLimit() string

GetLimit returns the Limit field value if set, zero value otherwise.

func (*PostgresResourcesCpu) GetLimitOk

func (o *PostgresResourcesCpu) GetLimitOk() (*string, 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 (*PostgresResourcesCpu) GetRequest

func (o *PostgresResourcesCpu) GetRequest() string

GetRequest returns the Request field value if set, zero value otherwise.

func (*PostgresResourcesCpu) GetRequestOk

func (o *PostgresResourcesCpu) GetRequestOk() (*string, bool)

GetRequestOk returns a tuple with the Request field value if set, nil otherwise and a boolean to check if the value has been set.

func (*PostgresResourcesCpu) HasLimit

func (o *PostgresResourcesCpu) HasLimit() bool

HasLimit returns a boolean if a field has been set.

func (*PostgresResourcesCpu) HasRequest

func (o *PostgresResourcesCpu) HasRequest() bool

HasRequest returns a boolean if a field has been set.

func (PostgresResourcesCpu) MarshalJSON

func (o PostgresResourcesCpu) MarshalJSON() ([]byte, error)

func (*PostgresResourcesCpu) SetLimit

func (o *PostgresResourcesCpu) SetLimit(v string)

SetLimit gets a reference to the given string and assigns it to the Limit field.

func (*PostgresResourcesCpu) SetRequest

func (o *PostgresResourcesCpu) SetRequest(v string)

SetRequest gets a reference to the given string and assigns it to the Request field.

type PostgresResourcesMemory

type PostgresResourcesMemory struct {
	// Memory request (e.g., 256Mi, 1Gi)
	Request *string `json:"request,omitempty"`
	// Memory limit
	Limit *string `json:"limit,omitempty"`
}

PostgresResourcesMemory struct for PostgresResourcesMemory

func NewPostgresResourcesMemory

func NewPostgresResourcesMemory() *PostgresResourcesMemory

NewPostgresResourcesMemory instantiates a new PostgresResourcesMemory object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewPostgresResourcesMemoryWithDefaults

func NewPostgresResourcesMemoryWithDefaults() *PostgresResourcesMemory

NewPostgresResourcesMemoryWithDefaults instantiates a new PostgresResourcesMemory object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*PostgresResourcesMemory) GetLimit

func (o *PostgresResourcesMemory) GetLimit() string

GetLimit returns the Limit field value if set, zero value otherwise.

func (*PostgresResourcesMemory) GetLimitOk

func (o *PostgresResourcesMemory) GetLimitOk() (*string, 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 (*PostgresResourcesMemory) GetRequest

func (o *PostgresResourcesMemory) GetRequest() string

GetRequest returns the Request field value if set, zero value otherwise.

func (*PostgresResourcesMemory) GetRequestOk

func (o *PostgresResourcesMemory) GetRequestOk() (*string, bool)

GetRequestOk returns a tuple with the Request field value if set, nil otherwise and a boolean to check if the value has been set.

func (*PostgresResourcesMemory) HasLimit

func (o *PostgresResourcesMemory) HasLimit() bool

HasLimit returns a boolean if a field has been set.

func (*PostgresResourcesMemory) HasRequest

func (o *PostgresResourcesMemory) HasRequest() bool

HasRequest returns a boolean if a field has been set.

func (PostgresResourcesMemory) MarshalJSON

func (o PostgresResourcesMemory) MarshalJSON() ([]byte, error)

func (*PostgresResourcesMemory) SetLimit

func (o *PostgresResourcesMemory) SetLimit(v string)

SetLimit gets a reference to the given string and assigns it to the Limit field.

func (*PostgresResourcesMemory) SetRequest

func (o *PostgresResourcesMemory) SetRequest(v string)

SetRequest gets a reference to the given string and assigns it to the Request field.

type PostgresStorage

type PostgresStorage struct {
	// Storage size (e.g., 10Gi, 100Gi)
	Size string `json:"size"`
	// Kubernetes storage class name. Omit to use the cluster's default storage class.
	StorageClass *string `json:"storage_class,omitempty"`
}

PostgresStorage struct for PostgresStorage

func NewPostgresStorage

func NewPostgresStorage(size string) *PostgresStorage

NewPostgresStorage instantiates a new PostgresStorage object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewPostgresStorageWithDefaults

func NewPostgresStorageWithDefaults() *PostgresStorage

NewPostgresStorageWithDefaults instantiates a new PostgresStorage object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*PostgresStorage) GetSize

func (o *PostgresStorage) GetSize() string

GetSize returns the Size field value

func (*PostgresStorage) GetSizeOk

func (o *PostgresStorage) GetSizeOk() (*string, bool)

GetSizeOk returns a tuple with the Size field value and a boolean to check if the value has been set.

func (*PostgresStorage) GetStorageClass

func (o *PostgresStorage) GetStorageClass() string

GetStorageClass returns the StorageClass field value if set, zero value otherwise.

func (*PostgresStorage) GetStorageClassOk

func (o *PostgresStorage) GetStorageClassOk() (*string, bool)

GetStorageClassOk returns a tuple with the StorageClass field value if set, nil otherwise and a boolean to check if the value has been set.

func (*PostgresStorage) HasStorageClass

func (o *PostgresStorage) HasStorageClass() bool

HasStorageClass returns a boolean if a field has been set.

func (PostgresStorage) MarshalJSON

func (o PostgresStorage) MarshalJSON() ([]byte, error)

func (*PostgresStorage) SetSize

func (o *PostgresStorage) SetSize(v string)

SetSize sets field value

func (*PostgresStorage) SetStorageClass

func (o *PostgresStorage) SetStorageClass(v string)

SetStorageClass gets a reference to the given string and assigns it to the StorageClass field.

type PostgresVersion

type PostgresVersion struct {
	// PostgreSQL major version
	Major int32 `json:"major"`
	// PostgreSQL minor version
	Minor *int32 `json:"minor,omitempty"`
	// Enable automatic minor version upgrades
	EnableAutoMinorUpgrade *bool `json:"enable_auto_minor_upgrade,omitempty"`
	// Enable automatic major version upgrades
	EnableAutoMajorUpgrade *bool `json:"enable_auto_major_upgrade,omitempty"`
}

PostgresVersion struct for PostgresVersion

func NewPostgresVersion

func NewPostgresVersion(major int32) *PostgresVersion

NewPostgresVersion instantiates a new PostgresVersion object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewPostgresVersionWithDefaults

func NewPostgresVersionWithDefaults() *PostgresVersion

NewPostgresVersionWithDefaults instantiates a new PostgresVersion object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*PostgresVersion) GetEnableAutoMajorUpgrade

func (o *PostgresVersion) GetEnableAutoMajorUpgrade() bool

GetEnableAutoMajorUpgrade returns the EnableAutoMajorUpgrade field value if set, zero value otherwise.

func (*PostgresVersion) GetEnableAutoMajorUpgradeOk

func (o *PostgresVersion) GetEnableAutoMajorUpgradeOk() (*bool, bool)

GetEnableAutoMajorUpgradeOk returns a tuple with the EnableAutoMajorUpgrade field value if set, nil otherwise and a boolean to check if the value has been set.

func (*PostgresVersion) GetEnableAutoMinorUpgrade

func (o *PostgresVersion) GetEnableAutoMinorUpgrade() bool

GetEnableAutoMinorUpgrade returns the EnableAutoMinorUpgrade field value if set, zero value otherwise.

func (*PostgresVersion) GetEnableAutoMinorUpgradeOk

func (o *PostgresVersion) GetEnableAutoMinorUpgradeOk() (*bool, bool)

GetEnableAutoMinorUpgradeOk returns a tuple with the EnableAutoMinorUpgrade field value if set, nil otherwise and a boolean to check if the value has been set.

func (*PostgresVersion) GetMajor

func (o *PostgresVersion) GetMajor() int32

GetMajor returns the Major field value

func (*PostgresVersion) GetMajorOk

func (o *PostgresVersion) GetMajorOk() (*int32, bool)

GetMajorOk returns a tuple with the Major field value and a boolean to check if the value has been set.

func (*PostgresVersion) GetMinor

func (o *PostgresVersion) GetMinor() int32

GetMinor returns the Minor field value if set, zero value otherwise.

func (*PostgresVersion) GetMinorOk

func (o *PostgresVersion) GetMinorOk() (*int32, bool)

GetMinorOk returns a tuple with the Minor field value if set, nil otherwise and a boolean to check if the value has been set.

func (*PostgresVersion) HasEnableAutoMajorUpgrade

func (o *PostgresVersion) HasEnableAutoMajorUpgrade() bool

HasEnableAutoMajorUpgrade returns a boolean if a field has been set.

func (*PostgresVersion) HasEnableAutoMinorUpgrade

func (o *PostgresVersion) HasEnableAutoMinorUpgrade() bool

HasEnableAutoMinorUpgrade returns a boolean if a field has been set.

func (*PostgresVersion) HasMinor

func (o *PostgresVersion) HasMinor() bool

HasMinor returns a boolean if a field has been set.

func (PostgresVersion) MarshalJSON

func (o PostgresVersion) MarshalJSON() ([]byte, error)

func (*PostgresVersion) SetEnableAutoMajorUpgrade

func (o *PostgresVersion) SetEnableAutoMajorUpgrade(v bool)

SetEnableAutoMajorUpgrade gets a reference to the given bool and assigns it to the EnableAutoMajorUpgrade field.

func (*PostgresVersion) SetEnableAutoMinorUpgrade

func (o *PostgresVersion) SetEnableAutoMinorUpgrade(v bool)

SetEnableAutoMinorUpgrade gets a reference to the given bool and assigns it to the EnableAutoMinorUpgrade field.

func (*PostgresVersion) SetMajor

func (o *PostgresVersion) SetMajor(v int32)

SetMajor sets field value

func (*PostgresVersion) SetMinor

func (o *PostgresVersion) SetMinor(v int32)

SetMinor gets a reference to the given int32 and assigns it to the Minor field.

type PreviewConfigsApiService

type PreviewConfigsApiService service

PreviewConfigsApiService PreviewConfigsApi service

func (*PreviewConfigsApiService) CreatePreviewConfig

func (a *PreviewConfigsApiService) CreatePreviewConfig(ctx context.Context, orgId string, projectName string) ApiCreatePreviewConfigRequest

CreatePreviewConfig Create a new preview config

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param orgId The ID of the organization
@param projectName The name of the project
@return ApiCreatePreviewConfigRequest

func (*PreviewConfigsApiService) CreatePreviewConfigExecute

Execute executes the request

@return StackPreviewConfig

func (*PreviewConfigsApiService) DeletePreviewConfig

func (a *PreviewConfigsApiService) DeletePreviewConfig(ctx context.Context, orgId string, projectName string, id string) ApiDeletePreviewConfigRequest

DeletePreviewConfig Delete a preview config

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param orgId The ID of the organization
@param projectName The name of the project
@param id The id of record
@return ApiDeletePreviewConfigRequest

func (*PreviewConfigsApiService) DeletePreviewConfigExecute

func (a *PreviewConfigsApiService) DeletePreviewConfigExecute(r ApiDeletePreviewConfigRequest) (*http.Response, error)

Execute executes the request

func (*PreviewConfigsApiService) GetPreviewConfig

func (a *PreviewConfigsApiService) GetPreviewConfig(ctx context.Context, orgId string, projectName string, id string) ApiGetPreviewConfigRequest

GetPreviewConfig Get a specific preview config

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param orgId The ID of the organization
@param projectName The name of the project
@param id The id of record
@return ApiGetPreviewConfigRequest

func (*PreviewConfigsApiService) GetPreviewConfigExecute

Execute executes the request

@return StackPreviewConfig

func (*PreviewConfigsApiService) ListPreviewConfigs

func (a *PreviewConfigsApiService) ListPreviewConfigs(ctx context.Context, orgId string, projectName string) ApiListPreviewConfigsRequest

ListPreviewConfigs List preview configs for a project

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param orgId The ID of the organization
@param projectName The name of the project
@return ApiListPreviewConfigsRequest

func (*PreviewConfigsApiService) ListPreviewConfigsExecute

Execute executes the request

@return StackPreviewConfigList

func (*PreviewConfigsApiService) UpdatePreviewConfig

func (a *PreviewConfigsApiService) UpdatePreviewConfig(ctx context.Context, orgId string, projectName string, id string) ApiUpdatePreviewConfigRequest

UpdatePreviewConfig Update a preview config

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param orgId The ID of the organization
@param projectName The name of the project
@param id The id of record
@return ApiUpdatePreviewConfigRequest

func (*PreviewConfigsApiService) UpdatePreviewConfigExecute

Execute executes the request

@return StackPreviewConfig

type PreviewGitRepository

type PreviewGitRepository struct {
	RepoUrl    string  `json:"repo_url"`
	BaseBranch *string `json:"base_branch,omitempty"`
	// Org-level git integration override for clone auth
	IntegrationId *string `json:"integration_id,omitempty"`
}

PreviewGitRepository struct for PreviewGitRepository

func NewPreviewGitRepository

func NewPreviewGitRepository(repoUrl string) *PreviewGitRepository

NewPreviewGitRepository instantiates a new PreviewGitRepository object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewPreviewGitRepositoryWithDefaults

func NewPreviewGitRepositoryWithDefaults() *PreviewGitRepository

NewPreviewGitRepositoryWithDefaults instantiates a new PreviewGitRepository object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*PreviewGitRepository) GetBaseBranch

func (o *PreviewGitRepository) GetBaseBranch() string

GetBaseBranch returns the BaseBranch field value if set, zero value otherwise.

func (*PreviewGitRepository) GetBaseBranchOk

func (o *PreviewGitRepository) GetBaseBranchOk() (*string, bool)

GetBaseBranchOk returns a tuple with the BaseBranch field value if set, nil otherwise and a boolean to check if the value has been set.

func (*PreviewGitRepository) GetIntegrationId

func (o *PreviewGitRepository) GetIntegrationId() string

GetIntegrationId returns the IntegrationId field value if set, zero value otherwise.

func (*PreviewGitRepository) GetIntegrationIdOk

func (o *PreviewGitRepository) GetIntegrationIdOk() (*string, bool)

GetIntegrationIdOk returns a tuple with the IntegrationId field value if set, nil otherwise and a boolean to check if the value has been set.

func (*PreviewGitRepository) GetRepoUrl

func (o *PreviewGitRepository) GetRepoUrl() string

GetRepoUrl returns the RepoUrl field value

func (*PreviewGitRepository) GetRepoUrlOk

func (o *PreviewGitRepository) GetRepoUrlOk() (*string, bool)

GetRepoUrlOk returns a tuple with the RepoUrl field value and a boolean to check if the value has been set.

func (*PreviewGitRepository) HasBaseBranch

func (o *PreviewGitRepository) HasBaseBranch() bool

HasBaseBranch returns a boolean if a field has been set.

func (*PreviewGitRepository) HasIntegrationId

func (o *PreviewGitRepository) HasIntegrationId() bool

HasIntegrationId returns a boolean if a field has been set.

func (PreviewGitRepository) MarshalJSON

func (o PreviewGitRepository) MarshalJSON() ([]byte, error)

func (*PreviewGitRepository) SetBaseBranch

func (o *PreviewGitRepository) SetBaseBranch(v string)

SetBaseBranch gets a reference to the given string and assigns it to the BaseBranch field.

func (*PreviewGitRepository) SetIntegrationId

func (o *PreviewGitRepository) SetIntegrationId(v string)

SetIntegrationId gets a reference to the given string and assigns it to the IntegrationId field.

func (*PreviewGitRepository) SetRepoUrl

func (o *PreviewGitRepository) SetRepoUrl(v string)

SetRepoUrl sets field value

type PreviewStack

type PreviewStack struct {
	Id                *string             `json:"id,omitempty"`
	OrganisationId    *string             `json:"organisation_id,omitempty"`
	ProjectId         *string             `json:"project_id,omitempty"`
	UserId            *string             `json:"user_id,omitempty"`
	ConfigId          *string             `json:"config_id,omitempty"`
	StackId           *string             `json:"stack_id,omitempty"`
	Name              *string             `json:"name,omitempty"`
	PrNumber          *string             `json:"pr_number,omitempty"`
	Branch            *string             `json:"branch,omitempty"`
	Commit            *string             `json:"commit,omitempty"`
	Source            *string             `json:"source,omitempty"`
	Status            *PreviewStackStatus `json:"status,omitempty"`
	ImageOverrides    *map[string]string  `json:"image_overrides,omitempty"`
	Labels            []Label             `json:"labels,omitempty"`
	Annotations       []Annotation        `json:"annotations,omitempty"`
	DeletionTimestamp *time.Time          `json:"deletion_timestamp,omitempty"`
	CreatedAt         *time.Time          `json:"created_at,omitempty"`
	UpdatedAt         *time.Time          `json:"updated_at,omitempty"`
}

PreviewStack struct for PreviewStack

func NewPreviewStack

func NewPreviewStack() *PreviewStack

NewPreviewStack instantiates a new PreviewStack object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewPreviewStackWithDefaults

func NewPreviewStackWithDefaults() *PreviewStack

NewPreviewStackWithDefaults instantiates a new PreviewStack object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*PreviewStack) GetAnnotations

func (o *PreviewStack) GetAnnotations() []Annotation

GetAnnotations returns the Annotations field value if set, zero value otherwise.

func (*PreviewStack) GetAnnotationsOk

func (o *PreviewStack) GetAnnotationsOk() ([]Annotation, bool)

GetAnnotationsOk returns a tuple with the Annotations field value if set, nil otherwise and a boolean to check if the value has been set.

func (*PreviewStack) GetBranch

func (o *PreviewStack) GetBranch() string

GetBranch returns the Branch field value if set, zero value otherwise.

func (*PreviewStack) GetBranchOk

func (o *PreviewStack) 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 (*PreviewStack) GetCommit

func (o *PreviewStack) GetCommit() string

GetCommit returns the Commit field value if set, zero value otherwise.

func (*PreviewStack) GetCommitOk

func (o *PreviewStack) GetCommitOk() (*string, bool)

GetCommitOk returns a tuple with the Commit field value if set, nil otherwise and a boolean to check if the value has been set.

func (*PreviewStack) GetConfigId

func (o *PreviewStack) GetConfigId() string

GetConfigId returns the ConfigId field value if set, zero value otherwise.

func (*PreviewStack) GetConfigIdOk

func (o *PreviewStack) GetConfigIdOk() (*string, bool)

GetConfigIdOk returns a tuple with the ConfigId field value if set, nil otherwise and a boolean to check if the value has been set.

func (*PreviewStack) GetCreatedAt

func (o *PreviewStack) GetCreatedAt() time.Time

GetCreatedAt returns the CreatedAt field value if set, zero value otherwise.

func (*PreviewStack) GetCreatedAtOk

func (o *PreviewStack) 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 (*PreviewStack) GetDeletionTimestamp

func (o *PreviewStack) GetDeletionTimestamp() time.Time

GetDeletionTimestamp returns the DeletionTimestamp field value if set, zero value otherwise.

func (*PreviewStack) GetDeletionTimestampOk

func (o *PreviewStack) GetDeletionTimestampOk() (*time.Time, bool)

GetDeletionTimestampOk returns a tuple with the DeletionTimestamp field value if set, nil otherwise and a boolean to check if the value has been set.

func (*PreviewStack) GetId

func (o *PreviewStack) GetId() string

GetId returns the Id field value if set, zero value otherwise.

func (*PreviewStack) GetIdOk

func (o *PreviewStack) 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 (*PreviewStack) GetImageOverrides

func (o *PreviewStack) GetImageOverrides() map[string]string

GetImageOverrides returns the ImageOverrides field value if set, zero value otherwise.

func (*PreviewStack) GetImageOverridesOk

func (o *PreviewStack) GetImageOverridesOk() (*map[string]string, bool)

GetImageOverridesOk returns a tuple with the ImageOverrides field value if set, nil otherwise and a boolean to check if the value has been set.

func (*PreviewStack) GetLabels

func (o *PreviewStack) GetLabels() []Label

GetLabels returns the Labels field value if set, zero value otherwise.

func (*PreviewStack) GetLabelsOk

func (o *PreviewStack) GetLabelsOk() ([]Label, 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 (*PreviewStack) GetName

func (o *PreviewStack) GetName() string

GetName returns the Name field value if set, zero value otherwise.

func (*PreviewStack) GetNameOk

func (o *PreviewStack) 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 (*PreviewStack) GetOrganisationId

func (o *PreviewStack) GetOrganisationId() string

GetOrganisationId returns the OrganisationId field value if set, zero value otherwise.

func (*PreviewStack) GetOrganisationIdOk

func (o *PreviewStack) GetOrganisationIdOk() (*string, bool)

GetOrganisationIdOk returns a tuple with the OrganisationId field value if set, nil otherwise and a boolean to check if the value has been set.

func (*PreviewStack) GetPrNumber

func (o *PreviewStack) GetPrNumber() string

GetPrNumber returns the PrNumber field value if set, zero value otherwise.

func (*PreviewStack) GetPrNumberOk

func (o *PreviewStack) GetPrNumberOk() (*string, bool)

GetPrNumberOk returns a tuple with the PrNumber field value if set, nil otherwise and a boolean to check if the value has been set.

func (*PreviewStack) GetProjectId

func (o *PreviewStack) GetProjectId() string

GetProjectId returns the ProjectId field value if set, zero value otherwise.

func (*PreviewStack) GetProjectIdOk

func (o *PreviewStack) GetProjectIdOk() (*string, bool)

GetProjectIdOk returns a tuple with the ProjectId field value if set, nil otherwise and a boolean to check if the value has been set.

func (*PreviewStack) GetSource

func (o *PreviewStack) GetSource() string

GetSource returns the Source field value if set, zero value otherwise.

func (*PreviewStack) GetSourceOk

func (o *PreviewStack) GetSourceOk() (*string, bool)

GetSourceOk returns a tuple with the Source field value if set, nil otherwise and a boolean to check if the value has been set.

func (*PreviewStack) GetStackId

func (o *PreviewStack) GetStackId() string

GetStackId returns the StackId field value if set, zero value otherwise.

func (*PreviewStack) GetStackIdOk

func (o *PreviewStack) GetStackIdOk() (*string, bool)

GetStackIdOk returns a tuple with the StackId field value if set, nil otherwise and a boolean to check if the value has been set.

func (*PreviewStack) GetStatus

func (o *PreviewStack) GetStatus() PreviewStackStatus

GetStatus returns the Status field value if set, zero value otherwise.

func (*PreviewStack) GetStatusOk

func (o *PreviewStack) GetStatusOk() (*PreviewStackStatus, 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 (*PreviewStack) GetUpdatedAt

func (o *PreviewStack) GetUpdatedAt() time.Time

GetUpdatedAt returns the UpdatedAt field value if set, zero value otherwise.

func (*PreviewStack) GetUpdatedAtOk

func (o *PreviewStack) 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 (*PreviewStack) GetUserId

func (o *PreviewStack) GetUserId() string

GetUserId returns the UserId field value if set, zero value otherwise.

func (*PreviewStack) GetUserIdOk

func (o *PreviewStack) 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 (*PreviewStack) HasAnnotations

func (o *PreviewStack) HasAnnotations() bool

HasAnnotations returns a boolean if a field has been set.

func (*PreviewStack) HasBranch

func (o *PreviewStack) HasBranch() bool

HasBranch returns a boolean if a field has been set.

func (*PreviewStack) HasCommit

func (o *PreviewStack) HasCommit() bool

HasCommit returns a boolean if a field has been set.

func (*PreviewStack) HasConfigId

func (o *PreviewStack) HasConfigId() bool

HasConfigId returns a boolean if a field has been set.

func (*PreviewStack) HasCreatedAt

func (o *PreviewStack) HasCreatedAt() bool

HasCreatedAt returns a boolean if a field has been set.

func (*PreviewStack) HasDeletionTimestamp

func (o *PreviewStack) HasDeletionTimestamp() bool

HasDeletionTimestamp returns a boolean if a field has been set.

func (*PreviewStack) HasId

func (o *PreviewStack) HasId() bool

HasId returns a boolean if a field has been set.

func (*PreviewStack) HasImageOverrides

func (o *PreviewStack) HasImageOverrides() bool

HasImageOverrides returns a boolean if a field has been set.

func (*PreviewStack) HasLabels

func (o *PreviewStack) HasLabels() bool

HasLabels returns a boolean if a field has been set.

func (*PreviewStack) HasName

func (o *PreviewStack) HasName() bool

HasName returns a boolean if a field has been set.

func (*PreviewStack) HasOrganisationId

func (o *PreviewStack) HasOrganisationId() bool

HasOrganisationId returns a boolean if a field has been set.

func (*PreviewStack) HasPrNumber

func (o *PreviewStack) HasPrNumber() bool

HasPrNumber returns a boolean if a field has been set.

func (*PreviewStack) HasProjectId

func (o *PreviewStack) HasProjectId() bool

HasProjectId returns a boolean if a field has been set.

func (*PreviewStack) HasSource

func (o *PreviewStack) HasSource() bool

HasSource returns a boolean if a field has been set.

func (*PreviewStack) HasStackId

func (o *PreviewStack) HasStackId() bool

HasStackId returns a boolean if a field has been set.

func (*PreviewStack) HasStatus

func (o *PreviewStack) HasStatus() bool

HasStatus returns a boolean if a field has been set.

func (*PreviewStack) HasUpdatedAt

func (o *PreviewStack) HasUpdatedAt() bool

HasUpdatedAt returns a boolean if a field has been set.

func (*PreviewStack) HasUserId

func (o *PreviewStack) HasUserId() bool

HasUserId returns a boolean if a field has been set.

func (PreviewStack) MarshalJSON

func (o PreviewStack) MarshalJSON() ([]byte, error)

func (*PreviewStack) SetAnnotations

func (o *PreviewStack) SetAnnotations(v []Annotation)

SetAnnotations gets a reference to the given []Annotation and assigns it to the Annotations field.

func (*PreviewStack) SetBranch

func (o *PreviewStack) SetBranch(v string)

SetBranch gets a reference to the given string and assigns it to the Branch field.

func (*PreviewStack) SetCommit

func (o *PreviewStack) SetCommit(v string)

SetCommit gets a reference to the given string and assigns it to the Commit field.

func (*PreviewStack) SetConfigId

func (o *PreviewStack) SetConfigId(v string)

SetConfigId gets a reference to the given string and assigns it to the ConfigId field.

func (*PreviewStack) SetCreatedAt

func (o *PreviewStack) SetCreatedAt(v time.Time)

SetCreatedAt gets a reference to the given time.Time and assigns it to the CreatedAt field.

func (*PreviewStack) SetDeletionTimestamp

func (o *PreviewStack) SetDeletionTimestamp(v time.Time)

SetDeletionTimestamp gets a reference to the given time.Time and assigns it to the DeletionTimestamp field.

func (*PreviewStack) SetId

func (o *PreviewStack) SetId(v string)

SetId gets a reference to the given string and assigns it to the Id field.

func (*PreviewStack) SetImageOverrides

func (o *PreviewStack) SetImageOverrides(v map[string]string)

SetImageOverrides gets a reference to the given map[string]string and assigns it to the ImageOverrides field.

func (*PreviewStack) SetLabels

func (o *PreviewStack) SetLabels(v []Label)

SetLabels gets a reference to the given []Label and assigns it to the Labels field.

func (*PreviewStack) SetName

func (o *PreviewStack) SetName(v string)

SetName gets a reference to the given string and assigns it to the Name field.

func (*PreviewStack) SetOrganisationId

func (o *PreviewStack) SetOrganisationId(v string)

SetOrganisationId gets a reference to the given string and assigns it to the OrganisationId field.

func (*PreviewStack) SetPrNumber

func (o *PreviewStack) SetPrNumber(v string)

SetPrNumber gets a reference to the given string and assigns it to the PrNumber field.

func (*PreviewStack) SetProjectId

func (o *PreviewStack) SetProjectId(v string)

SetProjectId gets a reference to the given string and assigns it to the ProjectId field.

func (*PreviewStack) SetSource

func (o *PreviewStack) SetSource(v string)

SetSource gets a reference to the given string and assigns it to the Source field.

func (*PreviewStack) SetStackId

func (o *PreviewStack) SetStackId(v string)

SetStackId gets a reference to the given string and assigns it to the StackId field.

func (*PreviewStack) SetStatus

func (o *PreviewStack) SetStatus(v PreviewStackStatus)

SetStatus gets a reference to the given PreviewStackStatus and assigns it to the Status field.

func (*PreviewStack) SetUpdatedAt

func (o *PreviewStack) SetUpdatedAt(v time.Time)

SetUpdatedAt gets a reference to the given time.Time and assigns it to the UpdatedAt field.

func (*PreviewStack) SetUserId

func (o *PreviewStack) SetUserId(v string)

SetUserId gets a reference to the given string and assigns it to the UserId field.

type PreviewStackCreate

type PreviewStackCreate struct {
	ConfigId         string             `json:"config_id"`
	PrNumber         string             `json:"pr_number"`
	Branch           string             `json:"branch"`
	Commit           *string            `json:"commit,omitempty"`
	StackfileContent *string            `json:"stackfile_content,omitempty"`
	ImageOverrides   *map[string]string `json:"image_overrides,omitempty"`
}

PreviewStackCreate struct for PreviewStackCreate

func NewPreviewStackCreate

func NewPreviewStackCreate(configId string, prNumber string, branch string) *PreviewStackCreate

NewPreviewStackCreate instantiates a new PreviewStackCreate object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewPreviewStackCreateWithDefaults

func NewPreviewStackCreateWithDefaults() *PreviewStackCreate

NewPreviewStackCreateWithDefaults instantiates a new PreviewStackCreate object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*PreviewStackCreate) GetBranch

func (o *PreviewStackCreate) GetBranch() string

GetBranch returns the Branch field value

func (*PreviewStackCreate) GetBranchOk

func (o *PreviewStackCreate) GetBranchOk() (*string, bool)

GetBranchOk returns a tuple with the Branch field value and a boolean to check if the value has been set.

func (*PreviewStackCreate) GetCommit

func (o *PreviewStackCreate) GetCommit() string

GetCommit returns the Commit field value if set, zero value otherwise.

func (*PreviewStackCreate) GetCommitOk

func (o *PreviewStackCreate) GetCommitOk() (*string, bool)

GetCommitOk returns a tuple with the Commit field value if set, nil otherwise and a boolean to check if the value has been set.

func (*PreviewStackCreate) GetConfigId

func (o *PreviewStackCreate) GetConfigId() string

GetConfigId returns the ConfigId field value

func (*PreviewStackCreate) GetConfigIdOk

func (o *PreviewStackCreate) GetConfigIdOk() (*string, bool)

GetConfigIdOk returns a tuple with the ConfigId field value and a boolean to check if the value has been set.

func (*PreviewStackCreate) GetImageOverrides

func (o *PreviewStackCreate) GetImageOverrides() map[string]string

GetImageOverrides returns the ImageOverrides field value if set, zero value otherwise.

func (*PreviewStackCreate) GetImageOverridesOk

func (o *PreviewStackCreate) GetImageOverridesOk() (*map[string]string, bool)

GetImageOverridesOk returns a tuple with the ImageOverrides field value if set, nil otherwise and a boolean to check if the value has been set.

func (*PreviewStackCreate) GetPrNumber

func (o *PreviewStackCreate) GetPrNumber() string

GetPrNumber returns the PrNumber field value

func (*PreviewStackCreate) GetPrNumberOk

func (o *PreviewStackCreate) GetPrNumberOk() (*string, bool)

GetPrNumberOk returns a tuple with the PrNumber field value and a boolean to check if the value has been set.

func (*PreviewStackCreate) GetStackfileContent

func (o *PreviewStackCreate) GetStackfileContent() string

GetStackfileContent returns the StackfileContent field value if set, zero value otherwise.

func (*PreviewStackCreate) GetStackfileContentOk

func (o *PreviewStackCreate) GetStackfileContentOk() (*string, bool)

GetStackfileContentOk returns a tuple with the StackfileContent field value if set, nil otherwise and a boolean to check if the value has been set.

func (*PreviewStackCreate) HasCommit

func (o *PreviewStackCreate) HasCommit() bool

HasCommit returns a boolean if a field has been set.

func (*PreviewStackCreate) HasImageOverrides

func (o *PreviewStackCreate) HasImageOverrides() bool

HasImageOverrides returns a boolean if a field has been set.

func (*PreviewStackCreate) HasStackfileContent

func (o *PreviewStackCreate) HasStackfileContent() bool

HasStackfileContent returns a boolean if a field has been set.

func (PreviewStackCreate) MarshalJSON

func (o PreviewStackCreate) MarshalJSON() ([]byte, error)

func (*PreviewStackCreate) SetBranch

func (o *PreviewStackCreate) SetBranch(v string)

SetBranch sets field value

func (*PreviewStackCreate) SetCommit

func (o *PreviewStackCreate) SetCommit(v string)

SetCommit gets a reference to the given string and assigns it to the Commit field.

func (*PreviewStackCreate) SetConfigId

func (o *PreviewStackCreate) SetConfigId(v string)

SetConfigId sets field value

func (*PreviewStackCreate) SetImageOverrides

func (o *PreviewStackCreate) SetImageOverrides(v map[string]string)

SetImageOverrides gets a reference to the given map[string]string and assigns it to the ImageOverrides field.

func (*PreviewStackCreate) SetPrNumber

func (o *PreviewStackCreate) SetPrNumber(v string)

SetPrNumber sets field value

func (*PreviewStackCreate) SetStackfileContent

func (o *PreviewStackCreate) SetStackfileContent(v string)

SetStackfileContent gets a reference to the given string and assigns it to the StackfileContent field.

type PreviewStackList

type PreviewStackList struct {
	Items []PreviewStack `json:"items,omitempty"`
	// Total number of records
	Total *int32 `json:"total,omitempty"`
	// Current page number
	Page *int32 `json:"page,omitempty"`
	// Number of items per page
	PageSize *int32 `json:"page_size,omitempty"`
	// Total number of pages
	TotalPages *int32 `json:"total_pages,omitempty"`
}

PreviewStackList struct for PreviewStackList

func NewPreviewStackList

func NewPreviewStackList() *PreviewStackList

NewPreviewStackList instantiates a new PreviewStackList object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewPreviewStackListWithDefaults

func NewPreviewStackListWithDefaults() *PreviewStackList

NewPreviewStackListWithDefaults instantiates a new PreviewStackList object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*PreviewStackList) GetItems

func (o *PreviewStackList) GetItems() []PreviewStack

GetItems returns the Items field value if set, zero value otherwise.

func (*PreviewStackList) GetItemsOk

func (o *PreviewStackList) GetItemsOk() ([]PreviewStack, bool)

GetItemsOk returns a tuple with the Items field value if set, nil otherwise and a boolean to check if the value has been set.

func (*PreviewStackList) GetPage

func (o *PreviewStackList) GetPage() int32

GetPage returns the Page field value if set, zero value otherwise.

func (*PreviewStackList) GetPageOk

func (o *PreviewStackList) GetPageOk() (*int32, bool)

GetPageOk returns a tuple with the Page field value if set, nil otherwise and a boolean to check if the value has been set.

func (*PreviewStackList) GetPageSize

func (o *PreviewStackList) GetPageSize() int32

GetPageSize returns the PageSize field value if set, zero value otherwise.

func (*PreviewStackList) GetPageSizeOk

func (o *PreviewStackList) GetPageSizeOk() (*int32, bool)

GetPageSizeOk returns a tuple with the PageSize field value if set, nil otherwise and a boolean to check if the value has been set.

func (*PreviewStackList) GetTotal

func (o *PreviewStackList) GetTotal() int32

GetTotal returns the Total field value if set, zero value otherwise.

func (*PreviewStackList) GetTotalOk

func (o *PreviewStackList) GetTotalOk() (*int32, 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 (*PreviewStackList) GetTotalPages

func (o *PreviewStackList) GetTotalPages() int32

GetTotalPages returns the TotalPages field value if set, zero value otherwise.

func (*PreviewStackList) GetTotalPagesOk

func (o *PreviewStackList) GetTotalPagesOk() (*int32, bool)

GetTotalPagesOk returns a tuple with the TotalPages field value if set, nil otherwise and a boolean to check if the value has been set.

func (*PreviewStackList) HasItems

func (o *PreviewStackList) HasItems() bool

HasItems returns a boolean if a field has been set.

func (*PreviewStackList) HasPage

func (o *PreviewStackList) HasPage() bool

HasPage returns a boolean if a field has been set.

func (*PreviewStackList) HasPageSize

func (o *PreviewStackList) HasPageSize() bool

HasPageSize returns a boolean if a field has been set.

func (*PreviewStackList) HasTotal

func (o *PreviewStackList) HasTotal() bool

HasTotal returns a boolean if a field has been set.

func (*PreviewStackList) HasTotalPages

func (o *PreviewStackList) HasTotalPages() bool

HasTotalPages returns a boolean if a field has been set.

func (PreviewStackList) MarshalJSON

func (o PreviewStackList) MarshalJSON() ([]byte, error)

func (*PreviewStackList) SetItems

func (o *PreviewStackList) SetItems(v []PreviewStack)

SetItems gets a reference to the given []PreviewStack and assigns it to the Items field.

func (*PreviewStackList) SetPage

func (o *PreviewStackList) SetPage(v int32)

SetPage gets a reference to the given int32 and assigns it to the Page field.

func (*PreviewStackList) SetPageSize

func (o *PreviewStackList) SetPageSize(v int32)

SetPageSize gets a reference to the given int32 and assigns it to the PageSize field.

func (*PreviewStackList) SetTotal

func (o *PreviewStackList) SetTotal(v int32)

SetTotal gets a reference to the given int32 and assigns it to the Total field.

func (*PreviewStackList) SetTotalPages

func (o *PreviewStackList) SetTotalPages(v int32)

SetTotalPages gets a reference to the given int32 and assigns it to the TotalPages field.

type PreviewStackStatus

type PreviewStackStatus struct {
	Phase   *string                    `json:"phase,omitempty"`
	Reason  *string                    `json:"reason,omitempty"`
	Message *string                    `json:"message,omitempty"`
	Outputs *PreviewStackStatusOutputs `json:"outputs,omitempty"`
}

PreviewStackStatus struct for PreviewStackStatus

func NewPreviewStackStatus

func NewPreviewStackStatus() *PreviewStackStatus

NewPreviewStackStatus instantiates a new PreviewStackStatus object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewPreviewStackStatusWithDefaults

func NewPreviewStackStatusWithDefaults() *PreviewStackStatus

NewPreviewStackStatusWithDefaults instantiates a new PreviewStackStatus object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*PreviewStackStatus) GetMessage

func (o *PreviewStackStatus) GetMessage() string

GetMessage returns the Message field value if set, zero value otherwise.

func (*PreviewStackStatus) GetMessageOk

func (o *PreviewStackStatus) 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 (*PreviewStackStatus) GetOutputs

GetOutputs returns the Outputs field value if set, zero value otherwise.

func (*PreviewStackStatus) GetOutputsOk

func (o *PreviewStackStatus) GetOutputsOk() (*PreviewStackStatusOutputs, bool)

GetOutputsOk returns a tuple with the Outputs field value if set, nil otherwise and a boolean to check if the value has been set.

func (*PreviewStackStatus) GetPhase

func (o *PreviewStackStatus) GetPhase() string

GetPhase returns the Phase field value if set, zero value otherwise.

func (*PreviewStackStatus) GetPhaseOk

func (o *PreviewStackStatus) GetPhaseOk() (*string, bool)

GetPhaseOk returns a tuple with the Phase field value if set, nil otherwise and a boolean to check if the value has been set.

func (*PreviewStackStatus) GetReason

func (o *PreviewStackStatus) GetReason() string

GetReason returns the Reason field value if set, zero value otherwise.

func (*PreviewStackStatus) GetReasonOk

func (o *PreviewStackStatus) 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 (*PreviewStackStatus) HasMessage

func (o *PreviewStackStatus) HasMessage() bool

HasMessage returns a boolean if a field has been set.

func (*PreviewStackStatus) HasOutputs

func (o *PreviewStackStatus) HasOutputs() bool

HasOutputs returns a boolean if a field has been set.

func (*PreviewStackStatus) HasPhase

func (o *PreviewStackStatus) HasPhase() bool

HasPhase returns a boolean if a field has been set.

func (*PreviewStackStatus) HasReason

func (o *PreviewStackStatus) HasReason() bool

HasReason returns a boolean if a field has been set.

func (PreviewStackStatus) MarshalJSON

func (o PreviewStackStatus) MarshalJSON() ([]byte, error)

func (*PreviewStackStatus) SetMessage

func (o *PreviewStackStatus) SetMessage(v string)

SetMessage gets a reference to the given string and assigns it to the Message field.

func (*PreviewStackStatus) SetOutputs

SetOutputs gets a reference to the given PreviewStackStatusOutputs and assigns it to the Outputs field.

func (*PreviewStackStatus) SetPhase

func (o *PreviewStackStatus) SetPhase(v string)

SetPhase gets a reference to the given string and assigns it to the Phase field.

func (*PreviewStackStatus) SetReason

func (o *PreviewStackStatus) SetReason(v string)

SetReason gets a reference to the given string and assigns it to the Reason field.

type PreviewStackStatusOutputs

type PreviewStackStatusOutputs struct {
	CommitSha *string                              `json:"commit_sha,omitempty"`
	Urls      []PreviewStackStatusOutputsUrlsInner `json:"urls,omitempty"`
}

PreviewStackStatusOutputs struct for PreviewStackStatusOutputs

func NewPreviewStackStatusOutputs

func NewPreviewStackStatusOutputs() *PreviewStackStatusOutputs

NewPreviewStackStatusOutputs instantiates a new PreviewStackStatusOutputs object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewPreviewStackStatusOutputsWithDefaults

func NewPreviewStackStatusOutputsWithDefaults() *PreviewStackStatusOutputs

NewPreviewStackStatusOutputsWithDefaults instantiates a new PreviewStackStatusOutputs object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*PreviewStackStatusOutputs) GetCommitSha

func (o *PreviewStackStatusOutputs) GetCommitSha() string

GetCommitSha returns the CommitSha field value if set, zero value otherwise.

func (*PreviewStackStatusOutputs) GetCommitShaOk

func (o *PreviewStackStatusOutputs) GetCommitShaOk() (*string, bool)

GetCommitShaOk returns a tuple with the CommitSha field value if set, nil otherwise and a boolean to check if the value has been set.

func (*PreviewStackStatusOutputs) GetUrls

GetUrls returns the Urls field value if set, zero value otherwise.

func (*PreviewStackStatusOutputs) GetUrlsOk

GetUrlsOk returns a tuple with the Urls field value if set, nil otherwise and a boolean to check if the value has been set.

func (*PreviewStackStatusOutputs) HasCommitSha

func (o *PreviewStackStatusOutputs) HasCommitSha() bool

HasCommitSha returns a boolean if a field has been set.

func (*PreviewStackStatusOutputs) HasUrls

func (o *PreviewStackStatusOutputs) HasUrls() bool

HasUrls returns a boolean if a field has been set.

func (PreviewStackStatusOutputs) MarshalJSON

func (o PreviewStackStatusOutputs) MarshalJSON() ([]byte, error)

func (*PreviewStackStatusOutputs) SetCommitSha

func (o *PreviewStackStatusOutputs) SetCommitSha(v string)

SetCommitSha gets a reference to the given string and assigns it to the CommitSha field.

func (*PreviewStackStatusOutputs) SetUrls

SetUrls gets a reference to the given []PreviewStackStatusOutputsUrlsInner and assigns it to the Urls field.

type PreviewStackStatusOutputsUrlsInner

type PreviewStackStatusOutputsUrlsInner struct {
	Resource *string `json:"resource,omitempty"`
	Url      *string `json:"url,omitempty"`
}

PreviewStackStatusOutputsUrlsInner struct for PreviewStackStatusOutputsUrlsInner

func NewPreviewStackStatusOutputsUrlsInner

func NewPreviewStackStatusOutputsUrlsInner() *PreviewStackStatusOutputsUrlsInner

NewPreviewStackStatusOutputsUrlsInner instantiates a new PreviewStackStatusOutputsUrlsInner object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewPreviewStackStatusOutputsUrlsInnerWithDefaults

func NewPreviewStackStatusOutputsUrlsInnerWithDefaults() *PreviewStackStatusOutputsUrlsInner

NewPreviewStackStatusOutputsUrlsInnerWithDefaults instantiates a new PreviewStackStatusOutputsUrlsInner object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*PreviewStackStatusOutputsUrlsInner) GetResource

func (o *PreviewStackStatusOutputsUrlsInner) GetResource() string

GetResource returns the Resource field value if set, zero value otherwise.

func (*PreviewStackStatusOutputsUrlsInner) GetResourceOk

func (o *PreviewStackStatusOutputsUrlsInner) GetResourceOk() (*string, bool)

GetResourceOk returns a tuple with the Resource field value if set, nil otherwise and a boolean to check if the value has been set.

func (*PreviewStackStatusOutputsUrlsInner) GetUrl

GetUrl returns the Url field value if set, zero value otherwise.

func (*PreviewStackStatusOutputsUrlsInner) GetUrlOk

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 (*PreviewStackStatusOutputsUrlsInner) HasResource

func (o *PreviewStackStatusOutputsUrlsInner) HasResource() bool

HasResource returns a boolean if a field has been set.

func (*PreviewStackStatusOutputsUrlsInner) HasUrl

HasUrl returns a boolean if a field has been set.

func (PreviewStackStatusOutputsUrlsInner) MarshalJSON

func (o PreviewStackStatusOutputsUrlsInner) MarshalJSON() ([]byte, error)

func (*PreviewStackStatusOutputsUrlsInner) SetResource

func (o *PreviewStackStatusOutputsUrlsInner) SetResource(v string)

SetResource gets a reference to the given string and assigns it to the Resource field.

func (*PreviewStackStatusOutputsUrlsInner) SetUrl

SetUrl gets a reference to the given string and assigns it to the Url field.

type PreviewStackSync

type PreviewStackSync struct {
	Commit           *string            `json:"commit,omitempty"`
	StackfileContent *string            `json:"stackfile_content,omitempty"`
	ForceSync        *bool              `json:"force_sync,omitempty"`
	ImageOverrides   *map[string]string `json:"image_overrides,omitempty"`
}

PreviewStackSync struct for PreviewStackSync

func NewPreviewStackSync

func NewPreviewStackSync() *PreviewStackSync

NewPreviewStackSync instantiates a new PreviewStackSync object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewPreviewStackSyncWithDefaults

func NewPreviewStackSyncWithDefaults() *PreviewStackSync

NewPreviewStackSyncWithDefaults instantiates a new PreviewStackSync object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*PreviewStackSync) GetCommit

func (o *PreviewStackSync) GetCommit() string

GetCommit returns the Commit field value if set, zero value otherwise.

func (*PreviewStackSync) GetCommitOk

func (o *PreviewStackSync) GetCommitOk() (*string, bool)

GetCommitOk returns a tuple with the Commit field value if set, nil otherwise and a boolean to check if the value has been set.

func (*PreviewStackSync) GetForceSync

func (o *PreviewStackSync) GetForceSync() bool

GetForceSync returns the ForceSync field value if set, zero value otherwise.

func (*PreviewStackSync) GetForceSyncOk

func (o *PreviewStackSync) GetForceSyncOk() (*bool, bool)

GetForceSyncOk returns a tuple with the ForceSync field value if set, nil otherwise and a boolean to check if the value has been set.

func (*PreviewStackSync) GetImageOverrides

func (o *PreviewStackSync) GetImageOverrides() map[string]string

GetImageOverrides returns the ImageOverrides field value if set, zero value otherwise.

func (*PreviewStackSync) GetImageOverridesOk

func (o *PreviewStackSync) GetImageOverridesOk() (*map[string]string, bool)

GetImageOverridesOk returns a tuple with the ImageOverrides field value if set, nil otherwise and a boolean to check if the value has been set.

func (*PreviewStackSync) GetStackfileContent

func (o *PreviewStackSync) GetStackfileContent() string

GetStackfileContent returns the StackfileContent field value if set, zero value otherwise.

func (*PreviewStackSync) GetStackfileContentOk

func (o *PreviewStackSync) GetStackfileContentOk() (*string, bool)

GetStackfileContentOk returns a tuple with the StackfileContent field value if set, nil otherwise and a boolean to check if the value has been set.

func (*PreviewStackSync) HasCommit

func (o *PreviewStackSync) HasCommit() bool

HasCommit returns a boolean if a field has been set.

func (*PreviewStackSync) HasForceSync

func (o *PreviewStackSync) HasForceSync() bool

HasForceSync returns a boolean if a field has been set.

func (*PreviewStackSync) HasImageOverrides

func (o *PreviewStackSync) HasImageOverrides() bool

HasImageOverrides returns a boolean if a field has been set.

func (*PreviewStackSync) HasStackfileContent

func (o *PreviewStackSync) HasStackfileContent() bool

HasStackfileContent returns a boolean if a field has been set.

func (PreviewStackSync) MarshalJSON

func (o PreviewStackSync) MarshalJSON() ([]byte, error)

func (*PreviewStackSync) SetCommit

func (o *PreviewStackSync) SetCommit(v string)

SetCommit gets a reference to the given string and assigns it to the Commit field.

func (*PreviewStackSync) SetForceSync

func (o *PreviewStackSync) SetForceSync(v bool)

SetForceSync gets a reference to the given bool and assigns it to the ForceSync field.

func (*PreviewStackSync) SetImageOverrides

func (o *PreviewStackSync) SetImageOverrides(v map[string]string)

SetImageOverrides gets a reference to the given map[string]string and assigns it to the ImageOverrides field.

func (*PreviewStackSync) SetStackfileContent

func (o *PreviewStackSync) SetStackfileContent(v string)

SetStackfileContent gets a reference to the given string and assigns it to the StackfileContent field.

type PreviewStacksApiService

type PreviewStacksApiService service

PreviewStacksApiService PreviewStacksApi service

func (*PreviewStacksApiService) CreatePreviewStack

func (a *PreviewStacksApiService) CreatePreviewStack(ctx context.Context, orgId string, projectName string) ApiCreatePreviewStackRequest

CreatePreviewStack Create a new preview stack

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param orgId The ID of the organization
@param projectName The name of the project
@return ApiCreatePreviewStackRequest

func (*PreviewStacksApiService) CreatePreviewStackExecute

Execute executes the request

@return PreviewStack

func (*PreviewStacksApiService) DeletePreviewStack

func (a *PreviewStacksApiService) DeletePreviewStack(ctx context.Context, orgId string, projectName string, id string) ApiDeletePreviewStackRequest

DeletePreviewStack Delete a preview stack

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param orgId The ID of the organization
@param projectName The name of the project
@param id The id of record
@return ApiDeletePreviewStackRequest

func (*PreviewStacksApiService) DeletePreviewStackExecute

Execute executes the request

@return PreviewStack

func (*PreviewStacksApiService) GetPreviewStack

func (a *PreviewStacksApiService) GetPreviewStack(ctx context.Context, orgId string, projectName string, id string) ApiGetPreviewStackRequest

GetPreviewStack Get a specific preview stack

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param orgId The ID of the organization
@param projectName The name of the project
@param id The id of record
@return ApiGetPreviewStackRequest

func (*PreviewStacksApiService) GetPreviewStackExecute

Execute executes the request

@return PreviewStack

func (*PreviewStacksApiService) ListPreviewStacks

func (a *PreviewStacksApiService) ListPreviewStacks(ctx context.Context, orgId string, projectName string) ApiListPreviewStacksRequest

ListPreviewStacks List preview stacks for a project

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param orgId The ID of the organization
@param projectName The name of the project
@return ApiListPreviewStacksRequest

func (*PreviewStacksApiService) ListPreviewStacksExecute

Execute executes the request

@return PreviewStackList

func (*PreviewStacksApiService) SyncPreviewStack

func (a *PreviewStacksApiService) SyncPreviewStack(ctx context.Context, orgId string, projectName string, id string) ApiSyncPreviewStackRequest

SyncPreviewStack Sync a preview stack

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param orgId The ID of the organization
@param projectName The name of the project
@param id The id of record
@return ApiSyncPreviewStackRequest

func (*PreviewStacksApiService) SyncPreviewStackExecute

Execute executes the request

@return PreviewStack

type Project

type Project struct {
	Id             *string    `json:"id,omitempty"`
	Name           string     `json:"name"`
	OrganisationId *string    `json:"organisation_id,omitempty"`
	DefaultProject *bool      `json:"default_project,omitempty"`
	CreatedAt      *time.Time `json:"created_at,omitempty"`
	UpdatedAt      *time.Time `json:"updated_at,omitempty"`
}

Project struct for Project

func NewProject

func NewProject(name string) *Project

NewProject instantiates a new Project object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewProjectWithDefaults

func NewProjectWithDefaults() *Project

NewProjectWithDefaults instantiates a new Project object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*Project) GetCreatedAt

func (o *Project) GetCreatedAt() time.Time

GetCreatedAt returns the CreatedAt field value if set, zero value otherwise.

func (*Project) GetCreatedAtOk

func (o *Project) 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 (*Project) GetDefaultProject

func (o *Project) GetDefaultProject() bool

GetDefaultProject returns the DefaultProject field value if set, zero value otherwise.

func (*Project) GetDefaultProjectOk

func (o *Project) GetDefaultProjectOk() (*bool, bool)

GetDefaultProjectOk returns a tuple with the DefaultProject field value if set, nil otherwise and a boolean to check if the value has been set.

func (*Project) GetId

func (o *Project) GetId() string

GetId returns the Id field value if set, zero value otherwise.

func (*Project) GetIdOk

func (o *Project) 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 (*Project) GetName

func (o *Project) GetName() string

GetName returns the Name field value

func (*Project) GetNameOk

func (o *Project) GetNameOk() (*string, bool)

GetNameOk returns a tuple with the Name field value and a boolean to check if the value has been set.

func (*Project) GetOrganisationId

func (o *Project) GetOrganisationId() string

GetOrganisationId returns the OrganisationId field value if set, zero value otherwise.

func (*Project) GetOrganisationIdOk

func (o *Project) GetOrganisationIdOk() (*string, bool)

GetOrganisationIdOk returns a tuple with the OrganisationId field value if set, nil otherwise and a boolean to check if the value has been set.

func (*Project) GetUpdatedAt

func (o *Project) GetUpdatedAt() time.Time

GetUpdatedAt returns the UpdatedAt field value if set, zero value otherwise.

func (*Project) GetUpdatedAtOk

func (o *Project) 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 (*Project) HasCreatedAt

func (o *Project) HasCreatedAt() bool

HasCreatedAt returns a boolean if a field has been set.

func (*Project) HasDefaultProject

func (o *Project) HasDefaultProject() bool

HasDefaultProject returns a boolean if a field has been set.

func (*Project) HasId

func (o *Project) HasId() bool

HasId returns a boolean if a field has been set.

func (*Project) HasOrganisationId

func (o *Project) HasOrganisationId() bool

HasOrganisationId returns a boolean if a field has been set.

func (*Project) HasUpdatedAt

func (o *Project) HasUpdatedAt() bool

HasUpdatedAt returns a boolean if a field has been set.

func (Project) MarshalJSON

func (o Project) MarshalJSON() ([]byte, error)

func (*Project) SetCreatedAt

func (o *Project) SetCreatedAt(v time.Time)

SetCreatedAt gets a reference to the given time.Time and assigns it to the CreatedAt field.

func (*Project) SetDefaultProject

func (o *Project) SetDefaultProject(v bool)

SetDefaultProject gets a reference to the given bool and assigns it to the DefaultProject field.

func (*Project) SetId

func (o *Project) SetId(v string)

SetId gets a reference to the given string and assigns it to the Id field.

func (*Project) SetName

func (o *Project) SetName(v string)

SetName sets field value

func (*Project) SetOrganisationId

func (o *Project) SetOrganisationId(v string)

SetOrganisationId gets a reference to the given string and assigns it to the OrganisationId field.

func (*Project) SetUpdatedAt

func (o *Project) SetUpdatedAt(v time.Time)

SetUpdatedAt gets a reference to the given time.Time and assigns it to the UpdatedAt field.

type ProjectCreateRequest

type ProjectCreateRequest struct {
	// Project name
	Name string `json:"name"`
}

ProjectCreateRequest struct for ProjectCreateRequest

func NewProjectCreateRequest

func NewProjectCreateRequest(name string) *ProjectCreateRequest

NewProjectCreateRequest instantiates a new ProjectCreateRequest object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewProjectCreateRequestWithDefaults

func NewProjectCreateRequestWithDefaults() *ProjectCreateRequest

NewProjectCreateRequestWithDefaults instantiates a new ProjectCreateRequest object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*ProjectCreateRequest) GetName

func (o *ProjectCreateRequest) GetName() string

GetName returns the Name field value

func (*ProjectCreateRequest) GetNameOk

func (o *ProjectCreateRequest) GetNameOk() (*string, bool)

GetNameOk returns a tuple with the Name field value and a boolean to check if the value has been set.

func (ProjectCreateRequest) MarshalJSON

func (o ProjectCreateRequest) MarshalJSON() ([]byte, error)

func (*ProjectCreateRequest) SetName

func (o *ProjectCreateRequest) SetName(v string)

SetName sets field value

type ProjectList

type ProjectList struct {
	Items []Project `json:"items,omitempty"`
	Total *int32    `json:"total,omitempty"`
}

ProjectList struct for ProjectList

func NewProjectList

func NewProjectList() *ProjectList

NewProjectList instantiates a new ProjectList object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewProjectListWithDefaults

func NewProjectListWithDefaults() *ProjectList

NewProjectListWithDefaults instantiates a new ProjectList object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*ProjectList) GetItems

func (o *ProjectList) GetItems() []Project

GetItems returns the Items field value if set, zero value otherwise.

func (*ProjectList) GetItemsOk

func (o *ProjectList) GetItemsOk() ([]Project, bool)

GetItemsOk returns a tuple with the Items field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ProjectList) GetTotal

func (o *ProjectList) GetTotal() int32

GetTotal returns the Total field value if set, zero value otherwise.

func (*ProjectList) GetTotalOk

func (o *ProjectList) GetTotalOk() (*int32, 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 (*ProjectList) HasItems

func (o *ProjectList) HasItems() bool

HasItems returns a boolean if a field has been set.

func (*ProjectList) HasTotal

func (o *ProjectList) HasTotal() bool

HasTotal returns a boolean if a field has been set.

func (ProjectList) MarshalJSON

func (o ProjectList) MarshalJSON() ([]byte, error)

func (*ProjectList) SetItems

func (o *ProjectList) SetItems(v []Project)

SetItems gets a reference to the given []Project and assigns it to the Items field.

func (*ProjectList) SetTotal

func (o *ProjectList) SetTotal(v int32)

SetTotal gets a reference to the given int32 and assigns it to the Total field.

type ProjectMembership

type ProjectMembership struct {
	Id        *string    `json:"id,omitempty"`
	ProjectId string     `json:"project_id"`
	UserId    string     `json:"user_id"`
	Role      string     `json:"role"`
	Project   *Project   `json:"project,omitempty"`
	User      *User      `json:"user,omitempty"`
	CreatedAt *time.Time `json:"created_at,omitempty"`
}

ProjectMembership struct for ProjectMembership

func NewProjectMembership

func NewProjectMembership(projectId string, userId string, role string) *ProjectMembership

NewProjectMembership instantiates a new ProjectMembership object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewProjectMembershipWithDefaults

func NewProjectMembershipWithDefaults() *ProjectMembership

NewProjectMembershipWithDefaults instantiates a new ProjectMembership object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*ProjectMembership) GetCreatedAt

func (o *ProjectMembership) GetCreatedAt() time.Time

GetCreatedAt returns the CreatedAt field value if set, zero value otherwise.

func (*ProjectMembership) GetCreatedAtOk

func (o *ProjectMembership) 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 (*ProjectMembership) GetId

func (o *ProjectMembership) GetId() string

GetId returns the Id field value if set, zero value otherwise.

func (*ProjectMembership) GetIdOk

func (o *ProjectMembership) 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 (*ProjectMembership) GetProject

func (o *ProjectMembership) GetProject() Project

GetProject returns the Project field value if set, zero value otherwise.

func (*ProjectMembership) GetProjectId

func (o *ProjectMembership) GetProjectId() string

GetProjectId returns the ProjectId field value

func (*ProjectMembership) GetProjectIdOk

func (o *ProjectMembership) GetProjectIdOk() (*string, bool)

GetProjectIdOk returns a tuple with the ProjectId field value and a boolean to check if the value has been set.

func (*ProjectMembership) GetProjectOk

func (o *ProjectMembership) GetProjectOk() (*Project, bool)

GetProjectOk returns a tuple with the Project field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ProjectMembership) GetRole

func (o *ProjectMembership) GetRole() string

GetRole returns the Role field value

func (*ProjectMembership) GetRoleOk

func (o *ProjectMembership) GetRoleOk() (*string, bool)

GetRoleOk returns a tuple with the Role field value and a boolean to check if the value has been set.

func (*ProjectMembership) GetUser

func (o *ProjectMembership) GetUser() User

GetUser returns the User field value if set, zero value otherwise.

func (*ProjectMembership) GetUserId

func (o *ProjectMembership) GetUserId() string

GetUserId returns the UserId field value

func (*ProjectMembership) GetUserIdOk

func (o *ProjectMembership) GetUserIdOk() (*string, bool)

GetUserIdOk returns a tuple with the UserId field value and a boolean to check if the value has been set.

func (*ProjectMembership) GetUserOk

func (o *ProjectMembership) 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 (*ProjectMembership) HasCreatedAt

func (o *ProjectMembership) HasCreatedAt() bool

HasCreatedAt returns a boolean if a field has been set.

func (*ProjectMembership) HasId

func (o *ProjectMembership) HasId() bool

HasId returns a boolean if a field has been set.

func (*ProjectMembership) HasProject

func (o *ProjectMembership) HasProject() bool

HasProject returns a boolean if a field has been set.

func (*ProjectMembership) HasUser

func (o *ProjectMembership) HasUser() bool

HasUser returns a boolean if a field has been set.

func (ProjectMembership) MarshalJSON

func (o ProjectMembership) MarshalJSON() ([]byte, error)

func (*ProjectMembership) SetCreatedAt

func (o *ProjectMembership) SetCreatedAt(v time.Time)

SetCreatedAt gets a reference to the given time.Time and assigns it to the CreatedAt field.

func (*ProjectMembership) SetId

func (o *ProjectMembership) SetId(v string)

SetId gets a reference to the given string and assigns it to the Id field.

func (*ProjectMembership) SetProject

func (o *ProjectMembership) SetProject(v Project)

SetProject gets a reference to the given Project and assigns it to the Project field.

func (*ProjectMembership) SetProjectId

func (o *ProjectMembership) SetProjectId(v string)

SetProjectId sets field value

func (*ProjectMembership) SetRole

func (o *ProjectMembership) SetRole(v string)

SetRole sets field value

func (*ProjectMembership) SetUser

func (o *ProjectMembership) SetUser(v User)

SetUser gets a reference to the given User and assigns it to the User field.

func (*ProjectMembership) SetUserId

func (o *ProjectMembership) SetUserId(v string)

SetUserId sets field value

type ProjectMembershipList

type ProjectMembershipList struct {
	Items []ProjectMembership `json:"items,omitempty"`
	Total *int32              `json:"total,omitempty"`
}

ProjectMembershipList struct for ProjectMembershipList

func NewProjectMembershipList

func NewProjectMembershipList() *ProjectMembershipList

NewProjectMembershipList instantiates a new ProjectMembershipList object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewProjectMembershipListWithDefaults

func NewProjectMembershipListWithDefaults() *ProjectMembershipList

NewProjectMembershipListWithDefaults instantiates a new ProjectMembershipList object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*ProjectMembershipList) GetItems

func (o *ProjectMembershipList) GetItems() []ProjectMembership

GetItems returns the Items field value if set, zero value otherwise.

func (*ProjectMembershipList) GetItemsOk

func (o *ProjectMembershipList) GetItemsOk() ([]ProjectMembership, bool)

GetItemsOk returns a tuple with the Items field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ProjectMembershipList) GetTotal

func (o *ProjectMembershipList) GetTotal() int32

GetTotal returns the Total field value if set, zero value otherwise.

func (*ProjectMembershipList) GetTotalOk

func (o *ProjectMembershipList) GetTotalOk() (*int32, 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 (*ProjectMembershipList) HasItems

func (o *ProjectMembershipList) HasItems() bool

HasItems returns a boolean if a field has been set.

func (*ProjectMembershipList) HasTotal

func (o *ProjectMembershipList) HasTotal() bool

HasTotal returns a boolean if a field has been set.

func (ProjectMembershipList) MarshalJSON

func (o ProjectMembershipList) MarshalJSON() ([]byte, error)

func (*ProjectMembershipList) SetItems

func (o *ProjectMembershipList) SetItems(v []ProjectMembership)

SetItems gets a reference to the given []ProjectMembership and assigns it to the Items field.

func (*ProjectMembershipList) SetTotal

func (o *ProjectMembershipList) SetTotal(v int32)

SetTotal gets a reference to the given int32 and assigns it to the Total field.

type ProjectRole

type ProjectRole string

ProjectRole A role that can be assigned to a project member

const (
	DEVELOPER ProjectRole = "Developer"
	VIEWER    ProjectRole = "Viewer"
)

List of ProjectRole

func NewProjectRoleFromValue

func NewProjectRoleFromValue(v string) (*ProjectRole, error)

NewProjectRoleFromValue returns a pointer to a valid ProjectRole for the value passed as argument, or an error if the value passed is not allowed by the enum

func (ProjectRole) IsValid

func (v ProjectRole) IsValid() bool

IsValid return true if the value is valid for the enum, false otherwise

func (ProjectRole) Ptr

func (v ProjectRole) Ptr() *ProjectRole

Ptr returns reference to ProjectRole value

func (*ProjectRole) UnmarshalJSON

func (v *ProjectRole) UnmarshalJSON(src []byte) error

type ProjectRoleList

type ProjectRoleList struct {
	Roles []ProjectRole `json:"roles,omitempty"`
}

ProjectRoleList struct for ProjectRoleList

func NewProjectRoleList

func NewProjectRoleList() *ProjectRoleList

NewProjectRoleList instantiates a new ProjectRoleList object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewProjectRoleListWithDefaults

func NewProjectRoleListWithDefaults() *ProjectRoleList

NewProjectRoleListWithDefaults instantiates a new ProjectRoleList object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*ProjectRoleList) GetRoles

func (o *ProjectRoleList) GetRoles() []ProjectRole

GetRoles returns the Roles field value if set, zero value otherwise.

func (*ProjectRoleList) GetRolesOk

func (o *ProjectRoleList) GetRolesOk() ([]ProjectRole, bool)

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 (*ProjectRoleList) HasRoles

func (o *ProjectRoleList) HasRoles() bool

HasRoles returns a boolean if a field has been set.

func (ProjectRoleList) MarshalJSON

func (o ProjectRoleList) MarshalJSON() ([]byte, error)

func (*ProjectRoleList) SetRoles

func (o *ProjectRoleList) SetRoles(v []ProjectRole)

SetRoles gets a reference to the given []ProjectRole and assigns it to the Roles field.

type ProjectUpdateRequest

type ProjectUpdateRequest struct {
	// Updated project name
	Name string `json:"name"`
}

ProjectUpdateRequest struct for ProjectUpdateRequest

func NewProjectUpdateRequest

func NewProjectUpdateRequest(name string) *ProjectUpdateRequest

NewProjectUpdateRequest instantiates a new ProjectUpdateRequest object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewProjectUpdateRequestWithDefaults

func NewProjectUpdateRequestWithDefaults() *ProjectUpdateRequest

NewProjectUpdateRequestWithDefaults instantiates a new ProjectUpdateRequest object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*ProjectUpdateRequest) GetName

func (o *ProjectUpdateRequest) GetName() string

GetName returns the Name field value

func (*ProjectUpdateRequest) GetNameOk

func (o *ProjectUpdateRequest) GetNameOk() (*string, bool)

GetNameOk returns a tuple with the Name field value and a boolean to check if the value has been set.

func (ProjectUpdateRequest) MarshalJSON

func (o ProjectUpdateRequest) MarshalJSON() ([]byte, error)

func (*ProjectUpdateRequest) SetName

func (o *ProjectUpdateRequest) SetName(v string)

SetName sets field value

type PromoteAdminRequest

type PromoteAdminRequest struct {
	// The ID of the user to promote to admin
	UserId string `json:"user_id"`
}

PromoteAdminRequest struct for PromoteAdminRequest

func NewPromoteAdminRequest

func NewPromoteAdminRequest(userId string) *PromoteAdminRequest

NewPromoteAdminRequest instantiates a new PromoteAdminRequest object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewPromoteAdminRequestWithDefaults

func NewPromoteAdminRequestWithDefaults() *PromoteAdminRequest

NewPromoteAdminRequestWithDefaults instantiates a new PromoteAdminRequest object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*PromoteAdminRequest) GetUserId

func (o *PromoteAdminRequest) GetUserId() string

GetUserId returns the UserId field value

func (*PromoteAdminRequest) GetUserIdOk

func (o *PromoteAdminRequest) GetUserIdOk() (*string, bool)

GetUserIdOk returns a tuple with the UserId field value and a boolean to check if the value has been set.

func (PromoteAdminRequest) MarshalJSON

func (o PromoteAdminRequest) MarshalJSON() ([]byte, error)

func (*PromoteAdminRequest) SetUserId

func (o *PromoteAdminRequest) SetUserId(v string)

SetUserId sets field value

type PushTarget

type PushTarget struct {
	// Push repository as host/path, without a tag
	Repository string `json:"repository"`
	// Org-level registry credential override for push auth
	RegistryCredentialsId *string `json:"registry_credentials_id,omitempty"`
}

PushTarget struct for PushTarget

func NewPushTarget

func NewPushTarget(repository string) *PushTarget

NewPushTarget instantiates a new PushTarget object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewPushTargetWithDefaults

func NewPushTargetWithDefaults() *PushTarget

NewPushTargetWithDefaults instantiates a new PushTarget object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*PushTarget) GetRegistryCredentialsId

func (o *PushTarget) GetRegistryCredentialsId() string

GetRegistryCredentialsId returns the RegistryCredentialsId field value if set, zero value otherwise.

func (*PushTarget) GetRegistryCredentialsIdOk

func (o *PushTarget) GetRegistryCredentialsIdOk() (*string, bool)

GetRegistryCredentialsIdOk returns a tuple with the RegistryCredentialsId field value if set, nil otherwise and a boolean to check if the value has been set.

func (*PushTarget) GetRepository

func (o *PushTarget) GetRepository() string

GetRepository returns the Repository field value

func (*PushTarget) GetRepositoryOk

func (o *PushTarget) GetRepositoryOk() (*string, bool)

GetRepositoryOk returns a tuple with the Repository field value and a boolean to check if the value has been set.

func (*PushTarget) HasRegistryCredentialsId

func (o *PushTarget) HasRegistryCredentialsId() bool

HasRegistryCredentialsId returns a boolean if a field has been set.

func (PushTarget) MarshalJSON

func (o PushTarget) MarshalJSON() ([]byte, error)

func (*PushTarget) SetRegistryCredentialsId

func (o *PushTarget) SetRegistryCredentialsId(v string)

SetRegistryCredentialsId gets a reference to the given string and assigns it to the RegistryCredentialsId field.

func (*PushTarget) SetRepository

func (o *PushTarget) SetRepository(v string)

SetRepository sets field value

type RefreshTokenRequest

type RefreshTokenRequest struct {
	// The refresh token to exchange for a new access token
	RefreshToken string `json:"refreshToken"`
}

RefreshTokenRequest struct for RefreshTokenRequest

func NewRefreshTokenRequest

func NewRefreshTokenRequest(refreshToken string) *RefreshTokenRequest

NewRefreshTokenRequest instantiates a new RefreshTokenRequest object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewRefreshTokenRequestWithDefaults

func NewRefreshTokenRequestWithDefaults() *RefreshTokenRequest

NewRefreshTokenRequestWithDefaults instantiates a new RefreshTokenRequest object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*RefreshTokenRequest) GetRefreshToken

func (o *RefreshTokenRequest) GetRefreshToken() string

GetRefreshToken returns the RefreshToken field value

func (*RefreshTokenRequest) GetRefreshTokenOk

func (o *RefreshTokenRequest) GetRefreshTokenOk() (*string, bool)

GetRefreshTokenOk returns a tuple with the RefreshToken field value and a boolean to check if the value has been set.

func (RefreshTokenRequest) MarshalJSON

func (o RefreshTokenRequest) MarshalJSON() ([]byte, error)

func (*RefreshTokenRequest) SetRefreshToken

func (o *RefreshTokenRequest) SetRefreshToken(v string)

SetRefreshToken sets field value

type RefreshTokenResponse

type RefreshTokenResponse struct {
	// New access token
	Token *string `json:"token,omitempty"`
	// New refresh token (old one is revoked)
	RefreshToken *string `json:"refreshToken,omitempty"`
}

RefreshTokenResponse struct for RefreshTokenResponse

func NewRefreshTokenResponse

func NewRefreshTokenResponse() *RefreshTokenResponse

NewRefreshTokenResponse instantiates a new RefreshTokenResponse object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewRefreshTokenResponseWithDefaults

func NewRefreshTokenResponseWithDefaults() *RefreshTokenResponse

NewRefreshTokenResponseWithDefaults instantiates a new RefreshTokenResponse object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*RefreshTokenResponse) GetRefreshToken

func (o *RefreshTokenResponse) GetRefreshToken() string

GetRefreshToken returns the RefreshToken field value if set, zero value otherwise.

func (*RefreshTokenResponse) GetRefreshTokenOk

func (o *RefreshTokenResponse) GetRefreshTokenOk() (*string, bool)

GetRefreshTokenOk returns a tuple with the RefreshToken field value if set, nil otherwise and a boolean to check if the value has been set.

func (*RefreshTokenResponse) GetToken

func (o *RefreshTokenResponse) GetToken() string

GetToken returns the Token field value if set, zero value otherwise.

func (*RefreshTokenResponse) GetTokenOk

func (o *RefreshTokenResponse) 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 (*RefreshTokenResponse) HasRefreshToken

func (o *RefreshTokenResponse) HasRefreshToken() bool

HasRefreshToken returns a boolean if a field has been set.

func (*RefreshTokenResponse) HasToken

func (o *RefreshTokenResponse) HasToken() bool

HasToken returns a boolean if a field has been set.

func (RefreshTokenResponse) MarshalJSON

func (o RefreshTokenResponse) MarshalJSON() ([]byte, error)

func (*RefreshTokenResponse) SetRefreshToken

func (o *RefreshTokenResponse) SetRefreshToken(v string)

SetRefreshToken gets a reference to the given string and assigns it to the RefreshToken field.

func (*RefreshTokenResponse) SetToken

func (o *RefreshTokenResponse) SetToken(v string)

SetToken gets a reference to the given string and assigns it to the Token field.

type RegistryCredential

type RegistryCredential struct {
	Id *string `json:"id,omitempty"`
	// Registry host; normalized on create (docker.io aliases become index.docker.io)
	Host     string                     `json:"host"`
	Purpose  *RegistryCredentialPurpose `json:"purpose,omitempty"`
	Username string                     `json:"username"`
	// Required on create; omit on update to keep the stored password
	Password       *string    `json:"password,omitempty"`
	OrganisationId *string    `json:"organisation_id,omitempty"`
	CreatedAt      *time.Time `json:"created_at,omitempty"`
	UpdatedAt      *time.Time `json:"updated_at,omitempty"`
}

RegistryCredential struct for RegistryCredential

func NewRegistryCredential

func NewRegistryCredential(host string, username string) *RegistryCredential

NewRegistryCredential instantiates a new RegistryCredential object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewRegistryCredentialWithDefaults

func NewRegistryCredentialWithDefaults() *RegistryCredential

NewRegistryCredentialWithDefaults instantiates a new RegistryCredential object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*RegistryCredential) GetCreatedAt

func (o *RegistryCredential) GetCreatedAt() time.Time

GetCreatedAt returns the CreatedAt field value if set, zero value otherwise.

func (*RegistryCredential) GetCreatedAtOk

func (o *RegistryCredential) 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 (*RegistryCredential) GetHost

func (o *RegistryCredential) GetHost() string

GetHost returns the Host field value

func (*RegistryCredential) GetHostOk

func (o *RegistryCredential) GetHostOk() (*string, bool)

GetHostOk returns a tuple with the Host field value and a boolean to check if the value has been set.

func (*RegistryCredential) GetId

func (o *RegistryCredential) GetId() string

GetId returns the Id field value if set, zero value otherwise.

func (*RegistryCredential) GetIdOk

func (o *RegistryCredential) 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 (*RegistryCredential) GetOrganisationId

func (o *RegistryCredential) GetOrganisationId() string

GetOrganisationId returns the OrganisationId field value if set, zero value otherwise.

func (*RegistryCredential) GetOrganisationIdOk

func (o *RegistryCredential) GetOrganisationIdOk() (*string, bool)

GetOrganisationIdOk returns a tuple with the OrganisationId field value if set, nil otherwise and a boolean to check if the value has been set.

func (*RegistryCredential) GetPassword

func (o *RegistryCredential) GetPassword() string

GetPassword returns the Password field value if set, zero value otherwise.

func (*RegistryCredential) GetPasswordOk

func (o *RegistryCredential) 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 (*RegistryCredential) GetPurpose

GetPurpose returns the Purpose field value if set, zero value otherwise.

func (*RegistryCredential) GetPurposeOk

func (o *RegistryCredential) GetPurposeOk() (*RegistryCredentialPurpose, bool)

GetPurposeOk returns a tuple with the Purpose field value if set, nil otherwise and a boolean to check if the value has been set.

func (*RegistryCredential) GetUpdatedAt

func (o *RegistryCredential) GetUpdatedAt() time.Time

GetUpdatedAt returns the UpdatedAt field value if set, zero value otherwise.

func (*RegistryCredential) GetUpdatedAtOk

func (o *RegistryCredential) 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 (*RegistryCredential) GetUsername

func (o *RegistryCredential) GetUsername() string

GetUsername returns the Username field value

func (*RegistryCredential) GetUsernameOk

func (o *RegistryCredential) GetUsernameOk() (*string, bool)

GetUsernameOk returns a tuple with the Username field value and a boolean to check if the value has been set.

func (*RegistryCredential) HasCreatedAt

func (o *RegistryCredential) HasCreatedAt() bool

HasCreatedAt returns a boolean if a field has been set.

func (*RegistryCredential) HasId

func (o *RegistryCredential) HasId() bool

HasId returns a boolean if a field has been set.

func (*RegistryCredential) HasOrganisationId

func (o *RegistryCredential) HasOrganisationId() bool

HasOrganisationId returns a boolean if a field has been set.

func (*RegistryCredential) HasPassword

func (o *RegistryCredential) HasPassword() bool

HasPassword returns a boolean if a field has been set.

func (*RegistryCredential) HasPurpose

func (o *RegistryCredential) HasPurpose() bool

HasPurpose returns a boolean if a field has been set.

func (*RegistryCredential) HasUpdatedAt

func (o *RegistryCredential) HasUpdatedAt() bool

HasUpdatedAt returns a boolean if a field has been set.

func (RegistryCredential) MarshalJSON

func (o RegistryCredential) MarshalJSON() ([]byte, error)

func (*RegistryCredential) SetCreatedAt

func (o *RegistryCredential) SetCreatedAt(v time.Time)

SetCreatedAt gets a reference to the given time.Time and assigns it to the CreatedAt field.

func (*RegistryCredential) SetHost

func (o *RegistryCredential) SetHost(v string)

SetHost sets field value

func (*RegistryCredential) SetId

func (o *RegistryCredential) SetId(v string)

SetId gets a reference to the given string and assigns it to the Id field.

func (*RegistryCredential) SetOrganisationId

func (o *RegistryCredential) SetOrganisationId(v string)

SetOrganisationId gets a reference to the given string and assigns it to the OrganisationId field.

func (*RegistryCredential) SetPassword

func (o *RegistryCredential) SetPassword(v string)

SetPassword gets a reference to the given string and assigns it to the Password field.

func (*RegistryCredential) SetPurpose

SetPurpose gets a reference to the given RegistryCredentialPurpose and assigns it to the Purpose field.

func (*RegistryCredential) SetUpdatedAt

func (o *RegistryCredential) SetUpdatedAt(v time.Time)

SetUpdatedAt gets a reference to the given time.Time and assigns it to the UpdatedAt field.

func (*RegistryCredential) SetUsername

func (o *RegistryCredential) SetUsername(v string)

SetUsername sets field value

type RegistryCredentialDeleteResponse

type RegistryCredentialDeleteResponse struct {
	// Stacks that were implicitly resolving against the deleted credential
	AffectedStacks []AffectedStackRef `json:"affected_stacks,omitempty"`
}

RegistryCredentialDeleteResponse struct for RegistryCredentialDeleteResponse

func NewRegistryCredentialDeleteResponse

func NewRegistryCredentialDeleteResponse() *RegistryCredentialDeleteResponse

NewRegistryCredentialDeleteResponse instantiates a new RegistryCredentialDeleteResponse object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewRegistryCredentialDeleteResponseWithDefaults

func NewRegistryCredentialDeleteResponseWithDefaults() *RegistryCredentialDeleteResponse

NewRegistryCredentialDeleteResponseWithDefaults instantiates a new RegistryCredentialDeleteResponse object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*RegistryCredentialDeleteResponse) GetAffectedStacks

func (o *RegistryCredentialDeleteResponse) GetAffectedStacks() []AffectedStackRef

GetAffectedStacks returns the AffectedStacks field value if set, zero value otherwise.

func (*RegistryCredentialDeleteResponse) GetAffectedStacksOk

func (o *RegistryCredentialDeleteResponse) GetAffectedStacksOk() ([]AffectedStackRef, bool)

GetAffectedStacksOk returns a tuple with the AffectedStacks field value if set, nil otherwise and a boolean to check if the value has been set.

func (*RegistryCredentialDeleteResponse) HasAffectedStacks

func (o *RegistryCredentialDeleteResponse) HasAffectedStacks() bool

HasAffectedStacks returns a boolean if a field has been set.

func (RegistryCredentialDeleteResponse) MarshalJSON

func (o RegistryCredentialDeleteResponse) MarshalJSON() ([]byte, error)

func (*RegistryCredentialDeleteResponse) SetAffectedStacks

func (o *RegistryCredentialDeleteResponse) SetAffectedStacks(v []AffectedStackRef)

SetAffectedStacks gets a reference to the given []AffectedStackRef and assigns it to the AffectedStacks field.

type RegistryCredentialList

type RegistryCredentialList struct {
	Items []RegistryCredential `json:"items,omitempty"`
	Total *int32               `json:"total,omitempty"`
}

RegistryCredentialList struct for RegistryCredentialList

func NewRegistryCredentialList

func NewRegistryCredentialList() *RegistryCredentialList

NewRegistryCredentialList instantiates a new RegistryCredentialList object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewRegistryCredentialListWithDefaults

func NewRegistryCredentialListWithDefaults() *RegistryCredentialList

NewRegistryCredentialListWithDefaults instantiates a new RegistryCredentialList object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*RegistryCredentialList) GetItems

GetItems returns the Items field value if set, zero value otherwise.

func (*RegistryCredentialList) GetItemsOk

func (o *RegistryCredentialList) GetItemsOk() ([]RegistryCredential, bool)

GetItemsOk returns a tuple with the Items field value if set, nil otherwise and a boolean to check if the value has been set.

func (*RegistryCredentialList) GetTotal

func (o *RegistryCredentialList) GetTotal() int32

GetTotal returns the Total field value if set, zero value otherwise.

func (*RegistryCredentialList) GetTotalOk

func (o *RegistryCredentialList) GetTotalOk() (*int32, 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 (*RegistryCredentialList) HasItems

func (o *RegistryCredentialList) HasItems() bool

HasItems returns a boolean if a field has been set.

func (*RegistryCredentialList) HasTotal

func (o *RegistryCredentialList) HasTotal() bool

HasTotal returns a boolean if a field has been set.

func (RegistryCredentialList) MarshalJSON

func (o RegistryCredentialList) MarshalJSON() ([]byte, error)

func (*RegistryCredentialList) SetItems

func (o *RegistryCredentialList) SetItems(v []RegistryCredential)

SetItems gets a reference to the given []RegistryCredential and assigns it to the Items field.

func (*RegistryCredentialList) SetTotal

func (o *RegistryCredentialList) SetTotal(v int32)

SetTotal gets a reference to the given int32 and assigns it to the Total field.

type RegistryCredentialPurpose

type RegistryCredentialPurpose string

RegistryCredentialPurpose the model 'RegistryCredentialPurpose'

const (
	PULL RegistryCredentialPurpose = "pull"
	PUSH RegistryCredentialPurpose = "push"
	BOTH RegistryCredentialPurpose = "both"
)

List of RegistryCredentialPurpose

func NewRegistryCredentialPurposeFromValue

func NewRegistryCredentialPurposeFromValue(v string) (*RegistryCredentialPurpose, error)

NewRegistryCredentialPurposeFromValue returns a pointer to a valid RegistryCredentialPurpose for the value passed as argument, or an error if the value passed is not allowed by the enum

func (RegistryCredentialPurpose) IsValid

func (v RegistryCredentialPurpose) IsValid() bool

IsValid return true if the value is valid for the enum, false otherwise

func (RegistryCredentialPurpose) Ptr

Ptr returns reference to RegistryCredentialPurpose value

func (*RegistryCredentialPurpose) UnmarshalJSON

func (v *RegistryCredentialPurpose) UnmarshalJSON(src []byte) error

type RegistryCredentialVerifyRequest

type RegistryCredentialVerifyRequest struct {
	// Repository to verify against, e.g. ghcr.io/acme/app
	Repository string                     `json:"repository"`
	Purpose    *RegistryCredentialPurpose `json:"purpose,omitempty"`
}

RegistryCredentialVerifyRequest struct for RegistryCredentialVerifyRequest

func NewRegistryCredentialVerifyRequest

func NewRegistryCredentialVerifyRequest(repository string) *RegistryCredentialVerifyRequest

NewRegistryCredentialVerifyRequest instantiates a new RegistryCredentialVerifyRequest object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewRegistryCredentialVerifyRequestWithDefaults

func NewRegistryCredentialVerifyRequestWithDefaults() *RegistryCredentialVerifyRequest

NewRegistryCredentialVerifyRequestWithDefaults instantiates a new RegistryCredentialVerifyRequest object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*RegistryCredentialVerifyRequest) GetPurpose

GetPurpose returns the Purpose field value if set, zero value otherwise.

func (*RegistryCredentialVerifyRequest) GetPurposeOk

GetPurposeOk returns a tuple with the Purpose field value if set, nil otherwise and a boolean to check if the value has been set.

func (*RegistryCredentialVerifyRequest) GetRepository

func (o *RegistryCredentialVerifyRequest) GetRepository() string

GetRepository returns the Repository field value

func (*RegistryCredentialVerifyRequest) GetRepositoryOk

func (o *RegistryCredentialVerifyRequest) GetRepositoryOk() (*string, bool)

GetRepositoryOk returns a tuple with the Repository field value and a boolean to check if the value has been set.

func (*RegistryCredentialVerifyRequest) HasPurpose

func (o *RegistryCredentialVerifyRequest) HasPurpose() bool

HasPurpose returns a boolean if a field has been set.

func (RegistryCredentialVerifyRequest) MarshalJSON

func (o RegistryCredentialVerifyRequest) MarshalJSON() ([]byte, error)

func (*RegistryCredentialVerifyRequest) SetPurpose

SetPurpose gets a reference to the given RegistryCredentialPurpose and assigns it to the Purpose field.

func (*RegistryCredentialVerifyRequest) SetRepository

func (o *RegistryCredentialVerifyRequest) SetRepository(v string)

SetRepository sets field value

type ReleaseCause

type ReleaseCause struct {
	Kind   *ReleaseCauseKind `json:"kind,omitempty"`
	Detail *string           `json:"detail,omitempty"`
}

ReleaseCause struct for ReleaseCause

func NewReleaseCause

func NewReleaseCause() *ReleaseCause

NewReleaseCause instantiates a new ReleaseCause object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewReleaseCauseWithDefaults

func NewReleaseCauseWithDefaults() *ReleaseCause

NewReleaseCauseWithDefaults instantiates a new ReleaseCause object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*ReleaseCause) GetDetail

func (o *ReleaseCause) GetDetail() string

GetDetail returns the Detail field value if set, zero value otherwise.

func (*ReleaseCause) GetDetailOk

func (o *ReleaseCause) GetDetailOk() (*string, bool)

GetDetailOk returns a tuple with the Detail field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ReleaseCause) GetKind

func (o *ReleaseCause) GetKind() ReleaseCauseKind

GetKind returns the Kind field value if set, zero value otherwise.

func (*ReleaseCause) GetKindOk

func (o *ReleaseCause) GetKindOk() (*ReleaseCauseKind, bool)

GetKindOk returns a tuple with the Kind field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ReleaseCause) HasDetail

func (o *ReleaseCause) HasDetail() bool

HasDetail returns a boolean if a field has been set.

func (*ReleaseCause) HasKind

func (o *ReleaseCause) HasKind() bool

HasKind returns a boolean if a field has been set.

func (ReleaseCause) MarshalJSON

func (o ReleaseCause) MarshalJSON() ([]byte, error)

func (*ReleaseCause) SetDetail

func (o *ReleaseCause) SetDetail(v string)

SetDetail gets a reference to the given string and assigns it to the Detail field.

func (*ReleaseCause) SetKind

func (o *ReleaseCause) SetKind(v ReleaseCauseKind)

SetKind gets a reference to the given ReleaseCauseKind and assigns it to the Kind field.

type ReleaseCauseKind

type ReleaseCauseKind string

ReleaseCauseKind the model 'ReleaseCauseKind'

const (
	RELEASE_CAUSE_MANUAL       ReleaseCauseKind = "manual"
	RELEASE_CAUSE_ROLLBACK     ReleaseCauseKind = "rollback"
	RELEASE_CAUSE_WEBHOOK_PUSH ReleaseCauseKind = "webhook_push"
	RELEASE_CAUSE_PREVIEW_SYNC ReleaseCauseKind = "preview_sync"
)

List of ReleaseCauseKind

func NewReleaseCauseKindFromValue

func NewReleaseCauseKindFromValue(v string) (*ReleaseCauseKind, error)

NewReleaseCauseKindFromValue returns a pointer to a valid ReleaseCauseKind for the value passed as argument, or an error if the value passed is not allowed by the enum

func (ReleaseCauseKind) IsValid

func (v ReleaseCauseKind) IsValid() bool

IsValid return true if the value is valid for the enum, false otherwise

func (ReleaseCauseKind) Ptr

Ptr returns reference to ReleaseCauseKind value

func (*ReleaseCauseKind) UnmarshalJSON

func (v *ReleaseCauseKind) UnmarshalJSON(src []byte) error

type ReleaseEvent

type ReleaseEvent struct {
	Id           *string            `json:"id,omitempty"`
	ReleaseId    *string            `json:"release_id,omitempty"`
	StackId      *string            `json:"stack_id,omitempty"`
	Sequence     *int32             `json:"sequence,omitempty"`
	OccurredAt   *time.Time         `json:"occurred_at,omitempty"`
	Source       *string            `json:"source,omitempty"`
	Scope        *string            `json:"scope,omitempty"`
	ResourceName *string            `json:"resource_name,omitempty"`
	Type         *string            `json:"type,omitempty"`
	Level        *string            `json:"level,omitempty"`
	Message      *string            `json:"message,omitempty"`
	Links        []ReleaseEventLink `json:"links,omitempty"`
	Metadata     *map[string]string `json:"metadata,omitempty"`
}

ReleaseEvent struct for ReleaseEvent

func NewReleaseEvent

func NewReleaseEvent() *ReleaseEvent

NewReleaseEvent instantiates a new ReleaseEvent object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewReleaseEventWithDefaults

func NewReleaseEventWithDefaults() *ReleaseEvent

NewReleaseEventWithDefaults instantiates a new ReleaseEvent object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*ReleaseEvent) GetId

func (o *ReleaseEvent) GetId() string

GetId returns the Id field value if set, zero value otherwise.

func (*ReleaseEvent) GetIdOk

func (o *ReleaseEvent) 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 (*ReleaseEvent) GetLevel

func (o *ReleaseEvent) GetLevel() string

GetLevel returns the Level field value if set, zero value otherwise.

func (*ReleaseEvent) GetLevelOk

func (o *ReleaseEvent) GetLevelOk() (*string, bool)

GetLevelOk returns a tuple with the Level field value if set, nil otherwise and a boolean to check if the value has been set.

func (o *ReleaseEvent) GetLinks() []ReleaseEventLink

GetLinks returns the Links field value if set, zero value otherwise.

func (*ReleaseEvent) GetLinksOk

func (o *ReleaseEvent) GetLinksOk() ([]ReleaseEventLink, bool)

GetLinksOk returns a tuple with the Links field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ReleaseEvent) GetMessage

func (o *ReleaseEvent) GetMessage() string

GetMessage returns the Message field value if set, zero value otherwise.

func (*ReleaseEvent) GetMessageOk

func (o *ReleaseEvent) 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 (*ReleaseEvent) GetMetadata

func (o *ReleaseEvent) GetMetadata() map[string]string

GetMetadata returns the Metadata field value if set, zero value otherwise.

func (*ReleaseEvent) GetMetadataOk

func (o *ReleaseEvent) GetMetadataOk() (*map[string]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 (*ReleaseEvent) GetOccurredAt

func (o *ReleaseEvent) GetOccurredAt() time.Time

GetOccurredAt returns the OccurredAt field value if set, zero value otherwise.

func (*ReleaseEvent) GetOccurredAtOk

func (o *ReleaseEvent) GetOccurredAtOk() (*time.Time, bool)

GetOccurredAtOk returns a tuple with the OccurredAt field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ReleaseEvent) GetReleaseId

func (o *ReleaseEvent) GetReleaseId() string

GetReleaseId returns the ReleaseId field value if set, zero value otherwise.

func (*ReleaseEvent) GetReleaseIdOk

func (o *ReleaseEvent) GetReleaseIdOk() (*string, bool)

GetReleaseIdOk returns a tuple with the ReleaseId field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ReleaseEvent) GetResourceName

func (o *ReleaseEvent) GetResourceName() string

GetResourceName returns the ResourceName field value if set, zero value otherwise.

func (*ReleaseEvent) GetResourceNameOk

func (o *ReleaseEvent) GetResourceNameOk() (*string, bool)

GetResourceNameOk returns a tuple with the ResourceName field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ReleaseEvent) GetScope

func (o *ReleaseEvent) GetScope() string

GetScope returns the Scope field value if set, zero value otherwise.

func (*ReleaseEvent) GetScopeOk

func (o *ReleaseEvent) GetScopeOk() (*string, bool)

GetScopeOk returns a tuple with the Scope field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ReleaseEvent) GetSequence

func (o *ReleaseEvent) GetSequence() int32

GetSequence returns the Sequence field value if set, zero value otherwise.

func (*ReleaseEvent) GetSequenceOk

func (o *ReleaseEvent) GetSequenceOk() (*int32, bool)

GetSequenceOk returns a tuple with the Sequence field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ReleaseEvent) GetSource

func (o *ReleaseEvent) GetSource() string

GetSource returns the Source field value if set, zero value otherwise.

func (*ReleaseEvent) GetSourceOk

func (o *ReleaseEvent) GetSourceOk() (*string, bool)

GetSourceOk returns a tuple with the Source field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ReleaseEvent) GetStackId

func (o *ReleaseEvent) GetStackId() string

GetStackId returns the StackId field value if set, zero value otherwise.

func (*ReleaseEvent) GetStackIdOk

func (o *ReleaseEvent) GetStackIdOk() (*string, bool)

GetStackIdOk returns a tuple with the StackId field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ReleaseEvent) GetType

func (o *ReleaseEvent) GetType() string

GetType returns the Type field value if set, zero value otherwise.

func (*ReleaseEvent) GetTypeOk

func (o *ReleaseEvent) 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 (*ReleaseEvent) HasId

func (o *ReleaseEvent) HasId() bool

HasId returns a boolean if a field has been set.

func (*ReleaseEvent) HasLevel

func (o *ReleaseEvent) HasLevel() bool

HasLevel returns a boolean if a field has been set.

func (o *ReleaseEvent) HasLinks() bool

HasLinks returns a boolean if a field has been set.

func (*ReleaseEvent) HasMessage

func (o *ReleaseEvent) HasMessage() bool

HasMessage returns a boolean if a field has been set.

func (*ReleaseEvent) HasMetadata

func (o *ReleaseEvent) HasMetadata() bool

HasMetadata returns a boolean if a field has been set.

func (*ReleaseEvent) HasOccurredAt

func (o *ReleaseEvent) HasOccurredAt() bool

HasOccurredAt returns a boolean if a field has been set.

func (*ReleaseEvent) HasReleaseId

func (o *ReleaseEvent) HasReleaseId() bool

HasReleaseId returns a boolean if a field has been set.

func (*ReleaseEvent) HasResourceName

func (o *ReleaseEvent) HasResourceName() bool

HasResourceName returns a boolean if a field has been set.

func (*ReleaseEvent) HasScope

func (o *ReleaseEvent) HasScope() bool

HasScope returns a boolean if a field has been set.

func (*ReleaseEvent) HasSequence

func (o *ReleaseEvent) HasSequence() bool

HasSequence returns a boolean if a field has been set.

func (*ReleaseEvent) HasSource

func (o *ReleaseEvent) HasSource() bool

HasSource returns a boolean if a field has been set.

func (*ReleaseEvent) HasStackId

func (o *ReleaseEvent) HasStackId() bool

HasStackId returns a boolean if a field has been set.

func (*ReleaseEvent) HasType

func (o *ReleaseEvent) HasType() bool

HasType returns a boolean if a field has been set.

func (ReleaseEvent) MarshalJSON

func (o ReleaseEvent) MarshalJSON() ([]byte, error)

func (*ReleaseEvent) SetId

func (o *ReleaseEvent) SetId(v string)

SetId gets a reference to the given string and assigns it to the Id field.

func (*ReleaseEvent) SetLevel

func (o *ReleaseEvent) SetLevel(v string)

SetLevel gets a reference to the given string and assigns it to the Level field.

func (o *ReleaseEvent) SetLinks(v []ReleaseEventLink)

SetLinks gets a reference to the given []ReleaseEventLink and assigns it to the Links field.

func (*ReleaseEvent) SetMessage

func (o *ReleaseEvent) SetMessage(v string)

SetMessage gets a reference to the given string and assigns it to the Message field.

func (*ReleaseEvent) SetMetadata

func (o *ReleaseEvent) SetMetadata(v map[string]string)

SetMetadata gets a reference to the given map[string]string and assigns it to the Metadata field.

func (*ReleaseEvent) SetOccurredAt

func (o *ReleaseEvent) SetOccurredAt(v time.Time)

SetOccurredAt gets a reference to the given time.Time and assigns it to the OccurredAt field.

func (*ReleaseEvent) SetReleaseId

func (o *ReleaseEvent) SetReleaseId(v string)

SetReleaseId gets a reference to the given string and assigns it to the ReleaseId field.

func (*ReleaseEvent) SetResourceName

func (o *ReleaseEvent) SetResourceName(v string)

SetResourceName gets a reference to the given string and assigns it to the ResourceName field.

func (*ReleaseEvent) SetScope

func (o *ReleaseEvent) SetScope(v string)

SetScope gets a reference to the given string and assigns it to the Scope field.

func (*ReleaseEvent) SetSequence

func (o *ReleaseEvent) SetSequence(v int32)

SetSequence gets a reference to the given int32 and assigns it to the Sequence field.

func (*ReleaseEvent) SetSource

func (o *ReleaseEvent) SetSource(v string)

SetSource gets a reference to the given string and assigns it to the Source field.

func (*ReleaseEvent) SetStackId

func (o *ReleaseEvent) SetStackId(v string)

SetStackId gets a reference to the given string and assigns it to the StackId field.

func (*ReleaseEvent) SetType

func (o *ReleaseEvent) SetType(v string)

SetType gets a reference to the given string and assigns it to the Type field.

type ReleaseEventLink struct {
	Kind   *string            `json:"kind,omitempty"`
	Label  *string            `json:"label,omitempty"`
	Target *map[string]string `json:"target,omitempty"`
}

ReleaseEventLink struct for ReleaseEventLink

func NewReleaseEventLink() *ReleaseEventLink

NewReleaseEventLink instantiates a new ReleaseEventLink object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewReleaseEventLinkWithDefaults

func NewReleaseEventLinkWithDefaults() *ReleaseEventLink

NewReleaseEventLinkWithDefaults instantiates a new ReleaseEventLink object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*ReleaseEventLink) GetKind

func (o *ReleaseEventLink) GetKind() string

GetKind returns the Kind field value if set, zero value otherwise.

func (*ReleaseEventLink) GetKindOk

func (o *ReleaseEventLink) GetKindOk() (*string, bool)

GetKindOk returns a tuple with the Kind field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ReleaseEventLink) GetLabel

func (o *ReleaseEventLink) GetLabel() string

GetLabel returns the Label field value if set, zero value otherwise.

func (*ReleaseEventLink) GetLabelOk

func (o *ReleaseEventLink) GetLabelOk() (*string, bool)

GetLabelOk returns a tuple with the Label field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ReleaseEventLink) GetTarget

func (o *ReleaseEventLink) GetTarget() map[string]string

GetTarget returns the Target field value if set, zero value otherwise.

func (*ReleaseEventLink) GetTargetOk

func (o *ReleaseEventLink) GetTargetOk() (*map[string]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 (*ReleaseEventLink) HasKind

func (o *ReleaseEventLink) HasKind() bool

HasKind returns a boolean if a field has been set.

func (*ReleaseEventLink) HasLabel

func (o *ReleaseEventLink) HasLabel() bool

HasLabel returns a boolean if a field has been set.

func (*ReleaseEventLink) HasTarget

func (o *ReleaseEventLink) HasTarget() bool

HasTarget returns a boolean if a field has been set.

func (ReleaseEventLink) MarshalJSON

func (o ReleaseEventLink) MarshalJSON() ([]byte, error)

func (*ReleaseEventLink) SetKind

func (o *ReleaseEventLink) SetKind(v string)

SetKind gets a reference to the given string and assigns it to the Kind field.

func (*ReleaseEventLink) SetLabel

func (o *ReleaseEventLink) SetLabel(v string)

SetLabel gets a reference to the given string and assigns it to the Label field.

func (*ReleaseEventLink) SetTarget

func (o *ReleaseEventLink) SetTarget(v map[string]string)

SetTarget gets a reference to the given map[string]string and assigns it to the Target field.

type ReleaseEventList

type ReleaseEventList struct {
	Items             []ReleaseEvent `json:"items,omitempty"`
	NextAfterSequence *int32         `json:"next_after_sequence,omitempty"`
}

ReleaseEventList struct for ReleaseEventList

func NewReleaseEventList

func NewReleaseEventList() *ReleaseEventList

NewReleaseEventList instantiates a new ReleaseEventList object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewReleaseEventListWithDefaults

func NewReleaseEventListWithDefaults() *ReleaseEventList

NewReleaseEventListWithDefaults instantiates a new ReleaseEventList object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*ReleaseEventList) GetItems

func (o *ReleaseEventList) GetItems() []ReleaseEvent

GetItems returns the Items field value if set, zero value otherwise.

func (*ReleaseEventList) GetItemsOk

func (o *ReleaseEventList) GetItemsOk() ([]ReleaseEvent, bool)

GetItemsOk returns a tuple with the Items field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ReleaseEventList) GetNextAfterSequence

func (o *ReleaseEventList) GetNextAfterSequence() int32

GetNextAfterSequence returns the NextAfterSequence field value if set, zero value otherwise.

func (*ReleaseEventList) GetNextAfterSequenceOk

func (o *ReleaseEventList) GetNextAfterSequenceOk() (*int32, bool)

GetNextAfterSequenceOk returns a tuple with the NextAfterSequence field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ReleaseEventList) HasItems

func (o *ReleaseEventList) HasItems() bool

HasItems returns a boolean if a field has been set.

func (*ReleaseEventList) HasNextAfterSequence

func (o *ReleaseEventList) HasNextAfterSequence() bool

HasNextAfterSequence returns a boolean if a field has been set.

func (ReleaseEventList) MarshalJSON

func (o ReleaseEventList) MarshalJSON() ([]byte, error)

func (*ReleaseEventList) SetItems

func (o *ReleaseEventList) SetItems(v []ReleaseEvent)

SetItems gets a reference to the given []ReleaseEvent and assigns it to the Items field.

func (*ReleaseEventList) SetNextAfterSequence

func (o *ReleaseEventList) SetNextAfterSequence(v int32)

SetNextAfterSequence gets a reference to the given int32 and assigns it to the NextAfterSequence field.

type ReleaseHealth

type ReleaseHealth string

ReleaseHealth Computed runtime health rollup of a live/active release.

const (
	RELEASE_HEALTH_OK          ReleaseHealth = "ok"
	RELEASE_HEALTH_PROGRESSING ReleaseHealth = "progressing"
	RELEASE_HEALTH_DEGRADED    ReleaseHealth = "degraded"
	RELEASE_HEALTH_UNAVAILABLE ReleaseHealth = "unavailable"
	RELEASE_HEALTH_FAILED      ReleaseHealth = "failed"
)

List of ReleaseHealth

func NewReleaseHealthFromValue

func NewReleaseHealthFromValue(v string) (*ReleaseHealth, error)

NewReleaseHealthFromValue returns a pointer to a valid ReleaseHealth for the value passed as argument, or an error if the value passed is not allowed by the enum

func (ReleaseHealth) IsValid

func (v ReleaseHealth) IsValid() bool

IsValid return true if the value is valid for the enum, false otherwise

func (ReleaseHealth) Ptr

func (v ReleaseHealth) Ptr() *ReleaseHealth

Ptr returns reference to ReleaseHealth value

func (*ReleaseHealth) UnmarshalJSON

func (v *ReleaseHealth) UnmarshalJSON(src []byte) error

type ReleaseLiveStatus

type ReleaseLiveStatus struct {
	Health           *ReleaseHealth                  `json:"health,omitempty"`
	Resources        *map[string]StackResourceStatus `json:"resources,omitempty"`
	Conditions       []Condition                     `json:"conditions,omitempty"`
	TargetRevision   *string                         `json:"target_revision,omitempty"`
	ObservedRevision *string                         `json:"observed_revision,omitempty"`
}

ReleaseLiveStatus Current runtime status overlaid onto a release at read time. Present only when the release is live (currently converged) or active (Pending/InProgress). Never stored; recomputed per request.

func NewReleaseLiveStatus

func NewReleaseLiveStatus() *ReleaseLiveStatus

NewReleaseLiveStatus instantiates a new ReleaseLiveStatus object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewReleaseLiveStatusWithDefaults

func NewReleaseLiveStatusWithDefaults() *ReleaseLiveStatus

NewReleaseLiveStatusWithDefaults instantiates a new ReleaseLiveStatus object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*ReleaseLiveStatus) GetConditions

func (o *ReleaseLiveStatus) GetConditions() []Condition

GetConditions returns the Conditions field value if set, zero value otherwise.

func (*ReleaseLiveStatus) GetConditionsOk

func (o *ReleaseLiveStatus) GetConditionsOk() ([]Condition, bool)

GetConditionsOk returns a tuple with the Conditions field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ReleaseLiveStatus) GetHealth

func (o *ReleaseLiveStatus) GetHealth() ReleaseHealth

GetHealth returns the Health field value if set, zero value otherwise.

func (*ReleaseLiveStatus) GetHealthOk

func (o *ReleaseLiveStatus) GetHealthOk() (*ReleaseHealth, bool)

GetHealthOk returns a tuple with the Health field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ReleaseLiveStatus) GetObservedRevision

func (o *ReleaseLiveStatus) GetObservedRevision() string

GetObservedRevision returns the ObservedRevision field value if set, zero value otherwise.

func (*ReleaseLiveStatus) GetObservedRevisionOk

func (o *ReleaseLiveStatus) GetObservedRevisionOk() (*string, bool)

GetObservedRevisionOk returns a tuple with the ObservedRevision field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ReleaseLiveStatus) GetResources

func (o *ReleaseLiveStatus) GetResources() map[string]StackResourceStatus

GetResources returns the Resources field value if set, zero value otherwise.

func (*ReleaseLiveStatus) GetResourcesOk

func (o *ReleaseLiveStatus) GetResourcesOk() (*map[string]StackResourceStatus, bool)

GetResourcesOk returns a tuple with the Resources field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ReleaseLiveStatus) GetTargetRevision

func (o *ReleaseLiveStatus) GetTargetRevision() string

GetTargetRevision returns the TargetRevision field value if set, zero value otherwise.

func (*ReleaseLiveStatus) GetTargetRevisionOk

func (o *ReleaseLiveStatus) GetTargetRevisionOk() (*string, bool)

GetTargetRevisionOk returns a tuple with the TargetRevision field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ReleaseLiveStatus) HasConditions

func (o *ReleaseLiveStatus) HasConditions() bool

HasConditions returns a boolean if a field has been set.

func (*ReleaseLiveStatus) HasHealth

func (o *ReleaseLiveStatus) HasHealth() bool

HasHealth returns a boolean if a field has been set.

func (*ReleaseLiveStatus) HasObservedRevision

func (o *ReleaseLiveStatus) HasObservedRevision() bool

HasObservedRevision returns a boolean if a field has been set.

func (*ReleaseLiveStatus) HasResources

func (o *ReleaseLiveStatus) HasResources() bool

HasResources returns a boolean if a field has been set.

func (*ReleaseLiveStatus) HasTargetRevision

func (o *ReleaseLiveStatus) HasTargetRevision() bool

HasTargetRevision returns a boolean if a field has been set.

func (ReleaseLiveStatus) MarshalJSON

func (o ReleaseLiveStatus) MarshalJSON() ([]byte, error)

func (*ReleaseLiveStatus) SetConditions

func (o *ReleaseLiveStatus) SetConditions(v []Condition)

SetConditions gets a reference to the given []Condition and assigns it to the Conditions field.

func (*ReleaseLiveStatus) SetHealth

func (o *ReleaseLiveStatus) SetHealth(v ReleaseHealth)

SetHealth gets a reference to the given ReleaseHealth and assigns it to the Health field.

func (*ReleaseLiveStatus) SetObservedRevision

func (o *ReleaseLiveStatus) SetObservedRevision(v string)

SetObservedRevision gets a reference to the given string and assigns it to the ObservedRevision field.

func (*ReleaseLiveStatus) SetResources

func (o *ReleaseLiveStatus) SetResources(v map[string]StackResourceStatus)

SetResources gets a reference to the given map[string]StackResourceStatus and assigns it to the Resources field.

func (*ReleaseLiveStatus) SetTargetRevision

func (o *ReleaseLiveStatus) SetTargetRevision(v string)

SetTargetRevision gets a reference to the given string and assigns it to the TargetRevision field.

type ReleaseOutcome

type ReleaseOutcome struct {
	Resources *map[string]ResourceOutcome `json:"resources,omitempty"`
	Duration  *string                     `json:"duration,omitempty"`
}

ReleaseOutcome struct for ReleaseOutcome

func NewReleaseOutcome

func NewReleaseOutcome() *ReleaseOutcome

NewReleaseOutcome instantiates a new ReleaseOutcome object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewReleaseOutcomeWithDefaults

func NewReleaseOutcomeWithDefaults() *ReleaseOutcome

NewReleaseOutcomeWithDefaults instantiates a new ReleaseOutcome object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*ReleaseOutcome) GetDuration

func (o *ReleaseOutcome) GetDuration() string

GetDuration returns the Duration field value if set, zero value otherwise.

func (*ReleaseOutcome) GetDurationOk

func (o *ReleaseOutcome) GetDurationOk() (*string, bool)

GetDurationOk returns a tuple with the Duration field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ReleaseOutcome) GetResources

func (o *ReleaseOutcome) GetResources() map[string]ResourceOutcome

GetResources returns the Resources field value if set, zero value otherwise.

func (*ReleaseOutcome) GetResourcesOk

func (o *ReleaseOutcome) GetResourcesOk() (*map[string]ResourceOutcome, bool)

GetResourcesOk returns a tuple with the Resources field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ReleaseOutcome) HasDuration

func (o *ReleaseOutcome) HasDuration() bool

HasDuration returns a boolean if a field has been set.

func (*ReleaseOutcome) HasResources

func (o *ReleaseOutcome) HasResources() bool

HasResources returns a boolean if a field has been set.

func (ReleaseOutcome) MarshalJSON

func (o ReleaseOutcome) MarshalJSON() ([]byte, error)

func (*ReleaseOutcome) SetDuration

func (o *ReleaseOutcome) SetDuration(v string)

SetDuration gets a reference to the given string and assigns it to the Duration field.

func (*ReleaseOutcome) SetResources

func (o *ReleaseOutcome) SetResources(v map[string]ResourceOutcome)

SetResources gets a reference to the given map[string]ResourceOutcome and assigns it to the Resources field.

type ReleasePins

type ReleasePins struct {
	Resources *map[string]ResourcePins `json:"resources,omitempty"`
}

ReleasePins struct for ReleasePins

func NewReleasePins

func NewReleasePins() *ReleasePins

NewReleasePins instantiates a new ReleasePins object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewReleasePinsWithDefaults

func NewReleasePinsWithDefaults() *ReleasePins

NewReleasePinsWithDefaults instantiates a new ReleasePins object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*ReleasePins) GetResources

func (o *ReleasePins) GetResources() map[string]ResourcePins

GetResources returns the Resources field value if set, zero value otherwise.

func (*ReleasePins) GetResourcesOk

func (o *ReleasePins) GetResourcesOk() (*map[string]ResourcePins, bool)

GetResourcesOk returns a tuple with the Resources field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ReleasePins) HasResources

func (o *ReleasePins) HasResources() bool

HasResources returns a boolean if a field has been set.

func (ReleasePins) MarshalJSON

func (o ReleasePins) MarshalJSON() ([]byte, error)

func (*ReleasePins) SetResources

func (o *ReleasePins) SetResources(v map[string]ResourcePins)

SetResources gets a reference to the given map[string]ResourcePins and assigns it to the Resources field.

type ReleaseSummary

type ReleaseSummary struct {
	Id          *string            `json:"id,omitempty"`
	Sequence    *int32             `json:"sequence,omitempty"`
	State       *StackReleaseState `json:"state,omitempty"`
	Health      *ReleaseHealth     `json:"health,omitempty"`
	Message     *string            `json:"message,omitempty"`
	CreatedAt   *time.Time         `json:"created_at,omitempty"`
	CompletedAt *time.Time         `json:"completed_at,omitempty"`
}

ReleaseSummary Lightweight release reference embedded in the stack for list views.

func NewReleaseSummary

func NewReleaseSummary() *ReleaseSummary

NewReleaseSummary instantiates a new ReleaseSummary object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewReleaseSummaryWithDefaults

func NewReleaseSummaryWithDefaults() *ReleaseSummary

NewReleaseSummaryWithDefaults instantiates a new ReleaseSummary object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*ReleaseSummary) GetCompletedAt

func (o *ReleaseSummary) GetCompletedAt() time.Time

GetCompletedAt returns the CompletedAt field value if set, zero value otherwise.

func (*ReleaseSummary) GetCompletedAtOk

func (o *ReleaseSummary) GetCompletedAtOk() (*time.Time, bool)

GetCompletedAtOk returns a tuple with the CompletedAt field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ReleaseSummary) GetCreatedAt

func (o *ReleaseSummary) GetCreatedAt() time.Time

GetCreatedAt returns the CreatedAt field value if set, zero value otherwise.

func (*ReleaseSummary) GetCreatedAtOk

func (o *ReleaseSummary) 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 (*ReleaseSummary) GetHealth

func (o *ReleaseSummary) GetHealth() ReleaseHealth

GetHealth returns the Health field value if set, zero value otherwise.

func (*ReleaseSummary) GetHealthOk

func (o *ReleaseSummary) GetHealthOk() (*ReleaseHealth, bool)

GetHealthOk returns a tuple with the Health field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ReleaseSummary) GetId

func (o *ReleaseSummary) GetId() string

GetId returns the Id field value if set, zero value otherwise.

func (*ReleaseSummary) GetIdOk

func (o *ReleaseSummary) 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 (*ReleaseSummary) GetMessage

func (o *ReleaseSummary) GetMessage() string

GetMessage returns the Message field value if set, zero value otherwise.

func (*ReleaseSummary) GetMessageOk

func (o *ReleaseSummary) 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 (*ReleaseSummary) GetSequence

func (o *ReleaseSummary) GetSequence() int32

GetSequence returns the Sequence field value if set, zero value otherwise.

func (*ReleaseSummary) GetSequenceOk

func (o *ReleaseSummary) GetSequenceOk() (*int32, bool)

GetSequenceOk returns a tuple with the Sequence field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ReleaseSummary) GetState

func (o *ReleaseSummary) GetState() StackReleaseState

GetState returns the State field value if set, zero value otherwise.

func (*ReleaseSummary) GetStateOk

func (o *ReleaseSummary) GetStateOk() (*StackReleaseState, 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 (*ReleaseSummary) HasCompletedAt

func (o *ReleaseSummary) HasCompletedAt() bool

HasCompletedAt returns a boolean if a field has been set.

func (*ReleaseSummary) HasCreatedAt

func (o *ReleaseSummary) HasCreatedAt() bool

HasCreatedAt returns a boolean if a field has been set.

func (*ReleaseSummary) HasHealth

func (o *ReleaseSummary) HasHealth() bool

HasHealth returns a boolean if a field has been set.

func (*ReleaseSummary) HasId

func (o *ReleaseSummary) HasId() bool

HasId returns a boolean if a field has been set.

func (*ReleaseSummary) HasMessage

func (o *ReleaseSummary) HasMessage() bool

HasMessage returns a boolean if a field has been set.

func (*ReleaseSummary) HasSequence

func (o *ReleaseSummary) HasSequence() bool

HasSequence returns a boolean if a field has been set.

func (*ReleaseSummary) HasState

func (o *ReleaseSummary) HasState() bool

HasState returns a boolean if a field has been set.

func (ReleaseSummary) MarshalJSON

func (o ReleaseSummary) MarshalJSON() ([]byte, error)

func (*ReleaseSummary) SetCompletedAt

func (o *ReleaseSummary) SetCompletedAt(v time.Time)

SetCompletedAt gets a reference to the given time.Time and assigns it to the CompletedAt field.

func (*ReleaseSummary) SetCreatedAt

func (o *ReleaseSummary) SetCreatedAt(v time.Time)

SetCreatedAt gets a reference to the given time.Time and assigns it to the CreatedAt field.

func (*ReleaseSummary) SetHealth

func (o *ReleaseSummary) SetHealth(v ReleaseHealth)

SetHealth gets a reference to the given ReleaseHealth and assigns it to the Health field.

func (*ReleaseSummary) SetId

func (o *ReleaseSummary) SetId(v string)

SetId gets a reference to the given string and assigns it to the Id field.

func (*ReleaseSummary) SetMessage

func (o *ReleaseSummary) SetMessage(v string)

SetMessage gets a reference to the given string and assigns it to the Message field.

func (*ReleaseSummary) SetSequence

func (o *ReleaseSummary) SetSequence(v int32)

SetSequence gets a reference to the given int32 and assigns it to the Sequence field.

func (*ReleaseSummary) SetState

func (o *ReleaseSummary) SetState(v StackReleaseState)

SetState gets a reference to the given StackReleaseState and assigns it to the State field.

type ReleaseValidationError

type ReleaseValidationError struct {
	ResourceName *string `json:"resource_name,omitempty"`
	Field        *string `json:"field,omitempty"`
	Code         *string `json:"code,omitempty"`
	Message      *string `json:"message,omitempty"`
}

ReleaseValidationError struct for ReleaseValidationError

func NewReleaseValidationError

func NewReleaseValidationError() *ReleaseValidationError

NewReleaseValidationError instantiates a new ReleaseValidationError object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewReleaseValidationErrorWithDefaults

func NewReleaseValidationErrorWithDefaults() *ReleaseValidationError

NewReleaseValidationErrorWithDefaults instantiates a new ReleaseValidationError object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*ReleaseValidationError) GetCode

func (o *ReleaseValidationError) GetCode() string

GetCode returns the Code field value if set, zero value otherwise.

func (*ReleaseValidationError) GetCodeOk

func (o *ReleaseValidationError) 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 (*ReleaseValidationError) GetField

func (o *ReleaseValidationError) GetField() string

GetField returns the Field field value if set, zero value otherwise.

func (*ReleaseValidationError) GetFieldOk

func (o *ReleaseValidationError) 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 (*ReleaseValidationError) GetMessage

func (o *ReleaseValidationError) GetMessage() string

GetMessage returns the Message field value if set, zero value otherwise.

func (*ReleaseValidationError) GetMessageOk

func (o *ReleaseValidationError) 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 (*ReleaseValidationError) GetResourceName

func (o *ReleaseValidationError) GetResourceName() string

GetResourceName returns the ResourceName field value if set, zero value otherwise.

func (*ReleaseValidationError) GetResourceNameOk

func (o *ReleaseValidationError) GetResourceNameOk() (*string, bool)

GetResourceNameOk returns a tuple with the ResourceName field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ReleaseValidationError) HasCode

func (o *ReleaseValidationError) HasCode() bool

HasCode returns a boolean if a field has been set.

func (*ReleaseValidationError) HasField

func (o *ReleaseValidationError) HasField() bool

HasField returns a boolean if a field has been set.

func (*ReleaseValidationError) HasMessage

func (o *ReleaseValidationError) HasMessage() bool

HasMessage returns a boolean if a field has been set.

func (*ReleaseValidationError) HasResourceName

func (o *ReleaseValidationError) HasResourceName() bool

HasResourceName returns a boolean if a field has been set.

func (ReleaseValidationError) MarshalJSON

func (o ReleaseValidationError) MarshalJSON() ([]byte, error)

func (*ReleaseValidationError) SetCode

func (o *ReleaseValidationError) SetCode(v string)

SetCode gets a reference to the given string and assigns it to the Code field.

func (*ReleaseValidationError) SetField

func (o *ReleaseValidationError) SetField(v string)

SetField gets a reference to the given string and assigns it to the Field field.

func (*ReleaseValidationError) SetMessage

func (o *ReleaseValidationError) SetMessage(v string)

SetMessage gets a reference to the given string and assigns it to the Message field.

func (*ReleaseValidationError) SetResourceName

func (o *ReleaseValidationError) SetResourceName(v string)

SetResourceName gets a reference to the given string and assigns it to the ResourceName field.

type ReleasesApiService

type ReleasesApiService service

ReleasesApiService ReleasesApi service

func (*ReleasesApiService) CancelRelease

func (a *ReleasesApiService) CancelRelease(ctx context.Context, orgId string, projectName string, id string, releaseId string) ApiCancelReleaseRequest

CancelRelease Cancel a pending or rendering release

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param orgId The ID of the organization
@param projectName The name of the project
@param id The id of record
@param releaseId
@return ApiCancelReleaseRequest

func (*ReleasesApiService) CancelReleaseExecute

func (a *ReleasesApiService) CancelReleaseExecute(r ApiCancelReleaseRequest) (*http.Response, error)

Execute executes the request

func (*ReleasesApiService) CreateRelease

func (a *ReleasesApiService) CreateRelease(ctx context.Context, orgId string, projectName string, id string) ApiCreateReleaseRequest

CreateRelease Create a new release (deploy)

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param orgId The ID of the organization
@param projectName The name of the project
@param id The id of record
@return ApiCreateReleaseRequest

func (*ReleasesApiService) CreateReleaseExecute

func (a *ReleasesApiService) CreateReleaseExecute(r ApiCreateReleaseRequest) (*StackRelease, *http.Response, error)

Execute executes the request

@return StackRelease

func (*ReleasesApiService) GetRelease

func (a *ReleasesApiService) GetRelease(ctx context.Context, orgId string, projectName string, id string, releaseId string) ApiGetReleaseRequest

GetRelease Get a release by ID

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param orgId The ID of the organization
@param projectName The name of the project
@param id The id of record
@param releaseId
@return ApiGetReleaseRequest

func (*ReleasesApiService) GetReleaseExecute

Execute executes the request

@return StackReleaseDetail

func (*ReleasesApiService) ListReleaseEvents

func (a *ReleasesApiService) ListReleaseEvents(ctx context.Context, orgId string, projectName string, id string, releaseId string) ApiListReleaseEventsRequest

ListReleaseEvents List release events ordered by sequence

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param orgId The ID of the organization
@param projectName The name of the project
@param id The id of record
@param releaseId
@return ApiListReleaseEventsRequest

func (*ReleasesApiService) ListReleaseEventsExecute

Execute executes the request

@return ReleaseEventList

func (*ReleasesApiService) ListReleases

func (a *ReleasesApiService) ListReleases(ctx context.Context, orgId string, projectName string, id string) ApiListReleasesRequest

ListReleases List releases for a stack

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param orgId The ID of the organization
@param projectName The name of the project
@param id The id of record
@return ApiListReleasesRequest

func (*ReleasesApiService) ListReleasesExecute

Execute executes the request

@return StackReleaseList

func (*ReleasesApiService) StreamReleaseEvents

func (a *ReleasesApiService) StreamReleaseEvents(ctx context.Context, orgId string, projectName string, id string, releaseId string) ApiStreamReleaseEventsRequest

StreamReleaseEvents Stream release events via Server-Sent Events

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param orgId The ID of the organization
@param projectName The name of the project
@param id The id of record
@param releaseId
@return ApiStreamReleaseEventsRequest

func (*ReleasesApiService) StreamReleaseEventsExecute

func (a *ReleasesApiService) StreamReleaseEventsExecute(r ApiStreamReleaseEventsRequest) (**os.File, *http.Response, error)

Execute executes the request

@return *os.File

type RemoteSource

type RemoteSource struct {
	Path                 string `json:"path"`
	CurrentDirectoryHash string `json:"current_directory_hash"`
}

RemoteSource struct for RemoteSource

func NewRemoteSource

func NewRemoteSource(path string, currentDirectoryHash string) *RemoteSource

NewRemoteSource instantiates a new RemoteSource object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewRemoteSourceWithDefaults

func NewRemoteSourceWithDefaults() *RemoteSource

NewRemoteSourceWithDefaults instantiates a new RemoteSource object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*RemoteSource) GetCurrentDirectoryHash

func (o *RemoteSource) GetCurrentDirectoryHash() string

GetCurrentDirectoryHash returns the CurrentDirectoryHash field value

func (*RemoteSource) GetCurrentDirectoryHashOk

func (o *RemoteSource) GetCurrentDirectoryHashOk() (*string, bool)

GetCurrentDirectoryHashOk returns a tuple with the CurrentDirectoryHash field value and a boolean to check if the value has been set.

func (*RemoteSource) GetPath

func (o *RemoteSource) GetPath() string

GetPath returns the Path field value

func (*RemoteSource) GetPathOk

func (o *RemoteSource) GetPathOk() (*string, bool)

GetPathOk returns a tuple with the Path field value and a boolean to check if the value has been set.

func (RemoteSource) MarshalJSON

func (o RemoteSource) MarshalJSON() ([]byte, error)

func (*RemoteSource) SetCurrentDirectoryHash

func (o *RemoteSource) SetCurrentDirectoryHash(v string)

SetCurrentDirectoryHash sets field value

func (*RemoteSource) SetPath

func (o *RemoteSource) SetPath(v string)

SetPath sets field value

type ResourceMetrics

type ResourceMetrics struct {
	AssignedNodes []string `json:"assigned_nodes,omitempty"`
	// CPU usage in millicores
	CpuUsage *string `json:"cpu_usage,omitempty"`
	// Memory usage in bytes
	MemoryUsage    *string                              `json:"memory_usage,omitempty"`
	NodeCapacities []ResourceMetricsNodeCapacitiesInner `json:"node_capacities,omitempty"`
	Timestamp      *time.Time                           `json:"timestamp,omitempty"`
}

ResourceMetrics struct for ResourceMetrics

func NewResourceMetrics

func NewResourceMetrics() *ResourceMetrics

NewResourceMetrics instantiates a new ResourceMetrics object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewResourceMetricsWithDefaults

func NewResourceMetricsWithDefaults() *ResourceMetrics

NewResourceMetricsWithDefaults instantiates a new ResourceMetrics object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*ResourceMetrics) GetAssignedNodes

func (o *ResourceMetrics) GetAssignedNodes() []string

GetAssignedNodes returns the AssignedNodes field value if set, zero value otherwise.

func (*ResourceMetrics) GetAssignedNodesOk

func (o *ResourceMetrics) GetAssignedNodesOk() ([]string, bool)

GetAssignedNodesOk returns a tuple with the AssignedNodes field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ResourceMetrics) GetCpuUsage

func (o *ResourceMetrics) GetCpuUsage() string

GetCpuUsage returns the CpuUsage field value if set, zero value otherwise.

func (*ResourceMetrics) GetCpuUsageOk

func (o *ResourceMetrics) GetCpuUsageOk() (*string, bool)

GetCpuUsageOk returns a tuple with the CpuUsage field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ResourceMetrics) GetMemoryUsage

func (o *ResourceMetrics) GetMemoryUsage() string

GetMemoryUsage returns the MemoryUsage field value if set, zero value otherwise.

func (*ResourceMetrics) GetMemoryUsageOk

func (o *ResourceMetrics) GetMemoryUsageOk() (*string, bool)

GetMemoryUsageOk returns a tuple with the MemoryUsage field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ResourceMetrics) GetNodeCapacities

func (o *ResourceMetrics) GetNodeCapacities() []ResourceMetricsNodeCapacitiesInner

GetNodeCapacities returns the NodeCapacities field value if set, zero value otherwise.

func (*ResourceMetrics) GetNodeCapacitiesOk

func (o *ResourceMetrics) GetNodeCapacitiesOk() ([]ResourceMetricsNodeCapacitiesInner, bool)

GetNodeCapacitiesOk returns a tuple with the NodeCapacities field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ResourceMetrics) GetTimestamp

func (o *ResourceMetrics) GetTimestamp() time.Time

GetTimestamp returns the Timestamp field value if set, zero value otherwise.

func (*ResourceMetrics) GetTimestampOk

func (o *ResourceMetrics) GetTimestampOk() (*time.Time, 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 (*ResourceMetrics) HasAssignedNodes

func (o *ResourceMetrics) HasAssignedNodes() bool

HasAssignedNodes returns a boolean if a field has been set.

func (*ResourceMetrics) HasCpuUsage

func (o *ResourceMetrics) HasCpuUsage() bool

HasCpuUsage returns a boolean if a field has been set.

func (*ResourceMetrics) HasMemoryUsage

func (o *ResourceMetrics) HasMemoryUsage() bool

HasMemoryUsage returns a boolean if a field has been set.

func (*ResourceMetrics) HasNodeCapacities

func (o *ResourceMetrics) HasNodeCapacities() bool

HasNodeCapacities returns a boolean if a field has been set.

func (*ResourceMetrics) HasTimestamp

func (o *ResourceMetrics) HasTimestamp() bool

HasTimestamp returns a boolean if a field has been set.

func (ResourceMetrics) MarshalJSON

func (o ResourceMetrics) MarshalJSON() ([]byte, error)

func (*ResourceMetrics) SetAssignedNodes

func (o *ResourceMetrics) SetAssignedNodes(v []string)

SetAssignedNodes gets a reference to the given []string and assigns it to the AssignedNodes field.

func (*ResourceMetrics) SetCpuUsage

func (o *ResourceMetrics) SetCpuUsage(v string)

SetCpuUsage gets a reference to the given string and assigns it to the CpuUsage field.

func (*ResourceMetrics) SetMemoryUsage

func (o *ResourceMetrics) SetMemoryUsage(v string)

SetMemoryUsage gets a reference to the given string and assigns it to the MemoryUsage field.

func (*ResourceMetrics) SetNodeCapacities

func (o *ResourceMetrics) SetNodeCapacities(v []ResourceMetricsNodeCapacitiesInner)

SetNodeCapacities gets a reference to the given []ResourceMetricsNodeCapacitiesInner and assigns it to the NodeCapacities field.

func (*ResourceMetrics) SetTimestamp

func (o *ResourceMetrics) SetTimestamp(v time.Time)

SetTimestamp gets a reference to the given time.Time and assigns it to the Timestamp field.

type ResourceMetricsNodeCapacitiesInner

type ResourceMetricsNodeCapacitiesInner struct {
	NodeName *string `json:"node_name,omitempty"`
	// CPU capacity in millicores
	CpuCapacity *string `json:"cpu_capacity,omitempty"`
	// Memory capacity in bytes
	MemoryCapacity *string `json:"memory_capacity,omitempty"`
	// Storage capacity in bytes
	StorageCapacity *string `json:"storage_capacity,omitempty"`
}

ResourceMetricsNodeCapacitiesInner struct for ResourceMetricsNodeCapacitiesInner

func NewResourceMetricsNodeCapacitiesInner

func NewResourceMetricsNodeCapacitiesInner() *ResourceMetricsNodeCapacitiesInner

NewResourceMetricsNodeCapacitiesInner instantiates a new ResourceMetricsNodeCapacitiesInner object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewResourceMetricsNodeCapacitiesInnerWithDefaults

func NewResourceMetricsNodeCapacitiesInnerWithDefaults() *ResourceMetricsNodeCapacitiesInner

NewResourceMetricsNodeCapacitiesInnerWithDefaults instantiates a new ResourceMetricsNodeCapacitiesInner object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*ResourceMetricsNodeCapacitiesInner) GetCpuCapacity

func (o *ResourceMetricsNodeCapacitiesInner) GetCpuCapacity() string

GetCpuCapacity returns the CpuCapacity field value if set, zero value otherwise.

func (*ResourceMetricsNodeCapacitiesInner) GetCpuCapacityOk

func (o *ResourceMetricsNodeCapacitiesInner) GetCpuCapacityOk() (*string, bool)

GetCpuCapacityOk returns a tuple with the CpuCapacity field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ResourceMetricsNodeCapacitiesInner) GetMemoryCapacity

func (o *ResourceMetricsNodeCapacitiesInner) GetMemoryCapacity() string

GetMemoryCapacity returns the MemoryCapacity field value if set, zero value otherwise.

func (*ResourceMetricsNodeCapacitiesInner) GetMemoryCapacityOk

func (o *ResourceMetricsNodeCapacitiesInner) GetMemoryCapacityOk() (*string, bool)

GetMemoryCapacityOk returns a tuple with the MemoryCapacity field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ResourceMetricsNodeCapacitiesInner) GetNodeName

func (o *ResourceMetricsNodeCapacitiesInner) GetNodeName() string

GetNodeName returns the NodeName field value if set, zero value otherwise.

func (*ResourceMetricsNodeCapacitiesInner) GetNodeNameOk

func (o *ResourceMetricsNodeCapacitiesInner) GetNodeNameOk() (*string, bool)

GetNodeNameOk returns a tuple with the NodeName field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ResourceMetricsNodeCapacitiesInner) GetStorageCapacity

func (o *ResourceMetricsNodeCapacitiesInner) GetStorageCapacity() string

GetStorageCapacity returns the StorageCapacity field value if set, zero value otherwise.

func (*ResourceMetricsNodeCapacitiesInner) GetStorageCapacityOk

func (o *ResourceMetricsNodeCapacitiesInner) GetStorageCapacityOk() (*string, bool)

GetStorageCapacityOk returns a tuple with the StorageCapacity field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ResourceMetricsNodeCapacitiesInner) HasCpuCapacity

func (o *ResourceMetricsNodeCapacitiesInner) HasCpuCapacity() bool

HasCpuCapacity returns a boolean if a field has been set.

func (*ResourceMetricsNodeCapacitiesInner) HasMemoryCapacity

func (o *ResourceMetricsNodeCapacitiesInner) HasMemoryCapacity() bool

HasMemoryCapacity returns a boolean if a field has been set.

func (*ResourceMetricsNodeCapacitiesInner) HasNodeName

func (o *ResourceMetricsNodeCapacitiesInner) HasNodeName() bool

HasNodeName returns a boolean if a field has been set.

func (*ResourceMetricsNodeCapacitiesInner) HasStorageCapacity

func (o *ResourceMetricsNodeCapacitiesInner) HasStorageCapacity() bool

HasStorageCapacity returns a boolean if a field has been set.

func (ResourceMetricsNodeCapacitiesInner) MarshalJSON

func (o ResourceMetricsNodeCapacitiesInner) MarshalJSON() ([]byte, error)

func (*ResourceMetricsNodeCapacitiesInner) SetCpuCapacity

func (o *ResourceMetricsNodeCapacitiesInner) SetCpuCapacity(v string)

SetCpuCapacity gets a reference to the given string and assigns it to the CpuCapacity field.

func (*ResourceMetricsNodeCapacitiesInner) SetMemoryCapacity

func (o *ResourceMetricsNodeCapacitiesInner) SetMemoryCapacity(v string)

SetMemoryCapacity gets a reference to the given string and assigns it to the MemoryCapacity field.

func (*ResourceMetricsNodeCapacitiesInner) SetNodeName

func (o *ResourceMetricsNodeCapacitiesInner) SetNodeName(v string)

SetNodeName gets a reference to the given string and assigns it to the NodeName field.

func (*ResourceMetricsNodeCapacitiesInner) SetStorageCapacity

func (o *ResourceMetricsNodeCapacitiesInner) SetStorageCapacity(v string)

SetStorageCapacity gets a reference to the given string and assigns it to the StorageCapacity field.

type ResourceOutcome

type ResourceOutcome struct {
	Phase         *string `json:"phase,omitempty"`
	ReadyReplicas *int32  `json:"ready_replicas,omitempty"`
	Replicas      *int32  `json:"replicas,omitempty"`
	Message       *string `json:"message,omitempty"`
}

ResourceOutcome struct for ResourceOutcome

func NewResourceOutcome

func NewResourceOutcome() *ResourceOutcome

NewResourceOutcome instantiates a new ResourceOutcome object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewResourceOutcomeWithDefaults

func NewResourceOutcomeWithDefaults() *ResourceOutcome

NewResourceOutcomeWithDefaults instantiates a new ResourceOutcome object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*ResourceOutcome) GetMessage

func (o *ResourceOutcome) GetMessage() string

GetMessage returns the Message field value if set, zero value otherwise.

func (*ResourceOutcome) GetMessageOk

func (o *ResourceOutcome) 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 (*ResourceOutcome) GetPhase

func (o *ResourceOutcome) GetPhase() string

GetPhase returns the Phase field value if set, zero value otherwise.

func (*ResourceOutcome) GetPhaseOk

func (o *ResourceOutcome) GetPhaseOk() (*string, bool)

GetPhaseOk returns a tuple with the Phase field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ResourceOutcome) GetReadyReplicas

func (o *ResourceOutcome) GetReadyReplicas() int32

GetReadyReplicas returns the ReadyReplicas field value if set, zero value otherwise.

func (*ResourceOutcome) GetReadyReplicasOk

func (o *ResourceOutcome) GetReadyReplicasOk() (*int32, bool)

GetReadyReplicasOk returns a tuple with the ReadyReplicas field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ResourceOutcome) GetReplicas

func (o *ResourceOutcome) GetReplicas() int32

GetReplicas returns the Replicas field value if set, zero value otherwise.

func (*ResourceOutcome) GetReplicasOk

func (o *ResourceOutcome) GetReplicasOk() (*int32, bool)

GetReplicasOk returns a tuple with the Replicas field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ResourceOutcome) HasMessage

func (o *ResourceOutcome) HasMessage() bool

HasMessage returns a boolean if a field has been set.

func (*ResourceOutcome) HasPhase

func (o *ResourceOutcome) HasPhase() bool

HasPhase returns a boolean if a field has been set.

func (*ResourceOutcome) HasReadyReplicas

func (o *ResourceOutcome) HasReadyReplicas() bool

HasReadyReplicas returns a boolean if a field has been set.

func (*ResourceOutcome) HasReplicas

func (o *ResourceOutcome) HasReplicas() bool

HasReplicas returns a boolean if a field has been set.

func (ResourceOutcome) MarshalJSON

func (o ResourceOutcome) MarshalJSON() ([]byte, error)

func (*ResourceOutcome) SetMessage

func (o *ResourceOutcome) SetMessage(v string)

SetMessage gets a reference to the given string and assigns it to the Message field.

func (*ResourceOutcome) SetPhase

func (o *ResourceOutcome) SetPhase(v string)

SetPhase gets a reference to the given string and assigns it to the Phase field.

func (*ResourceOutcome) SetReadyReplicas

func (o *ResourceOutcome) SetReadyReplicas(v int32)

SetReadyReplicas gets a reference to the given int32 and assigns it to the ReadyReplicas field.

func (*ResourceOutcome) SetReplicas

func (o *ResourceOutcome) SetReplicas(v int32)

SetReplicas gets a reference to the given int32 and assigns it to the Replicas field.

type ResourcePins

type ResourcePins struct {
	GitSha      *string `json:"git_sha,omitempty"`
	VolumeHash  *string `json:"volume_hash,omitempty"`
	ImageDigest *string `json:"image_digest,omitempty"`
}

ResourcePins struct for ResourcePins

func NewResourcePins

func NewResourcePins() *ResourcePins

NewResourcePins instantiates a new ResourcePins object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewResourcePinsWithDefaults

func NewResourcePinsWithDefaults() *ResourcePins

NewResourcePinsWithDefaults instantiates a new ResourcePins object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*ResourcePins) GetGitSha

func (o *ResourcePins) GetGitSha() string

GetGitSha returns the GitSha field value if set, zero value otherwise.

func (*ResourcePins) GetGitShaOk

func (o *ResourcePins) GetGitShaOk() (*string, bool)

GetGitShaOk returns a tuple with the GitSha field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ResourcePins) GetImageDigest

func (o *ResourcePins) GetImageDigest() string

GetImageDigest returns the ImageDigest field value if set, zero value otherwise.

func (*ResourcePins) GetImageDigestOk

func (o *ResourcePins) GetImageDigestOk() (*string, bool)

GetImageDigestOk returns a tuple with the ImageDigest field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ResourcePins) GetVolumeHash

func (o *ResourcePins) GetVolumeHash() string

GetVolumeHash returns the VolumeHash field value if set, zero value otherwise.

func (*ResourcePins) GetVolumeHashOk

func (o *ResourcePins) GetVolumeHashOk() (*string, bool)

GetVolumeHashOk returns a tuple with the VolumeHash field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ResourcePins) HasGitSha

func (o *ResourcePins) HasGitSha() bool

HasGitSha returns a boolean if a field has been set.

func (*ResourcePins) HasImageDigest

func (o *ResourcePins) HasImageDigest() bool

HasImageDigest returns a boolean if a field has been set.

func (*ResourcePins) HasVolumeHash

func (o *ResourcePins) HasVolumeHash() bool

HasVolumeHash returns a boolean if a field has been set.

func (ResourcePins) MarshalJSON

func (o ResourcePins) MarshalJSON() ([]byte, error)

func (*ResourcePins) SetGitSha

func (o *ResourcePins) SetGitSha(v string)

SetGitSha gets a reference to the given string and assigns it to the GitSha field.

func (*ResourcePins) SetImageDigest

func (o *ResourcePins) SetImageDigest(v string)

SetImageDigest gets a reference to the given string and assigns it to the ImageDigest field.

func (*ResourcePins) SetVolumeHash

func (o *ResourcePins) SetVolumeHash(v string)

SetVolumeHash gets a reference to the given string and assigns it to the VolumeHash field.

type S3Credentials

type S3Credentials struct {
	AccessKeyId     SecretReference `json:"access_key_id"`
	SecretAccessKey SecretReference `json:"secret_access_key"`
	// AWS region
	Region string `json:"region"`
	// Custom S3 endpoint URL for S3-compatible storage
	EndpointUrl *string `json:"endpoint_url,omitempty"`
}

S3Credentials struct for S3Credentials

func NewS3Credentials

func NewS3Credentials(accessKeyId SecretReference, secretAccessKey SecretReference, region string) *S3Credentials

NewS3Credentials instantiates a new S3Credentials object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewS3CredentialsWithDefaults

func NewS3CredentialsWithDefaults() *S3Credentials

NewS3CredentialsWithDefaults instantiates a new S3Credentials object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*S3Credentials) GetAccessKeyId

func (o *S3Credentials) GetAccessKeyId() SecretReference

GetAccessKeyId returns the AccessKeyId field value

func (*S3Credentials) GetAccessKeyIdOk

func (o *S3Credentials) GetAccessKeyIdOk() (*SecretReference, bool)

GetAccessKeyIdOk returns a tuple with the AccessKeyId field value and a boolean to check if the value has been set.

func (*S3Credentials) GetEndpointUrl

func (o *S3Credentials) GetEndpointUrl() string

GetEndpointUrl returns the EndpointUrl field value if set, zero value otherwise.

func (*S3Credentials) GetEndpointUrlOk

func (o *S3Credentials) GetEndpointUrlOk() (*string, bool)

GetEndpointUrlOk returns a tuple with the EndpointUrl field value if set, nil otherwise and a boolean to check if the value has been set.

func (*S3Credentials) GetRegion

func (o *S3Credentials) GetRegion() string

GetRegion returns the Region field value

func (*S3Credentials) GetRegionOk

func (o *S3Credentials) GetRegionOk() (*string, bool)

GetRegionOk returns a tuple with the Region field value and a boolean to check if the value has been set.

func (*S3Credentials) GetSecretAccessKey

func (o *S3Credentials) GetSecretAccessKey() SecretReference

GetSecretAccessKey returns the SecretAccessKey field value

func (*S3Credentials) GetSecretAccessKeyOk

func (o *S3Credentials) GetSecretAccessKeyOk() (*SecretReference, bool)

GetSecretAccessKeyOk returns a tuple with the SecretAccessKey field value and a boolean to check if the value has been set.

func (*S3Credentials) HasEndpointUrl

func (o *S3Credentials) HasEndpointUrl() bool

HasEndpointUrl returns a boolean if a field has been set.

func (S3Credentials) MarshalJSON

func (o S3Credentials) MarshalJSON() ([]byte, error)

func (*S3Credentials) SetAccessKeyId

func (o *S3Credentials) SetAccessKeyId(v SecretReference)

SetAccessKeyId sets field value

func (*S3Credentials) SetEndpointUrl

func (o *S3Credentials) SetEndpointUrl(v string)

SetEndpointUrl gets a reference to the given string and assigns it to the EndpointUrl field.

func (*S3Credentials) SetRegion

func (o *S3Credentials) SetRegion(v string)

SetRegion sets field value

func (*S3Credentials) SetSecretAccessKey

func (o *S3Credentials) SetSecretAccessKey(v SecretReference)

SetSecretAccessKey sets field value

type SSHConfig

type SSHConfig struct {
	// The SSH public key in OpenSSH format
	PublicKey string `json:"public_key"`
}

SSHConfig struct for SSHConfig

func NewSSHConfig

func NewSSHConfig(publicKey string) *SSHConfig

NewSSHConfig instantiates a new SSHConfig object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewSSHConfigWithDefaults

func NewSSHConfigWithDefaults() *SSHConfig

NewSSHConfigWithDefaults instantiates a new SSHConfig object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*SSHConfig) GetPublicKey

func (o *SSHConfig) GetPublicKey() string

GetPublicKey returns the PublicKey field value

func (*SSHConfig) GetPublicKeyOk

func (o *SSHConfig) GetPublicKeyOk() (*string, bool)

GetPublicKeyOk returns a tuple with the PublicKey field value and a boolean to check if the value has been set.

func (SSHConfig) MarshalJSON

func (o SSHConfig) MarshalJSON() ([]byte, error)

func (*SSHConfig) SetPublicKey

func (o *SSHConfig) SetPublicKey(v string)

SetPublicKey sets field value

type ScopeList

type ScopeList struct {
	// The wildcard scope that grants full access (same permissions as the user)
	FullAccessScope *string         `json:"full_access_scope,omitempty"`
	Items           []ScopeResource `json:"items,omitempty"`
	Total           *int32          `json:"total,omitempty"`
}

ScopeList struct for ScopeList

func NewScopeList

func NewScopeList() *ScopeList

NewScopeList instantiates a new ScopeList object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewScopeListWithDefaults

func NewScopeListWithDefaults() *ScopeList

NewScopeListWithDefaults instantiates a new ScopeList object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*ScopeList) GetFullAccessScope

func (o *ScopeList) GetFullAccessScope() string

GetFullAccessScope returns the FullAccessScope field value if set, zero value otherwise.

func (*ScopeList) GetFullAccessScopeOk

func (o *ScopeList) GetFullAccessScopeOk() (*string, bool)

GetFullAccessScopeOk returns a tuple with the FullAccessScope field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ScopeList) GetItems

func (o *ScopeList) GetItems() []ScopeResource

GetItems returns the Items field value if set, zero value otherwise.

func (*ScopeList) GetItemsOk

func (o *ScopeList) GetItemsOk() ([]ScopeResource, bool)

GetItemsOk returns a tuple with the Items field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ScopeList) GetTotal

func (o *ScopeList) GetTotal() int32

GetTotal returns the Total field value if set, zero value otherwise.

func (*ScopeList) GetTotalOk

func (o *ScopeList) GetTotalOk() (*int32, 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 (*ScopeList) HasFullAccessScope

func (o *ScopeList) HasFullAccessScope() bool

HasFullAccessScope returns a boolean if a field has been set.

func (*ScopeList) HasItems

func (o *ScopeList) HasItems() bool

HasItems returns a boolean if a field has been set.

func (*ScopeList) HasTotal

func (o *ScopeList) HasTotal() bool

HasTotal returns a boolean if a field has been set.

func (ScopeList) MarshalJSON

func (o ScopeList) MarshalJSON() ([]byte, error)

func (*ScopeList) SetFullAccessScope

func (o *ScopeList) SetFullAccessScope(v string)

SetFullAccessScope gets a reference to the given string and assigns it to the FullAccessScope field.

func (*ScopeList) SetItems

func (o *ScopeList) SetItems(v []ScopeResource)

SetItems gets a reference to the given []ScopeResource and assigns it to the Items field.

func (*ScopeList) SetTotal

func (o *ScopeList) SetTotal(v int32)

SetTotal gets a reference to the given int32 and assigns it to the Total field.

type ScopeResource

type ScopeResource struct {
	// The resource name (e.g., stacks, secrets, addons/postgres)
	Resource *string `json:"resource,omitempty"`
	// The allowed actions for this resource (e.g., read, write, delete)
	Actions []string `json:"actions,omitempty"`
}

ScopeResource struct for ScopeResource

func NewScopeResource

func NewScopeResource() *ScopeResource

NewScopeResource instantiates a new ScopeResource object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewScopeResourceWithDefaults

func NewScopeResourceWithDefaults() *ScopeResource

NewScopeResourceWithDefaults instantiates a new ScopeResource object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*ScopeResource) GetActions

func (o *ScopeResource) GetActions() []string

GetActions returns the Actions field value if set, zero value otherwise.

func (*ScopeResource) GetActionsOk

func (o *ScopeResource) GetActionsOk() ([]string, bool)

GetActionsOk returns a tuple with the Actions field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ScopeResource) GetResource

func (o *ScopeResource) GetResource() string

GetResource returns the Resource field value if set, zero value otherwise.

func (*ScopeResource) GetResourceOk

func (o *ScopeResource) GetResourceOk() (*string, bool)

GetResourceOk returns a tuple with the Resource field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ScopeResource) HasActions

func (o *ScopeResource) HasActions() bool

HasActions returns a boolean if a field has been set.

func (*ScopeResource) HasResource

func (o *ScopeResource) HasResource() bool

HasResource returns a boolean if a field has been set.

func (ScopeResource) MarshalJSON

func (o ScopeResource) MarshalJSON() ([]byte, error)

func (*ScopeResource) SetActions

func (o *ScopeResource) SetActions(v []string)

SetActions gets a reference to the given []string and assigns it to the Actions field.

func (*ScopeResource) SetResource

func (o *ScopeResource) SetResource(v string)

SetResource gets a reference to the given string and assigns it to the Resource field.

type Secret

type Secret struct {
	Id             *string            `json:"id,omitempty"`
	Name           string             `json:"name"`
	Description    *string            `json:"description,omitempty"`
	OrganisationId *string            `json:"organisation_id,omitempty"`
	ProjectId      *string            `json:"project_id,omitempty"`
	Type           SecretType         `json:"type"`
	Data           []SecretData       `json:"data"`
	Outputs        []OutputDescriptor `json:"outputs,omitempty"`
	CreatedAt      *time.Time         `json:"created_at,omitempty"`
	UpdatedAt      *time.Time         `json:"updated_at,omitempty"`
}

Secret struct for Secret

func NewSecret

func NewSecret(name string, type_ SecretType, data []SecretData) *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) 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) GetData

func (o *Secret) GetData() []SecretData

GetData returns the Data field value

func (*Secret) GetDataOk

func (o *Secret) GetDataOk() ([]SecretData, bool)

GetDataOk returns a tuple with the Data field value and a boolean to check if the value has been set.

func (*Secret) GetDescription

func (o *Secret) GetDescription() string

GetDescription returns the Description field value if set, zero value otherwise.

func (*Secret) GetDescriptionOk

func (o *Secret) 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 (*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

func (*Secret) GetNameOk

func (o *Secret) GetNameOk() (*string, bool)

GetNameOk returns a tuple with the Name field value and a boolean to check if the value has been set.

func (*Secret) GetOrganisationId

func (o *Secret) GetOrganisationId() string

GetOrganisationId returns the OrganisationId field value if set, zero value otherwise.

func (*Secret) GetOrganisationIdOk

func (o *Secret) GetOrganisationIdOk() (*string, bool)

GetOrganisationIdOk returns a tuple with the OrganisationId field value if set, nil otherwise and a boolean to check if the value has been set.

func (*Secret) GetOutputs

func (o *Secret) GetOutputs() []OutputDescriptor

GetOutputs returns the Outputs field value if set, zero value otherwise.

func (*Secret) GetOutputsOk

func (o *Secret) GetOutputsOk() ([]OutputDescriptor, bool)

GetOutputsOk returns a tuple with the Outputs field value if set, nil otherwise and a boolean to check if the value has been set.

func (*Secret) GetProjectId

func (o *Secret) GetProjectId() string

GetProjectId returns the ProjectId field value if set, zero value otherwise.

func (*Secret) GetProjectIdOk

func (o *Secret) GetProjectIdOk() (*string, bool)

GetProjectIdOk returns a tuple with the ProjectId 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

func (*Secret) GetTypeOk

func (o *Secret) GetTypeOk() (*SecretType, bool)

GetTypeOk returns a tuple with the Type field value 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) HasCreatedAt

func (o *Secret) HasCreatedAt() bool

HasCreatedAt returns a boolean if a field has been set.

func (*Secret) HasDescription

func (o *Secret) HasDescription() bool

HasDescription 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) HasOrganisationId

func (o *Secret) HasOrganisationId() bool

HasOrganisationId returns a boolean if a field has been set.

func (*Secret) HasOutputs

func (o *Secret) HasOutputs() bool

HasOutputs returns a boolean if a field has been set.

func (*Secret) HasProjectId

func (o *Secret) HasProjectId() bool

HasProjectId 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) MarshalJSON

func (o Secret) MarshalJSON() ([]byte, error)

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) SetData

func (o *Secret) SetData(v []SecretData)

SetData sets field value

func (*Secret) SetDescription

func (o *Secret) SetDescription(v string)

SetDescription gets a reference to the given string and assigns it to the Description 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 sets field value

func (*Secret) SetOrganisationId

func (o *Secret) SetOrganisationId(v string)

SetOrganisationId gets a reference to the given string and assigns it to the OrganisationId field.

func (*Secret) SetOutputs

func (o *Secret) SetOutputs(v []OutputDescriptor)

SetOutputs gets a reference to the given []OutputDescriptor and assigns it to the Outputs field.

func (*Secret) SetProjectId

func (o *Secret) SetProjectId(v string)

SetProjectId gets a reference to the given string and assigns it to the ProjectId field.

func (*Secret) SetType

func (o *Secret) SetType(v SecretType)

SetType sets field value

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.

type SecretData

type SecretData struct {
	// The key for the secret data
	Key string `json:"key"`
	// The value for the secret data, base64 encoded if necessary
	Value string `json:"value"`
}

SecretData struct for SecretData

func NewSecretData

func NewSecretData(key string, value string) *SecretData

NewSecretData instantiates a new SecretData object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewSecretDataWithDefaults

func NewSecretDataWithDefaults() *SecretData

NewSecretDataWithDefaults instantiates a new SecretData object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*SecretData) GetKey

func (o *SecretData) GetKey() string

GetKey returns the Key field value

func (*SecretData) GetKeyOk

func (o *SecretData) GetKeyOk() (*string, bool)

GetKeyOk returns a tuple with the Key field value and a boolean to check if the value has been set.

func (*SecretData) GetValue

func (o *SecretData) GetValue() string

GetValue returns the Value field value

func (*SecretData) GetValueOk

func (o *SecretData) GetValueOk() (*string, bool)

GetValueOk returns a tuple with the Value field value and a boolean to check if the value has been set.

func (SecretData) MarshalJSON

func (o SecretData) MarshalJSON() ([]byte, error)

func (*SecretData) SetKey

func (o *SecretData) SetKey(v string)

SetKey sets field value

func (*SecretData) SetValue

func (o *SecretData) SetValue(v string)

SetValue sets field value

type SecretList

type SecretList struct {
	Items []Secret `json:"items,omitempty"`
	Total *int32   `json:"total,omitempty"`
}

SecretList struct for SecretList

func NewSecretList

func NewSecretList() *SecretList

NewSecretList instantiates a new SecretList object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewSecretListWithDefaults

func NewSecretListWithDefaults() *SecretList

NewSecretListWithDefaults instantiates a new SecretList object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*SecretList) GetItems

func (o *SecretList) GetItems() []Secret

GetItems returns the Items field value if set, zero value otherwise.

func (*SecretList) GetItemsOk

func (o *SecretList) GetItemsOk() ([]Secret, bool)

GetItemsOk returns a tuple with the Items field value if set, nil otherwise and a boolean to check if the value has been set.

func (*SecretList) GetTotal

func (o *SecretList) GetTotal() int32

GetTotal returns the Total field value if set, zero value otherwise.

func (*SecretList) GetTotalOk

func (o *SecretList) GetTotalOk() (*int32, 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 (*SecretList) HasItems

func (o *SecretList) HasItems() bool

HasItems returns a boolean if a field has been set.

func (*SecretList) HasTotal

func (o *SecretList) HasTotal() bool

HasTotal returns a boolean if a field has been set.

func (SecretList) MarshalJSON

func (o SecretList) MarshalJSON() ([]byte, error)

func (*SecretList) SetItems

func (o *SecretList) SetItems(v []Secret)

SetItems gets a reference to the given []Secret and assigns it to the Items field.

func (*SecretList) SetTotal

func (o *SecretList) SetTotal(v int32)

SetTotal gets a reference to the given int32 and assigns it to the Total field.

type SecretReference

type SecretReference struct {
	// UUID of the Stackdome secret
	SecretId string `json:"secret_id"`
	// Key within the secret containing the value
	Key string `json:"key"`
}

SecretReference struct for SecretReference

func NewSecretReference

func NewSecretReference(secretId string, key string) *SecretReference

NewSecretReference instantiates a new SecretReference object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewSecretReferenceWithDefaults

func NewSecretReferenceWithDefaults() *SecretReference

NewSecretReferenceWithDefaults instantiates a new SecretReference object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*SecretReference) GetKey

func (o *SecretReference) GetKey() string

GetKey returns the Key field value

func (*SecretReference) GetKeyOk

func (o *SecretReference) GetKeyOk() (*string, bool)

GetKeyOk returns a tuple with the Key field value and a boolean to check if the value has been set.

func (*SecretReference) GetSecretId

func (o *SecretReference) GetSecretId() string

GetSecretId returns the SecretId field value

func (*SecretReference) GetSecretIdOk

func (o *SecretReference) GetSecretIdOk() (*string, bool)

GetSecretIdOk returns a tuple with the SecretId field value and a boolean to check if the value has been set.

func (SecretReference) MarshalJSON

func (o SecretReference) MarshalJSON() ([]byte, error)

func (*SecretReference) SetKey

func (o *SecretReference) SetKey(v string)

SetKey sets field value

func (*SecretReference) SetSecretId

func (o *SecretReference) SetSecretId(v string)

SetSecretId sets field value

type SecretType

type SecretType string

SecretType the model 'SecretType'

const (
	GENERIC           SecretType = "Generic"
	DOCKER_REGISTRY   SecretType = "DockerRegistry"
	GIT_CREDENTIALS   SecretType = "GitCredentials"
	USERNAME_PASSWORD SecretType = "UsernamePassword"
	TOKEN             SecretType = "Token"
	SSH_KEY           SecretType = "SSHKey"
)

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 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 SignupConfigResponse

type SignupConfigResponse struct {
	Turnstile TurnstileConfigResponse `json:"turnstile"`
}

SignupConfigResponse struct for SignupConfigResponse

func NewSignupConfigResponse

func NewSignupConfigResponse(turnstile TurnstileConfigResponse) *SignupConfigResponse

NewSignupConfigResponse instantiates a new SignupConfigResponse object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewSignupConfigResponseWithDefaults

func NewSignupConfigResponseWithDefaults() *SignupConfigResponse

NewSignupConfigResponseWithDefaults instantiates a new SignupConfigResponse object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*SignupConfigResponse) GetTurnstile

GetTurnstile returns the Turnstile field value

func (*SignupConfigResponse) GetTurnstileOk

func (o *SignupConfigResponse) GetTurnstileOk() (*TurnstileConfigResponse, bool)

GetTurnstileOk returns a tuple with the Turnstile field value and a boolean to check if the value has been set.

func (SignupConfigResponse) MarshalJSON

func (o SignupConfigResponse) MarshalJSON() ([]byte, error)

func (*SignupConfigResponse) SetTurnstile

func (o *SignupConfigResponse) SetTurnstile(v TurnstileConfigResponse)

SetTurnstile sets field value

type SourceSpec

type SourceSpec struct {
	Git    *GitSource         `json:"git,omitempty"`
	Image  *ImageSource       `json:"image,omitempty"`
	Volume *VolumeBuildSource `json:"volume,omitempty"`
}

SourceSpec Where a stack resource's runtime image comes from. Exactly one of git, image, or volume must be set (enforced server-side).

func NewSourceSpec

func NewSourceSpec() *SourceSpec

NewSourceSpec instantiates a new SourceSpec object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewSourceSpecWithDefaults

func NewSourceSpecWithDefaults() *SourceSpec

NewSourceSpecWithDefaults instantiates a new SourceSpec object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*SourceSpec) GetGit

func (o *SourceSpec) GetGit() GitSource

GetGit returns the Git field value if set, zero value otherwise.

func (*SourceSpec) GetGitOk

func (o *SourceSpec) 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 (*SourceSpec) GetImage

func (o *SourceSpec) GetImage() ImageSource

GetImage returns the Image field value if set, zero value otherwise.

func (*SourceSpec) GetImageOk

func (o *SourceSpec) GetImageOk() (*ImageSource, 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 (*SourceSpec) GetVolume

func (o *SourceSpec) GetVolume() VolumeBuildSource

GetVolume returns the Volume field value if set, zero value otherwise.

func (*SourceSpec) GetVolumeOk

func (o *SourceSpec) GetVolumeOk() (*VolumeBuildSource, bool)

GetVolumeOk returns a tuple with the Volume field value if set, nil otherwise and a boolean to check if the value has been set.

func (*SourceSpec) HasGit

func (o *SourceSpec) HasGit() bool

HasGit returns a boolean if a field has been set.

func (*SourceSpec) HasImage

func (o *SourceSpec) HasImage() bool

HasImage returns a boolean if a field has been set.

func (*SourceSpec) HasVolume

func (o *SourceSpec) HasVolume() bool

HasVolume returns a boolean if a field has been set.

func (SourceSpec) MarshalJSON

func (o SourceSpec) MarshalJSON() ([]byte, error)

func (*SourceSpec) SetGit

func (o *SourceSpec) SetGit(v GitSource)

SetGit gets a reference to the given GitSource and assigns it to the Git field.

func (*SourceSpec) SetImage

func (o *SourceSpec) SetImage(v ImageSource)

SetImage gets a reference to the given ImageSource and assigns it to the Image field.

func (*SourceSpec) SetVolume

func (o *SourceSpec) SetVolume(v VolumeBuildSource)

SetVolume gets a reference to the given VolumeBuildSource and assigns it to the Volume field.

type Stack

type Stack struct {
	Id               *string         `json:"id,omitempty"`
	OrganisationId   *string         `json:"organisation_id,omitempty"`
	ProjectId        *string         `json:"project_id,omitempty"`
	UserId           *string         `json:"user_id,omitempty"`
	Name             string          `json:"name"`
	Namespace        *string         `json:"namespace,omitempty"`
	Labels           []Label         `json:"labels,omitempty"`
	Annotations      []Annotation    `json:"annotations,omitempty"`
	Revision         *string         `json:"revision,omitempty"`
	Spec             StackSpec       `json:"spec"`
	Settings         *StackSettings  `json:"settings,omitempty"`
	Lifecycle        *StackLifecycle `json:"lifecycle,omitempty"`
	ConvergedRelease *ReleaseSummary `json:"converged_release,omitempty"`
	LatestRelease    *ReleaseSummary `json:"latest_release,omitempty"`
	CreatedAt        *time.Time      `json:"created_at,omitempty"`
	UpdatedAt        *time.Time      `json:"updated_at,omitempty"`
}

Stack struct for Stack

func NewStack

func NewStack(name string, spec StackSpec) *Stack

NewStack instantiates a new Stack object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewStackWithDefaults

func NewStackWithDefaults() *Stack

NewStackWithDefaults instantiates a new Stack object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*Stack) GetAnnotations

func (o *Stack) GetAnnotations() []Annotation

GetAnnotations returns the Annotations field value if set, zero value otherwise.

func (*Stack) GetAnnotationsOk

func (o *Stack) GetAnnotationsOk() ([]Annotation, bool)

GetAnnotationsOk returns a tuple with the Annotations field value if set, nil otherwise and a boolean to check if the value has been set.

func (*Stack) GetConvergedRelease

func (o *Stack) GetConvergedRelease() ReleaseSummary

GetConvergedRelease returns the ConvergedRelease field value if set, zero value otherwise.

func (*Stack) GetConvergedReleaseOk

func (o *Stack) GetConvergedReleaseOk() (*ReleaseSummary, bool)

GetConvergedReleaseOk returns a tuple with the ConvergedRelease field value if set, nil otherwise and a boolean to check if the value has been set.

func (*Stack) GetCreatedAt

func (o *Stack) GetCreatedAt() time.Time

GetCreatedAt returns the CreatedAt field value if set, zero value otherwise.

func (*Stack) GetCreatedAtOk

func (o *Stack) 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 (*Stack) GetId

func (o *Stack) GetId() string

GetId returns the Id field value if set, zero value otherwise.

func (*Stack) GetIdOk

func (o *Stack) 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 (*Stack) GetLabels

func (o *Stack) GetLabels() []Label

GetLabels returns the Labels field value if set, zero value otherwise.

func (*Stack) GetLabelsOk

func (o *Stack) GetLabelsOk() ([]Label, 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 (*Stack) GetLatestRelease

func (o *Stack) GetLatestRelease() ReleaseSummary

GetLatestRelease returns the LatestRelease field value if set, zero value otherwise.

func (*Stack) GetLatestReleaseOk

func (o *Stack) GetLatestReleaseOk() (*ReleaseSummary, bool)

GetLatestReleaseOk returns a tuple with the LatestRelease field value if set, nil otherwise and a boolean to check if the value has been set.

func (*Stack) GetLifecycle

func (o *Stack) GetLifecycle() StackLifecycle

GetLifecycle returns the Lifecycle field value if set, zero value otherwise.

func (*Stack) GetLifecycleOk

func (o *Stack) GetLifecycleOk() (*StackLifecycle, bool)

GetLifecycleOk returns a tuple with the Lifecycle field value if set, nil otherwise and a boolean to check if the value has been set.

func (*Stack) GetName

func (o *Stack) GetName() string

GetName returns the Name field value

func (*Stack) GetNameOk

func (o *Stack) GetNameOk() (*string, bool)

GetNameOk returns a tuple with the Name field value and a boolean to check if the value has been set.

func (*Stack) GetNamespace

func (o *Stack) GetNamespace() string

GetNamespace returns the Namespace field value if set, zero value otherwise.

func (*Stack) GetNamespaceOk

func (o *Stack) GetNamespaceOk() (*string, bool)

GetNamespaceOk returns a tuple with the Namespace field value if set, nil otherwise and a boolean to check if the value has been set.

func (*Stack) GetOrganisationId

func (o *Stack) GetOrganisationId() string

GetOrganisationId returns the OrganisationId field value if set, zero value otherwise.

func (*Stack) GetOrganisationIdOk

func (o *Stack) GetOrganisationIdOk() (*string, bool)

GetOrganisationIdOk returns a tuple with the OrganisationId field value if set, nil otherwise and a boolean to check if the value has been set.

func (*Stack) GetProjectId

func (o *Stack) GetProjectId() string

GetProjectId returns the ProjectId field value if set, zero value otherwise.

func (*Stack) GetProjectIdOk

func (o *Stack) GetProjectIdOk() (*string, bool)

GetProjectIdOk returns a tuple with the ProjectId field value if set, nil otherwise and a boolean to check if the value has been set.

func (*Stack) GetRevision

func (o *Stack) GetRevision() string

GetRevision returns the Revision field value if set, zero value otherwise.

func (*Stack) GetRevisionOk

func (o *Stack) GetRevisionOk() (*string, bool)

GetRevisionOk returns a tuple with the Revision field value if set, nil otherwise and a boolean to check if the value has been set.

func (*Stack) GetSettings

func (o *Stack) GetSettings() StackSettings

GetSettings returns the Settings field value if set, zero value otherwise.

func (*Stack) GetSettingsOk

func (o *Stack) GetSettingsOk() (*StackSettings, bool)

GetSettingsOk returns a tuple with the Settings field value if set, nil otherwise and a boolean to check if the value has been set.

func (*Stack) GetSpec

func (o *Stack) GetSpec() StackSpec

GetSpec returns the Spec field value

func (*Stack) GetSpecOk

func (o *Stack) GetSpecOk() (*StackSpec, bool)

GetSpecOk returns a tuple with the Spec field value and a boolean to check if the value has been set.

func (*Stack) GetUpdatedAt

func (o *Stack) GetUpdatedAt() time.Time

GetUpdatedAt returns the UpdatedAt field value if set, zero value otherwise.

func (*Stack) GetUpdatedAtOk

func (o *Stack) 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 (*Stack) GetUserId

func (o *Stack) GetUserId() string

GetUserId returns the UserId field value if set, zero value otherwise.

func (*Stack) GetUserIdOk

func (o *Stack) 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 (*Stack) HasAnnotations

func (o *Stack) HasAnnotations() bool

HasAnnotations returns a boolean if a field has been set.

func (*Stack) HasConvergedRelease

func (o *Stack) HasConvergedRelease() bool

HasConvergedRelease returns a boolean if a field has been set.

func (*Stack) HasCreatedAt

func (o *Stack) HasCreatedAt() bool

HasCreatedAt returns a boolean if a field has been set.

func (*Stack) HasId

func (o *Stack) HasId() bool

HasId returns a boolean if a field has been set.

func (*Stack) HasLabels

func (o *Stack) HasLabels() bool

HasLabels returns a boolean if a field has been set.

func (*Stack) HasLatestRelease

func (o *Stack) HasLatestRelease() bool

HasLatestRelease returns a boolean if a field has been set.

func (*Stack) HasLifecycle

func (o *Stack) HasLifecycle() bool

HasLifecycle returns a boolean if a field has been set.

func (*Stack) HasNamespace

func (o *Stack) HasNamespace() bool

HasNamespace returns a boolean if a field has been set.

func (*Stack) HasOrganisationId

func (o *Stack) HasOrganisationId() bool

HasOrganisationId returns a boolean if a field has been set.

func (*Stack) HasProjectId

func (o *Stack) HasProjectId() bool

HasProjectId returns a boolean if a field has been set.

func (*Stack) HasRevision

func (o *Stack) HasRevision() bool

HasRevision returns a boolean if a field has been set.

func (*Stack) HasSettings

func (o *Stack) HasSettings() bool

HasSettings returns a boolean if a field has been set.

func (*Stack) HasUpdatedAt

func (o *Stack) HasUpdatedAt() bool

HasUpdatedAt returns a boolean if a field has been set.

func (*Stack) HasUserId

func (o *Stack) HasUserId() bool

HasUserId returns a boolean if a field has been set.

func (Stack) MarshalJSON

func (o Stack) MarshalJSON() ([]byte, error)

func (*Stack) SetAnnotations

func (o *Stack) SetAnnotations(v []Annotation)

SetAnnotations gets a reference to the given []Annotation and assigns it to the Annotations field.

func (*Stack) SetConvergedRelease

func (o *Stack) SetConvergedRelease(v ReleaseSummary)

SetConvergedRelease gets a reference to the given ReleaseSummary and assigns it to the ConvergedRelease field.

func (*Stack) SetCreatedAt

func (o *Stack) SetCreatedAt(v time.Time)

SetCreatedAt gets a reference to the given time.Time and assigns it to the CreatedAt field.

func (*Stack) SetId

func (o *Stack) SetId(v string)

SetId gets a reference to the given string and assigns it to the Id field.

func (*Stack) SetLabels

func (o *Stack) SetLabels(v []Label)

SetLabels gets a reference to the given []Label and assigns it to the Labels field.

func (*Stack) SetLatestRelease

func (o *Stack) SetLatestRelease(v ReleaseSummary)

SetLatestRelease gets a reference to the given ReleaseSummary and assigns it to the LatestRelease field.

func (*Stack) SetLifecycle

func (o *Stack) SetLifecycle(v StackLifecycle)

SetLifecycle gets a reference to the given StackLifecycle and assigns it to the Lifecycle field.

func (*Stack) SetName

func (o *Stack) SetName(v string)

SetName sets field value

func (*Stack) SetNamespace

func (o *Stack) SetNamespace(v string)

SetNamespace gets a reference to the given string and assigns it to the Namespace field.

func (*Stack) SetOrganisationId

func (o *Stack) SetOrganisationId(v string)

SetOrganisationId gets a reference to the given string and assigns it to the OrganisationId field.

func (*Stack) SetProjectId

func (o *Stack) SetProjectId(v string)

SetProjectId gets a reference to the given string and assigns it to the ProjectId field.

func (*Stack) SetRevision

func (o *Stack) SetRevision(v string)

SetRevision gets a reference to the given string and assigns it to the Revision field.

func (*Stack) SetSettings

func (o *Stack) SetSettings(v StackSettings)

SetSettings gets a reference to the given StackSettings and assigns it to the Settings field.

func (*Stack) SetSpec

func (o *Stack) SetSpec(v StackSpec)

SetSpec sets field value

func (*Stack) SetUpdatedAt

func (o *Stack) SetUpdatedAt(v time.Time)

SetUpdatedAt gets a reference to the given time.Time and assigns it to the UpdatedAt field.

func (*Stack) SetUserId

func (o *Stack) SetUserId(v string)

SetUserId gets a reference to the given string and assigns it to the UserId field.

type StackConnection

type StackConnection struct {
	// Stable connection identifier. Generated when omitted.
	Id *string `json:"id,omitempty"`
	// The relationship type. `env` injects values into environment variables, `volume_mount` mounts a volume into a resource, and `build_artifact_source` seeds a volume from build output.
	Kind string          `json:"kind"`
	From TopologyNodeRef `json:"from"`
	To   TopologyNodeRef `json:"to"`
	// Target/value mappings for kinds that move values, such as `env`.
	Mappings []ConnectionMapping    `json:"mappings,omitempty"`
	Config   *StackConnectionConfig `json:"config,omitempty"`
}

StackConnection A user-authored topology edge between two nodes in a stack.

func NewStackConnection

func NewStackConnection(kind string, from TopologyNodeRef, to TopologyNodeRef) *StackConnection

NewStackConnection instantiates a new StackConnection object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewStackConnectionWithDefaults

func NewStackConnectionWithDefaults() *StackConnection

NewStackConnectionWithDefaults instantiates a new StackConnection object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*StackConnection) GetConfig

func (o *StackConnection) GetConfig() StackConnectionConfig

GetConfig returns the Config field value if set, zero value otherwise.

func (*StackConnection) GetConfigOk

func (o *StackConnection) GetConfigOk() (*StackConnectionConfig, bool)

GetConfigOk returns a tuple with the Config field value if set, nil otherwise and a boolean to check if the value has been set.

func (*StackConnection) GetFrom

func (o *StackConnection) GetFrom() TopologyNodeRef

GetFrom returns the From field value

func (*StackConnection) GetFromOk

func (o *StackConnection) GetFromOk() (*TopologyNodeRef, bool)

GetFromOk returns a tuple with the From field value and a boolean to check if the value has been set.

func (*StackConnection) GetId

func (o *StackConnection) GetId() string

GetId returns the Id field value if set, zero value otherwise.

func (*StackConnection) GetIdOk

func (o *StackConnection) 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 (*StackConnection) GetKind

func (o *StackConnection) GetKind() string

GetKind returns the Kind field value

func (*StackConnection) GetKindOk

func (o *StackConnection) GetKindOk() (*string, bool)

GetKindOk returns a tuple with the Kind field value and a boolean to check if the value has been set.

func (*StackConnection) GetMappings

func (o *StackConnection) GetMappings() []ConnectionMapping

GetMappings returns the Mappings field value if set, zero value otherwise.

func (*StackConnection) GetMappingsOk

func (o *StackConnection) GetMappingsOk() ([]ConnectionMapping, bool)

GetMappingsOk returns a tuple with the Mappings field value if set, nil otherwise and a boolean to check if the value has been set.

func (*StackConnection) GetTo

func (o *StackConnection) GetTo() TopologyNodeRef

GetTo returns the To field value

func (*StackConnection) GetToOk

func (o *StackConnection) GetToOk() (*TopologyNodeRef, bool)

GetToOk returns a tuple with the To field value and a boolean to check if the value has been set.

func (*StackConnection) HasConfig

func (o *StackConnection) HasConfig() bool

HasConfig returns a boolean if a field has been set.

func (*StackConnection) HasId

func (o *StackConnection) HasId() bool

HasId returns a boolean if a field has been set.

func (*StackConnection) HasMappings

func (o *StackConnection) HasMappings() bool

HasMappings returns a boolean if a field has been set.

func (StackConnection) MarshalJSON

func (o StackConnection) MarshalJSON() ([]byte, error)

func (*StackConnection) SetConfig

func (o *StackConnection) SetConfig(v StackConnectionConfig)

SetConfig gets a reference to the given StackConnectionConfig and assigns it to the Config field.

func (*StackConnection) SetFrom

func (o *StackConnection) SetFrom(v TopologyNodeRef)

SetFrom sets field value

func (*StackConnection) SetId

func (o *StackConnection) SetId(v string)

SetId gets a reference to the given string and assigns it to the Id field.

func (*StackConnection) SetKind

func (o *StackConnection) SetKind(v string)

SetKind sets field value

func (*StackConnection) SetMappings

func (o *StackConnection) SetMappings(v []ConnectionMapping)

SetMappings gets a reference to the given []ConnectionMapping and assigns it to the Mappings field.

func (*StackConnection) SetTo

func (o *StackConnection) SetTo(v TopologyNodeRef)

SetTo sets field value

type StackConnectionConfig

type StackConnectionConfig struct {
	BuildArtifactSourceConfig *BuildArtifactSourceConfig
	PostgresEnvConfig         *PostgresEnvConfig
	VolumeMountConfig         *VolumeMountConfig
}

StackConnectionConfig - Kind-specific connection configuration. The shape depends on the connection kind and source type: use PostgresEnvConfig when kind is env and from.type is addon/postgres, VolumeMountConfig when kind is volume_mount, and BuildArtifactSourceConfig when kind is build_artifact_source. Omit config entirely for env connections from stack_resource or secret sources.

func BuildArtifactSourceConfigAsStackConnectionConfig

func BuildArtifactSourceConfigAsStackConnectionConfig(v *BuildArtifactSourceConfig) StackConnectionConfig

BuildArtifactSourceConfigAsStackConnectionConfig is a convenience function that returns BuildArtifactSourceConfig wrapped in StackConnectionConfig

func PostgresEnvConfigAsStackConnectionConfig

func PostgresEnvConfigAsStackConnectionConfig(v *PostgresEnvConfig) StackConnectionConfig

PostgresEnvConfigAsStackConnectionConfig is a convenience function that returns PostgresEnvConfig wrapped in StackConnectionConfig

func VolumeMountConfigAsStackConnectionConfig

func VolumeMountConfigAsStackConnectionConfig(v *VolumeMountConfig) StackConnectionConfig

VolumeMountConfigAsStackConnectionConfig is a convenience function that returns VolumeMountConfig wrapped in StackConnectionConfig

func (*StackConnectionConfig) GetActualInstance

func (obj *StackConnectionConfig) GetActualInstance() interface{}

Get the actual instance

func (StackConnectionConfig) MarshalJSON

func (src StackConnectionConfig) MarshalJSON() ([]byte, error)

Marshal data from the first non-nil pointers in the struct to JSON

func (*StackConnectionConfig) UnmarshalJSON

func (dst *StackConnectionConfig) UnmarshalJSON(data []byte) error

Unmarshal JSON data into one of the pointers in the struct

type StackConnectionList

type StackConnectionList struct {
	Items []StackConnection `json:"items,omitempty"`
	Total *int32            `json:"total,omitempty"`
}

StackConnectionList struct for StackConnectionList

func NewStackConnectionList

func NewStackConnectionList() *StackConnectionList

NewStackConnectionList instantiates a new StackConnectionList object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewStackConnectionListWithDefaults

func NewStackConnectionListWithDefaults() *StackConnectionList

NewStackConnectionListWithDefaults instantiates a new StackConnectionList object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*StackConnectionList) GetItems

func (o *StackConnectionList) GetItems() []StackConnection

GetItems returns the Items field value if set, zero value otherwise.

func (*StackConnectionList) GetItemsOk

func (o *StackConnectionList) GetItemsOk() ([]StackConnection, bool)

GetItemsOk returns a tuple with the Items field value if set, nil otherwise and a boolean to check if the value has been set.

func (*StackConnectionList) GetTotal

func (o *StackConnectionList) GetTotal() int32

GetTotal returns the Total field value if set, zero value otherwise.

func (*StackConnectionList) GetTotalOk

func (o *StackConnectionList) GetTotalOk() (*int32, 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 (*StackConnectionList) HasItems

func (o *StackConnectionList) HasItems() bool

HasItems returns a boolean if a field has been set.

func (*StackConnectionList) HasTotal

func (o *StackConnectionList) HasTotal() bool

HasTotal returns a boolean if a field has been set.

func (StackConnectionList) MarshalJSON

func (o StackConnectionList) MarshalJSON() ([]byte, error)

func (*StackConnectionList) SetItems

func (o *StackConnectionList) SetItems(v []StackConnection)

SetItems gets a reference to the given []StackConnection and assigns it to the Items field.

func (*StackConnectionList) SetTotal

func (o *StackConnectionList) SetTotal(v int32)

SetTotal gets a reference to the given int32 and assigns it to the Total field.

type StackLifecycle

type StackLifecycle string

StackLifecycle Coarse stack entity lifecycle. Deploy/runtime status lives on releases.

const (
	STACK_LIFECYCLE_ACTIVE   StackLifecycle = "active"
	STACK_LIFECYCLE_DELETING StackLifecycle = "deleting"
)

List of StackLifecycle

func NewStackLifecycleFromValue

func NewStackLifecycleFromValue(v string) (*StackLifecycle, error)

NewStackLifecycleFromValue returns a pointer to a valid StackLifecycle for the value passed as argument, or an error if the value passed is not allowed by the enum

func (StackLifecycle) IsValid

func (v StackLifecycle) IsValid() bool

IsValid return true if the value is valid for the enum, false otherwise

func (StackLifecycle) Ptr

func (v StackLifecycle) Ptr() *StackLifecycle

Ptr returns reference to StackLifecycle value

func (*StackLifecycle) UnmarshalJSON

func (v *StackLifecycle) UnmarshalJSON(src []byte) error

type StackList

type StackList struct {
	Items []Stack `json:"items,omitempty"`
	Total *int32  `json:"total,omitempty"`
}

StackList struct for StackList

func NewStackList

func NewStackList() *StackList

NewStackList instantiates a new StackList object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewStackListWithDefaults

func NewStackListWithDefaults() *StackList

NewStackListWithDefaults instantiates a new StackList object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*StackList) GetItems

func (o *StackList) GetItems() []Stack

GetItems returns the Items field value if set, zero value otherwise.

func (*StackList) GetItemsOk

func (o *StackList) GetItemsOk() ([]Stack, bool)

GetItemsOk returns a tuple with the Items field value if set, nil otherwise and a boolean to check if the value has been set.

func (*StackList) GetTotal

func (o *StackList) GetTotal() int32

GetTotal returns the Total field value if set, zero value otherwise.

func (*StackList) GetTotalOk

func (o *StackList) GetTotalOk() (*int32, 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 (*StackList) HasItems

func (o *StackList) HasItems() bool

HasItems returns a boolean if a field has been set.

func (*StackList) HasTotal

func (o *StackList) HasTotal() bool

HasTotal returns a boolean if a field has been set.

func (StackList) MarshalJSON

func (o StackList) MarshalJSON() ([]byte, error)

func (*StackList) SetItems

func (o *StackList) SetItems(v []Stack)

SetItems gets a reference to the given []Stack and assigns it to the Items field.

func (*StackList) SetTotal

func (o *StackList) SetTotal(v int32)

SetTotal gets a reference to the given int32 and assigns it to the Total field.

type StackPreviewConfig

type StackPreviewConfig struct {
	Id                *string               `json:"id,omitempty"`
	OrganisationId    *string               `json:"organisation_id,omitempty"`
	ProjectId         *string               `json:"project_id,omitempty"`
	UserId            *string               `json:"user_id,omitempty"`
	Name              *string               `json:"name,omitempty"`
	Description       *string               `json:"description,omitempty"`
	GitRepository     *PreviewGitRepository `json:"git_repository,omitempty"`
	StackfilePath     *string               `json:"stackfile_path,omitempty"`
	MaxActivePreviews *int32                `json:"max_active_previews,omitempty"`
	// Env var overrides applied to every preview environment; may use secret references.
	Env         []EnvVar     `json:"env,omitempty"`
	Labels      []Label      `json:"labels,omitempty"`
	Annotations []Annotation `json:"annotations,omitempty"`
	CreatedAt   *time.Time   `json:"created_at,omitempty"`
	UpdatedAt   *time.Time   `json:"updated_at,omitempty"`
}

StackPreviewConfig struct for StackPreviewConfig

func NewStackPreviewConfig

func NewStackPreviewConfig() *StackPreviewConfig

NewStackPreviewConfig instantiates a new StackPreviewConfig object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewStackPreviewConfigWithDefaults

func NewStackPreviewConfigWithDefaults() *StackPreviewConfig

NewStackPreviewConfigWithDefaults instantiates a new StackPreviewConfig object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*StackPreviewConfig) GetAnnotations

func (o *StackPreviewConfig) GetAnnotations() []Annotation

GetAnnotations returns the Annotations field value if set, zero value otherwise.

func (*StackPreviewConfig) GetAnnotationsOk

func (o *StackPreviewConfig) GetAnnotationsOk() ([]Annotation, bool)

GetAnnotationsOk returns a tuple with the Annotations field value if set, nil otherwise and a boolean to check if the value has been set.

func (*StackPreviewConfig) GetCreatedAt

func (o *StackPreviewConfig) GetCreatedAt() time.Time

GetCreatedAt returns the CreatedAt field value if set, zero value otherwise.

func (*StackPreviewConfig) GetCreatedAtOk

func (o *StackPreviewConfig) 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 (*StackPreviewConfig) GetDescription

func (o *StackPreviewConfig) GetDescription() string

GetDescription returns the Description field value if set, zero value otherwise.

func (*StackPreviewConfig) GetDescriptionOk

func (o *StackPreviewConfig) 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 (*StackPreviewConfig) GetEnv

func (o *StackPreviewConfig) GetEnv() []EnvVar

GetEnv returns the Env field value if set, zero value otherwise.

func (*StackPreviewConfig) GetEnvOk

func (o *StackPreviewConfig) GetEnvOk() ([]EnvVar, 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 (*StackPreviewConfig) GetGitRepository

func (o *StackPreviewConfig) GetGitRepository() PreviewGitRepository

GetGitRepository returns the GitRepository field value if set, zero value otherwise.

func (*StackPreviewConfig) GetGitRepositoryOk

func (o *StackPreviewConfig) GetGitRepositoryOk() (*PreviewGitRepository, bool)

GetGitRepositoryOk returns a tuple with the GitRepository field value if set, nil otherwise and a boolean to check if the value has been set.

func (*StackPreviewConfig) GetId

func (o *StackPreviewConfig) GetId() string

GetId returns the Id field value if set, zero value otherwise.

func (*StackPreviewConfig) GetIdOk

func (o *StackPreviewConfig) 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 (*StackPreviewConfig) GetLabels

func (o *StackPreviewConfig) GetLabels() []Label

GetLabels returns the Labels field value if set, zero value otherwise.

func (*StackPreviewConfig) GetLabelsOk

func (o *StackPreviewConfig) GetLabelsOk() ([]Label, 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 (*StackPreviewConfig) GetMaxActivePreviews

func (o *StackPreviewConfig) GetMaxActivePreviews() int32

GetMaxActivePreviews returns the MaxActivePreviews field value if set, zero value otherwise.

func (*StackPreviewConfig) GetMaxActivePreviewsOk

func (o *StackPreviewConfig) GetMaxActivePreviewsOk() (*int32, bool)

GetMaxActivePreviewsOk returns a tuple with the MaxActivePreviews field value if set, nil otherwise and a boolean to check if the value has been set.

func (*StackPreviewConfig) GetName

func (o *StackPreviewConfig) GetName() string

GetName returns the Name field value if set, zero value otherwise.

func (*StackPreviewConfig) GetNameOk

func (o *StackPreviewConfig) 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 (*StackPreviewConfig) GetOrganisationId

func (o *StackPreviewConfig) GetOrganisationId() string

GetOrganisationId returns the OrganisationId field value if set, zero value otherwise.

func (*StackPreviewConfig) GetOrganisationIdOk

func (o *StackPreviewConfig) GetOrganisationIdOk() (*string, bool)

GetOrganisationIdOk returns a tuple with the OrganisationId field value if set, nil otherwise and a boolean to check if the value has been set.

func (*StackPreviewConfig) GetProjectId

func (o *StackPreviewConfig) GetProjectId() string

GetProjectId returns the ProjectId field value if set, zero value otherwise.

func (*StackPreviewConfig) GetProjectIdOk

func (o *StackPreviewConfig) GetProjectIdOk() (*string, bool)

GetProjectIdOk returns a tuple with the ProjectId field value if set, nil otherwise and a boolean to check if the value has been set.

func (*StackPreviewConfig) GetStackfilePath

func (o *StackPreviewConfig) GetStackfilePath() string

GetStackfilePath returns the StackfilePath field value if set, zero value otherwise.

func (*StackPreviewConfig) GetStackfilePathOk

func (o *StackPreviewConfig) GetStackfilePathOk() (*string, bool)

GetStackfilePathOk returns a tuple with the StackfilePath field value if set, nil otherwise and a boolean to check if the value has been set.

func (*StackPreviewConfig) GetUpdatedAt

func (o *StackPreviewConfig) GetUpdatedAt() time.Time

GetUpdatedAt returns the UpdatedAt field value if set, zero value otherwise.

func (*StackPreviewConfig) GetUpdatedAtOk

func (o *StackPreviewConfig) 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 (*StackPreviewConfig) GetUserId

func (o *StackPreviewConfig) GetUserId() string

GetUserId returns the UserId field value if set, zero value otherwise.

func (*StackPreviewConfig) GetUserIdOk

func (o *StackPreviewConfig) 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 (*StackPreviewConfig) HasAnnotations

func (o *StackPreviewConfig) HasAnnotations() bool

HasAnnotations returns a boolean if a field has been set.

func (*StackPreviewConfig) HasCreatedAt

func (o *StackPreviewConfig) HasCreatedAt() bool

HasCreatedAt returns a boolean if a field has been set.

func (*StackPreviewConfig) HasDescription

func (o *StackPreviewConfig) HasDescription() bool

HasDescription returns a boolean if a field has been set.

func (*StackPreviewConfig) HasEnv

func (o *StackPreviewConfig) HasEnv() bool

HasEnv returns a boolean if a field has been set.

func (*StackPreviewConfig) HasGitRepository

func (o *StackPreviewConfig) HasGitRepository() bool

HasGitRepository returns a boolean if a field has been set.

func (*StackPreviewConfig) HasId

func (o *StackPreviewConfig) HasId() bool

HasId returns a boolean if a field has been set.

func (*StackPreviewConfig) HasLabels

func (o *StackPreviewConfig) HasLabels() bool

HasLabels returns a boolean if a field has been set.

func (*StackPreviewConfig) HasMaxActivePreviews

func (o *StackPreviewConfig) HasMaxActivePreviews() bool

HasMaxActivePreviews returns a boolean if a field has been set.

func (*StackPreviewConfig) HasName

func (o *StackPreviewConfig) HasName() bool

HasName returns a boolean if a field has been set.

func (*StackPreviewConfig) HasOrganisationId

func (o *StackPreviewConfig) HasOrganisationId() bool

HasOrganisationId returns a boolean if a field has been set.

func (*StackPreviewConfig) HasProjectId

func (o *StackPreviewConfig) HasProjectId() bool

HasProjectId returns a boolean if a field has been set.

func (*StackPreviewConfig) HasStackfilePath

func (o *StackPreviewConfig) HasStackfilePath() bool

HasStackfilePath returns a boolean if a field has been set.

func (*StackPreviewConfig) HasUpdatedAt

func (o *StackPreviewConfig) HasUpdatedAt() bool

HasUpdatedAt returns a boolean if a field has been set.

func (*StackPreviewConfig) HasUserId

func (o *StackPreviewConfig) HasUserId() bool

HasUserId returns a boolean if a field has been set.

func (StackPreviewConfig) MarshalJSON

func (o StackPreviewConfig) MarshalJSON() ([]byte, error)

func (*StackPreviewConfig) SetAnnotations

func (o *StackPreviewConfig) SetAnnotations(v []Annotation)

SetAnnotations gets a reference to the given []Annotation and assigns it to the Annotations field.

func (*StackPreviewConfig) SetCreatedAt

func (o *StackPreviewConfig) SetCreatedAt(v time.Time)

SetCreatedAt gets a reference to the given time.Time and assigns it to the CreatedAt field.

func (*StackPreviewConfig) SetDescription

func (o *StackPreviewConfig) SetDescription(v string)

SetDescription gets a reference to the given string and assigns it to the Description field.

func (*StackPreviewConfig) SetEnv

func (o *StackPreviewConfig) SetEnv(v []EnvVar)

SetEnv gets a reference to the given []EnvVar and assigns it to the Env field.

func (*StackPreviewConfig) SetGitRepository

func (o *StackPreviewConfig) SetGitRepository(v PreviewGitRepository)

SetGitRepository gets a reference to the given PreviewGitRepository and assigns it to the GitRepository field.

func (*StackPreviewConfig) SetId

func (o *StackPreviewConfig) SetId(v string)

SetId gets a reference to the given string and assigns it to the Id field.

func (*StackPreviewConfig) SetLabels

func (o *StackPreviewConfig) SetLabels(v []Label)

SetLabels gets a reference to the given []Label and assigns it to the Labels field.

func (*StackPreviewConfig) SetMaxActivePreviews

func (o *StackPreviewConfig) SetMaxActivePreviews(v int32)

SetMaxActivePreviews gets a reference to the given int32 and assigns it to the MaxActivePreviews field.

func (*StackPreviewConfig) SetName

func (o *StackPreviewConfig) SetName(v string)

SetName gets a reference to the given string and assigns it to the Name field.

func (*StackPreviewConfig) SetOrganisationId

func (o *StackPreviewConfig) SetOrganisationId(v string)

SetOrganisationId gets a reference to the given string and assigns it to the OrganisationId field.

func (*StackPreviewConfig) SetProjectId

func (o *StackPreviewConfig) SetProjectId(v string)

SetProjectId gets a reference to the given string and assigns it to the ProjectId field.

func (*StackPreviewConfig) SetStackfilePath

func (o *StackPreviewConfig) SetStackfilePath(v string)

SetStackfilePath gets a reference to the given string and assigns it to the StackfilePath field.

func (*StackPreviewConfig) SetUpdatedAt

func (o *StackPreviewConfig) SetUpdatedAt(v time.Time)

SetUpdatedAt gets a reference to the given time.Time and assigns it to the UpdatedAt field.

func (*StackPreviewConfig) SetUserId

func (o *StackPreviewConfig) SetUserId(v string)

SetUserId gets a reference to the given string and assigns it to the UserId field.

type StackPreviewConfigCreate

type StackPreviewConfigCreate struct {
	Name              string               `json:"name"`
	GitRepository     PreviewGitRepository `json:"git_repository"`
	Description       *string              `json:"description,omitempty"`
	StackfilePath     *string              `json:"stackfile_path,omitempty"`
	MaxActivePreviews *int32               `json:"max_active_previews,omitempty"`
	// Env var overrides applied to every preview environment; may use secret references.
	Env         []EnvVar     `json:"env,omitempty"`
	Labels      []Label      `json:"labels,omitempty"`
	Annotations []Annotation `json:"annotations,omitempty"`
}

StackPreviewConfigCreate struct for StackPreviewConfigCreate

func NewStackPreviewConfigCreate

func NewStackPreviewConfigCreate(name string, gitRepository PreviewGitRepository) *StackPreviewConfigCreate

NewStackPreviewConfigCreate instantiates a new StackPreviewConfigCreate object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewStackPreviewConfigCreateWithDefaults

func NewStackPreviewConfigCreateWithDefaults() *StackPreviewConfigCreate

NewStackPreviewConfigCreateWithDefaults instantiates a new StackPreviewConfigCreate object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*StackPreviewConfigCreate) GetAnnotations

func (o *StackPreviewConfigCreate) GetAnnotations() []Annotation

GetAnnotations returns the Annotations field value if set, zero value otherwise.

func (*StackPreviewConfigCreate) GetAnnotationsOk

func (o *StackPreviewConfigCreate) GetAnnotationsOk() ([]Annotation, bool)

GetAnnotationsOk returns a tuple with the Annotations field value if set, nil otherwise and a boolean to check if the value has been set.

func (*StackPreviewConfigCreate) GetDescription

func (o *StackPreviewConfigCreate) GetDescription() string

GetDescription returns the Description field value if set, zero value otherwise.

func (*StackPreviewConfigCreate) GetDescriptionOk

func (o *StackPreviewConfigCreate) 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 (*StackPreviewConfigCreate) GetEnv

func (o *StackPreviewConfigCreate) GetEnv() []EnvVar

GetEnv returns the Env field value if set, zero value otherwise.

func (*StackPreviewConfigCreate) GetEnvOk

func (o *StackPreviewConfigCreate) GetEnvOk() ([]EnvVar, 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 (*StackPreviewConfigCreate) GetGitRepository

func (o *StackPreviewConfigCreate) GetGitRepository() PreviewGitRepository

GetGitRepository returns the GitRepository field value

func (*StackPreviewConfigCreate) GetGitRepositoryOk

func (o *StackPreviewConfigCreate) GetGitRepositoryOk() (*PreviewGitRepository, bool)

GetGitRepositoryOk returns a tuple with the GitRepository field value and a boolean to check if the value has been set.

func (*StackPreviewConfigCreate) GetLabels

func (o *StackPreviewConfigCreate) GetLabels() []Label

GetLabels returns the Labels field value if set, zero value otherwise.

func (*StackPreviewConfigCreate) GetLabelsOk

func (o *StackPreviewConfigCreate) GetLabelsOk() ([]Label, 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 (*StackPreviewConfigCreate) GetMaxActivePreviews

func (o *StackPreviewConfigCreate) GetMaxActivePreviews() int32

GetMaxActivePreviews returns the MaxActivePreviews field value if set, zero value otherwise.

func (*StackPreviewConfigCreate) GetMaxActivePreviewsOk

func (o *StackPreviewConfigCreate) GetMaxActivePreviewsOk() (*int32, bool)

GetMaxActivePreviewsOk returns a tuple with the MaxActivePreviews field value if set, nil otherwise and a boolean to check if the value has been set.

func (*StackPreviewConfigCreate) GetName

func (o *StackPreviewConfigCreate) GetName() string

GetName returns the Name field value

func (*StackPreviewConfigCreate) GetNameOk

func (o *StackPreviewConfigCreate) GetNameOk() (*string, bool)

GetNameOk returns a tuple with the Name field value and a boolean to check if the value has been set.

func (*StackPreviewConfigCreate) GetStackfilePath

func (o *StackPreviewConfigCreate) GetStackfilePath() string

GetStackfilePath returns the StackfilePath field value if set, zero value otherwise.

func (*StackPreviewConfigCreate) GetStackfilePathOk

func (o *StackPreviewConfigCreate) GetStackfilePathOk() (*string, bool)

GetStackfilePathOk returns a tuple with the StackfilePath field value if set, nil otherwise and a boolean to check if the value has been set.

func (*StackPreviewConfigCreate) HasAnnotations

func (o *StackPreviewConfigCreate) HasAnnotations() bool

HasAnnotations returns a boolean if a field has been set.

func (*StackPreviewConfigCreate) HasDescription

func (o *StackPreviewConfigCreate) HasDescription() bool

HasDescription returns a boolean if a field has been set.

func (*StackPreviewConfigCreate) HasEnv

func (o *StackPreviewConfigCreate) HasEnv() bool

HasEnv returns a boolean if a field has been set.

func (*StackPreviewConfigCreate) HasLabels

func (o *StackPreviewConfigCreate) HasLabels() bool

HasLabels returns a boolean if a field has been set.

func (*StackPreviewConfigCreate) HasMaxActivePreviews

func (o *StackPreviewConfigCreate) HasMaxActivePreviews() bool

HasMaxActivePreviews returns a boolean if a field has been set.

func (*StackPreviewConfigCreate) HasStackfilePath

func (o *StackPreviewConfigCreate) HasStackfilePath() bool

HasStackfilePath returns a boolean if a field has been set.

func (StackPreviewConfigCreate) MarshalJSON

func (o StackPreviewConfigCreate) MarshalJSON() ([]byte, error)

func (*StackPreviewConfigCreate) SetAnnotations

func (o *StackPreviewConfigCreate) SetAnnotations(v []Annotation)

SetAnnotations gets a reference to the given []Annotation and assigns it to the Annotations field.

func (*StackPreviewConfigCreate) SetDescription

func (o *StackPreviewConfigCreate) SetDescription(v string)

SetDescription gets a reference to the given string and assigns it to the Description field.

func (*StackPreviewConfigCreate) SetEnv

func (o *StackPreviewConfigCreate) SetEnv(v []EnvVar)

SetEnv gets a reference to the given []EnvVar and assigns it to the Env field.

func (*StackPreviewConfigCreate) SetGitRepository

func (o *StackPreviewConfigCreate) SetGitRepository(v PreviewGitRepository)

SetGitRepository sets field value

func (*StackPreviewConfigCreate) SetLabels

func (o *StackPreviewConfigCreate) SetLabels(v []Label)

SetLabels gets a reference to the given []Label and assigns it to the Labels field.

func (*StackPreviewConfigCreate) SetMaxActivePreviews

func (o *StackPreviewConfigCreate) SetMaxActivePreviews(v int32)

SetMaxActivePreviews gets a reference to the given int32 and assigns it to the MaxActivePreviews field.

func (*StackPreviewConfigCreate) SetName

func (o *StackPreviewConfigCreate) SetName(v string)

SetName sets field value

func (*StackPreviewConfigCreate) SetStackfilePath

func (o *StackPreviewConfigCreate) SetStackfilePath(v string)

SetStackfilePath gets a reference to the given string and assigns it to the StackfilePath field.

type StackPreviewConfigList

type StackPreviewConfigList struct {
	Items []StackPreviewConfig `json:"items,omitempty"`
	// Total number of records
	Total *int32 `json:"total,omitempty"`
	// Current page number
	Page *int32 `json:"page,omitempty"`
	// Number of items per page
	PageSize *int32 `json:"page_size,omitempty"`
	// Total number of pages
	TotalPages *int32 `json:"total_pages,omitempty"`
}

StackPreviewConfigList struct for StackPreviewConfigList

func NewStackPreviewConfigList

func NewStackPreviewConfigList() *StackPreviewConfigList

NewStackPreviewConfigList instantiates a new StackPreviewConfigList object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewStackPreviewConfigListWithDefaults

func NewStackPreviewConfigListWithDefaults() *StackPreviewConfigList

NewStackPreviewConfigListWithDefaults instantiates a new StackPreviewConfigList object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*StackPreviewConfigList) GetItems

GetItems returns the Items field value if set, zero value otherwise.

func (*StackPreviewConfigList) GetItemsOk

func (o *StackPreviewConfigList) GetItemsOk() ([]StackPreviewConfig, bool)

GetItemsOk returns a tuple with the Items field value if set, nil otherwise and a boolean to check if the value has been set.

func (*StackPreviewConfigList) GetPage

func (o *StackPreviewConfigList) GetPage() int32

GetPage returns the Page field value if set, zero value otherwise.

func (*StackPreviewConfigList) GetPageOk

func (o *StackPreviewConfigList) GetPageOk() (*int32, bool)

GetPageOk returns a tuple with the Page field value if set, nil otherwise and a boolean to check if the value has been set.

func (*StackPreviewConfigList) GetPageSize

func (o *StackPreviewConfigList) GetPageSize() int32

GetPageSize returns the PageSize field value if set, zero value otherwise.

func (*StackPreviewConfigList) GetPageSizeOk

func (o *StackPreviewConfigList) GetPageSizeOk() (*int32, bool)

GetPageSizeOk returns a tuple with the PageSize field value if set, nil otherwise and a boolean to check if the value has been set.

func (*StackPreviewConfigList) GetTotal

func (o *StackPreviewConfigList) GetTotal() int32

GetTotal returns the Total field value if set, zero value otherwise.

func (*StackPreviewConfigList) GetTotalOk

func (o *StackPreviewConfigList) GetTotalOk() (*int32, 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 (*StackPreviewConfigList) GetTotalPages

func (o *StackPreviewConfigList) GetTotalPages() int32

GetTotalPages returns the TotalPages field value if set, zero value otherwise.

func (*StackPreviewConfigList) GetTotalPagesOk

func (o *StackPreviewConfigList) GetTotalPagesOk() (*int32, bool)

GetTotalPagesOk returns a tuple with the TotalPages field value if set, nil otherwise and a boolean to check if the value has been set.

func (*StackPreviewConfigList) HasItems

func (o *StackPreviewConfigList) HasItems() bool

HasItems returns a boolean if a field has been set.

func (*StackPreviewConfigList) HasPage

func (o *StackPreviewConfigList) HasPage() bool

HasPage returns a boolean if a field has been set.

func (*StackPreviewConfigList) HasPageSize

func (o *StackPreviewConfigList) HasPageSize() bool

HasPageSize returns a boolean if a field has been set.

func (*StackPreviewConfigList) HasTotal

func (o *StackPreviewConfigList) HasTotal() bool

HasTotal returns a boolean if a field has been set.

func (*StackPreviewConfigList) HasTotalPages

func (o *StackPreviewConfigList) HasTotalPages() bool

HasTotalPages returns a boolean if a field has been set.

func (StackPreviewConfigList) MarshalJSON

func (o StackPreviewConfigList) MarshalJSON() ([]byte, error)

func (*StackPreviewConfigList) SetItems

func (o *StackPreviewConfigList) SetItems(v []StackPreviewConfig)

SetItems gets a reference to the given []StackPreviewConfig and assigns it to the Items field.

func (*StackPreviewConfigList) SetPage

func (o *StackPreviewConfigList) SetPage(v int32)

SetPage gets a reference to the given int32 and assigns it to the Page field.

func (*StackPreviewConfigList) SetPageSize

func (o *StackPreviewConfigList) SetPageSize(v int32)

SetPageSize gets a reference to the given int32 and assigns it to the PageSize field.

func (*StackPreviewConfigList) SetTotal

func (o *StackPreviewConfigList) SetTotal(v int32)

SetTotal gets a reference to the given int32 and assigns it to the Total field.

func (*StackPreviewConfigList) SetTotalPages

func (o *StackPreviewConfigList) SetTotalPages(v int32)

SetTotalPages gets a reference to the given int32 and assigns it to the TotalPages field.

type StackPreviewConfigUpdate

type StackPreviewConfigUpdate struct {
	Description       *string               `json:"description,omitempty"`
	StackfilePath     *string               `json:"stackfile_path,omitempty"`
	MaxActivePreviews *int32                `json:"max_active_previews,omitempty"`
	GitRepository     *PreviewGitRepository `json:"git_repository,omitempty"`
	// Env var overrides applied to every preview environment; may use secret references.
	Env         []EnvVar     `json:"env,omitempty"`
	Labels      []Label      `json:"labels,omitempty"`
	Annotations []Annotation `json:"annotations,omitempty"`
}

StackPreviewConfigUpdate struct for StackPreviewConfigUpdate

func NewStackPreviewConfigUpdate

func NewStackPreviewConfigUpdate() *StackPreviewConfigUpdate

NewStackPreviewConfigUpdate instantiates a new StackPreviewConfigUpdate object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewStackPreviewConfigUpdateWithDefaults

func NewStackPreviewConfigUpdateWithDefaults() *StackPreviewConfigUpdate

NewStackPreviewConfigUpdateWithDefaults instantiates a new StackPreviewConfigUpdate object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*StackPreviewConfigUpdate) GetAnnotations

func (o *StackPreviewConfigUpdate) GetAnnotations() []Annotation

GetAnnotations returns the Annotations field value if set, zero value otherwise.

func (*StackPreviewConfigUpdate) GetAnnotationsOk

func (o *StackPreviewConfigUpdate) GetAnnotationsOk() ([]Annotation, bool)

GetAnnotationsOk returns a tuple with the Annotations field value if set, nil otherwise and a boolean to check if the value has been set.

func (*StackPreviewConfigUpdate) GetDescription

func (o *StackPreviewConfigUpdate) GetDescription() string

GetDescription returns the Description field value if set, zero value otherwise.

func (*StackPreviewConfigUpdate) GetDescriptionOk

func (o *StackPreviewConfigUpdate) 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 (*StackPreviewConfigUpdate) GetEnv

func (o *StackPreviewConfigUpdate) GetEnv() []EnvVar

GetEnv returns the Env field value if set, zero value otherwise.

func (*StackPreviewConfigUpdate) GetEnvOk

func (o *StackPreviewConfigUpdate) GetEnvOk() ([]EnvVar, 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 (*StackPreviewConfigUpdate) GetGitRepository

func (o *StackPreviewConfigUpdate) GetGitRepository() PreviewGitRepository

GetGitRepository returns the GitRepository field value if set, zero value otherwise.

func (*StackPreviewConfigUpdate) GetGitRepositoryOk

func (o *StackPreviewConfigUpdate) GetGitRepositoryOk() (*PreviewGitRepository, bool)

GetGitRepositoryOk returns a tuple with the GitRepository field value if set, nil otherwise and a boolean to check if the value has been set.

func (*StackPreviewConfigUpdate) GetLabels

func (o *StackPreviewConfigUpdate) GetLabels() []Label

GetLabels returns the Labels field value if set, zero value otherwise.

func (*StackPreviewConfigUpdate) GetLabelsOk

func (o *StackPreviewConfigUpdate) GetLabelsOk() ([]Label, 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 (*StackPreviewConfigUpdate) GetMaxActivePreviews

func (o *StackPreviewConfigUpdate) GetMaxActivePreviews() int32

GetMaxActivePreviews returns the MaxActivePreviews field value if set, zero value otherwise.

func (*StackPreviewConfigUpdate) GetMaxActivePreviewsOk

func (o *StackPreviewConfigUpdate) GetMaxActivePreviewsOk() (*int32, bool)

GetMaxActivePreviewsOk returns a tuple with the MaxActivePreviews field value if set, nil otherwise and a boolean to check if the value has been set.

func (*StackPreviewConfigUpdate) GetStackfilePath

func (o *StackPreviewConfigUpdate) GetStackfilePath() string

GetStackfilePath returns the StackfilePath field value if set, zero value otherwise.

func (*StackPreviewConfigUpdate) GetStackfilePathOk

func (o *StackPreviewConfigUpdate) GetStackfilePathOk() (*string, bool)

GetStackfilePathOk returns a tuple with the StackfilePath field value if set, nil otherwise and a boolean to check if the value has been set.

func (*StackPreviewConfigUpdate) HasAnnotations

func (o *StackPreviewConfigUpdate) HasAnnotations() bool

HasAnnotations returns a boolean if a field has been set.

func (*StackPreviewConfigUpdate) HasDescription

func (o *StackPreviewConfigUpdate) HasDescription() bool

HasDescription returns a boolean if a field has been set.

func (*StackPreviewConfigUpdate) HasEnv

func (o *StackPreviewConfigUpdate) HasEnv() bool

HasEnv returns a boolean if a field has been set.

func (*StackPreviewConfigUpdate) HasGitRepository

func (o *StackPreviewConfigUpdate) HasGitRepository() bool

HasGitRepository returns a boolean if a field has been set.

func (*StackPreviewConfigUpdate) HasLabels

func (o *StackPreviewConfigUpdate) HasLabels() bool

HasLabels returns a boolean if a field has been set.

func (*StackPreviewConfigUpdate) HasMaxActivePreviews

func (o *StackPreviewConfigUpdate) HasMaxActivePreviews() bool

HasMaxActivePreviews returns a boolean if a field has been set.

func (*StackPreviewConfigUpdate) HasStackfilePath

func (o *StackPreviewConfigUpdate) HasStackfilePath() bool

HasStackfilePath returns a boolean if a field has been set.

func (StackPreviewConfigUpdate) MarshalJSON

func (o StackPreviewConfigUpdate) MarshalJSON() ([]byte, error)

func (*StackPreviewConfigUpdate) SetAnnotations

func (o *StackPreviewConfigUpdate) SetAnnotations(v []Annotation)

SetAnnotations gets a reference to the given []Annotation and assigns it to the Annotations field.

func (*StackPreviewConfigUpdate) SetDescription

func (o *StackPreviewConfigUpdate) SetDescription(v string)

SetDescription gets a reference to the given string and assigns it to the Description field.

func (*StackPreviewConfigUpdate) SetEnv

func (o *StackPreviewConfigUpdate) SetEnv(v []EnvVar)

SetEnv gets a reference to the given []EnvVar and assigns it to the Env field.

func (*StackPreviewConfigUpdate) SetGitRepository

func (o *StackPreviewConfigUpdate) SetGitRepository(v PreviewGitRepository)

SetGitRepository gets a reference to the given PreviewGitRepository and assigns it to the GitRepository field.

func (*StackPreviewConfigUpdate) SetLabels

func (o *StackPreviewConfigUpdate) SetLabels(v []Label)

SetLabels gets a reference to the given []Label and assigns it to the Labels field.

func (*StackPreviewConfigUpdate) SetMaxActivePreviews

func (o *StackPreviewConfigUpdate) SetMaxActivePreviews(v int32)

SetMaxActivePreviews gets a reference to the given int32 and assigns it to the MaxActivePreviews field.

func (*StackPreviewConfigUpdate) SetStackfilePath

func (o *StackPreviewConfigUpdate) SetStackfilePath(v string)

SetStackfilePath gets a reference to the given string and assigns it to the StackfilePath field.

type StackRelease

type StackRelease struct {
	Id               *string                  `json:"id,omitempty"`
	StackId          *string                  `json:"stack_id,omitempty"`
	Sequence         *int32                   `json:"sequence,omitempty"`
	State            *StackReleaseState       `json:"state,omitempty"`
	Message          *string                  `json:"message,omitempty"`
	Cause            *ReleaseCause            `json:"cause,omitempty"`
	SnapshotRevision *string                  `json:"snapshot_revision,omitempty"`
	ManifestRevision *string                  `json:"manifest_revision,omitempty"`
	RendererVersion  *string                  `json:"renderer_version,omitempty"`
	Pins             *ReleasePins             `json:"pins,omitempty"`
	Outcome          *ReleaseOutcome          `json:"outcome,omitempty"`
	CreatedBy        *string                  `json:"created_by,omitempty"`
	CreatedAt        *time.Time               `json:"created_at,omitempty"`
	UpdatedAt        *time.Time               `json:"updated_at,omitempty"`
	RenderedAt       *time.Time               `json:"rendered_at,omitempty"`
	CompletedAt      *time.Time               `json:"completed_at,omitempty"`
	ValidationErrors []ReleaseValidationError `json:"validation_errors,omitempty"`
	LiveStatus       *ReleaseLiveStatus       `json:"live_status,omitempty"`
}

StackRelease struct for StackRelease

func NewStackRelease

func NewStackRelease() *StackRelease

NewStackRelease instantiates a new StackRelease object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewStackReleaseWithDefaults

func NewStackReleaseWithDefaults() *StackRelease

NewStackReleaseWithDefaults instantiates a new StackRelease object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*StackRelease) GetCause

func (o *StackRelease) GetCause() ReleaseCause

GetCause returns the Cause field value if set, zero value otherwise.

func (*StackRelease) GetCauseOk

func (o *StackRelease) GetCauseOk() (*ReleaseCause, bool)

GetCauseOk returns a tuple with the Cause field value if set, nil otherwise and a boolean to check if the value has been set.

func (*StackRelease) GetCompletedAt

func (o *StackRelease) GetCompletedAt() time.Time

GetCompletedAt returns the CompletedAt field value if set, zero value otherwise.

func (*StackRelease) GetCompletedAtOk

func (o *StackRelease) GetCompletedAtOk() (*time.Time, bool)

GetCompletedAtOk returns a tuple with the CompletedAt field value if set, nil otherwise and a boolean to check if the value has been set.

func (*StackRelease) GetCreatedAt

func (o *StackRelease) GetCreatedAt() time.Time

GetCreatedAt returns the CreatedAt field value if set, zero value otherwise.

func (*StackRelease) GetCreatedAtOk

func (o *StackRelease) 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 (*StackRelease) GetCreatedBy

func (o *StackRelease) GetCreatedBy() string

GetCreatedBy returns the CreatedBy field value if set, zero value otherwise.

func (*StackRelease) GetCreatedByOk

func (o *StackRelease) GetCreatedByOk() (*string, bool)

GetCreatedByOk returns a tuple with the CreatedBy field value if set, nil otherwise and a boolean to check if the value has been set.

func (*StackRelease) GetId

func (o *StackRelease) GetId() string

GetId returns the Id field value if set, zero value otherwise.

func (*StackRelease) GetIdOk

func (o *StackRelease) 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 (*StackRelease) GetLiveStatus

func (o *StackRelease) GetLiveStatus() ReleaseLiveStatus

GetLiveStatus returns the LiveStatus field value if set, zero value otherwise.

func (*StackRelease) GetLiveStatusOk

func (o *StackRelease) GetLiveStatusOk() (*ReleaseLiveStatus, bool)

GetLiveStatusOk returns a tuple with the LiveStatus field value if set, nil otherwise and a boolean to check if the value has been set.

func (*StackRelease) GetManifestRevision

func (o *StackRelease) GetManifestRevision() string

GetManifestRevision returns the ManifestRevision field value if set, zero value otherwise.

func (*StackRelease) GetManifestRevisionOk

func (o *StackRelease) GetManifestRevisionOk() (*string, bool)

GetManifestRevisionOk returns a tuple with the ManifestRevision field value if set, nil otherwise and a boolean to check if the value has been set.

func (*StackRelease) GetMessage

func (o *StackRelease) GetMessage() string

GetMessage returns the Message field value if set, zero value otherwise.

func (*StackRelease) GetMessageOk

func (o *StackRelease) 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 (*StackRelease) GetOutcome

func (o *StackRelease) GetOutcome() ReleaseOutcome

GetOutcome returns the Outcome field value if set, zero value otherwise.

func (*StackRelease) GetOutcomeOk

func (o *StackRelease) GetOutcomeOk() (*ReleaseOutcome, bool)

GetOutcomeOk returns a tuple with the Outcome field value if set, nil otherwise and a boolean to check if the value has been set.

func (*StackRelease) GetPins

func (o *StackRelease) GetPins() ReleasePins

GetPins returns the Pins field value if set, zero value otherwise.

func (*StackRelease) GetPinsOk

func (o *StackRelease) GetPinsOk() (*ReleasePins, bool)

GetPinsOk returns a tuple with the Pins field value if set, nil otherwise and a boolean to check if the value has been set.

func (*StackRelease) GetRenderedAt

func (o *StackRelease) GetRenderedAt() time.Time

GetRenderedAt returns the RenderedAt field value if set, zero value otherwise.

func (*StackRelease) GetRenderedAtOk

func (o *StackRelease) GetRenderedAtOk() (*time.Time, bool)

GetRenderedAtOk returns a tuple with the RenderedAt field value if set, nil otherwise and a boolean to check if the value has been set.

func (*StackRelease) GetRendererVersion

func (o *StackRelease) GetRendererVersion() string

GetRendererVersion returns the RendererVersion field value if set, zero value otherwise.

func (*StackRelease) GetRendererVersionOk

func (o *StackRelease) GetRendererVersionOk() (*string, bool)

GetRendererVersionOk returns a tuple with the RendererVersion field value if set, nil otherwise and a boolean to check if the value has been set.

func (*StackRelease) GetSequence

func (o *StackRelease) GetSequence() int32

GetSequence returns the Sequence field value if set, zero value otherwise.

func (*StackRelease) GetSequenceOk

func (o *StackRelease) GetSequenceOk() (*int32, bool)

GetSequenceOk returns a tuple with the Sequence field value if set, nil otherwise and a boolean to check if the value has been set.

func (*StackRelease) GetSnapshotRevision

func (o *StackRelease) GetSnapshotRevision() string

GetSnapshotRevision returns the SnapshotRevision field value if set, zero value otherwise.

func (*StackRelease) GetSnapshotRevisionOk

func (o *StackRelease) GetSnapshotRevisionOk() (*string, bool)

GetSnapshotRevisionOk returns a tuple with the SnapshotRevision field value if set, nil otherwise and a boolean to check if the value has been set.

func (*StackRelease) GetStackId

func (o *StackRelease) GetStackId() string

GetStackId returns the StackId field value if set, zero value otherwise.

func (*StackRelease) GetStackIdOk

func (o *StackRelease) GetStackIdOk() (*string, bool)

GetStackIdOk returns a tuple with the StackId field value if set, nil otherwise and a boolean to check if the value has been set.

func (*StackRelease) GetState

func (o *StackRelease) GetState() StackReleaseState

GetState returns the State field value if set, zero value otherwise.

func (*StackRelease) GetStateOk

func (o *StackRelease) GetStateOk() (*StackReleaseState, 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 (*StackRelease) GetUpdatedAt

func (o *StackRelease) GetUpdatedAt() time.Time

GetUpdatedAt returns the UpdatedAt field value if set, zero value otherwise.

func (*StackRelease) GetUpdatedAtOk

func (o *StackRelease) 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 (*StackRelease) GetValidationErrors

func (o *StackRelease) GetValidationErrors() []ReleaseValidationError

GetValidationErrors returns the ValidationErrors field value if set, zero value otherwise.

func (*StackRelease) GetValidationErrorsOk

func (o *StackRelease) GetValidationErrorsOk() ([]ReleaseValidationError, bool)

GetValidationErrorsOk returns a tuple with the ValidationErrors field value if set, nil otherwise and a boolean to check if the value has been set.

func (*StackRelease) HasCause

func (o *StackRelease) HasCause() bool

HasCause returns a boolean if a field has been set.

func (*StackRelease) HasCompletedAt

func (o *StackRelease) HasCompletedAt() bool

HasCompletedAt returns a boolean if a field has been set.

func (*StackRelease) HasCreatedAt

func (o *StackRelease) HasCreatedAt() bool

HasCreatedAt returns a boolean if a field has been set.

func (*StackRelease) HasCreatedBy

func (o *StackRelease) HasCreatedBy() bool

HasCreatedBy returns a boolean if a field has been set.

func (*StackRelease) HasId

func (o *StackRelease) HasId() bool

HasId returns a boolean if a field has been set.

func (*StackRelease) HasLiveStatus

func (o *StackRelease) HasLiveStatus() bool

HasLiveStatus returns a boolean if a field has been set.

func (*StackRelease) HasManifestRevision

func (o *StackRelease) HasManifestRevision() bool

HasManifestRevision returns a boolean if a field has been set.

func (*StackRelease) HasMessage

func (o *StackRelease) HasMessage() bool

HasMessage returns a boolean if a field has been set.

func (*StackRelease) HasOutcome

func (o *StackRelease) HasOutcome() bool

HasOutcome returns a boolean if a field has been set.

func (*StackRelease) HasPins

func (o *StackRelease) HasPins() bool

HasPins returns a boolean if a field has been set.

func (*StackRelease) HasRenderedAt

func (o *StackRelease) HasRenderedAt() bool

HasRenderedAt returns a boolean if a field has been set.

func (*StackRelease) HasRendererVersion

func (o *StackRelease) HasRendererVersion() bool

HasRendererVersion returns a boolean if a field has been set.

func (*StackRelease) HasSequence

func (o *StackRelease) HasSequence() bool

HasSequence returns a boolean if a field has been set.

func (*StackRelease) HasSnapshotRevision

func (o *StackRelease) HasSnapshotRevision() bool

HasSnapshotRevision returns a boolean if a field has been set.

func (*StackRelease) HasStackId

func (o *StackRelease) HasStackId() bool

HasStackId returns a boolean if a field has been set.

func (*StackRelease) HasState

func (o *StackRelease) HasState() bool

HasState returns a boolean if a field has been set.

func (*StackRelease) HasUpdatedAt

func (o *StackRelease) HasUpdatedAt() bool

HasUpdatedAt returns a boolean if a field has been set.

func (*StackRelease) HasValidationErrors

func (o *StackRelease) HasValidationErrors() bool

HasValidationErrors returns a boolean if a field has been set.

func (StackRelease) MarshalJSON

func (o StackRelease) MarshalJSON() ([]byte, error)

func (*StackRelease) SetCause

func (o *StackRelease) SetCause(v ReleaseCause)

SetCause gets a reference to the given ReleaseCause and assigns it to the Cause field.

func (*StackRelease) SetCompletedAt

func (o *StackRelease) SetCompletedAt(v time.Time)

SetCompletedAt gets a reference to the given time.Time and assigns it to the CompletedAt field.

func (*StackRelease) SetCreatedAt

func (o *StackRelease) SetCreatedAt(v time.Time)

SetCreatedAt gets a reference to the given time.Time and assigns it to the CreatedAt field.

func (*StackRelease) SetCreatedBy

func (o *StackRelease) SetCreatedBy(v string)

SetCreatedBy gets a reference to the given string and assigns it to the CreatedBy field.

func (*StackRelease) SetId

func (o *StackRelease) SetId(v string)

SetId gets a reference to the given string and assigns it to the Id field.

func (*StackRelease) SetLiveStatus

func (o *StackRelease) SetLiveStatus(v ReleaseLiveStatus)

SetLiveStatus gets a reference to the given ReleaseLiveStatus and assigns it to the LiveStatus field.

func (*StackRelease) SetManifestRevision

func (o *StackRelease) SetManifestRevision(v string)

SetManifestRevision gets a reference to the given string and assigns it to the ManifestRevision field.

func (*StackRelease) SetMessage

func (o *StackRelease) SetMessage(v string)

SetMessage gets a reference to the given string and assigns it to the Message field.

func (*StackRelease) SetOutcome

func (o *StackRelease) SetOutcome(v ReleaseOutcome)

SetOutcome gets a reference to the given ReleaseOutcome and assigns it to the Outcome field.

func (*StackRelease) SetPins

func (o *StackRelease) SetPins(v ReleasePins)

SetPins gets a reference to the given ReleasePins and assigns it to the Pins field.

func (*StackRelease) SetRenderedAt

func (o *StackRelease) SetRenderedAt(v time.Time)

SetRenderedAt gets a reference to the given time.Time and assigns it to the RenderedAt field.

func (*StackRelease) SetRendererVersion

func (o *StackRelease) SetRendererVersion(v string)

SetRendererVersion gets a reference to the given string and assigns it to the RendererVersion field.

func (*StackRelease) SetSequence

func (o *StackRelease) SetSequence(v int32)

SetSequence gets a reference to the given int32 and assigns it to the Sequence field.

func (*StackRelease) SetSnapshotRevision

func (o *StackRelease) SetSnapshotRevision(v string)

SetSnapshotRevision gets a reference to the given string and assigns it to the SnapshotRevision field.

func (*StackRelease) SetStackId

func (o *StackRelease) SetStackId(v string)

SetStackId gets a reference to the given string and assigns it to the StackId field.

func (*StackRelease) SetState

func (o *StackRelease) SetState(v StackReleaseState)

SetState gets a reference to the given StackReleaseState and assigns it to the State field.

func (*StackRelease) SetUpdatedAt

func (o *StackRelease) SetUpdatedAt(v time.Time)

SetUpdatedAt gets a reference to the given time.Time and assigns it to the UpdatedAt field.

func (*StackRelease) SetValidationErrors

func (o *StackRelease) SetValidationErrors(v []ReleaseValidationError)

SetValidationErrors gets a reference to the given []ReleaseValidationError and assigns it to the ValidationErrors field.

type StackReleaseDetail

type StackReleaseDetail struct {
	Id               *string                  `json:"id,omitempty"`
	StackId          *string                  `json:"stack_id,omitempty"`
	Sequence         *int32                   `json:"sequence,omitempty"`
	State            *StackReleaseState       `json:"state,omitempty"`
	Message          *string                  `json:"message,omitempty"`
	Cause            *ReleaseCause            `json:"cause,omitempty"`
	SnapshotRevision *string                  `json:"snapshot_revision,omitempty"`
	ManifestRevision *string                  `json:"manifest_revision,omitempty"`
	RendererVersion  *string                  `json:"renderer_version,omitempty"`
	Pins             *ReleasePins             `json:"pins,omitempty"`
	Outcome          *ReleaseOutcome          `json:"outcome,omitempty"`
	CreatedBy        *string                  `json:"created_by,omitempty"`
	CreatedAt        *time.Time               `json:"created_at,omitempty"`
	UpdatedAt        *time.Time               `json:"updated_at,omitempty"`
	RenderedAt       *time.Time               `json:"rendered_at,omitempty"`
	CompletedAt      *time.Time               `json:"completed_at,omitempty"`
	ValidationErrors []ReleaseValidationError `json:"validation_errors,omitempty"`
	LiveStatus       *ReleaseLiveStatus       `json:"live_status,omitempty"`
	Snapshot         *StackReleaseSnapshot    `json:"snapshot,omitempty"`
}

StackReleaseDetail struct for StackReleaseDetail

func NewStackReleaseDetail

func NewStackReleaseDetail() *StackReleaseDetail

NewStackReleaseDetail instantiates a new StackReleaseDetail object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewStackReleaseDetailWithDefaults

func NewStackReleaseDetailWithDefaults() *StackReleaseDetail

NewStackReleaseDetailWithDefaults instantiates a new StackReleaseDetail object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*StackReleaseDetail) GetCause

func (o *StackReleaseDetail) GetCause() ReleaseCause

GetCause returns the Cause field value if set, zero value otherwise.

func (*StackReleaseDetail) GetCauseOk

func (o *StackReleaseDetail) GetCauseOk() (*ReleaseCause, bool)

GetCauseOk returns a tuple with the Cause field value if set, nil otherwise and a boolean to check if the value has been set.

func (*StackReleaseDetail) GetCompletedAt

func (o *StackReleaseDetail) GetCompletedAt() time.Time

GetCompletedAt returns the CompletedAt field value if set, zero value otherwise.

func (*StackReleaseDetail) GetCompletedAtOk

func (o *StackReleaseDetail) GetCompletedAtOk() (*time.Time, bool)

GetCompletedAtOk returns a tuple with the CompletedAt field value if set, nil otherwise and a boolean to check if the value has been set.

func (*StackReleaseDetail) GetCreatedAt

func (o *StackReleaseDetail) GetCreatedAt() time.Time

GetCreatedAt returns the CreatedAt field value if set, zero value otherwise.

func (*StackReleaseDetail) GetCreatedAtOk

func (o *StackReleaseDetail) 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 (*StackReleaseDetail) GetCreatedBy

func (o *StackReleaseDetail) GetCreatedBy() string

GetCreatedBy returns the CreatedBy field value if set, zero value otherwise.

func (*StackReleaseDetail) GetCreatedByOk

func (o *StackReleaseDetail) GetCreatedByOk() (*string, bool)

GetCreatedByOk returns a tuple with the CreatedBy field value if set, nil otherwise and a boolean to check if the value has been set.

func (*StackReleaseDetail) GetId

func (o *StackReleaseDetail) GetId() string

GetId returns the Id field value if set, zero value otherwise.

func (*StackReleaseDetail) GetIdOk

func (o *StackReleaseDetail) 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 (*StackReleaseDetail) GetLiveStatus

func (o *StackReleaseDetail) GetLiveStatus() ReleaseLiveStatus

GetLiveStatus returns the LiveStatus field value if set, zero value otherwise.

func (*StackReleaseDetail) GetLiveStatusOk

func (o *StackReleaseDetail) GetLiveStatusOk() (*ReleaseLiveStatus, bool)

GetLiveStatusOk returns a tuple with the LiveStatus field value if set, nil otherwise and a boolean to check if the value has been set.

func (*StackReleaseDetail) GetManifestRevision

func (o *StackReleaseDetail) GetManifestRevision() string

GetManifestRevision returns the ManifestRevision field value if set, zero value otherwise.

func (*StackReleaseDetail) GetManifestRevisionOk

func (o *StackReleaseDetail) GetManifestRevisionOk() (*string, bool)

GetManifestRevisionOk returns a tuple with the ManifestRevision field value if set, nil otherwise and a boolean to check if the value has been set.

func (*StackReleaseDetail) GetMessage

func (o *StackReleaseDetail) GetMessage() string

GetMessage returns the Message field value if set, zero value otherwise.

func (*StackReleaseDetail) GetMessageOk

func (o *StackReleaseDetail) 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 (*StackReleaseDetail) GetOutcome

func (o *StackReleaseDetail) GetOutcome() ReleaseOutcome

GetOutcome returns the Outcome field value if set, zero value otherwise.

func (*StackReleaseDetail) GetOutcomeOk

func (o *StackReleaseDetail) GetOutcomeOk() (*ReleaseOutcome, bool)

GetOutcomeOk returns a tuple with the Outcome field value if set, nil otherwise and a boolean to check if the value has been set.

func (*StackReleaseDetail) GetPins

func (o *StackReleaseDetail) GetPins() ReleasePins

GetPins returns the Pins field value if set, zero value otherwise.

func (*StackReleaseDetail) GetPinsOk

func (o *StackReleaseDetail) GetPinsOk() (*ReleasePins, bool)

GetPinsOk returns a tuple with the Pins field value if set, nil otherwise and a boolean to check if the value has been set.

func (*StackReleaseDetail) GetRenderedAt

func (o *StackReleaseDetail) GetRenderedAt() time.Time

GetRenderedAt returns the RenderedAt field value if set, zero value otherwise.

func (*StackReleaseDetail) GetRenderedAtOk

func (o *StackReleaseDetail) GetRenderedAtOk() (*time.Time, bool)

GetRenderedAtOk returns a tuple with the RenderedAt field value if set, nil otherwise and a boolean to check if the value has been set.

func (*StackReleaseDetail) GetRendererVersion

func (o *StackReleaseDetail) GetRendererVersion() string

GetRendererVersion returns the RendererVersion field value if set, zero value otherwise.

func (*StackReleaseDetail) GetRendererVersionOk

func (o *StackReleaseDetail) GetRendererVersionOk() (*string, bool)

GetRendererVersionOk returns a tuple with the RendererVersion field value if set, nil otherwise and a boolean to check if the value has been set.

func (*StackReleaseDetail) GetSequence

func (o *StackReleaseDetail) GetSequence() int32

GetSequence returns the Sequence field value if set, zero value otherwise.

func (*StackReleaseDetail) GetSequenceOk

func (o *StackReleaseDetail) GetSequenceOk() (*int32, bool)

GetSequenceOk returns a tuple with the Sequence field value if set, nil otherwise and a boolean to check if the value has been set.

func (*StackReleaseDetail) GetSnapshot

func (o *StackReleaseDetail) GetSnapshot() StackReleaseSnapshot

GetSnapshot returns the Snapshot field value if set, zero value otherwise.

func (*StackReleaseDetail) GetSnapshotOk

func (o *StackReleaseDetail) GetSnapshotOk() (*StackReleaseSnapshot, bool)

GetSnapshotOk returns a tuple with the Snapshot field value if set, nil otherwise and a boolean to check if the value has been set.

func (*StackReleaseDetail) GetSnapshotRevision

func (o *StackReleaseDetail) GetSnapshotRevision() string

GetSnapshotRevision returns the SnapshotRevision field value if set, zero value otherwise.

func (*StackReleaseDetail) GetSnapshotRevisionOk

func (o *StackReleaseDetail) GetSnapshotRevisionOk() (*string, bool)

GetSnapshotRevisionOk returns a tuple with the SnapshotRevision field value if set, nil otherwise and a boolean to check if the value has been set.

func (*StackReleaseDetail) GetStackId

func (o *StackReleaseDetail) GetStackId() string

GetStackId returns the StackId field value if set, zero value otherwise.

func (*StackReleaseDetail) GetStackIdOk

func (o *StackReleaseDetail) GetStackIdOk() (*string, bool)

GetStackIdOk returns a tuple with the StackId field value if set, nil otherwise and a boolean to check if the value has been set.

func (*StackReleaseDetail) GetState

func (o *StackReleaseDetail) GetState() StackReleaseState

GetState returns the State field value if set, zero value otherwise.

func (*StackReleaseDetail) GetStateOk

func (o *StackReleaseDetail) GetStateOk() (*StackReleaseState, 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 (*StackReleaseDetail) GetUpdatedAt

func (o *StackReleaseDetail) GetUpdatedAt() time.Time

GetUpdatedAt returns the UpdatedAt field value if set, zero value otherwise.

func (*StackReleaseDetail) GetUpdatedAtOk

func (o *StackReleaseDetail) 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 (*StackReleaseDetail) GetValidationErrors

func (o *StackReleaseDetail) GetValidationErrors() []ReleaseValidationError

GetValidationErrors returns the ValidationErrors field value if set, zero value otherwise.

func (*StackReleaseDetail) GetValidationErrorsOk

func (o *StackReleaseDetail) GetValidationErrorsOk() ([]ReleaseValidationError, bool)

GetValidationErrorsOk returns a tuple with the ValidationErrors field value if set, nil otherwise and a boolean to check if the value has been set.

func (*StackReleaseDetail) HasCause

func (o *StackReleaseDetail) HasCause() bool

HasCause returns a boolean if a field has been set.

func (*StackReleaseDetail) HasCompletedAt

func (o *StackReleaseDetail) HasCompletedAt() bool

HasCompletedAt returns a boolean if a field has been set.

func (*StackReleaseDetail) HasCreatedAt

func (o *StackReleaseDetail) HasCreatedAt() bool

HasCreatedAt returns a boolean if a field has been set.

func (*StackReleaseDetail) HasCreatedBy

func (o *StackReleaseDetail) HasCreatedBy() bool

HasCreatedBy returns a boolean if a field has been set.

func (*StackReleaseDetail) HasId

func (o *StackReleaseDetail) HasId() bool

HasId returns a boolean if a field has been set.

func (*StackReleaseDetail) HasLiveStatus

func (o *StackReleaseDetail) HasLiveStatus() bool

HasLiveStatus returns a boolean if a field has been set.

func (*StackReleaseDetail) HasManifestRevision

func (o *StackReleaseDetail) HasManifestRevision() bool

HasManifestRevision returns a boolean if a field has been set.

func (*StackReleaseDetail) HasMessage

func (o *StackReleaseDetail) HasMessage() bool

HasMessage returns a boolean if a field has been set.

func (*StackReleaseDetail) HasOutcome

func (o *StackReleaseDetail) HasOutcome() bool

HasOutcome returns a boolean if a field has been set.

func (*StackReleaseDetail) HasPins

func (o *StackReleaseDetail) HasPins() bool

HasPins returns a boolean if a field has been set.

func (*StackReleaseDetail) HasRenderedAt

func (o *StackReleaseDetail) HasRenderedAt() bool

HasRenderedAt returns a boolean if a field has been set.

func (*StackReleaseDetail) HasRendererVersion

func (o *StackReleaseDetail) HasRendererVersion() bool

HasRendererVersion returns a boolean if a field has been set.

func (*StackReleaseDetail) HasSequence

func (o *StackReleaseDetail) HasSequence() bool

HasSequence returns a boolean if a field has been set.

func (*StackReleaseDetail) HasSnapshot

func (o *StackReleaseDetail) HasSnapshot() bool

HasSnapshot returns a boolean if a field has been set.

func (*StackReleaseDetail) HasSnapshotRevision

func (o *StackReleaseDetail) HasSnapshotRevision() bool

HasSnapshotRevision returns a boolean if a field has been set.

func (*StackReleaseDetail) HasStackId

func (o *StackReleaseDetail) HasStackId() bool

HasStackId returns a boolean if a field has been set.

func (*StackReleaseDetail) HasState

func (o *StackReleaseDetail) HasState() bool

HasState returns a boolean if a field has been set.

func (*StackReleaseDetail) HasUpdatedAt

func (o *StackReleaseDetail) HasUpdatedAt() bool

HasUpdatedAt returns a boolean if a field has been set.

func (*StackReleaseDetail) HasValidationErrors

func (o *StackReleaseDetail) HasValidationErrors() bool

HasValidationErrors returns a boolean if a field has been set.

func (StackReleaseDetail) MarshalJSON

func (o StackReleaseDetail) MarshalJSON() ([]byte, error)

func (*StackReleaseDetail) SetCause

func (o *StackReleaseDetail) SetCause(v ReleaseCause)

SetCause gets a reference to the given ReleaseCause and assigns it to the Cause field.

func (*StackReleaseDetail) SetCompletedAt

func (o *StackReleaseDetail) SetCompletedAt(v time.Time)

SetCompletedAt gets a reference to the given time.Time and assigns it to the CompletedAt field.

func (*StackReleaseDetail) SetCreatedAt

func (o *StackReleaseDetail) SetCreatedAt(v time.Time)

SetCreatedAt gets a reference to the given time.Time and assigns it to the CreatedAt field.

func (*StackReleaseDetail) SetCreatedBy

func (o *StackReleaseDetail) SetCreatedBy(v string)

SetCreatedBy gets a reference to the given string and assigns it to the CreatedBy field.

func (*StackReleaseDetail) SetId

func (o *StackReleaseDetail) SetId(v string)

SetId gets a reference to the given string and assigns it to the Id field.

func (*StackReleaseDetail) SetLiveStatus

func (o *StackReleaseDetail) SetLiveStatus(v ReleaseLiveStatus)

SetLiveStatus gets a reference to the given ReleaseLiveStatus and assigns it to the LiveStatus field.

func (*StackReleaseDetail) SetManifestRevision

func (o *StackReleaseDetail) SetManifestRevision(v string)

SetManifestRevision gets a reference to the given string and assigns it to the ManifestRevision field.

func (*StackReleaseDetail) SetMessage

func (o *StackReleaseDetail) SetMessage(v string)

SetMessage gets a reference to the given string and assigns it to the Message field.

func (*StackReleaseDetail) SetOutcome

func (o *StackReleaseDetail) SetOutcome(v ReleaseOutcome)

SetOutcome gets a reference to the given ReleaseOutcome and assigns it to the Outcome field.

func (*StackReleaseDetail) SetPins

func (o *StackReleaseDetail) SetPins(v ReleasePins)

SetPins gets a reference to the given ReleasePins and assigns it to the Pins field.

func (*StackReleaseDetail) SetRenderedAt

func (o *StackReleaseDetail) SetRenderedAt(v time.Time)

SetRenderedAt gets a reference to the given time.Time and assigns it to the RenderedAt field.

func (*StackReleaseDetail) SetRendererVersion

func (o *StackReleaseDetail) SetRendererVersion(v string)

SetRendererVersion gets a reference to the given string and assigns it to the RendererVersion field.

func (*StackReleaseDetail) SetSequence

func (o *StackReleaseDetail) SetSequence(v int32)

SetSequence gets a reference to the given int32 and assigns it to the Sequence field.

func (*StackReleaseDetail) SetSnapshot

func (o *StackReleaseDetail) SetSnapshot(v StackReleaseSnapshot)

SetSnapshot gets a reference to the given StackReleaseSnapshot and assigns it to the Snapshot field.

func (*StackReleaseDetail) SetSnapshotRevision

func (o *StackReleaseDetail) SetSnapshotRevision(v string)

SetSnapshotRevision gets a reference to the given string and assigns it to the SnapshotRevision field.

func (*StackReleaseDetail) SetStackId

func (o *StackReleaseDetail) SetStackId(v string)

SetStackId gets a reference to the given string and assigns it to the StackId field.

func (*StackReleaseDetail) SetState

func (o *StackReleaseDetail) SetState(v StackReleaseState)

SetState gets a reference to the given StackReleaseState and assigns it to the State field.

func (*StackReleaseDetail) SetUpdatedAt

func (o *StackReleaseDetail) SetUpdatedAt(v time.Time)

SetUpdatedAt gets a reference to the given time.Time and assigns it to the UpdatedAt field.

func (*StackReleaseDetail) SetValidationErrors

func (o *StackReleaseDetail) SetValidationErrors(v []ReleaseValidationError)

SetValidationErrors gets a reference to the given []ReleaseValidationError and assigns it to the ValidationErrors field.

type StackReleaseDetailAllOf

type StackReleaseDetailAllOf struct {
	Snapshot *StackReleaseSnapshot `json:"snapshot,omitempty"`
}

StackReleaseDetailAllOf struct for StackReleaseDetailAllOf

func NewStackReleaseDetailAllOf

func NewStackReleaseDetailAllOf() *StackReleaseDetailAllOf

NewStackReleaseDetailAllOf instantiates a new StackReleaseDetailAllOf object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewStackReleaseDetailAllOfWithDefaults

func NewStackReleaseDetailAllOfWithDefaults() *StackReleaseDetailAllOf

NewStackReleaseDetailAllOfWithDefaults instantiates a new StackReleaseDetailAllOf object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*StackReleaseDetailAllOf) GetSnapshot

GetSnapshot returns the Snapshot field value if set, zero value otherwise.

func (*StackReleaseDetailAllOf) GetSnapshotOk

func (o *StackReleaseDetailAllOf) GetSnapshotOk() (*StackReleaseSnapshot, bool)

GetSnapshotOk returns a tuple with the Snapshot field value if set, nil otherwise and a boolean to check if the value has been set.

func (*StackReleaseDetailAllOf) HasSnapshot

func (o *StackReleaseDetailAllOf) HasSnapshot() bool

HasSnapshot returns a boolean if a field has been set.

func (StackReleaseDetailAllOf) MarshalJSON

func (o StackReleaseDetailAllOf) MarshalJSON() ([]byte, error)

func (*StackReleaseDetailAllOf) SetSnapshot

SetSnapshot gets a reference to the given StackReleaseSnapshot and assigns it to the Snapshot field.

type StackReleaseList

type StackReleaseList struct {
	Items []StackRelease `json:"items,omitempty"`
	// Total number of records
	Total *int32 `json:"total,omitempty"`
	// Current page number
	Page *int32 `json:"page,omitempty"`
	// Number of items per page
	PageSize *int32 `json:"page_size,omitempty"`
	// Total number of pages
	TotalPages *int32 `json:"total_pages,omitempty"`
}

StackReleaseList struct for StackReleaseList

func NewStackReleaseList

func NewStackReleaseList() *StackReleaseList

NewStackReleaseList instantiates a new StackReleaseList object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewStackReleaseListWithDefaults

func NewStackReleaseListWithDefaults() *StackReleaseList

NewStackReleaseListWithDefaults instantiates a new StackReleaseList object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*StackReleaseList) GetItems

func (o *StackReleaseList) GetItems() []StackRelease

GetItems returns the Items field value if set, zero value otherwise.

func (*StackReleaseList) GetItemsOk

func (o *StackReleaseList) GetItemsOk() ([]StackRelease, bool)

GetItemsOk returns a tuple with the Items field value if set, nil otherwise and a boolean to check if the value has been set.

func (*StackReleaseList) GetPage

func (o *StackReleaseList) GetPage() int32

GetPage returns the Page field value if set, zero value otherwise.

func (*StackReleaseList) GetPageOk

func (o *StackReleaseList) GetPageOk() (*int32, bool)

GetPageOk returns a tuple with the Page field value if set, nil otherwise and a boolean to check if the value has been set.

func (*StackReleaseList) GetPageSize

func (o *StackReleaseList) GetPageSize() int32

GetPageSize returns the PageSize field value if set, zero value otherwise.

func (*StackReleaseList) GetPageSizeOk

func (o *StackReleaseList) GetPageSizeOk() (*int32, bool)

GetPageSizeOk returns a tuple with the PageSize field value if set, nil otherwise and a boolean to check if the value has been set.

func (*StackReleaseList) GetTotal

func (o *StackReleaseList) GetTotal() int32

GetTotal returns the Total field value if set, zero value otherwise.

func (*StackReleaseList) GetTotalOk

func (o *StackReleaseList) GetTotalOk() (*int32, 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 (*StackReleaseList) GetTotalPages

func (o *StackReleaseList) GetTotalPages() int32

GetTotalPages returns the TotalPages field value if set, zero value otherwise.

func (*StackReleaseList) GetTotalPagesOk

func (o *StackReleaseList) GetTotalPagesOk() (*int32, bool)

GetTotalPagesOk returns a tuple with the TotalPages field value if set, nil otherwise and a boolean to check if the value has been set.

func (*StackReleaseList) HasItems

func (o *StackReleaseList) HasItems() bool

HasItems returns a boolean if a field has been set.

func (*StackReleaseList) HasPage

func (o *StackReleaseList) HasPage() bool

HasPage returns a boolean if a field has been set.

func (*StackReleaseList) HasPageSize

func (o *StackReleaseList) HasPageSize() bool

HasPageSize returns a boolean if a field has been set.

func (*StackReleaseList) HasTotal

func (o *StackReleaseList) HasTotal() bool

HasTotal returns a boolean if a field has been set.

func (*StackReleaseList) HasTotalPages

func (o *StackReleaseList) HasTotalPages() bool

HasTotalPages returns a boolean if a field has been set.

func (StackReleaseList) MarshalJSON

func (o StackReleaseList) MarshalJSON() ([]byte, error)

func (*StackReleaseList) SetItems

func (o *StackReleaseList) SetItems(v []StackRelease)

SetItems gets a reference to the given []StackRelease and assigns it to the Items field.

func (*StackReleaseList) SetPage

func (o *StackReleaseList) SetPage(v int32)

SetPage gets a reference to the given int32 and assigns it to the Page field.

func (*StackReleaseList) SetPageSize

func (o *StackReleaseList) SetPageSize(v int32)

SetPageSize gets a reference to the given int32 and assigns it to the PageSize field.

func (*StackReleaseList) SetTotal

func (o *StackReleaseList) SetTotal(v int32)

SetTotal gets a reference to the given int32 and assigns it to the Total field.

func (*StackReleaseList) SetTotalPages

func (o *StackReleaseList) SetTotalPages(v int32)

SetTotalPages gets a reference to the given int32 and assigns it to the TotalPages field.

type StackReleaseSnapshot

type StackReleaseSnapshot struct {
	Stack       *StackReleaseSnapshotStack `json:"stack,omitempty"`
	Resources   []StackResource            `json:"resources,omitempty"`
	Volumes     []Volume                   `json:"volumes,omitempty"`
	Connections []StackConnection          `json:"connections,omitempty"`
	CapturedAt  *time.Time                 `json:"captured_at,omitempty"`
}

StackReleaseSnapshot struct for StackReleaseSnapshot

func NewStackReleaseSnapshot

func NewStackReleaseSnapshot() *StackReleaseSnapshot

NewStackReleaseSnapshot instantiates a new StackReleaseSnapshot object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewStackReleaseSnapshotWithDefaults

func NewStackReleaseSnapshotWithDefaults() *StackReleaseSnapshot

NewStackReleaseSnapshotWithDefaults instantiates a new StackReleaseSnapshot object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*StackReleaseSnapshot) GetCapturedAt

func (o *StackReleaseSnapshot) GetCapturedAt() time.Time

GetCapturedAt returns the CapturedAt field value if set, zero value otherwise.

func (*StackReleaseSnapshot) GetCapturedAtOk

func (o *StackReleaseSnapshot) GetCapturedAtOk() (*time.Time, bool)

GetCapturedAtOk returns a tuple with the CapturedAt field value if set, nil otherwise and a boolean to check if the value has been set.

func (*StackReleaseSnapshot) GetConnections

func (o *StackReleaseSnapshot) GetConnections() []StackConnection

GetConnections returns the Connections field value if set, zero value otherwise.

func (*StackReleaseSnapshot) GetConnectionsOk

func (o *StackReleaseSnapshot) GetConnectionsOk() ([]StackConnection, bool)

GetConnectionsOk returns a tuple with the Connections field value if set, nil otherwise and a boolean to check if the value has been set.

func (*StackReleaseSnapshot) GetResources

func (o *StackReleaseSnapshot) GetResources() []StackResource

GetResources returns the Resources field value if set, zero value otherwise.

func (*StackReleaseSnapshot) GetResourcesOk

func (o *StackReleaseSnapshot) GetResourcesOk() ([]StackResource, bool)

GetResourcesOk returns a tuple with the Resources field value if set, nil otherwise and a boolean to check if the value has been set.

func (*StackReleaseSnapshot) GetStack

GetStack returns the Stack field value if set, zero value otherwise.

func (*StackReleaseSnapshot) GetStackOk

GetStackOk returns a tuple with the Stack field value if set, nil otherwise and a boolean to check if the value has been set.

func (*StackReleaseSnapshot) GetVolumes

func (o *StackReleaseSnapshot) GetVolumes() []Volume

GetVolumes returns the Volumes field value if set, zero value otherwise.

func (*StackReleaseSnapshot) GetVolumesOk

func (o *StackReleaseSnapshot) GetVolumesOk() ([]Volume, bool)

GetVolumesOk returns a tuple with the Volumes field value if set, nil otherwise and a boolean to check if the value has been set.

func (*StackReleaseSnapshot) HasCapturedAt

func (o *StackReleaseSnapshot) HasCapturedAt() bool

HasCapturedAt returns a boolean if a field has been set.

func (*StackReleaseSnapshot) HasConnections

func (o *StackReleaseSnapshot) HasConnections() bool

HasConnections returns a boolean if a field has been set.

func (*StackReleaseSnapshot) HasResources

func (o *StackReleaseSnapshot) HasResources() bool

HasResources returns a boolean if a field has been set.

func (*StackReleaseSnapshot) HasStack

func (o *StackReleaseSnapshot) HasStack() bool

HasStack returns a boolean if a field has been set.

func (*StackReleaseSnapshot) HasVolumes

func (o *StackReleaseSnapshot) HasVolumes() bool

HasVolumes returns a boolean if a field has been set.

func (StackReleaseSnapshot) MarshalJSON

func (o StackReleaseSnapshot) MarshalJSON() ([]byte, error)

func (*StackReleaseSnapshot) SetCapturedAt

func (o *StackReleaseSnapshot) SetCapturedAt(v time.Time)

SetCapturedAt gets a reference to the given time.Time and assigns it to the CapturedAt field.

func (*StackReleaseSnapshot) SetConnections

func (o *StackReleaseSnapshot) SetConnections(v []StackConnection)

SetConnections gets a reference to the given []StackConnection and assigns it to the Connections field.

func (*StackReleaseSnapshot) SetResources

func (o *StackReleaseSnapshot) SetResources(v []StackResource)

SetResources gets a reference to the given []StackResource and assigns it to the Resources field.

func (*StackReleaseSnapshot) SetStack

SetStack gets a reference to the given StackReleaseSnapshotStack and assigns it to the Stack field.

func (*StackReleaseSnapshot) SetVolumes

func (o *StackReleaseSnapshot) SetVolumes(v []Volume)

SetVolumes gets a reference to the given []Volume and assigns it to the Volumes field.

type StackReleaseSnapshotStack

type StackReleaseSnapshotStack struct {
	Id             *string            `json:"id,omitempty"`
	OrganisationId *string            `json:"organisation_id,omitempty"`
	ProjectId      *string            `json:"project_id,omitempty"`
	ClusterId      *string            `json:"cluster_id,omitempty"`
	UserId         *string            `json:"user_id,omitempty"`
	Name           *string            `json:"name,omitempty"`
	NamespaceId    *string            `json:"namespace_id,omitempty"`
	Namespace      *string            `json:"namespace,omitempty"`
	Labels         *map[string]string `json:"labels,omitempty"`
	Annotations    *map[string]string `json:"annotations,omitempty"`
}

StackReleaseSnapshotStack struct for StackReleaseSnapshotStack

func NewStackReleaseSnapshotStack

func NewStackReleaseSnapshotStack() *StackReleaseSnapshotStack

NewStackReleaseSnapshotStack instantiates a new StackReleaseSnapshotStack object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewStackReleaseSnapshotStackWithDefaults

func NewStackReleaseSnapshotStackWithDefaults() *StackReleaseSnapshotStack

NewStackReleaseSnapshotStackWithDefaults instantiates a new StackReleaseSnapshotStack object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*StackReleaseSnapshotStack) GetAnnotations

func (o *StackReleaseSnapshotStack) GetAnnotations() map[string]string

GetAnnotations returns the Annotations field value if set, zero value otherwise.

func (*StackReleaseSnapshotStack) GetAnnotationsOk

func (o *StackReleaseSnapshotStack) GetAnnotationsOk() (*map[string]string, bool)

GetAnnotationsOk returns a tuple with the Annotations field value if set, nil otherwise and a boolean to check if the value has been set.

func (*StackReleaseSnapshotStack) GetClusterId

func (o *StackReleaseSnapshotStack) GetClusterId() string

GetClusterId returns the ClusterId field value if set, zero value otherwise.

func (*StackReleaseSnapshotStack) GetClusterIdOk

func (o *StackReleaseSnapshotStack) GetClusterIdOk() (*string, bool)

GetClusterIdOk returns a tuple with the ClusterId field value if set, nil otherwise and a boolean to check if the value has been set.

func (*StackReleaseSnapshotStack) GetId

func (o *StackReleaseSnapshotStack) GetId() string

GetId returns the Id field value if set, zero value otherwise.

func (*StackReleaseSnapshotStack) GetIdOk

func (o *StackReleaseSnapshotStack) 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 (*StackReleaseSnapshotStack) GetLabels

func (o *StackReleaseSnapshotStack) GetLabels() map[string]string

GetLabels returns the Labels field value if set, zero value otherwise.

func (*StackReleaseSnapshotStack) GetLabelsOk

func (o *StackReleaseSnapshotStack) 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 (*StackReleaseSnapshotStack) GetName

func (o *StackReleaseSnapshotStack) GetName() string

GetName returns the Name field value if set, zero value otherwise.

func (*StackReleaseSnapshotStack) GetNameOk

func (o *StackReleaseSnapshotStack) 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 (*StackReleaseSnapshotStack) GetNamespace

func (o *StackReleaseSnapshotStack) GetNamespace() string

GetNamespace returns the Namespace field value if set, zero value otherwise.

func (*StackReleaseSnapshotStack) GetNamespaceId

func (o *StackReleaseSnapshotStack) GetNamespaceId() string

GetNamespaceId returns the NamespaceId field value if set, zero value otherwise.

func (*StackReleaseSnapshotStack) GetNamespaceIdOk

func (o *StackReleaseSnapshotStack) GetNamespaceIdOk() (*string, bool)

GetNamespaceIdOk returns a tuple with the NamespaceId field value if set, nil otherwise and a boolean to check if the value has been set.

func (*StackReleaseSnapshotStack) GetNamespaceOk

func (o *StackReleaseSnapshotStack) GetNamespaceOk() (*string, bool)

GetNamespaceOk returns a tuple with the Namespace field value if set, nil otherwise and a boolean to check if the value has been set.

func (*StackReleaseSnapshotStack) GetOrganisationId

func (o *StackReleaseSnapshotStack) GetOrganisationId() string

GetOrganisationId returns the OrganisationId field value if set, zero value otherwise.

func (*StackReleaseSnapshotStack) GetOrganisationIdOk

func (o *StackReleaseSnapshotStack) GetOrganisationIdOk() (*string, bool)

GetOrganisationIdOk returns a tuple with the OrganisationId field value if set, nil otherwise and a boolean to check if the value has been set.

func (*StackReleaseSnapshotStack) GetProjectId

func (o *StackReleaseSnapshotStack) GetProjectId() string

GetProjectId returns the ProjectId field value if set, zero value otherwise.

func (*StackReleaseSnapshotStack) GetProjectIdOk

func (o *StackReleaseSnapshotStack) GetProjectIdOk() (*string, bool)

GetProjectIdOk returns a tuple with the ProjectId field value if set, nil otherwise and a boolean to check if the value has been set.

func (*StackReleaseSnapshotStack) GetUserId

func (o *StackReleaseSnapshotStack) GetUserId() string

GetUserId returns the UserId field value if set, zero value otherwise.

func (*StackReleaseSnapshotStack) GetUserIdOk

func (o *StackReleaseSnapshotStack) 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 (*StackReleaseSnapshotStack) HasAnnotations

func (o *StackReleaseSnapshotStack) HasAnnotations() bool

HasAnnotations returns a boolean if a field has been set.

func (*StackReleaseSnapshotStack) HasClusterId

func (o *StackReleaseSnapshotStack) HasClusterId() bool

HasClusterId returns a boolean if a field has been set.

func (*StackReleaseSnapshotStack) HasId

func (o *StackReleaseSnapshotStack) HasId() bool

HasId returns a boolean if a field has been set.

func (*StackReleaseSnapshotStack) HasLabels

func (o *StackReleaseSnapshotStack) HasLabels() bool

HasLabels returns a boolean if a field has been set.

func (*StackReleaseSnapshotStack) HasName

func (o *StackReleaseSnapshotStack) HasName() bool

HasName returns a boolean if a field has been set.

func (*StackReleaseSnapshotStack) HasNamespace

func (o *StackReleaseSnapshotStack) HasNamespace() bool

HasNamespace returns a boolean if a field has been set.

func (*StackReleaseSnapshotStack) HasNamespaceId

func (o *StackReleaseSnapshotStack) HasNamespaceId() bool

HasNamespaceId returns a boolean if a field has been set.

func (*StackReleaseSnapshotStack) HasOrganisationId

func (o *StackReleaseSnapshotStack) HasOrganisationId() bool

HasOrganisationId returns a boolean if a field has been set.

func (*StackReleaseSnapshotStack) HasProjectId

func (o *StackReleaseSnapshotStack) HasProjectId() bool

HasProjectId returns a boolean if a field has been set.

func (*StackReleaseSnapshotStack) HasUserId

func (o *StackReleaseSnapshotStack) HasUserId() bool

HasUserId returns a boolean if a field has been set.

func (StackReleaseSnapshotStack) MarshalJSON

func (o StackReleaseSnapshotStack) MarshalJSON() ([]byte, error)

func (*StackReleaseSnapshotStack) SetAnnotations

func (o *StackReleaseSnapshotStack) SetAnnotations(v map[string]string)

SetAnnotations gets a reference to the given map[string]string and assigns it to the Annotations field.

func (*StackReleaseSnapshotStack) SetClusterId

func (o *StackReleaseSnapshotStack) SetClusterId(v string)

SetClusterId gets a reference to the given string and assigns it to the ClusterId field.

func (*StackReleaseSnapshotStack) SetId

func (o *StackReleaseSnapshotStack) SetId(v string)

SetId gets a reference to the given string and assigns it to the Id field.

func (*StackReleaseSnapshotStack) SetLabels

func (o *StackReleaseSnapshotStack) SetLabels(v map[string]string)

SetLabels gets a reference to the given map[string]string and assigns it to the Labels field.

func (*StackReleaseSnapshotStack) SetName

func (o *StackReleaseSnapshotStack) SetName(v string)

SetName gets a reference to the given string and assigns it to the Name field.

func (*StackReleaseSnapshotStack) SetNamespace

func (o *StackReleaseSnapshotStack) SetNamespace(v string)

SetNamespace gets a reference to the given string and assigns it to the Namespace field.

func (*StackReleaseSnapshotStack) SetNamespaceId

func (o *StackReleaseSnapshotStack) SetNamespaceId(v string)

SetNamespaceId gets a reference to the given string and assigns it to the NamespaceId field.

func (*StackReleaseSnapshotStack) SetOrganisationId

func (o *StackReleaseSnapshotStack) SetOrganisationId(v string)

SetOrganisationId gets a reference to the given string and assigns it to the OrganisationId field.

func (*StackReleaseSnapshotStack) SetProjectId

func (o *StackReleaseSnapshotStack) SetProjectId(v string)

SetProjectId gets a reference to the given string and assigns it to the ProjectId field.

func (*StackReleaseSnapshotStack) SetUserId

func (o *StackReleaseSnapshotStack) SetUserId(v string)

SetUserId gets a reference to the given string and assigns it to the UserId field.

type StackReleaseState

type StackReleaseState string

StackReleaseState the model 'StackReleaseState'

const (
	RELEASE_STATE_PENDING     StackReleaseState = "Pending"
	RELEASE_STATE_IN_PROGRESS StackReleaseState = "InProgress"
	RELEASE_STATE_RELEASED    StackReleaseState = "Released"
	RELEASE_STATE_FAILED      StackReleaseState = "Failed"
	RELEASE_STATE_SUPERSEDED  StackReleaseState = "Superseded"
	RELEASE_STATE_CANCELLED   StackReleaseState = "Cancelled"
)

List of StackReleaseState

func NewStackReleaseStateFromValue

func NewStackReleaseStateFromValue(v string) (*StackReleaseState, error)

NewStackReleaseStateFromValue returns a pointer to a valid StackReleaseState for the value passed as argument, or an error if the value passed is not allowed by the enum

func (StackReleaseState) IsValid

func (v StackReleaseState) IsValid() bool

IsValid return true if the value is valid for the enum, false otherwise

func (StackReleaseState) Ptr

Ptr returns reference to StackReleaseState value

func (*StackReleaseState) UnmarshalJSON

func (v *StackReleaseState) UnmarshalJSON(src []byte) error

type StackResource

type StackResource struct {
	Id              *string            `json:"id,omitempty"`
	StackId         *string            `json:"stack_id,omitempty"`
	Name            string             `json:"name"`
	Labels          []Label            `json:"labels,omitempty"`
	Annotations     []Annotation       `json:"annotations,omitempty"`
	Revision        *string            `json:"revision,omitempty"`
	Source          *SourceSpec        `json:"source,omitempty"`
	InitSpec        *InitSpec          `json:"init_spec,omitempty"`
	ExecutionConfig *ExecutionConfig   `json:"execution_config,omitempty"`
	VolumeMounts    []VolumeMount      `json:"volume_mounts,omitempty"`
	DependsOn       []string           `json:"depends_on,omitempty"`
	LifecycleConfig *LifecycleConfig   `json:"lifecycle_config,omitempty"`
	Ports           []Port             `json:"ports,omitempty"`
	Outputs         []OutputDescriptor `json:"outputs,omitempty"`
	WorkloadType    *string            `json:"workload_type,omitempty"`
	Schedule        *string            `json:"schedule,omitempty"`
	Replicas        *int32             `json:"replicas,omitempty"`
}

StackResource struct for StackResource

func NewStackResource

func NewStackResource(name string) *StackResource

NewStackResource instantiates a new StackResource object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewStackResourceWithDefaults

func NewStackResourceWithDefaults() *StackResource

NewStackResourceWithDefaults instantiates a new StackResource object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*StackResource) GetAnnotations

func (o *StackResource) GetAnnotations() []Annotation

GetAnnotations returns the Annotations field value if set, zero value otherwise.

func (*StackResource) GetAnnotationsOk

func (o *StackResource) GetAnnotationsOk() ([]Annotation, bool)

GetAnnotationsOk returns a tuple with the Annotations field value if set, nil otherwise and a boolean to check if the value has been set.

func (*StackResource) GetDependsOn

func (o *StackResource) GetDependsOn() []string

GetDependsOn returns the DependsOn field value if set, zero value otherwise.

func (*StackResource) GetDependsOnOk

func (o *StackResource) GetDependsOnOk() ([]string, bool)

GetDependsOnOk returns a tuple with the DependsOn field value if set, nil otherwise and a boolean to check if the value has been set.

func (*StackResource) GetExecutionConfig

func (o *StackResource) GetExecutionConfig() ExecutionConfig

GetExecutionConfig returns the ExecutionConfig field value if set, zero value otherwise.

func (*StackResource) GetExecutionConfigOk

func (o *StackResource) GetExecutionConfigOk() (*ExecutionConfig, bool)

GetExecutionConfigOk returns a tuple with the ExecutionConfig field value if set, nil otherwise and a boolean to check if the value has been set.

func (*StackResource) GetId

func (o *StackResource) GetId() string

GetId returns the Id field value if set, zero value otherwise.

func (*StackResource) GetIdOk

func (o *StackResource) 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 (*StackResource) GetInitSpec

func (o *StackResource) GetInitSpec() InitSpec

GetInitSpec returns the InitSpec field value if set, zero value otherwise.

func (*StackResource) GetInitSpecOk

func (o *StackResource) GetInitSpecOk() (*InitSpec, bool)

GetInitSpecOk returns a tuple with the InitSpec field value if set, nil otherwise and a boolean to check if the value has been set.

func (*StackResource) GetLabels

func (o *StackResource) GetLabels() []Label

GetLabels returns the Labels field value if set, zero value otherwise.

func (*StackResource) GetLabelsOk

func (o *StackResource) GetLabelsOk() ([]Label, 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 (*StackResource) GetLifecycleConfig

func (o *StackResource) GetLifecycleConfig() LifecycleConfig

GetLifecycleConfig returns the LifecycleConfig field value if set, zero value otherwise.

func (*StackResource) GetLifecycleConfigOk

func (o *StackResource) GetLifecycleConfigOk() (*LifecycleConfig, bool)

GetLifecycleConfigOk returns a tuple with the LifecycleConfig field value if set, nil otherwise and a boolean to check if the value has been set.

func (*StackResource) GetName

func (o *StackResource) GetName() string

GetName returns the Name field value

func (*StackResource) GetNameOk

func (o *StackResource) GetNameOk() (*string, bool)

GetNameOk returns a tuple with the Name field value and a boolean to check if the value has been set.

func (*StackResource) GetOutputs

func (o *StackResource) GetOutputs() []OutputDescriptor

GetOutputs returns the Outputs field value if set, zero value otherwise.

func (*StackResource) GetOutputsOk

func (o *StackResource) GetOutputsOk() ([]OutputDescriptor, bool)

GetOutputsOk returns a tuple with the Outputs field value if set, nil otherwise and a boolean to check if the value has been set.

func (*StackResource) GetPorts

func (o *StackResource) GetPorts() []Port

GetPorts returns the Ports field value if set, zero value otherwise.

func (*StackResource) GetPortsOk

func (o *StackResource) 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 (*StackResource) GetReplicas

func (o *StackResource) GetReplicas() int32

GetReplicas returns the Replicas field value if set, zero value otherwise.

func (*StackResource) GetReplicasOk

func (o *StackResource) GetReplicasOk() (*int32, bool)

GetReplicasOk returns a tuple with the Replicas field value if set, nil otherwise and a boolean to check if the value has been set.

func (*StackResource) GetRevision

func (o *StackResource) GetRevision() string

GetRevision returns the Revision field value if set, zero value otherwise.

func (*StackResource) GetRevisionOk

func (o *StackResource) GetRevisionOk() (*string, bool)

GetRevisionOk returns a tuple with the Revision field value if set, nil otherwise and a boolean to check if the value has been set.

func (*StackResource) GetSchedule

func (o *StackResource) GetSchedule() string

GetSchedule returns the Schedule field value if set, zero value otherwise.

func (*StackResource) GetScheduleOk

func (o *StackResource) GetScheduleOk() (*string, bool)

GetScheduleOk returns a tuple with the Schedule field value if set, nil otherwise and a boolean to check if the value has been set.

func (*StackResource) GetSource

func (o *StackResource) GetSource() SourceSpec

GetSource returns the Source field value if set, zero value otherwise.

func (*StackResource) GetSourceOk

func (o *StackResource) GetSourceOk() (*SourceSpec, bool)

GetSourceOk returns a tuple with the Source field value if set, nil otherwise and a boolean to check if the value has been set.

func (*StackResource) GetStackId

func (o *StackResource) GetStackId() string

GetStackId returns the StackId field value if set, zero value otherwise.

func (*StackResource) GetStackIdOk

func (o *StackResource) GetStackIdOk() (*string, bool)

GetStackIdOk returns a tuple with the StackId field value if set, nil otherwise and a boolean to check if the value has been set.

func (*StackResource) GetVolumeMounts

func (o *StackResource) GetVolumeMounts() []VolumeMount

GetVolumeMounts returns the VolumeMounts field value if set, zero value otherwise.

func (*StackResource) GetVolumeMountsOk

func (o *StackResource) GetVolumeMountsOk() ([]VolumeMount, bool)

GetVolumeMountsOk returns a tuple with the VolumeMounts field value if set, nil otherwise and a boolean to check if the value has been set.

func (*StackResource) GetWorkloadType

func (o *StackResource) GetWorkloadType() string

GetWorkloadType returns the WorkloadType field value if set, zero value otherwise.

func (*StackResource) GetWorkloadTypeOk

func (o *StackResource) GetWorkloadTypeOk() (*string, bool)

GetWorkloadTypeOk returns a tuple with the WorkloadType field value if set, nil otherwise and a boolean to check if the value has been set.

func (*StackResource) HasAnnotations

func (o *StackResource) HasAnnotations() bool

HasAnnotations returns a boolean if a field has been set.

func (*StackResource) HasDependsOn

func (o *StackResource) HasDependsOn() bool

HasDependsOn returns a boolean if a field has been set.

func (*StackResource) HasExecutionConfig

func (o *StackResource) HasExecutionConfig() bool

HasExecutionConfig returns a boolean if a field has been set.

func (*StackResource) HasId

func (o *StackResource) HasId() bool

HasId returns a boolean if a field has been set.

func (*StackResource) HasInitSpec

func (o *StackResource) HasInitSpec() bool

HasInitSpec returns a boolean if a field has been set.

func (*StackResource) HasLabels

func (o *StackResource) HasLabels() bool

HasLabels returns a boolean if a field has been set.

func (*StackResource) HasLifecycleConfig

func (o *StackResource) HasLifecycleConfig() bool

HasLifecycleConfig returns a boolean if a field has been set.

func (*StackResource) HasOutputs

func (o *StackResource) HasOutputs() bool

HasOutputs returns a boolean if a field has been set.

func (*StackResource) HasPorts

func (o *StackResource) HasPorts() bool

HasPorts returns a boolean if a field has been set.

func (*StackResource) HasReplicas

func (o *StackResource) HasReplicas() bool

HasReplicas returns a boolean if a field has been set.

func (*StackResource) HasRevision

func (o *StackResource) HasRevision() bool

HasRevision returns a boolean if a field has been set.

func (*StackResource) HasSchedule

func (o *StackResource) HasSchedule() bool

HasSchedule returns a boolean if a field has been set.

func (*StackResource) HasSource

func (o *StackResource) HasSource() bool

HasSource returns a boolean if a field has been set.

func (*StackResource) HasStackId

func (o *StackResource) HasStackId() bool

HasStackId returns a boolean if a field has been set.

func (*StackResource) HasVolumeMounts

func (o *StackResource) HasVolumeMounts() bool

HasVolumeMounts returns a boolean if a field has been set.

func (*StackResource) HasWorkloadType

func (o *StackResource) HasWorkloadType() bool

HasWorkloadType returns a boolean if a field has been set.

func (StackResource) MarshalJSON

func (o StackResource) MarshalJSON() ([]byte, error)

func (*StackResource) SetAnnotations

func (o *StackResource) SetAnnotations(v []Annotation)

SetAnnotations gets a reference to the given []Annotation and assigns it to the Annotations field.

func (*StackResource) SetDependsOn

func (o *StackResource) SetDependsOn(v []string)

SetDependsOn gets a reference to the given []string and assigns it to the DependsOn field.

func (*StackResource) SetExecutionConfig

func (o *StackResource) SetExecutionConfig(v ExecutionConfig)

SetExecutionConfig gets a reference to the given ExecutionConfig and assigns it to the ExecutionConfig field.

func (*StackResource) SetId

func (o *StackResource) SetId(v string)

SetId gets a reference to the given string and assigns it to the Id field.

func (*StackResource) SetInitSpec

func (o *StackResource) SetInitSpec(v InitSpec)

SetInitSpec gets a reference to the given InitSpec and assigns it to the InitSpec field.

func (*StackResource) SetLabels

func (o *StackResource) SetLabels(v []Label)

SetLabels gets a reference to the given []Label and assigns it to the Labels field.

func (*StackResource) SetLifecycleConfig

func (o *StackResource) SetLifecycleConfig(v LifecycleConfig)

SetLifecycleConfig gets a reference to the given LifecycleConfig and assigns it to the LifecycleConfig field.

func (*StackResource) SetName

func (o *StackResource) SetName(v string)

SetName sets field value

func (*StackResource) SetOutputs

func (o *StackResource) SetOutputs(v []OutputDescriptor)

SetOutputs gets a reference to the given []OutputDescriptor and assigns it to the Outputs field.

func (*StackResource) SetPorts

func (o *StackResource) SetPorts(v []Port)

SetPorts gets a reference to the given []Port and assigns it to the Ports field.

func (*StackResource) SetReplicas

func (o *StackResource) SetReplicas(v int32)

SetReplicas gets a reference to the given int32 and assigns it to the Replicas field.

func (*StackResource) SetRevision

func (o *StackResource) SetRevision(v string)

SetRevision gets a reference to the given string and assigns it to the Revision field.

func (*StackResource) SetSchedule

func (o *StackResource) SetSchedule(v string)

SetSchedule gets a reference to the given string and assigns it to the Schedule field.

func (*StackResource) SetSource

func (o *StackResource) SetSource(v SourceSpec)

SetSource gets a reference to the given SourceSpec and assigns it to the Source field.

func (*StackResource) SetStackId

func (o *StackResource) SetStackId(v string)

SetStackId gets a reference to the given string and assigns it to the StackId field.

func (*StackResource) SetVolumeMounts

func (o *StackResource) SetVolumeMounts(v []VolumeMount)

SetVolumeMounts gets a reference to the given []VolumeMount and assigns it to the VolumeMounts field.

func (*StackResource) SetWorkloadType

func (o *StackResource) SetWorkloadType(v string)

SetWorkloadType gets a reference to the given string and assigns it to the WorkloadType field.

type StackResourceFailure

type StackResourceFailure struct {
	Type          *string                 `json:"type,omitempty"`
	Container     *ContainerFailureDetail `json:"container,omitempty"`
	InitContainer *ContainerFailureDetail `json:"init_container,omitempty"`
	Build         *BuildFailureDetail     `json:"build,omitempty"`
}

StackResourceFailure struct for StackResourceFailure

func NewStackResourceFailure

func NewStackResourceFailure() *StackResourceFailure

NewStackResourceFailure instantiates a new StackResourceFailure object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewStackResourceFailureWithDefaults

func NewStackResourceFailureWithDefaults() *StackResourceFailure

NewStackResourceFailureWithDefaults instantiates a new StackResourceFailure object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*StackResourceFailure) GetBuild

GetBuild returns the Build field value if set, zero value otherwise.

func (*StackResourceFailure) GetBuildOk

func (o *StackResourceFailure) GetBuildOk() (*BuildFailureDetail, bool)

GetBuildOk returns a tuple with the Build field value if set, nil otherwise and a boolean to check if the value has been set.

func (*StackResourceFailure) GetContainer

func (o *StackResourceFailure) GetContainer() ContainerFailureDetail

GetContainer returns the Container field value if set, zero value otherwise.

func (*StackResourceFailure) GetContainerOk

func (o *StackResourceFailure) GetContainerOk() (*ContainerFailureDetail, bool)

GetContainerOk returns a tuple with the Container field value if set, nil otherwise and a boolean to check if the value has been set.

func (*StackResourceFailure) GetInitContainer

func (o *StackResourceFailure) GetInitContainer() ContainerFailureDetail

GetInitContainer returns the InitContainer field value if set, zero value otherwise.

func (*StackResourceFailure) GetInitContainerOk

func (o *StackResourceFailure) GetInitContainerOk() (*ContainerFailureDetail, bool)

GetInitContainerOk returns a tuple with the InitContainer field value if set, nil otherwise and a boolean to check if the value has been set.

func (*StackResourceFailure) GetType

func (o *StackResourceFailure) GetType() string

GetType returns the Type field value if set, zero value otherwise.

func (*StackResourceFailure) GetTypeOk

func (o *StackResourceFailure) 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 (*StackResourceFailure) HasBuild

func (o *StackResourceFailure) HasBuild() bool

HasBuild returns a boolean if a field has been set.

func (*StackResourceFailure) HasContainer

func (o *StackResourceFailure) HasContainer() bool

HasContainer returns a boolean if a field has been set.

func (*StackResourceFailure) HasInitContainer

func (o *StackResourceFailure) HasInitContainer() bool

HasInitContainer returns a boolean if a field has been set.

func (*StackResourceFailure) HasType

func (o *StackResourceFailure) HasType() bool

HasType returns a boolean if a field has been set.

func (StackResourceFailure) MarshalJSON

func (o StackResourceFailure) MarshalJSON() ([]byte, error)

func (*StackResourceFailure) SetBuild

SetBuild gets a reference to the given BuildFailureDetail and assigns it to the Build field.

func (*StackResourceFailure) SetContainer

func (o *StackResourceFailure) SetContainer(v ContainerFailureDetail)

SetContainer gets a reference to the given ContainerFailureDetail and assigns it to the Container field.

func (*StackResourceFailure) SetInitContainer

func (o *StackResourceFailure) SetInitContainer(v ContainerFailureDetail)

SetInitContainer gets a reference to the given ContainerFailureDetail and assigns it to the InitContainer field.

func (*StackResourceFailure) SetType

func (o *StackResourceFailure) SetType(v string)

SetType gets a reference to the given string and assigns it to the Type field.

type StackResourceList

type StackResourceList struct {
	Items []StackResource `json:"items,omitempty"`
	Total *int32          `json:"total,omitempty"`
}

StackResourceList struct for StackResourceList

func NewStackResourceList

func NewStackResourceList() *StackResourceList

NewStackResourceList instantiates a new StackResourceList object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewStackResourceListWithDefaults

func NewStackResourceListWithDefaults() *StackResourceList

NewStackResourceListWithDefaults instantiates a new StackResourceList object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*StackResourceList) GetItems

func (o *StackResourceList) GetItems() []StackResource

GetItems returns the Items field value if set, zero value otherwise.

func (*StackResourceList) GetItemsOk

func (o *StackResourceList) GetItemsOk() ([]StackResource, bool)

GetItemsOk returns a tuple with the Items field value if set, nil otherwise and a boolean to check if the value has been set.

func (*StackResourceList) GetTotal

func (o *StackResourceList) GetTotal() int32

GetTotal returns the Total field value if set, zero value otherwise.

func (*StackResourceList) GetTotalOk

func (o *StackResourceList) GetTotalOk() (*int32, 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 (*StackResourceList) HasItems

func (o *StackResourceList) HasItems() bool

HasItems returns a boolean if a field has been set.

func (*StackResourceList) HasTotal

func (o *StackResourceList) HasTotal() bool

HasTotal returns a boolean if a field has been set.

func (StackResourceList) MarshalJSON

func (o StackResourceList) MarshalJSON() ([]byte, error)

func (*StackResourceList) SetItems

func (o *StackResourceList) SetItems(v []StackResource)

SetItems gets a reference to the given []StackResource and assigns it to the Items field.

func (*StackResourceList) SetTotal

func (o *StackResourceList) SetTotal(v int32)

SetTotal gets a reference to the given int32 and assigns it to the Total field.

type StackResourceStatus

type StackResourceStatus struct {
	PublicIngress                 []Ingress             `json:"public_ingress,omitempty"`
	InternalServiceName           *string               `json:"internal_service_name,omitempty"`
	LastRestartRequestProcessedAt *time.Time            `json:"last_restart_request_processed_at,omitempty"`
	State                         *string               `json:"state,omitempty"`
	Message                       *string               `json:"message,omitempty"`
	ObservedRevision              *string               `json:"observed_revision,omitempty"`
	Conditions                    []Condition           `json:"conditions,omitempty"`
	LastFailure                   *StackResourceFailure `json:"last_failure,omitempty"`
	Replicas                      *int32                `json:"replicas,omitempty"`
	AvailableReplicas             *int32                `json:"available_replicas,omitempty"`
	UpdatedReplicas               *int32                `json:"updated_replicas,omitempty"`
	LastRunTime                   *time.Time            `json:"last_run_time,omitempty"`
	LastRunSucceeded              *bool                 `json:"last_run_succeeded,omitempty"`
}

StackResourceStatus struct for StackResourceStatus

func NewStackResourceStatus

func NewStackResourceStatus() *StackResourceStatus

NewStackResourceStatus instantiates a new StackResourceStatus object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewStackResourceStatusWithDefaults

func NewStackResourceStatusWithDefaults() *StackResourceStatus

NewStackResourceStatusWithDefaults instantiates a new StackResourceStatus object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*StackResourceStatus) GetAvailableReplicas

func (o *StackResourceStatus) GetAvailableReplicas() int32

GetAvailableReplicas returns the AvailableReplicas field value if set, zero value otherwise.

func (*StackResourceStatus) GetAvailableReplicasOk

func (o *StackResourceStatus) GetAvailableReplicasOk() (*int32, bool)

GetAvailableReplicasOk returns a tuple with the AvailableReplicas field value if set, nil otherwise and a boolean to check if the value has been set.

func (*StackResourceStatus) GetConditions

func (o *StackResourceStatus) GetConditions() []Condition

GetConditions returns the Conditions field value if set, zero value otherwise.

func (*StackResourceStatus) GetConditionsOk

func (o *StackResourceStatus) GetConditionsOk() ([]Condition, bool)

GetConditionsOk returns a tuple with the Conditions field value if set, nil otherwise and a boolean to check if the value has been set.

func (*StackResourceStatus) GetInternalServiceName

func (o *StackResourceStatus) GetInternalServiceName() string

GetInternalServiceName returns the InternalServiceName field value if set, zero value otherwise.

func (*StackResourceStatus) GetInternalServiceNameOk

func (o *StackResourceStatus) GetInternalServiceNameOk() (*string, bool)

GetInternalServiceNameOk returns a tuple with the InternalServiceName field value if set, nil otherwise and a boolean to check if the value has been set.

func (*StackResourceStatus) GetLastFailure

func (o *StackResourceStatus) GetLastFailure() StackResourceFailure

GetLastFailure returns the LastFailure field value if set, zero value otherwise.

func (*StackResourceStatus) GetLastFailureOk

func (o *StackResourceStatus) GetLastFailureOk() (*StackResourceFailure, bool)

GetLastFailureOk returns a tuple with the LastFailure field value if set, nil otherwise and a boolean to check if the value has been set.

func (*StackResourceStatus) GetLastRestartRequestProcessedAt

func (o *StackResourceStatus) GetLastRestartRequestProcessedAt() time.Time

GetLastRestartRequestProcessedAt returns the LastRestartRequestProcessedAt field value if set, zero value otherwise.

func (*StackResourceStatus) GetLastRestartRequestProcessedAtOk

func (o *StackResourceStatus) GetLastRestartRequestProcessedAtOk() (*time.Time, bool)

GetLastRestartRequestProcessedAtOk returns a tuple with the LastRestartRequestProcessedAt field value if set, nil otherwise and a boolean to check if the value has been set.

func (*StackResourceStatus) GetLastRunSucceeded

func (o *StackResourceStatus) GetLastRunSucceeded() bool

GetLastRunSucceeded returns the LastRunSucceeded field value if set, zero value otherwise.

func (*StackResourceStatus) GetLastRunSucceededOk

func (o *StackResourceStatus) GetLastRunSucceededOk() (*bool, bool)

GetLastRunSucceededOk returns a tuple with the LastRunSucceeded field value if set, nil otherwise and a boolean to check if the value has been set.

func (*StackResourceStatus) GetLastRunTime

func (o *StackResourceStatus) GetLastRunTime() time.Time

GetLastRunTime returns the LastRunTime field value if set, zero value otherwise.

func (*StackResourceStatus) GetLastRunTimeOk

func (o *StackResourceStatus) GetLastRunTimeOk() (*time.Time, bool)

GetLastRunTimeOk returns a tuple with the LastRunTime field value if set, nil otherwise and a boolean to check if the value has been set.

func (*StackResourceStatus) GetMessage

func (o *StackResourceStatus) GetMessage() string

GetMessage returns the Message field value if set, zero value otherwise.

func (*StackResourceStatus) GetMessageOk

func (o *StackResourceStatus) 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 (*StackResourceStatus) GetObservedRevision

func (o *StackResourceStatus) GetObservedRevision() string

GetObservedRevision returns the ObservedRevision field value if set, zero value otherwise.

func (*StackResourceStatus) GetObservedRevisionOk

func (o *StackResourceStatus) GetObservedRevisionOk() (*string, bool)

GetObservedRevisionOk returns a tuple with the ObservedRevision field value if set, nil otherwise and a boolean to check if the value has been set.

func (*StackResourceStatus) GetPublicIngress

func (o *StackResourceStatus) GetPublicIngress() []Ingress

GetPublicIngress returns the PublicIngress field value if set, zero value otherwise.

func (*StackResourceStatus) GetPublicIngressOk

func (o *StackResourceStatus) GetPublicIngressOk() ([]Ingress, bool)

GetPublicIngressOk returns a tuple with the PublicIngress field value if set, nil otherwise and a boolean to check if the value has been set.

func (*StackResourceStatus) GetReplicas

func (o *StackResourceStatus) GetReplicas() int32

GetReplicas returns the Replicas field value if set, zero value otherwise.

func (*StackResourceStatus) GetReplicasOk

func (o *StackResourceStatus) GetReplicasOk() (*int32, bool)

GetReplicasOk returns a tuple with the Replicas field value if set, nil otherwise and a boolean to check if the value has been set.

func (*StackResourceStatus) GetState

func (o *StackResourceStatus) GetState() string

GetState returns the State field value if set, zero value otherwise.

func (*StackResourceStatus) GetStateOk

func (o *StackResourceStatus) 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 (*StackResourceStatus) GetUpdatedReplicas

func (o *StackResourceStatus) GetUpdatedReplicas() int32

GetUpdatedReplicas returns the UpdatedReplicas field value if set, zero value otherwise.

func (*StackResourceStatus) GetUpdatedReplicasOk

func (o *StackResourceStatus) GetUpdatedReplicasOk() (*int32, bool)

GetUpdatedReplicasOk returns a tuple with the UpdatedReplicas field value if set, nil otherwise and a boolean to check if the value has been set.

func (*StackResourceStatus) HasAvailableReplicas

func (o *StackResourceStatus) HasAvailableReplicas() bool

HasAvailableReplicas returns a boolean if a field has been set.

func (*StackResourceStatus) HasConditions

func (o *StackResourceStatus) HasConditions() bool

HasConditions returns a boolean if a field has been set.

func (*StackResourceStatus) HasInternalServiceName

func (o *StackResourceStatus) HasInternalServiceName() bool

HasInternalServiceName returns a boolean if a field has been set.

func (*StackResourceStatus) HasLastFailure

func (o *StackResourceStatus) HasLastFailure() bool

HasLastFailure returns a boolean if a field has been set.

func (*StackResourceStatus) HasLastRestartRequestProcessedAt

func (o *StackResourceStatus) HasLastRestartRequestProcessedAt() bool

HasLastRestartRequestProcessedAt returns a boolean if a field has been set.

func (*StackResourceStatus) HasLastRunSucceeded

func (o *StackResourceStatus) HasLastRunSucceeded() bool

HasLastRunSucceeded returns a boolean if a field has been set.

func (*StackResourceStatus) HasLastRunTime

func (o *StackResourceStatus) HasLastRunTime() bool

HasLastRunTime returns a boolean if a field has been set.

func (*StackResourceStatus) HasMessage

func (o *StackResourceStatus) HasMessage() bool

HasMessage returns a boolean if a field has been set.

func (*StackResourceStatus) HasObservedRevision

func (o *StackResourceStatus) HasObservedRevision() bool

HasObservedRevision returns a boolean if a field has been set.

func (*StackResourceStatus) HasPublicIngress

func (o *StackResourceStatus) HasPublicIngress() bool

HasPublicIngress returns a boolean if a field has been set.

func (*StackResourceStatus) HasReplicas

func (o *StackResourceStatus) HasReplicas() bool

HasReplicas returns a boolean if a field has been set.

func (*StackResourceStatus) HasState

func (o *StackResourceStatus) HasState() bool

HasState returns a boolean if a field has been set.

func (*StackResourceStatus) HasUpdatedReplicas

func (o *StackResourceStatus) HasUpdatedReplicas() bool

HasUpdatedReplicas returns a boolean if a field has been set.

func (StackResourceStatus) MarshalJSON

func (o StackResourceStatus) MarshalJSON() ([]byte, error)

func (*StackResourceStatus) SetAvailableReplicas

func (o *StackResourceStatus) SetAvailableReplicas(v int32)

SetAvailableReplicas gets a reference to the given int32 and assigns it to the AvailableReplicas field.

func (*StackResourceStatus) SetConditions

func (o *StackResourceStatus) SetConditions(v []Condition)

SetConditions gets a reference to the given []Condition and assigns it to the Conditions field.

func (*StackResourceStatus) SetInternalServiceName

func (o *StackResourceStatus) SetInternalServiceName(v string)

SetInternalServiceName gets a reference to the given string and assigns it to the InternalServiceName field.

func (*StackResourceStatus) SetLastFailure

func (o *StackResourceStatus) SetLastFailure(v StackResourceFailure)

SetLastFailure gets a reference to the given StackResourceFailure and assigns it to the LastFailure field.

func (*StackResourceStatus) SetLastRestartRequestProcessedAt

func (o *StackResourceStatus) SetLastRestartRequestProcessedAt(v time.Time)

SetLastRestartRequestProcessedAt gets a reference to the given time.Time and assigns it to the LastRestartRequestProcessedAt field.

func (*StackResourceStatus) SetLastRunSucceeded

func (o *StackResourceStatus) SetLastRunSucceeded(v bool)

SetLastRunSucceeded gets a reference to the given bool and assigns it to the LastRunSucceeded field.

func (*StackResourceStatus) SetLastRunTime

func (o *StackResourceStatus) SetLastRunTime(v time.Time)

SetLastRunTime gets a reference to the given time.Time and assigns it to the LastRunTime field.

func (*StackResourceStatus) SetMessage

func (o *StackResourceStatus) SetMessage(v string)

SetMessage gets a reference to the given string and assigns it to the Message field.

func (*StackResourceStatus) SetObservedRevision

func (o *StackResourceStatus) SetObservedRevision(v string)

SetObservedRevision gets a reference to the given string and assigns it to the ObservedRevision field.

func (*StackResourceStatus) SetPublicIngress

func (o *StackResourceStatus) SetPublicIngress(v []Ingress)

SetPublicIngress gets a reference to the given []Ingress and assigns it to the PublicIngress field.

func (*StackResourceStatus) SetReplicas

func (o *StackResourceStatus) SetReplicas(v int32)

SetReplicas gets a reference to the given int32 and assigns it to the Replicas field.

func (*StackResourceStatus) SetState

func (o *StackResourceStatus) SetState(v string)

SetState gets a reference to the given string and assigns it to the State field.

func (*StackResourceStatus) SetUpdatedReplicas

func (o *StackResourceStatus) SetUpdatedReplicas(v int32)

SetUpdatedReplicas gets a reference to the given int32 and assigns it to the UpdatedReplicas field.

type StackSettings

type StackSettings struct {
	// Maximum total releases to retain per stack
	ReleaseRetentionLimit *int32 `json:"release_retention_limit,omitempty"`
	// Minimum number of successful releases to always keep
	MinSuccessfulReleases *int32 `json:"min_successful_releases,omitempty"`
}

StackSettings struct for StackSettings

func NewStackSettings

func NewStackSettings() *StackSettings

NewStackSettings instantiates a new StackSettings object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewStackSettingsWithDefaults

func NewStackSettingsWithDefaults() *StackSettings

NewStackSettingsWithDefaults instantiates a new StackSettings object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*StackSettings) GetMinSuccessfulReleases

func (o *StackSettings) GetMinSuccessfulReleases() int32

GetMinSuccessfulReleases returns the MinSuccessfulReleases field value if set, zero value otherwise.

func (*StackSettings) GetMinSuccessfulReleasesOk

func (o *StackSettings) GetMinSuccessfulReleasesOk() (*int32, bool)

GetMinSuccessfulReleasesOk returns a tuple with the MinSuccessfulReleases field value if set, nil otherwise and a boolean to check if the value has been set.

func (*StackSettings) GetReleaseRetentionLimit

func (o *StackSettings) GetReleaseRetentionLimit() int32

GetReleaseRetentionLimit returns the ReleaseRetentionLimit field value if set, zero value otherwise.

func (*StackSettings) GetReleaseRetentionLimitOk

func (o *StackSettings) GetReleaseRetentionLimitOk() (*int32, bool)

GetReleaseRetentionLimitOk returns a tuple with the ReleaseRetentionLimit field value if set, nil otherwise and a boolean to check if the value has been set.

func (*StackSettings) HasMinSuccessfulReleases

func (o *StackSettings) HasMinSuccessfulReleases() bool

HasMinSuccessfulReleases returns a boolean if a field has been set.

func (*StackSettings) HasReleaseRetentionLimit

func (o *StackSettings) HasReleaseRetentionLimit() bool

HasReleaseRetentionLimit returns a boolean if a field has been set.

func (StackSettings) MarshalJSON

func (o StackSettings) MarshalJSON() ([]byte, error)

func (*StackSettings) SetMinSuccessfulReleases

func (o *StackSettings) SetMinSuccessfulReleases(v int32)

SetMinSuccessfulReleases gets a reference to the given int32 and assigns it to the MinSuccessfulReleases field.

func (*StackSettings) SetReleaseRetentionLimit

func (o *StackSettings) SetReleaseRetentionLimit(v int32)

SetReleaseRetentionLimit gets a reference to the given int32 and assigns it to the ReleaseRetentionLimit field.

type StackSpec

type StackSpec struct {
	StackResources []StackResource   `json:"stack_resources,omitempty"`
	Volumes        []Volume          `json:"volumes,omitempty"`
	Connections    []StackConnection `json:"connections,omitempty"`
}

StackSpec struct for StackSpec

func NewStackSpec

func NewStackSpec() *StackSpec

NewStackSpec instantiates a new StackSpec object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewStackSpecWithDefaults

func NewStackSpecWithDefaults() *StackSpec

NewStackSpecWithDefaults instantiates a new StackSpec object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*StackSpec) GetConnections

func (o *StackSpec) GetConnections() []StackConnection

GetConnections returns the Connections field value if set, zero value otherwise.

func (*StackSpec) GetConnectionsOk

func (o *StackSpec) GetConnectionsOk() ([]StackConnection, bool)

GetConnectionsOk returns a tuple with the Connections field value if set, nil otherwise and a boolean to check if the value has been set.

func (*StackSpec) GetStackResources

func (o *StackSpec) GetStackResources() []StackResource

GetStackResources returns the StackResources field value if set, zero value otherwise.

func (*StackSpec) GetStackResourcesOk

func (o *StackSpec) GetStackResourcesOk() ([]StackResource, bool)

GetStackResourcesOk returns a tuple with the StackResources field value if set, nil otherwise and a boolean to check if the value has been set.

func (*StackSpec) GetVolumes

func (o *StackSpec) GetVolumes() []Volume

GetVolumes returns the Volumes field value if set, zero value otherwise.

func (*StackSpec) GetVolumesOk

func (o *StackSpec) GetVolumesOk() ([]Volume, bool)

GetVolumesOk returns a tuple with the Volumes field value if set, nil otherwise and a boolean to check if the value has been set.

func (*StackSpec) HasConnections

func (o *StackSpec) HasConnections() bool

HasConnections returns a boolean if a field has been set.

func (*StackSpec) HasStackResources

func (o *StackSpec) HasStackResources() bool

HasStackResources returns a boolean if a field has been set.

func (*StackSpec) HasVolumes

func (o *StackSpec) HasVolumes() bool

HasVolumes returns a boolean if a field has been set.

func (StackSpec) MarshalJSON

func (o StackSpec) MarshalJSON() ([]byte, error)

func (*StackSpec) SetConnections

func (o *StackSpec) SetConnections(v []StackConnection)

SetConnections gets a reference to the given []StackConnection and assigns it to the Connections field.

func (*StackSpec) SetStackResources

func (o *StackSpec) SetStackResources(v []StackResource)

SetStackResources gets a reference to the given []StackResource and assigns it to the StackResources field.

func (*StackSpec) SetVolumes

func (o *StackSpec) SetVolumes(v []Volume)

SetVolumes gets a reference to the given []Volume and assigns it to the Volumes field.

type StackTopology

type StackTopology struct {
	Nodes []TopologyNode `json:"nodes"`
	Edges []TopologyEdge `json:"edges"`
}

StackTopology struct for StackTopology

func NewStackTopology

func NewStackTopology(nodes []TopologyNode, edges []TopologyEdge) *StackTopology

NewStackTopology instantiates a new StackTopology object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewStackTopologyWithDefaults

func NewStackTopologyWithDefaults() *StackTopology

NewStackTopologyWithDefaults instantiates a new StackTopology object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*StackTopology) GetEdges

func (o *StackTopology) GetEdges() []TopologyEdge

GetEdges returns the Edges field value

func (*StackTopology) GetEdgesOk

func (o *StackTopology) GetEdgesOk() ([]TopologyEdge, bool)

GetEdgesOk returns a tuple with the Edges field value and a boolean to check if the value has been set.

func (*StackTopology) GetNodes

func (o *StackTopology) GetNodes() []TopologyNode

GetNodes returns the Nodes field value

func (*StackTopology) GetNodesOk

func (o *StackTopology) GetNodesOk() ([]TopologyNode, bool)

GetNodesOk returns a tuple with the Nodes field value and a boolean to check if the value has been set.

func (StackTopology) MarshalJSON

func (o StackTopology) MarshalJSON() ([]byte, error)

func (*StackTopology) SetEdges

func (o *StackTopology) SetEdges(v []TopologyEdge)

SetEdges sets field value

func (*StackTopology) SetNodes

func (o *StackTopology) SetNodes(v []TopologyNode)

SetNodes sets field value

type TopologyEdge

type TopologyEdge struct {
	Id *string `json:"id,omitempty"`
	// Edge kind. Explicit connections reuse connection kinds; derived edges use depends_on.
	Kind     string                 `json:"kind"`
	Source   TopologyNodeRef        `json:"source"`
	Target   TopologyNodeRef        `json:"target"`
	Mappings []ConnectionMapping    `json:"mappings,omitempty"`
	Config   *StackConnectionConfig `json:"config,omitempty"`
	// Whether the edge came from an explicit connection or a derived relationship such as depends_on.
	SourceOfTruth string `json:"source_of_truth"`
}

TopologyEdge An edge in the stack topology graph.

func NewTopologyEdge

func NewTopologyEdge(kind string, source TopologyNodeRef, target TopologyNodeRef, sourceOfTruth string) *TopologyEdge

NewTopologyEdge instantiates a new TopologyEdge object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewTopologyEdgeWithDefaults

func NewTopologyEdgeWithDefaults() *TopologyEdge

NewTopologyEdgeWithDefaults instantiates a new TopologyEdge object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*TopologyEdge) GetConfig

func (o *TopologyEdge) GetConfig() StackConnectionConfig

GetConfig returns the Config field value if set, zero value otherwise.

func (*TopologyEdge) GetConfigOk

func (o *TopologyEdge) GetConfigOk() (*StackConnectionConfig, bool)

GetConfigOk returns a tuple with the Config field value if set, nil otherwise and a boolean to check if the value has been set.

func (*TopologyEdge) GetId

func (o *TopologyEdge) GetId() string

GetId returns the Id field value if set, zero value otherwise.

func (*TopologyEdge) GetIdOk

func (o *TopologyEdge) 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 (*TopologyEdge) GetKind

func (o *TopologyEdge) GetKind() string

GetKind returns the Kind field value

func (*TopologyEdge) GetKindOk

func (o *TopologyEdge) GetKindOk() (*string, bool)

GetKindOk returns a tuple with the Kind field value and a boolean to check if the value has been set.

func (*TopologyEdge) GetMappings

func (o *TopologyEdge) GetMappings() []ConnectionMapping

GetMappings returns the Mappings field value if set, zero value otherwise.

func (*TopologyEdge) GetMappingsOk

func (o *TopologyEdge) GetMappingsOk() ([]ConnectionMapping, bool)

GetMappingsOk returns a tuple with the Mappings field value if set, nil otherwise and a boolean to check if the value has been set.

func (*TopologyEdge) GetSource

func (o *TopologyEdge) GetSource() TopologyNodeRef

GetSource returns the Source field value

func (*TopologyEdge) GetSourceOfTruth

func (o *TopologyEdge) GetSourceOfTruth() string

GetSourceOfTruth returns the SourceOfTruth field value

func (*TopologyEdge) GetSourceOfTruthOk

func (o *TopologyEdge) GetSourceOfTruthOk() (*string, bool)

GetSourceOfTruthOk returns a tuple with the SourceOfTruth field value and a boolean to check if the value has been set.

func (*TopologyEdge) GetSourceOk

func (o *TopologyEdge) GetSourceOk() (*TopologyNodeRef, bool)

GetSourceOk returns a tuple with the Source field value and a boolean to check if the value has been set.

func (*TopologyEdge) GetTarget

func (o *TopologyEdge) GetTarget() TopologyNodeRef

GetTarget returns the Target field value

func (*TopologyEdge) GetTargetOk

func (o *TopologyEdge) GetTargetOk() (*TopologyNodeRef, bool)

GetTargetOk returns a tuple with the Target field value and a boolean to check if the value has been set.

func (*TopologyEdge) HasConfig

func (o *TopologyEdge) HasConfig() bool

HasConfig returns a boolean if a field has been set.

func (*TopologyEdge) HasId

func (o *TopologyEdge) HasId() bool

HasId returns a boolean if a field has been set.

func (*TopologyEdge) HasMappings

func (o *TopologyEdge) HasMappings() bool

HasMappings returns a boolean if a field has been set.

func (TopologyEdge) MarshalJSON

func (o TopologyEdge) MarshalJSON() ([]byte, error)

func (*TopologyEdge) SetConfig

func (o *TopologyEdge) SetConfig(v StackConnectionConfig)

SetConfig gets a reference to the given StackConnectionConfig and assigns it to the Config field.

func (*TopologyEdge) SetId

func (o *TopologyEdge) SetId(v string)

SetId gets a reference to the given string and assigns it to the Id field.

func (*TopologyEdge) SetKind

func (o *TopologyEdge) SetKind(v string)

SetKind sets field value

func (*TopologyEdge) SetMappings

func (o *TopologyEdge) SetMappings(v []ConnectionMapping)

SetMappings gets a reference to the given []ConnectionMapping and assigns it to the Mappings field.

func (*TopologyEdge) SetSource

func (o *TopologyEdge) SetSource(v TopologyNodeRef)

SetSource sets field value

func (*TopologyEdge) SetSourceOfTruth

func (o *TopologyEdge) SetSourceOfTruth(v string)

SetSourceOfTruth sets field value

func (*TopologyEdge) SetTarget

func (o *TopologyEdge) SetTarget(v TopologyNodeRef)

SetTarget sets field value

type TopologyNode

type TopologyNode struct {
	Ref     TopologyNodeRef    `json:"ref"`
	Label   string             `json:"label"`
	Outputs []OutputDescriptor `json:"outputs,omitempty"`
	// Optional runtime state for nodes that have status, such as stack resources or addons.
	State *string `json:"state,omitempty"`
}

TopologyNode A node in the stack topology graph.

func NewTopologyNode

func NewTopologyNode(ref TopologyNodeRef, label string) *TopologyNode

NewTopologyNode instantiates a new TopologyNode object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewTopologyNodeWithDefaults

func NewTopologyNodeWithDefaults() *TopologyNode

NewTopologyNodeWithDefaults instantiates a new TopologyNode object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*TopologyNode) GetLabel

func (o *TopologyNode) GetLabel() string

GetLabel returns the Label field value

func (*TopologyNode) GetLabelOk

func (o *TopologyNode) GetLabelOk() (*string, bool)

GetLabelOk returns a tuple with the Label field value and a boolean to check if the value has been set.

func (*TopologyNode) GetOutputs

func (o *TopologyNode) GetOutputs() []OutputDescriptor

GetOutputs returns the Outputs field value if set, zero value otherwise.

func (*TopologyNode) GetOutputsOk

func (o *TopologyNode) GetOutputsOk() ([]OutputDescriptor, bool)

GetOutputsOk returns a tuple with the Outputs field value if set, nil otherwise and a boolean to check if the value has been set.

func (*TopologyNode) GetRef

func (o *TopologyNode) GetRef() TopologyNodeRef

GetRef returns the Ref field value

func (*TopologyNode) GetRefOk

func (o *TopologyNode) GetRefOk() (*TopologyNodeRef, bool)

GetRefOk returns a tuple with the Ref field value and a boolean to check if the value has been set.

func (*TopologyNode) GetState

func (o *TopologyNode) GetState() string

GetState returns the State field value if set, zero value otherwise.

func (*TopologyNode) GetStateOk

func (o *TopologyNode) 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 (*TopologyNode) HasOutputs

func (o *TopologyNode) HasOutputs() bool

HasOutputs returns a boolean if a field has been set.

func (*TopologyNode) HasState

func (o *TopologyNode) HasState() bool

HasState returns a boolean if a field has been set.

func (TopologyNode) MarshalJSON

func (o TopologyNode) MarshalJSON() ([]byte, error)

func (*TopologyNode) SetLabel

func (o *TopologyNode) SetLabel(v string)

SetLabel sets field value

func (*TopologyNode) SetOutputs

func (o *TopologyNode) SetOutputs(v []OutputDescriptor)

SetOutputs gets a reference to the given []OutputDescriptor and assigns it to the Outputs field.

func (*TopologyNode) SetRef

func (o *TopologyNode) SetRef(v TopologyNodeRef)

SetRef sets field value

func (*TopologyNode) SetState

func (o *TopologyNode) SetState(v string)

SetState gets a reference to the given string and assigns it to the State field.

type TopologyNodeRef

type TopologyNodeRef struct {
	// The node category.
	Type string `json:"type"`
	// Stable ID for persisted resources such as addons or secrets.
	Id *string `json:"id,omitempty"`
	// Name-scoped reference for stack-local resources such as StackResources or Volumes.
	Name *string `json:"name,omitempty"`
}

TopologyNodeRef Identifies a topology node within the stack graph.

func NewTopologyNodeRef

func NewTopologyNodeRef(type_ string) *TopologyNodeRef

NewTopologyNodeRef instantiates a new TopologyNodeRef object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewTopologyNodeRefWithDefaults

func NewTopologyNodeRefWithDefaults() *TopologyNodeRef

NewTopologyNodeRefWithDefaults instantiates a new TopologyNodeRef object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*TopologyNodeRef) GetId

func (o *TopologyNodeRef) GetId() string

GetId returns the Id field value if set, zero value otherwise.

func (*TopologyNodeRef) GetIdOk

func (o *TopologyNodeRef) 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 (*TopologyNodeRef) GetName

func (o *TopologyNodeRef) GetName() string

GetName returns the Name field value if set, zero value otherwise.

func (*TopologyNodeRef) GetNameOk

func (o *TopologyNodeRef) 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 (*TopologyNodeRef) GetType

func (o *TopologyNodeRef) GetType() string

GetType returns the Type field value

func (*TopologyNodeRef) GetTypeOk

func (o *TopologyNodeRef) GetTypeOk() (*string, bool)

GetTypeOk returns a tuple with the Type field value and a boolean to check if the value has been set.

func (*TopologyNodeRef) HasId

func (o *TopologyNodeRef) HasId() bool

HasId returns a boolean if a field has been set.

func (*TopologyNodeRef) HasName

func (o *TopologyNodeRef) HasName() bool

HasName returns a boolean if a field has been set.

func (TopologyNodeRef) MarshalJSON

func (o TopologyNodeRef) MarshalJSON() ([]byte, error)

func (*TopologyNodeRef) SetId

func (o *TopologyNodeRef) SetId(v string)

SetId gets a reference to the given string and assigns it to the Id field.

func (*TopologyNodeRef) SetName

func (o *TopologyNodeRef) SetName(v string)

SetName gets a reference to the given string and assigns it to the Name field.

func (*TopologyNodeRef) SetType

func (o *TopologyNodeRef) SetType(v string)

SetType sets field value

type TurnstileConfigResponse

type TurnstileConfigResponse struct {
	// True when password signup requires a Turnstile challenge.
	Enabled bool `json:"enabled"`
	// Public Turnstile site key used to render the signup widget.
	SiteKey string `json:"site_key"`
	// Turnstile action submitted by the signup widget.
	Action string `json:"action"`
}

TurnstileConfigResponse struct for TurnstileConfigResponse

func NewTurnstileConfigResponse

func NewTurnstileConfigResponse(enabled bool, siteKey string, action string) *TurnstileConfigResponse

NewTurnstileConfigResponse instantiates a new TurnstileConfigResponse object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewTurnstileConfigResponseWithDefaults

func NewTurnstileConfigResponseWithDefaults() *TurnstileConfigResponse

NewTurnstileConfigResponseWithDefaults instantiates a new TurnstileConfigResponse object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*TurnstileConfigResponse) GetAction

func (o *TurnstileConfigResponse) GetAction() string

GetAction returns the Action field value

func (*TurnstileConfigResponse) GetActionOk

func (o *TurnstileConfigResponse) GetActionOk() (*string, bool)

GetActionOk returns a tuple with the Action field value and a boolean to check if the value has been set.

func (*TurnstileConfigResponse) GetEnabled

func (o *TurnstileConfigResponse) GetEnabled() bool

GetEnabled returns the Enabled field value

func (*TurnstileConfigResponse) GetEnabledOk

func (o *TurnstileConfigResponse) GetEnabledOk() (*bool, bool)

GetEnabledOk returns a tuple with the Enabled field value and a boolean to check if the value has been set.

func (*TurnstileConfigResponse) GetSiteKey

func (o *TurnstileConfigResponse) GetSiteKey() string

GetSiteKey returns the SiteKey field value

func (*TurnstileConfigResponse) GetSiteKeyOk

func (o *TurnstileConfigResponse) GetSiteKeyOk() (*string, bool)

GetSiteKeyOk returns a tuple with the SiteKey field value and a boolean to check if the value has been set.

func (TurnstileConfigResponse) MarshalJSON

func (o TurnstileConfigResponse) MarshalJSON() ([]byte, error)

func (*TurnstileConfigResponse) SetAction

func (o *TurnstileConfigResponse) SetAction(v string)

SetAction sets field value

func (*TurnstileConfigResponse) SetEnabled

func (o *TurnstileConfigResponse) SetEnabled(v bool)

SetEnabled sets field value

func (*TurnstileConfigResponse) SetSiteKey

func (o *TurnstileConfigResponse) SetSiteKey(v string)

SetSiteKey sets field value

type UpdateProjectMemberRoleRequest

type UpdateProjectMemberRoleRequest struct {
	Role ProjectRole `json:"role"`
}

UpdateProjectMemberRoleRequest struct for UpdateProjectMemberRoleRequest

func NewUpdateProjectMemberRoleRequest

func NewUpdateProjectMemberRoleRequest(role ProjectRole) *UpdateProjectMemberRoleRequest

NewUpdateProjectMemberRoleRequest instantiates a new UpdateProjectMemberRoleRequest object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewUpdateProjectMemberRoleRequestWithDefaults

func NewUpdateProjectMemberRoleRequestWithDefaults() *UpdateProjectMemberRoleRequest

NewUpdateProjectMemberRoleRequestWithDefaults instantiates a new UpdateProjectMemberRoleRequest object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*UpdateProjectMemberRoleRequest) GetRole

GetRole returns the Role field value

func (*UpdateProjectMemberRoleRequest) GetRoleOk

func (o *UpdateProjectMemberRoleRequest) GetRoleOk() (*ProjectRole, bool)

GetRoleOk returns a tuple with the Role field value and a boolean to check if the value has been set.

func (UpdateProjectMemberRoleRequest) MarshalJSON

func (o UpdateProjectMemberRoleRequest) MarshalJSON() ([]byte, error)

func (*UpdateProjectMemberRoleRequest) SetRole

SetRole sets field value

type User

type User struct {
	// User's ID
	Id *string `json:"id,omitempty"`
	// User's name
	Name *string `json:"name,omitempty"`
	// User's username
	Username *string `json:"username,omitempty"`
	// User's email address
	Email *string `json:"email,omitempty"`
	// User's organisation
	Organisation *string   `json:"organisation,omitempty"`
	Role         *UserRole `json:"role,omitempty"`
	// OrganisationID
	OrganisationId *string `json:"organisation_id,omitempty"`
	// Projects the user belongs to (included in login/signup/current-user responses)
	Projects []UserProjectMembership `json:"projects,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) 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) 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) 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) GetOrganisation

func (o *User) GetOrganisation() string

GetOrganisation returns the Organisation field value if set, zero value otherwise.

func (*User) GetOrganisationId

func (o *User) GetOrganisationId() string

GetOrganisationId returns the OrganisationId field value if set, zero value otherwise.

func (*User) GetOrganisationIdOk

func (o *User) GetOrganisationIdOk() (*string, bool)

GetOrganisationIdOk returns a tuple with the OrganisationId field value if set, nil otherwise and a boolean to check if the value has been set.

func (*User) GetOrganisationOk

func (o *User) GetOrganisationOk() (*string, bool)

GetOrganisationOk returns a tuple with the Organisation field value if set, nil otherwise and a boolean to check if the value has been set.

func (*User) GetProjects

func (o *User) GetProjects() []UserProjectMembership

GetProjects returns the Projects field value if set, zero value otherwise.

func (*User) GetProjectsOk

func (o *User) GetProjectsOk() ([]UserProjectMembership, bool)

GetProjectsOk returns a tuple with the Projects field value if set, nil otherwise and a boolean to check if the value has been set.

func (*User) GetRole

func (o *User) GetRole() UserRole

GetRole returns the Role field value if set, zero value otherwise.

func (*User) GetRoleOk

func (o *User) GetRoleOk() (*UserRole, 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 (*User) GetUsername

func (o *User) GetUsername() string

GetUsername returns the Username field value if set, zero value otherwise.

func (*User) GetUsernameOk

func (o *User) 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 (*User) HasEmail

func (o *User) HasEmail() bool

HasEmail 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) HasName

func (o *User) HasName() bool

HasName returns a boolean if a field has been set.

func (*User) HasOrganisation

func (o *User) HasOrganisation() bool

HasOrganisation returns a boolean if a field has been set.

func (*User) HasOrganisationId

func (o *User) HasOrganisationId() bool

HasOrganisationId returns a boolean if a field has been set.

func (*User) HasProjects

func (o *User) HasProjects() bool

HasProjects returns a boolean if a field has been set.

func (*User) HasRole

func (o *User) HasRole() bool

HasRole returns a boolean if a field has been set.

func (*User) HasUsername

func (o *User) HasUsername() bool

HasUsername returns a boolean if a field has been set.

func (User) MarshalJSON

func (o User) MarshalJSON() ([]byte, error)

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) SetId

func (o *User) SetId(v string)

SetId gets a reference to the given string and assigns it to the Id 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) SetOrganisation

func (o *User) SetOrganisation(v string)

SetOrganisation gets a reference to the given string and assigns it to the Organisation field.

func (*User) SetOrganisationId

func (o *User) SetOrganisationId(v string)

SetOrganisationId gets a reference to the given string and assigns it to the OrganisationId field.

func (*User) SetProjects

func (o *User) SetProjects(v []UserProjectMembership)

SetProjects gets a reference to the given []UserProjectMembership and assigns it to the Projects field.

func (*User) SetRole

func (o *User) SetRole(v UserRole)

SetRole gets a reference to the given UserRole and assigns it to the Role field.

func (*User) SetUsername

func (o *User) SetUsername(v string)

SetUsername gets a reference to the given string and assigns it to the Username field.

type UserList

type UserList struct {
	Items []User `json:"items,omitempty"`
	// Total number of records
	Total *int32 `json:"total,omitempty"`
	// Current page number
	Page *int32 `json:"page,omitempty"`
	// Number of items per page
	PageSize *int32 `json:"page_size,omitempty"`
	// Total number of pages
	TotalPages *int32 `json:"total_pages,omitempty"`
}

UserList struct for UserList

func NewUserList

func NewUserList() *UserList

NewUserList instantiates a new UserList object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewUserListWithDefaults

func NewUserListWithDefaults() *UserList

NewUserListWithDefaults instantiates a new UserList object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*UserList) GetItems

func (o *UserList) GetItems() []User

GetItems returns the Items field value if set, zero value otherwise.

func (*UserList) GetItemsOk

func (o *UserList) GetItemsOk() ([]User, bool)

GetItemsOk returns a tuple with the Items field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UserList) GetPage

func (o *UserList) GetPage() int32

GetPage returns the Page field value if set, zero value otherwise.

func (*UserList) GetPageOk

func (o *UserList) GetPageOk() (*int32, bool)

GetPageOk returns a tuple with the Page field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UserList) GetPageSize

func (o *UserList) GetPageSize() int32

GetPageSize returns the PageSize field value if set, zero value otherwise.

func (*UserList) GetPageSizeOk

func (o *UserList) GetPageSizeOk() (*int32, bool)

GetPageSizeOk returns a tuple with the PageSize field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UserList) GetTotal

func (o *UserList) GetTotal() int32

GetTotal returns the Total field value if set, zero value otherwise.

func (*UserList) GetTotalOk

func (o *UserList) GetTotalOk() (*int32, 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 (*UserList) GetTotalPages

func (o *UserList) GetTotalPages() int32

GetTotalPages returns the TotalPages field value if set, zero value otherwise.

func (*UserList) GetTotalPagesOk

func (o *UserList) GetTotalPagesOk() (*int32, bool)

GetTotalPagesOk returns a tuple with the TotalPages field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UserList) HasItems

func (o *UserList) HasItems() bool

HasItems returns a boolean if a field has been set.

func (*UserList) HasPage

func (o *UserList) HasPage() bool

HasPage returns a boolean if a field has been set.

func (*UserList) HasPageSize

func (o *UserList) HasPageSize() bool

HasPageSize returns a boolean if a field has been set.

func (*UserList) HasTotal

func (o *UserList) HasTotal() bool

HasTotal returns a boolean if a field has been set.

func (*UserList) HasTotalPages

func (o *UserList) HasTotalPages() bool

HasTotalPages returns a boolean if a field has been set.

func (UserList) MarshalJSON

func (o UserList) MarshalJSON() ([]byte, error)

func (*UserList) SetItems

func (o *UserList) SetItems(v []User)

SetItems gets a reference to the given []User and assigns it to the Items field.

func (*UserList) SetPage

func (o *UserList) SetPage(v int32)

SetPage gets a reference to the given int32 and assigns it to the Page field.

func (*UserList) SetPageSize

func (o *UserList) SetPageSize(v int32)

SetPageSize gets a reference to the given int32 and assigns it to the PageSize field.

func (*UserList) SetTotal

func (o *UserList) SetTotal(v int32)

SetTotal gets a reference to the given int32 and assigns it to the Total field.

func (*UserList) SetTotalPages

func (o *UserList) SetTotalPages(v int32)

SetTotalPages gets a reference to the given int32 and assigns it to the TotalPages field.

type UserProjectMembership

type UserProjectMembership struct {
	ProjectId      *string `json:"project_id,omitempty"`
	ProjectName    *string `json:"project_name,omitempty"`
	Role           *string `json:"role,omitempty"`
	DefaultProject *bool   `json:"default_project,omitempty"`
}

UserProjectMembership struct for UserProjectMembership

func NewUserProjectMembership

func NewUserProjectMembership() *UserProjectMembership

NewUserProjectMembership instantiates a new UserProjectMembership object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewUserProjectMembershipWithDefaults

func NewUserProjectMembershipWithDefaults() *UserProjectMembership

NewUserProjectMembershipWithDefaults instantiates a new UserProjectMembership object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*UserProjectMembership) GetDefaultProject

func (o *UserProjectMembership) GetDefaultProject() bool

GetDefaultProject returns the DefaultProject field value if set, zero value otherwise.

func (*UserProjectMembership) GetDefaultProjectOk

func (o *UserProjectMembership) GetDefaultProjectOk() (*bool, bool)

GetDefaultProjectOk returns a tuple with the DefaultProject field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UserProjectMembership) GetProjectId

func (o *UserProjectMembership) GetProjectId() string

GetProjectId returns the ProjectId field value if set, zero value otherwise.

func (*UserProjectMembership) GetProjectIdOk

func (o *UserProjectMembership) GetProjectIdOk() (*string, bool)

GetProjectIdOk returns a tuple with the ProjectId field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UserProjectMembership) GetProjectName

func (o *UserProjectMembership) GetProjectName() string

GetProjectName returns the ProjectName field value if set, zero value otherwise.

func (*UserProjectMembership) GetProjectNameOk

func (o *UserProjectMembership) GetProjectNameOk() (*string, bool)

GetProjectNameOk returns a tuple with the ProjectName field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UserProjectMembership) GetRole

func (o *UserProjectMembership) GetRole() string

GetRole returns the Role field value if set, zero value otherwise.

func (*UserProjectMembership) GetRoleOk

func (o *UserProjectMembership) GetRoleOk() (*string, 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 (*UserProjectMembership) HasDefaultProject

func (o *UserProjectMembership) HasDefaultProject() bool

HasDefaultProject returns a boolean if a field has been set.

func (*UserProjectMembership) HasProjectId

func (o *UserProjectMembership) HasProjectId() bool

HasProjectId returns a boolean if a field has been set.

func (*UserProjectMembership) HasProjectName

func (o *UserProjectMembership) HasProjectName() bool

HasProjectName returns a boolean if a field has been set.

func (*UserProjectMembership) HasRole

func (o *UserProjectMembership) HasRole() bool

HasRole returns a boolean if a field has been set.

func (UserProjectMembership) MarshalJSON

func (o UserProjectMembership) MarshalJSON() ([]byte, error)

func (*UserProjectMembership) SetDefaultProject

func (o *UserProjectMembership) SetDefaultProject(v bool)

SetDefaultProject gets a reference to the given bool and assigns it to the DefaultProject field.

func (*UserProjectMembership) SetProjectId

func (o *UserProjectMembership) SetProjectId(v string)

SetProjectId gets a reference to the given string and assigns it to the ProjectId field.

func (*UserProjectMembership) SetProjectName

func (o *UserProjectMembership) SetProjectName(v string)

SetProjectName gets a reference to the given string and assigns it to the ProjectName field.

func (*UserProjectMembership) SetRole

func (o *UserProjectMembership) SetRole(v string)

SetRole gets a reference to the given string and assigns it to the Role field.

type UserRole

type UserRole string

UserRole the model 'UserRole'

const (
	ORG_ADMIN  UserRole = "OrgAdmin"
	ORG_MEMBER UserRole = "OrgMember"
)

List of UserRole

func NewUserRoleFromValue

func NewUserRoleFromValue(v string) (*UserRole, error)

NewUserRoleFromValue returns a pointer to a valid UserRole for the value passed as argument, or an error if the value passed is not allowed by the enum

func (UserRole) IsValid

func (v UserRole) IsValid() bool

IsValid return true if the value is valid for the enum, false otherwise

func (UserRole) Ptr

func (v UserRole) Ptr() *UserRole

Ptr returns reference to UserRole value

func (*UserRole) UnmarshalJSON

func (v *UserRole) UnmarshalJSON(src []byte) error

type UserSignupRequest

type UserSignupRequest struct {
	// User's name
	Name string `json:"name"`
	// User's email address
	Email string `json:"email"`
	// Users desired password
	Password     string        `json:"password"`
	Organisation *Organisation `json:"organisation,omitempty"`
	// Optional invite token for joining an existing organization
	InviteToken *string `json:"invite_token,omitempty"`
	// Turnstile token required for protected public password signup
	TurnstileToken *string `json:"turnstile_token,omitempty"`
}

UserSignupRequest struct for UserSignupRequest

func NewUserSignupRequest

func NewUserSignupRequest(name string, email string, password string) *UserSignupRequest

NewUserSignupRequest instantiates a new UserSignupRequest object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewUserSignupRequestWithDefaults

func NewUserSignupRequestWithDefaults() *UserSignupRequest

NewUserSignupRequestWithDefaults instantiates a new UserSignupRequest object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*UserSignupRequest) GetEmail

func (o *UserSignupRequest) GetEmail() string

GetEmail returns the Email field value

func (*UserSignupRequest) GetEmailOk

func (o *UserSignupRequest) GetEmailOk() (*string, bool)

GetEmailOk returns a tuple with the Email field value and a boolean to check if the value has been set.

func (*UserSignupRequest) GetInviteToken

func (o *UserSignupRequest) GetInviteToken() string

GetInviteToken returns the InviteToken field value if set, zero value otherwise.

func (*UserSignupRequest) GetInviteTokenOk

func (o *UserSignupRequest) GetInviteTokenOk() (*string, bool)

GetInviteTokenOk returns a tuple with the InviteToken field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UserSignupRequest) GetName

func (o *UserSignupRequest) GetName() string

GetName returns the Name field value

func (*UserSignupRequest) GetNameOk

func (o *UserSignupRequest) GetNameOk() (*string, bool)

GetNameOk returns a tuple with the Name field value and a boolean to check if the value has been set.

func (*UserSignupRequest) GetOrganisation

func (o *UserSignupRequest) GetOrganisation() Organisation

GetOrganisation returns the Organisation field value if set, zero value otherwise.

func (*UserSignupRequest) GetOrganisationOk

func (o *UserSignupRequest) GetOrganisationOk() (*Organisation, bool)

GetOrganisationOk returns a tuple with the Organisation field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UserSignupRequest) GetPassword

func (o *UserSignupRequest) GetPassword() string

GetPassword returns the Password field value

func (*UserSignupRequest) GetPasswordOk

func (o *UserSignupRequest) GetPasswordOk() (*string, bool)

GetPasswordOk returns a tuple with the Password field value and a boolean to check if the value has been set.

func (*UserSignupRequest) GetTurnstileToken

func (o *UserSignupRequest) GetTurnstileToken() string

GetTurnstileToken returns the TurnstileToken field value if set, zero value otherwise.

func (*UserSignupRequest) GetTurnstileTokenOk

func (o *UserSignupRequest) GetTurnstileTokenOk() (*string, bool)

GetTurnstileTokenOk returns a tuple with the TurnstileToken field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UserSignupRequest) HasInviteToken

func (o *UserSignupRequest) HasInviteToken() bool

HasInviteToken returns a boolean if a field has been set.

func (*UserSignupRequest) HasOrganisation

func (o *UserSignupRequest) HasOrganisation() bool

HasOrganisation returns a boolean if a field has been set.

func (*UserSignupRequest) HasTurnstileToken

func (o *UserSignupRequest) HasTurnstileToken() bool

HasTurnstileToken returns a boolean if a field has been set.

func (UserSignupRequest) MarshalJSON

func (o UserSignupRequest) MarshalJSON() ([]byte, error)

func (*UserSignupRequest) SetEmail

func (o *UserSignupRequest) SetEmail(v string)

SetEmail sets field value

func (*UserSignupRequest) SetInviteToken

func (o *UserSignupRequest) SetInviteToken(v string)

SetInviteToken gets a reference to the given string and assigns it to the InviteToken field.

func (*UserSignupRequest) SetName

func (o *UserSignupRequest) SetName(v string)

SetName sets field value

func (*UserSignupRequest) SetOrganisation

func (o *UserSignupRequest) SetOrganisation(v Organisation)

SetOrganisation gets a reference to the given Organisation and assigns it to the Organisation field.

func (*UserSignupRequest) SetPassword

func (o *UserSignupRequest) SetPassword(v string)

SetPassword sets field value

func (*UserSignupRequest) SetTurnstileToken

func (o *UserSignupRequest) SetTurnstileToken(v string)

SetTurnstileToken gets a reference to the given string and assigns it to the TurnstileToken field.

type UserSignupResponse

type UserSignupResponse struct {
	User *User `json:"user,omitempty"`
	// JWT token for the authenticated user
	JwtToken *string `json:"jwt_token,omitempty"`
	// Refresh token for obtaining new access tokens
	RefreshToken *string `json:"refresh_token,omitempty"`
}

UserSignupResponse struct for UserSignupResponse

func NewUserSignupResponse

func NewUserSignupResponse() *UserSignupResponse

NewUserSignupResponse instantiates a new UserSignupResponse object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewUserSignupResponseWithDefaults

func NewUserSignupResponseWithDefaults() *UserSignupResponse

NewUserSignupResponseWithDefaults instantiates a new UserSignupResponse object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*UserSignupResponse) GetJwtToken

func (o *UserSignupResponse) GetJwtToken() string

GetJwtToken returns the JwtToken field value if set, zero value otherwise.

func (*UserSignupResponse) GetJwtTokenOk

func (o *UserSignupResponse) GetJwtTokenOk() (*string, bool)

GetJwtTokenOk returns a tuple with the JwtToken field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UserSignupResponse) GetRefreshToken

func (o *UserSignupResponse) GetRefreshToken() string

GetRefreshToken returns the RefreshToken field value if set, zero value otherwise.

func (*UserSignupResponse) GetRefreshTokenOk

func (o *UserSignupResponse) GetRefreshTokenOk() (*string, bool)

GetRefreshTokenOk returns a tuple with the RefreshToken field value if set, nil otherwise and a boolean to check if the value has been set.

func (*UserSignupResponse) GetUser

func (o *UserSignupResponse) GetUser() User

GetUser returns the User field value if set, zero value otherwise.

func (*UserSignupResponse) GetUserOk

func (o *UserSignupResponse) 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 (*UserSignupResponse) HasJwtToken

func (o *UserSignupResponse) HasJwtToken() bool

HasJwtToken returns a boolean if a field has been set.

func (*UserSignupResponse) HasRefreshToken

func (o *UserSignupResponse) HasRefreshToken() bool

HasRefreshToken returns a boolean if a field has been set.

func (*UserSignupResponse) HasUser

func (o *UserSignupResponse) HasUser() bool

HasUser returns a boolean if a field has been set.

func (UserSignupResponse) MarshalJSON

func (o UserSignupResponse) MarshalJSON() ([]byte, error)

func (*UserSignupResponse) SetJwtToken

func (o *UserSignupResponse) SetJwtToken(v string)

SetJwtToken gets a reference to the given string and assigns it to the JwtToken field.

func (*UserSignupResponse) SetRefreshToken

func (o *UserSignupResponse) SetRefreshToken(v string)

SetRefreshToken gets a reference to the given string and assigns it to the RefreshToken field.

func (*UserSignupResponse) SetUser

func (o *UserSignupResponse) SetUser(v User)

SetUser gets a reference to the given User and assigns it to the User field.

type ValidationErrorDetail

type ValidationErrorDetail struct {
	Errors []FieldValidationError `json:"errors,omitempty"`
}

ValidationErrorDetail Structured payload carried in Error.details for aggregated validation failures.

func NewValidationErrorDetail

func NewValidationErrorDetail() *ValidationErrorDetail

NewValidationErrorDetail instantiates a new ValidationErrorDetail object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewValidationErrorDetailWithDefaults

func NewValidationErrorDetailWithDefaults() *ValidationErrorDetail

NewValidationErrorDetailWithDefaults instantiates a new ValidationErrorDetail object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*ValidationErrorDetail) GetErrors

GetErrors returns the Errors field value if set, zero value otherwise.

func (*ValidationErrorDetail) GetErrorsOk

func (o *ValidationErrorDetail) GetErrorsOk() ([]FieldValidationError, bool)

GetErrorsOk returns a tuple with the Errors field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ValidationErrorDetail) HasErrors

func (o *ValidationErrorDetail) HasErrors() bool

HasErrors returns a boolean if a field has been set.

func (ValidationErrorDetail) MarshalJSON

func (o ValidationErrorDetail) MarshalJSON() ([]byte, error)

func (*ValidationErrorDetail) SetErrors

func (o *ValidationErrorDetail) SetErrors(v []FieldValidationError)

SetErrors gets a reference to the given []FieldValidationError and assigns it to the Errors field.

type ValueRef

type ValueRef struct {
	// Output accessor on the connection's `from` node, such as `url` or `public_url`.
	Output *string `json:"output,omitempty"`
	// Template used when one target value must be composed from multiple outputs.
	Template *string `json:"template,omitempty"`
	// Named template inputs, each resolving one output from the connection's `from` node.
	Values *map[string]OutputValueRef `json:"values,omitempty"`
}

ValueRef Describes how to read a value from the connection's `from` node. This is only used inside `StackConnection.mappings[]`.

func NewValueRef

func NewValueRef() *ValueRef

NewValueRef instantiates a new ValueRef object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewValueRefWithDefaults

func NewValueRefWithDefaults() *ValueRef

NewValueRefWithDefaults instantiates a new ValueRef object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*ValueRef) GetOutput

func (o *ValueRef) GetOutput() string

GetOutput returns the Output field value if set, zero value otherwise.

func (*ValueRef) GetOutputOk

func (o *ValueRef) GetOutputOk() (*string, bool)

GetOutputOk returns a tuple with the Output field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ValueRef) GetTemplate

func (o *ValueRef) GetTemplate() string

GetTemplate returns the Template field value if set, zero value otherwise.

func (*ValueRef) GetTemplateOk

func (o *ValueRef) GetTemplateOk() (*string, bool)

GetTemplateOk returns a tuple with the Template field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ValueRef) GetValues

func (o *ValueRef) GetValues() map[string]OutputValueRef

GetValues returns the Values field value if set, zero value otherwise.

func (*ValueRef) GetValuesOk

func (o *ValueRef) GetValuesOk() (*map[string]OutputValueRef, bool)

GetValuesOk returns a tuple with the Values field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ValueRef) HasOutput

func (o *ValueRef) HasOutput() bool

HasOutput returns a boolean if a field has been set.

func (*ValueRef) HasTemplate

func (o *ValueRef) HasTemplate() bool

HasTemplate returns a boolean if a field has been set.

func (*ValueRef) HasValues

func (o *ValueRef) HasValues() bool

HasValues returns a boolean if a field has been set.

func (ValueRef) MarshalJSON

func (o ValueRef) MarshalJSON() ([]byte, error)

func (*ValueRef) SetOutput

func (o *ValueRef) SetOutput(v string)

SetOutput gets a reference to the given string and assigns it to the Output field.

func (*ValueRef) SetTemplate

func (o *ValueRef) SetTemplate(v string)

SetTemplate gets a reference to the given string and assigns it to the Template field.

func (*ValueRef) SetValues

func (o *ValueRef) SetValues(v map[string]OutputValueRef)

SetValues gets a reference to the given map[string]OutputValueRef and assigns it to the Values field.

type Volume

type Volume struct {
	Id          *string       `json:"id,omitempty"`
	ProjectId   *string       `json:"project_id,omitempty"`
	Name        string        `json:"name"`
	Labels      []Label       `json:"labels,omitempty"`
	Annotations []Annotation  `json:"annotations,omitempty"`
	Spec        VolumeSpec    `json:"spec"`
	Status      *VolumeStatus `json:"status,omitempty"`
}

Volume struct for Volume

func NewVolume

func NewVolume(name string, spec VolumeSpec) *Volume

NewVolume instantiates a new Volume object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewVolumeWithDefaults

func NewVolumeWithDefaults() *Volume

NewVolumeWithDefaults instantiates a new Volume object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*Volume) GetAnnotations

func (o *Volume) GetAnnotations() []Annotation

GetAnnotations returns the Annotations field value if set, zero value otherwise.

func (*Volume) GetAnnotationsOk

func (o *Volume) GetAnnotationsOk() ([]Annotation, bool)

GetAnnotationsOk returns a tuple with the Annotations field value if set, nil otherwise and a boolean to check if the value has been set.

func (*Volume) GetId

func (o *Volume) GetId() string

GetId returns the Id field value if set, zero value otherwise.

func (*Volume) GetIdOk

func (o *Volume) 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 (*Volume) GetLabels

func (o *Volume) GetLabels() []Label

GetLabels returns the Labels field value if set, zero value otherwise.

func (*Volume) GetLabelsOk

func (o *Volume) GetLabelsOk() ([]Label, 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 (*Volume) GetName

func (o *Volume) GetName() string

GetName returns the Name field value

func (*Volume) GetNameOk

func (o *Volume) GetNameOk() (*string, bool)

GetNameOk returns a tuple with the Name field value and a boolean to check if the value has been set.

func (*Volume) GetProjectId

func (o *Volume) GetProjectId() string

GetProjectId returns the ProjectId field value if set, zero value otherwise.

func (*Volume) GetProjectIdOk

func (o *Volume) GetProjectIdOk() (*string, bool)

GetProjectIdOk returns a tuple with the ProjectId field value if set, nil otherwise and a boolean to check if the value has been set.

func (*Volume) GetSpec

func (o *Volume) GetSpec() VolumeSpec

GetSpec returns the Spec field value

func (*Volume) GetSpecOk

func (o *Volume) GetSpecOk() (*VolumeSpec, bool)

GetSpecOk returns a tuple with the Spec field value and a boolean to check if the value has been set.

func (*Volume) GetStatus

func (o *Volume) GetStatus() VolumeStatus

GetStatus returns the Status field value if set, zero value otherwise.

func (*Volume) GetStatusOk

func (o *Volume) GetStatusOk() (*VolumeStatus, 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 (*Volume) HasAnnotations

func (o *Volume) HasAnnotations() bool

HasAnnotations returns a boolean if a field has been set.

func (*Volume) HasId

func (o *Volume) HasId() bool

HasId returns a boolean if a field has been set.

func (*Volume) HasLabels

func (o *Volume) HasLabels() bool

HasLabels returns a boolean if a field has been set.

func (*Volume) HasProjectId

func (o *Volume) HasProjectId() bool

HasProjectId returns a boolean if a field has been set.

func (*Volume) HasStatus

func (o *Volume) HasStatus() bool

HasStatus returns a boolean if a field has been set.

func (Volume) MarshalJSON

func (o Volume) MarshalJSON() ([]byte, error)

func (*Volume) SetAnnotations

func (o *Volume) SetAnnotations(v []Annotation)

SetAnnotations gets a reference to the given []Annotation and assigns it to the Annotations field.

func (*Volume) SetId

func (o *Volume) SetId(v string)

SetId gets a reference to the given string and assigns it to the Id field.

func (*Volume) SetLabels

func (o *Volume) SetLabels(v []Label)

SetLabels gets a reference to the given []Label and assigns it to the Labels field.

func (*Volume) SetName

func (o *Volume) SetName(v string)

SetName sets field value

func (*Volume) SetProjectId

func (o *Volume) SetProjectId(v string)

SetProjectId gets a reference to the given string and assigns it to the ProjectId field.

func (*Volume) SetSpec

func (o *Volume) SetSpec(v VolumeSpec)

SetSpec sets field value

func (*Volume) SetStatus

func (o *Volume) SetStatus(v VolumeStatus)

SetStatus gets a reference to the given VolumeStatus and assigns it to the Status field.

type VolumeAccessMode

type VolumeAccessMode string

VolumeAccessMode the model 'VolumeAccessMode'

const (
	READ_WRITE_ONCE VolumeAccessMode = "ReadWriteOnce"
	READ_WRITE_MANY VolumeAccessMode = "ReadWriteMany"
	READ_ONLY_MANY  VolumeAccessMode = "ReadOnlyMany"
)

List of VolumeAccessMode

func NewVolumeAccessModeFromValue

func NewVolumeAccessModeFromValue(v string) (*VolumeAccessMode, error)

NewVolumeAccessModeFromValue returns a pointer to a valid VolumeAccessMode for the value passed as argument, or an error if the value passed is not allowed by the enum

func (VolumeAccessMode) IsValid

func (v VolumeAccessMode) IsValid() bool

IsValid return true if the value is valid for the enum, false otherwise

func (VolumeAccessMode) Ptr

Ptr returns reference to VolumeAccessMode value

func (*VolumeAccessMode) UnmarshalJSON

func (v *VolumeAccessMode) UnmarshalJSON(src []byte) error

type VolumeBuildSource

type VolumeBuildSource struct {
	VolumeId *string `json:"volume_id,omitempty"`
	// Name of a volume defined on the stack; either volume_id or volume_name is required
	VolumeName *string `json:"volume_name,omitempty"`
	// Content hash of the volume used as the build source revision
	CurrentVolumeHash *string `json:"current_volume_hash,omitempty"`
	DockerfilePath    *string `json:"dockerfile_path,omitempty"`
	BuildContext      *string `json:"build_context,omitempty"`
}

VolumeBuildSource struct for VolumeBuildSource

func NewVolumeBuildSource

func NewVolumeBuildSource() *VolumeBuildSource

NewVolumeBuildSource instantiates a new VolumeBuildSource object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewVolumeBuildSourceWithDefaults

func NewVolumeBuildSourceWithDefaults() *VolumeBuildSource

NewVolumeBuildSourceWithDefaults instantiates a new VolumeBuildSource object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*VolumeBuildSource) GetBuildContext

func (o *VolumeBuildSource) GetBuildContext() string

GetBuildContext returns the BuildContext field value if set, zero value otherwise.

func (*VolumeBuildSource) GetBuildContextOk

func (o *VolumeBuildSource) GetBuildContextOk() (*string, bool)

GetBuildContextOk returns a tuple with the BuildContext field value if set, nil otherwise and a boolean to check if the value has been set.

func (*VolumeBuildSource) GetCurrentVolumeHash

func (o *VolumeBuildSource) GetCurrentVolumeHash() string

GetCurrentVolumeHash returns the CurrentVolumeHash field value if set, zero value otherwise.

func (*VolumeBuildSource) GetCurrentVolumeHashOk

func (o *VolumeBuildSource) GetCurrentVolumeHashOk() (*string, bool)

GetCurrentVolumeHashOk returns a tuple with the CurrentVolumeHash field value if set, nil otherwise and a boolean to check if the value has been set.

func (*VolumeBuildSource) GetDockerfilePath

func (o *VolumeBuildSource) GetDockerfilePath() string

GetDockerfilePath returns the DockerfilePath field value if set, zero value otherwise.

func (*VolumeBuildSource) GetDockerfilePathOk

func (o *VolumeBuildSource) GetDockerfilePathOk() (*string, bool)

GetDockerfilePathOk returns a tuple with the DockerfilePath field value if set, nil otherwise and a boolean to check if the value has been set.

func (*VolumeBuildSource) GetVolumeId

func (o *VolumeBuildSource) GetVolumeId() string

GetVolumeId returns the VolumeId field value if set, zero value otherwise.

func (*VolumeBuildSource) GetVolumeIdOk

func (o *VolumeBuildSource) GetVolumeIdOk() (*string, bool)

GetVolumeIdOk returns a tuple with the VolumeId field value if set, nil otherwise and a boolean to check if the value has been set.

func (*VolumeBuildSource) GetVolumeName

func (o *VolumeBuildSource) GetVolumeName() string

GetVolumeName returns the VolumeName field value if set, zero value otherwise.

func (*VolumeBuildSource) GetVolumeNameOk

func (o *VolumeBuildSource) GetVolumeNameOk() (*string, bool)

GetVolumeNameOk returns a tuple with the VolumeName field value if set, nil otherwise and a boolean to check if the value has been set.

func (*VolumeBuildSource) HasBuildContext

func (o *VolumeBuildSource) HasBuildContext() bool

HasBuildContext returns a boolean if a field has been set.

func (*VolumeBuildSource) HasCurrentVolumeHash

func (o *VolumeBuildSource) HasCurrentVolumeHash() bool

HasCurrentVolumeHash returns a boolean if a field has been set.

func (*VolumeBuildSource) HasDockerfilePath

func (o *VolumeBuildSource) HasDockerfilePath() bool

HasDockerfilePath returns a boolean if a field has been set.

func (*VolumeBuildSource) HasVolumeId

func (o *VolumeBuildSource) HasVolumeId() bool

HasVolumeId returns a boolean if a field has been set.

func (*VolumeBuildSource) HasVolumeName

func (o *VolumeBuildSource) HasVolumeName() bool

HasVolumeName returns a boolean if a field has been set.

func (VolumeBuildSource) MarshalJSON

func (o VolumeBuildSource) MarshalJSON() ([]byte, error)

func (*VolumeBuildSource) SetBuildContext

func (o *VolumeBuildSource) SetBuildContext(v string)

SetBuildContext gets a reference to the given string and assigns it to the BuildContext field.

func (*VolumeBuildSource) SetCurrentVolumeHash

func (o *VolumeBuildSource) SetCurrentVolumeHash(v string)

SetCurrentVolumeHash gets a reference to the given string and assigns it to the CurrentVolumeHash field.

func (*VolumeBuildSource) SetDockerfilePath

func (o *VolumeBuildSource) SetDockerfilePath(v string)

SetDockerfilePath gets a reference to the given string and assigns it to the DockerfilePath field.

func (*VolumeBuildSource) SetVolumeId

func (o *VolumeBuildSource) SetVolumeId(v string)

SetVolumeId gets a reference to the given string and assigns it to the VolumeId field.

func (*VolumeBuildSource) SetVolumeName

func (o *VolumeBuildSource) SetVolumeName(v string)

SetVolumeName gets a reference to the given string and assigns it to the VolumeName field.

type VolumeList

type VolumeList struct {
	Items []Volume `json:"items,omitempty"`
	Total *int32   `json:"total,omitempty"`
}

VolumeList struct for VolumeList

func NewVolumeList

func NewVolumeList() *VolumeList

NewVolumeList instantiates a new VolumeList object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewVolumeListWithDefaults

func NewVolumeListWithDefaults() *VolumeList

NewVolumeListWithDefaults instantiates a new VolumeList object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*VolumeList) GetItems

func (o *VolumeList) GetItems() []Volume

GetItems returns the Items field value if set, zero value otherwise.

func (*VolumeList) GetItemsOk

func (o *VolumeList) GetItemsOk() ([]Volume, bool)

GetItemsOk returns a tuple with the Items field value if set, nil otherwise and a boolean to check if the value has been set.

func (*VolumeList) GetTotal

func (o *VolumeList) GetTotal() int32

GetTotal returns the Total field value if set, zero value otherwise.

func (*VolumeList) GetTotalOk

func (o *VolumeList) GetTotalOk() (*int32, 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 (*VolumeList) HasItems

func (o *VolumeList) HasItems() bool

HasItems returns a boolean if a field has been set.

func (*VolumeList) HasTotal

func (o *VolumeList) HasTotal() bool

HasTotal returns a boolean if a field has been set.

func (VolumeList) MarshalJSON

func (o VolumeList) MarshalJSON() ([]byte, error)

func (*VolumeList) SetItems

func (o *VolumeList) SetItems(v []Volume)

SetItems gets a reference to the given []Volume and assigns it to the Items field.

func (*VolumeList) SetTotal

func (o *VolumeList) SetTotal(v int32)

SetTotal gets a reference to the given int32 and assigns it to the Total field.

type VolumeMount

type VolumeMount struct {
	StackResourceId  *string                `json:"stack_resource_id,omitempty"`
	SourceVolumeType *VolumeMountSourceType `json:"source_volume_type,omitempty"`
	SourceVolumeName string                 `json:"source_volume_name"`
	SourceSubPath    *string                `json:"source_sub_path,omitempty"`
	TargetPath       string                 `json:"target_path"`
}

VolumeMount struct for VolumeMount

func NewVolumeMount

func NewVolumeMount(sourceVolumeName string, targetPath string) *VolumeMount

NewVolumeMount instantiates a new VolumeMount object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewVolumeMountWithDefaults

func NewVolumeMountWithDefaults() *VolumeMount

NewVolumeMountWithDefaults instantiates a new VolumeMount object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*VolumeMount) GetSourceSubPath

func (o *VolumeMount) GetSourceSubPath() string

GetSourceSubPath returns the SourceSubPath field value if set, zero value otherwise.

func (*VolumeMount) GetSourceSubPathOk

func (o *VolumeMount) GetSourceSubPathOk() (*string, bool)

GetSourceSubPathOk returns a tuple with the SourceSubPath field value if set, nil otherwise and a boolean to check if the value has been set.

func (*VolumeMount) GetSourceVolumeName

func (o *VolumeMount) GetSourceVolumeName() string

GetSourceVolumeName returns the SourceVolumeName field value

func (*VolumeMount) GetSourceVolumeNameOk

func (o *VolumeMount) GetSourceVolumeNameOk() (*string, bool)

GetSourceVolumeNameOk returns a tuple with the SourceVolumeName field value and a boolean to check if the value has been set.

func (*VolumeMount) GetSourceVolumeType

func (o *VolumeMount) GetSourceVolumeType() VolumeMountSourceType

GetSourceVolumeType returns the SourceVolumeType field value if set, zero value otherwise.

func (*VolumeMount) GetSourceVolumeTypeOk

func (o *VolumeMount) GetSourceVolumeTypeOk() (*VolumeMountSourceType, bool)

GetSourceVolumeTypeOk returns a tuple with the SourceVolumeType field value if set, nil otherwise and a boolean to check if the value has been set.

func (*VolumeMount) GetStackResourceId

func (o *VolumeMount) GetStackResourceId() string

GetStackResourceId returns the StackResourceId field value if set, zero value otherwise.

func (*VolumeMount) GetStackResourceIdOk

func (o *VolumeMount) GetStackResourceIdOk() (*string, bool)

GetStackResourceIdOk returns a tuple with the StackResourceId field value if set, nil otherwise and a boolean to check if the value has been set.

func (*VolumeMount) GetTargetPath

func (o *VolumeMount) GetTargetPath() string

GetTargetPath returns the TargetPath field value

func (*VolumeMount) GetTargetPathOk

func (o *VolumeMount) GetTargetPathOk() (*string, bool)

GetTargetPathOk returns a tuple with the TargetPath field value and a boolean to check if the value has been set.

func (*VolumeMount) HasSourceSubPath

func (o *VolumeMount) HasSourceSubPath() bool

HasSourceSubPath returns a boolean if a field has been set.

func (*VolumeMount) HasSourceVolumeType

func (o *VolumeMount) HasSourceVolumeType() bool

HasSourceVolumeType returns a boolean if a field has been set.

func (*VolumeMount) HasStackResourceId

func (o *VolumeMount) HasStackResourceId() bool

HasStackResourceId returns a boolean if a field has been set.

func (VolumeMount) MarshalJSON

func (o VolumeMount) MarshalJSON() ([]byte, error)

func (*VolumeMount) SetSourceSubPath

func (o *VolumeMount) SetSourceSubPath(v string)

SetSourceSubPath gets a reference to the given string and assigns it to the SourceSubPath field.

func (*VolumeMount) SetSourceVolumeName

func (o *VolumeMount) SetSourceVolumeName(v string)

SetSourceVolumeName sets field value

func (*VolumeMount) SetSourceVolumeType

func (o *VolumeMount) SetSourceVolumeType(v VolumeMountSourceType)

SetSourceVolumeType gets a reference to the given VolumeMountSourceType and assigns it to the SourceVolumeType field.

func (*VolumeMount) SetStackResourceId

func (o *VolumeMount) SetStackResourceId(v string)

SetStackResourceId gets a reference to the given string and assigns it to the StackResourceId field.

func (*VolumeMount) SetTargetPath

func (o *VolumeMount) SetTargetPath(v string)

SetTargetPath sets field value

type VolumeMountConfig

type VolumeMountConfig struct {
	// Absolute path where the volume is mounted in the container.
	MountPath string `json:"mount_path"`
	// Sub-path within the volume to mount.
	SubPath *string `json:"sub_path,omitempty"`
	// Mount the volume read-only.
	ReadOnly *bool `json:"read_only,omitempty"`
}

VolumeMountConfig Config for volume mount connections (kind=volume_mount).

func NewVolumeMountConfig

func NewVolumeMountConfig(mountPath string) *VolumeMountConfig

NewVolumeMountConfig instantiates a new VolumeMountConfig object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewVolumeMountConfigWithDefaults

func NewVolumeMountConfigWithDefaults() *VolumeMountConfig

NewVolumeMountConfigWithDefaults instantiates a new VolumeMountConfig object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*VolumeMountConfig) GetMountPath

func (o *VolumeMountConfig) GetMountPath() string

GetMountPath returns the MountPath field value

func (*VolumeMountConfig) GetMountPathOk

func (o *VolumeMountConfig) GetMountPathOk() (*string, bool)

GetMountPathOk returns a tuple with the MountPath field value and a boolean to check if the value has been set.

func (*VolumeMountConfig) GetReadOnly

func (o *VolumeMountConfig) GetReadOnly() bool

GetReadOnly returns the ReadOnly field value if set, zero value otherwise.

func (*VolumeMountConfig) GetReadOnlyOk

func (o *VolumeMountConfig) GetReadOnlyOk() (*bool, bool)

GetReadOnlyOk returns a tuple with the ReadOnly field value if set, nil otherwise and a boolean to check if the value has been set.

func (*VolumeMountConfig) GetSubPath

func (o *VolumeMountConfig) GetSubPath() string

GetSubPath returns the SubPath field value if set, zero value otherwise.

func (*VolumeMountConfig) GetSubPathOk

func (o *VolumeMountConfig) GetSubPathOk() (*string, bool)

GetSubPathOk returns a tuple with the SubPath field value if set, nil otherwise and a boolean to check if the value has been set.

func (*VolumeMountConfig) HasReadOnly

func (o *VolumeMountConfig) HasReadOnly() bool

HasReadOnly returns a boolean if a field has been set.

func (*VolumeMountConfig) HasSubPath

func (o *VolumeMountConfig) HasSubPath() bool

HasSubPath returns a boolean if a field has been set.

func (VolumeMountConfig) MarshalJSON

func (o VolumeMountConfig) MarshalJSON() ([]byte, error)

func (*VolumeMountConfig) SetMountPath

func (o *VolumeMountConfig) SetMountPath(v string)

SetMountPath sets field value

func (*VolumeMountConfig) SetReadOnly

func (o *VolumeMountConfig) SetReadOnly(v bool)

SetReadOnly gets a reference to the given bool and assigns it to the ReadOnly field.

func (*VolumeMountConfig) SetSubPath

func (o *VolumeMountConfig) SetSubPath(v string)

SetSubPath gets a reference to the given string and assigns it to the SubPath field.

type VolumeMountSourceType

type VolumeMountSourceType string

VolumeMountSourceType the model 'VolumeMountSourceType'

const (
	EMPTY_VOLUME                 VolumeMountSourceType = "EmptyVolume"
	REMOTE_DIR_SYNCED_VOLUME     VolumeMountSourceType = "RemoteDirSyncedVolume"
	BUILD_ARTIFACT_SYNCED_VOLUME VolumeMountSourceType = "BuildArtifactSyncedVolume"
	GIT_REPO_SYNCED_VOLUME       VolumeMountSourceType = "GitRepoSyncedVolume"
)

List of VolumeMountSourceType

func NewVolumeMountSourceTypeFromValue

func NewVolumeMountSourceTypeFromValue(v string) (*VolumeMountSourceType, error)

NewVolumeMountSourceTypeFromValue returns a pointer to a valid VolumeMountSourceType for the value passed as argument, or an error if the value passed is not allowed by the enum

func (VolumeMountSourceType) IsValid

func (v VolumeMountSourceType) IsValid() bool

IsValid return true if the value is valid for the enum, false otherwise

func (VolumeMountSourceType) Ptr

Ptr returns reference to VolumeMountSourceType value

func (*VolumeMountSourceType) UnmarshalJSON

func (v *VolumeMountSourceType) UnmarshalJSON(src []byte) error

type VolumeSource

type VolumeSource struct {
	GitRepoSource *GitRepoSource    `json:"git_repo_source,omitempty"`
	SourceType    VolumeSourceTypes `json:"source_type"`
	RemoteSource  *RemoteSource     `json:"remote_source,omitempty"`
	BuildSource   []BuildArtifact   `json:"build_source,omitempty"`
}

VolumeSource struct for VolumeSource

func NewVolumeSource

func NewVolumeSource(sourceType VolumeSourceTypes) *VolumeSource

NewVolumeSource instantiates a new VolumeSource object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewVolumeSourceWithDefaults

func NewVolumeSourceWithDefaults() *VolumeSource

NewVolumeSourceWithDefaults instantiates a new VolumeSource object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*VolumeSource) GetBuildSource

func (o *VolumeSource) GetBuildSource() []BuildArtifact

GetBuildSource returns the BuildSource field value if set, zero value otherwise.

func (*VolumeSource) GetBuildSourceOk

func (o *VolumeSource) GetBuildSourceOk() ([]BuildArtifact, bool)

GetBuildSourceOk returns a tuple with the BuildSource field value if set, nil otherwise and a boolean to check if the value has been set.

func (*VolumeSource) GetGitRepoSource

func (o *VolumeSource) GetGitRepoSource() GitRepoSource

GetGitRepoSource returns the GitRepoSource field value if set, zero value otherwise.

func (*VolumeSource) GetGitRepoSourceOk

func (o *VolumeSource) GetGitRepoSourceOk() (*GitRepoSource, bool)

GetGitRepoSourceOk returns a tuple with the GitRepoSource field value if set, nil otherwise and a boolean to check if the value has been set.

func (*VolumeSource) GetRemoteSource

func (o *VolumeSource) GetRemoteSource() RemoteSource

GetRemoteSource returns the RemoteSource field value if set, zero value otherwise.

func (*VolumeSource) GetRemoteSourceOk

func (o *VolumeSource) GetRemoteSourceOk() (*RemoteSource, bool)

GetRemoteSourceOk returns a tuple with the RemoteSource field value if set, nil otherwise and a boolean to check if the value has been set.

func (*VolumeSource) GetSourceType

func (o *VolumeSource) GetSourceType() VolumeSourceTypes

GetSourceType returns the SourceType field value

func (*VolumeSource) GetSourceTypeOk

func (o *VolumeSource) GetSourceTypeOk() (*VolumeSourceTypes, bool)

GetSourceTypeOk returns a tuple with the SourceType field value and a boolean to check if the value has been set.

func (*VolumeSource) HasBuildSource

func (o *VolumeSource) HasBuildSource() bool

HasBuildSource returns a boolean if a field has been set.

func (*VolumeSource) HasGitRepoSource

func (o *VolumeSource) HasGitRepoSource() bool

HasGitRepoSource returns a boolean if a field has been set.

func (*VolumeSource) HasRemoteSource

func (o *VolumeSource) HasRemoteSource() bool

HasRemoteSource returns a boolean if a field has been set.

func (VolumeSource) MarshalJSON

func (o VolumeSource) MarshalJSON() ([]byte, error)

func (*VolumeSource) SetBuildSource

func (o *VolumeSource) SetBuildSource(v []BuildArtifact)

SetBuildSource gets a reference to the given []BuildArtifact and assigns it to the BuildSource field.

func (*VolumeSource) SetGitRepoSource

func (o *VolumeSource) SetGitRepoSource(v GitRepoSource)

SetGitRepoSource gets a reference to the given GitRepoSource and assigns it to the GitRepoSource field.

func (*VolumeSource) SetRemoteSource

func (o *VolumeSource) SetRemoteSource(v RemoteSource)

SetRemoteSource gets a reference to the given RemoteSource and assigns it to the RemoteSource field.

func (*VolumeSource) SetSourceType

func (o *VolumeSource) SetSourceType(v VolumeSourceTypes)

SetSourceType sets field value

type VolumeSourceTypes

type VolumeSourceTypes string

VolumeSourceTypes the model 'VolumeSourceTypes'

const (
	REMOTE_DIR     VolumeSourceTypes = "RemoteDir"
	BUILD_ARTIFACT VolumeSourceTypes = "BuildArtifact"
	GIT_REPO       VolumeSourceTypes = "GitRepo"
)

List of VolumeSourceTypes

func NewVolumeSourceTypesFromValue

func NewVolumeSourceTypesFromValue(v string) (*VolumeSourceTypes, error)

NewVolumeSourceTypesFromValue returns a pointer to a valid VolumeSourceTypes for the value passed as argument, or an error if the value passed is not allowed by the enum

func (VolumeSourceTypes) IsValid

func (v VolumeSourceTypes) IsValid() bool

IsValid return true if the value is valid for the enum, false otherwise

func (VolumeSourceTypes) Ptr

Ptr returns reference to VolumeSourceTypes value

func (*VolumeSourceTypes) UnmarshalJSON

func (v *VolumeSourceTypes) UnmarshalJSON(src []byte) error

type VolumeSpec

type VolumeSpec struct {
	Size               string           `json:"size"`
	StorageClass       *string          `json:"storage_class,omitempty"`
	NeedsSyncBeforeUse bool             `json:"needs_sync_before_use"`
	AccessMode         VolumeAccessMode `json:"access_mode"`
	Source             *VolumeSource    `json:"source,omitempty"`
}

VolumeSpec struct for VolumeSpec

func NewVolumeSpec

func NewVolumeSpec(size string, needsSyncBeforeUse bool, accessMode VolumeAccessMode) *VolumeSpec

NewVolumeSpec instantiates a new VolumeSpec object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewVolumeSpecWithDefaults

func NewVolumeSpecWithDefaults() *VolumeSpec

NewVolumeSpecWithDefaults instantiates a new VolumeSpec object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*VolumeSpec) GetAccessMode

func (o *VolumeSpec) GetAccessMode() VolumeAccessMode

GetAccessMode returns the AccessMode field value

func (*VolumeSpec) GetAccessModeOk

func (o *VolumeSpec) GetAccessModeOk() (*VolumeAccessMode, bool)

GetAccessModeOk returns a tuple with the AccessMode field value and a boolean to check if the value has been set.

func (*VolumeSpec) GetNeedsSyncBeforeUse

func (o *VolumeSpec) GetNeedsSyncBeforeUse() bool

GetNeedsSyncBeforeUse returns the NeedsSyncBeforeUse field value

func (*VolumeSpec) GetNeedsSyncBeforeUseOk

func (o *VolumeSpec) GetNeedsSyncBeforeUseOk() (*bool, bool)

GetNeedsSyncBeforeUseOk returns a tuple with the NeedsSyncBeforeUse field value and a boolean to check if the value has been set.

func (*VolumeSpec) GetSize

func (o *VolumeSpec) GetSize() string

GetSize returns the Size field value

func (*VolumeSpec) GetSizeOk

func (o *VolumeSpec) GetSizeOk() (*string, bool)

GetSizeOk returns a tuple with the Size field value and a boolean to check if the value has been set.

func (*VolumeSpec) GetSource

func (o *VolumeSpec) GetSource() VolumeSource

GetSource returns the Source field value if set, zero value otherwise.

func (*VolumeSpec) GetSourceOk

func (o *VolumeSpec) GetSourceOk() (*VolumeSource, bool)

GetSourceOk returns a tuple with the Source field value if set, nil otherwise and a boolean to check if the value has been set.

func (*VolumeSpec) GetStorageClass

func (o *VolumeSpec) GetStorageClass() string

GetStorageClass returns the StorageClass field value if set, zero value otherwise.

func (*VolumeSpec) GetStorageClassOk

func (o *VolumeSpec) GetStorageClassOk() (*string, bool)

GetStorageClassOk returns a tuple with the StorageClass field value if set, nil otherwise and a boolean to check if the value has been set.

func (*VolumeSpec) HasSource

func (o *VolumeSpec) HasSource() bool

HasSource returns a boolean if a field has been set.

func (*VolumeSpec) HasStorageClass

func (o *VolumeSpec) HasStorageClass() bool

HasStorageClass returns a boolean if a field has been set.

func (VolumeSpec) MarshalJSON

func (o VolumeSpec) MarshalJSON() ([]byte, error)

func (*VolumeSpec) SetAccessMode

func (o *VolumeSpec) SetAccessMode(v VolumeAccessMode)

SetAccessMode sets field value

func (*VolumeSpec) SetNeedsSyncBeforeUse

func (o *VolumeSpec) SetNeedsSyncBeforeUse(v bool)

SetNeedsSyncBeforeUse sets field value

func (*VolumeSpec) SetSize

func (o *VolumeSpec) SetSize(v string)

SetSize sets field value

func (*VolumeSpec) SetSource

func (o *VolumeSpec) SetSource(v VolumeSource)

SetSource gets a reference to the given VolumeSource and assigns it to the Source field.

func (*VolumeSpec) SetStorageClass

func (o *VolumeSpec) SetStorageClass(v string)

SetStorageClass gets a reference to the given string and assigns it to the StorageClass field.

type VolumeStatus

type VolumeStatus struct {
	Conditions            []Condition             `json:"conditions,omitempty"`
	Phase                 *string                 `json:"phase,omitempty"`
	BuildArtifactSyncs    []BuildArtifactSyncInfo `json:"build_artifact_syncs,omitempty"`
	LastSyncedGitRevision *string                 `json:"last_synced_git_revision,omitempty"`
	LastRemoteSyncHash    *string                 `json:"last_remote_sync_hash,omitempty"`
}

VolumeStatus struct for VolumeStatus

func NewVolumeStatus

func NewVolumeStatus() *VolumeStatus

NewVolumeStatus instantiates a new VolumeStatus object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewVolumeStatusWithDefaults

func NewVolumeStatusWithDefaults() *VolumeStatus

NewVolumeStatusWithDefaults instantiates a new VolumeStatus object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*VolumeStatus) GetBuildArtifactSyncs

func (o *VolumeStatus) GetBuildArtifactSyncs() []BuildArtifactSyncInfo

GetBuildArtifactSyncs returns the BuildArtifactSyncs field value if set, zero value otherwise.

func (*VolumeStatus) GetBuildArtifactSyncsOk

func (o *VolumeStatus) GetBuildArtifactSyncsOk() ([]BuildArtifactSyncInfo, bool)

GetBuildArtifactSyncsOk returns a tuple with the BuildArtifactSyncs field value if set, nil otherwise and a boolean to check if the value has been set.

func (*VolumeStatus) GetConditions

func (o *VolumeStatus) GetConditions() []Condition

GetConditions returns the Conditions field value if set, zero value otherwise.

func (*VolumeStatus) GetConditionsOk

func (o *VolumeStatus) GetConditionsOk() ([]Condition, bool)

GetConditionsOk returns a tuple with the Conditions field value if set, nil otherwise and a boolean to check if the value has been set.

func (*VolumeStatus) GetLastRemoteSyncHash

func (o *VolumeStatus) GetLastRemoteSyncHash() string

GetLastRemoteSyncHash returns the LastRemoteSyncHash field value if set, zero value otherwise.

func (*VolumeStatus) GetLastRemoteSyncHashOk

func (o *VolumeStatus) GetLastRemoteSyncHashOk() (*string, bool)

GetLastRemoteSyncHashOk returns a tuple with the LastRemoteSyncHash field value if set, nil otherwise and a boolean to check if the value has been set.

func (*VolumeStatus) GetLastSyncedGitRevision

func (o *VolumeStatus) GetLastSyncedGitRevision() string

GetLastSyncedGitRevision returns the LastSyncedGitRevision field value if set, zero value otherwise.

func (*VolumeStatus) GetLastSyncedGitRevisionOk

func (o *VolumeStatus) GetLastSyncedGitRevisionOk() (*string, bool)

GetLastSyncedGitRevisionOk returns a tuple with the LastSyncedGitRevision field value if set, nil otherwise and a boolean to check if the value has been set.

func (*VolumeStatus) GetPhase

func (o *VolumeStatus) GetPhase() string

GetPhase returns the Phase field value if set, zero value otherwise.

func (*VolumeStatus) GetPhaseOk

func (o *VolumeStatus) GetPhaseOk() (*string, bool)

GetPhaseOk returns a tuple with the Phase field value if set, nil otherwise and a boolean to check if the value has been set.

func (*VolumeStatus) HasBuildArtifactSyncs

func (o *VolumeStatus) HasBuildArtifactSyncs() bool

HasBuildArtifactSyncs returns a boolean if a field has been set.

func (*VolumeStatus) HasConditions

func (o *VolumeStatus) HasConditions() bool

HasConditions returns a boolean if a field has been set.

func (*VolumeStatus) HasLastRemoteSyncHash

func (o *VolumeStatus) HasLastRemoteSyncHash() bool

HasLastRemoteSyncHash returns a boolean if a field has been set.

func (*VolumeStatus) HasLastSyncedGitRevision

func (o *VolumeStatus) HasLastSyncedGitRevision() bool

HasLastSyncedGitRevision returns a boolean if a field has been set.

func (*VolumeStatus) HasPhase

func (o *VolumeStatus) HasPhase() bool

HasPhase returns a boolean if a field has been set.

func (VolumeStatus) MarshalJSON

func (o VolumeStatus) MarshalJSON() ([]byte, error)

func (*VolumeStatus) SetBuildArtifactSyncs

func (o *VolumeStatus) SetBuildArtifactSyncs(v []BuildArtifactSyncInfo)

SetBuildArtifactSyncs gets a reference to the given []BuildArtifactSyncInfo and assigns it to the BuildArtifactSyncs field.

func (*VolumeStatus) SetConditions

func (o *VolumeStatus) SetConditions(v []Condition)

SetConditions gets a reference to the given []Condition and assigns it to the Conditions field.

func (*VolumeStatus) SetLastRemoteSyncHash

func (o *VolumeStatus) SetLastRemoteSyncHash(v string)

SetLastRemoteSyncHash gets a reference to the given string and assigns it to the LastRemoteSyncHash field.

func (*VolumeStatus) SetLastSyncedGitRevision

func (o *VolumeStatus) SetLastSyncedGitRevision(v string)

SetLastSyncedGitRevision gets a reference to the given string and assigns it to the LastSyncedGitRevision field.

func (*VolumeStatus) SetPhase

func (o *VolumeStatus) SetPhase(v string)

SetPhase gets a reference to the given string and assigns it to the Phase field.

type WALConfiguration

type WALConfiguration struct {
	// Compression type for WAL files
	Compression *string `json:"compression,omitempty"`
}

WALConfiguration struct for WALConfiguration

func NewWALConfiguration

func NewWALConfiguration() *WALConfiguration

NewWALConfiguration instantiates a new WALConfiguration object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

func NewWALConfigurationWithDefaults

func NewWALConfigurationWithDefaults() *WALConfiguration

NewWALConfigurationWithDefaults instantiates a new WALConfiguration object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

func (*WALConfiguration) GetCompression

func (o *WALConfiguration) GetCompression() string

GetCompression returns the Compression field value if set, zero value otherwise.

func (*WALConfiguration) GetCompressionOk

func (o *WALConfiguration) GetCompressionOk() (*string, bool)

GetCompressionOk returns a tuple with the Compression field value if set, nil otherwise and a boolean to check if the value has been set.

func (*WALConfiguration) HasCompression

func (o *WALConfiguration) HasCompression() bool

HasCompression returns a boolean if a field has been set.

func (WALConfiguration) MarshalJSON

func (o WALConfiguration) MarshalJSON() ([]byte, error)

func (*WALConfiguration) SetCompression

func (o *WALConfiguration) SetCompression(v string)

SetCompression gets a reference to the given string and assigns it to the Compression field.

Source Files

Jump to

Keyboard shortcuts

? : This menu
/ : Search site
f or F : Jump to
y or Y : Canonical URL