scf

package module
v0.2.0 Latest Latest
Warning

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

Go to latest
Published: Aug 4, 2025 License: Apache-2.0 Imports: 23 Imported by: 0

Documentation

Index

Constants

This section is empty.

Variables

View Source
var AllowedOrgRoleTypeEnumValues = []OrgRoleType{
	"organization_user",
	"organization_auditor",
	"organization_manager",
	"organization_billing_manager",
}

All allowed values of OrgRoleType enum

View Source
var AllowedSpaceRoleTypeEnumValues = []SpaceRoleType{
	"space_auditor",
	"space_developer",
	"space_manager",
	"space_supporter",
}

All allowed values of SpaceRoleType enum

Functions

func CacheExpires

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

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

func IsNil

func IsNil(i interface{}) bool

IsNil checks if an input is nil

func NewConfiguration

func NewConfiguration() *config.Configuration

NewConfiguration returns a new Configuration object

func ParameterValueToString

func ParameterValueToString(obj interface{}, key string) string

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 {
	// contains filtered or unexported fields
}

APIClient manages communication with the STACKIT Cloud Foundry API API v1.0.0 In most cases there should be only one, shared, APIClient.

func NewAPIClient

func NewAPIClient(opts ...config.ConfigurationOption) (*APIClient, error)

NewAPIClient creates a new API client. Optionally receives configuration options

func (*APIClient) ApplyOrganizationQuota

func (a *APIClient) ApplyOrganizationQuota(ctx context.Context, projectId string, region string, organizationId string) ApiApplyOrganizationQuotaRequest

ApplyOrganizationQuota: Apply an organization quota

Change the organization quota of an organization.

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

func (*APIClient) ApplyOrganizationQuotaExecute

func (a *APIClient) ApplyOrganizationQuotaExecute(ctx context.Context, projectId string, region string, organizationId string) (*OrganizationQuota, error)

func (*APIClient) CreateOrgManager

func (a *APIClient) CreateOrgManager(ctx context.Context, projectId string, region string, organizationId string) ApiCreateOrgManagerRequest

CreateOrgManager: Create organization manager

Creates organization manager within an organization.

The organization manager will be backed by a CF user. There is only one organization manager per organization. The organization manager gets assigned the CF role Org Manager.

This endpoint does synchronously several non-atomic steps behind the scenes. If any of those steps fail, the 'Delete Organization Manager' needs to be called first to clean up the failed creation attempt and afterwards the creation can be retried.

The password needs to be stored by the API callee since it cannot be retrieved after creation.

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

func (*APIClient) CreateOrgManagerExecute

func (a *APIClient) CreateOrgManagerExecute(ctx context.Context, projectId string, region string, organizationId string) (*OrgManagerResponse, error)

func (*APIClient) CreateOrgRole

func (a *APIClient) CreateOrgRole(ctx context.Context, projectId string, region string, organizationId string) ApiCreateOrgRoleRequest

CreateOrgRole: Assign organization role

Assign organization role within an organization. If the role is already assigned, the existing role GUID gets returned.

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

func (*APIClient) CreateOrgRoleExecute

func (a *APIClient) CreateOrgRoleExecute(ctx context.Context, projectId string, region string, organizationId string) (*OrgRoleResponse, error)

func (*APIClient) CreateOrganization

func (a *APIClient) CreateOrganization(ctx context.Context, projectId string, region string) ApiCreateOrganizationRequest

CreateOrganization: Create an organization

Creates an organization without assigning any CF roles or creating a space.

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

func (*APIClient) CreateOrganizationExecute

func (a *APIClient) CreateOrganizationExecute(ctx context.Context, projectId string, region string) (*OrganizationCreateResponse, error)

func (*APIClient) CreateSpace

func (a *APIClient) CreateSpace(ctx context.Context, projectId string, region string, organizationId string) ApiCreateSpaceRequest

CreateSpace: Create space

Create space.

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

func (*APIClient) CreateSpaceExecute

func (a *APIClient) CreateSpaceExecute(ctx context.Context, projectId string, region string, organizationId string) (*Space, error)

func (*APIClient) CreateSpaceRole

func (a *APIClient) CreateSpaceRole(ctx context.Context, projectId string, region string, organizationId string, spaceId string) ApiCreateSpaceRoleRequest

CreateSpaceRole: Assign space role

Assign space role within an space. If the role is already assigned, the existing role GUID gets returned.

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

func (*APIClient) CreateSpaceRoleExecute

func (a *APIClient) CreateSpaceRoleExecute(ctx context.Context, projectId string, region string, organizationId string, spaceId string) (*SpaceRoleCreateResponse, error)

func (*APIClient) DeleteOrgManager

func (a *APIClient) DeleteOrgManager(ctx context.Context, projectId string, region string, organizationId string) ApiDeleteOrgManagerRequest

DeleteOrgManager: Delete organization manager

Delete the organization manager.

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

func (*APIClient) DeleteOrgManagerExecute

func (a *APIClient) DeleteOrgManagerExecute(ctx context.Context, projectId string, region string, organizationId string) (*OrgManagerDeleteResponse, error)

func (*APIClient) DeleteOrganization

func (a *APIClient) DeleteOrganization(ctx context.Context, projectId string, region string, organizationId string) ApiDeleteOrganizationRequest

DeleteOrganization: Delete organization

Delete an organization.

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

func (*APIClient) DeleteOrganizationExecute

func (a *APIClient) DeleteOrganizationExecute(ctx context.Context, projectId string, region string, organizationId string) (*OrganizationDeleteResponse, error)

func (*APIClient) DeleteSpace

func (a *APIClient) DeleteSpace(ctx context.Context, projectId string, region string, organizationId string, spaceId string) ApiDeleteSpaceRequest

DeleteSpace: Delete space

Delete space.

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

func (*APIClient) DeleteSpaceExecute

func (a *APIClient) DeleteSpaceExecute(ctx context.Context, projectId string, region string, organizationId string, spaceId string) (*SpaceDeleteResponse, error)

func (*APIClient) GetConfig

func (c *APIClient) GetConfig() *config.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

func (*APIClient) GetOrgManager

func (a *APIClient) GetOrgManager(ctx context.Context, projectId string, region string, organizationId string) ApiGetOrgManagerRequest

GetOrgManager: Get organization manager

Returns the organization manager within an organization.

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

func (*APIClient) GetOrgManagerExecute

func (a *APIClient) GetOrgManagerExecute(ctx context.Context, projectId string, region string, organizationId string) (*OrgManager, error)

func (*APIClient) GetOrganization

func (a *APIClient) GetOrganization(ctx context.Context, projectId string, region string, organizationId string) ApiGetOrganizationRequest

GetOrganization: Get an organization

Returns an organization.

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

func (*APIClient) GetOrganizationExecute

func (a *APIClient) GetOrganizationExecute(ctx context.Context, projectId string, region string, organizationId string) (*Organization, error)

func (*APIClient) GetOrganizationQuota

func (a *APIClient) GetOrganizationQuota(ctx context.Context, projectId string, region string, organizationId string, quotaId string) ApiGetOrganizationQuotaRequest

GetOrganizationQuota: Get an organization quota

Returns an organization quota.

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

func (*APIClient) GetOrganizationQuotaExecute

func (a *APIClient) GetOrganizationQuotaExecute(ctx context.Context, projectId string, region string, organizationId string, quotaId string) (*Quota, error)

func (*APIClient) GetOrganizationUsageSummary

func (a *APIClient) GetOrganizationUsageSummary(ctx context.Context, projectId string, region string, organizationId string) ApiGetOrganizationUsageSummaryRequest

GetOrganizationUsageSummary: Get an organization usage summary

Returns an organization usage summary.

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

func (*APIClient) GetOrganizationUsageSummaryExecute

func (a *APIClient) GetOrganizationUsageSummaryExecute(ctx context.Context, projectId string, region string, organizationId string) (*OrganizationUsageSummary, error)

func (*APIClient) GetPlatform

func (a *APIClient) GetPlatform(ctx context.Context, projectId string, region string, platformId string) ApiGetPlatformRequest

GetPlatform: Get platform

Fetch a single platform

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

func (*APIClient) GetPlatformExecute

func (a *APIClient) GetPlatformExecute(ctx context.Context, projectId string, region string, platformId string) (*Platforms, error)

func (*APIClient) GetPlatformQuota

func (a *APIClient) GetPlatformQuota(ctx context.Context, projectId string, region string, platformId string, quotaId string) ApiGetPlatformQuotaRequest

GetPlatformQuota: Get organization quota on a platform

Returns an organization quota on a platform.

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

func (*APIClient) GetPlatformQuotaExecute

func (a *APIClient) GetPlatformQuotaExecute(ctx context.Context, projectId string, region string, platformId string, quotaId string) (*Quota, error)

func (*APIClient) GetSpace

func (a *APIClient) GetSpace(ctx context.Context, projectId string, region string, organizationId string, spaceId string) ApiGetSpaceRequest

GetSpace: Get a space

Returns a space.

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

func (*APIClient) GetSpaceExecute

func (a *APIClient) GetSpaceExecute(ctx context.Context, projectId string, region string, organizationId string, spaceId string) (*Space, error)

func (*APIClient) ListOrganizationQuotas

func (a *APIClient) ListOrganizationQuotas(ctx context.Context, projectId string, region string, organizationId string) ApiListOrganizationQuotasRequest

ListOrganizationQuotas: List organization quotas

Returns a list of organization quotas.

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

func (*APIClient) ListOrganizationQuotasExecute

func (a *APIClient) ListOrganizationQuotasExecute(ctx context.Context, projectId string, region string, organizationId string) ([]Quota, error)

func (*APIClient) ListOrganizations

func (a *APIClient) ListOrganizations(ctx context.Context, projectId string, region string) ApiListOrganizationsRequest

ListOrganizations: List organizations

Returns a list of organizations for a specific STACKIT project.

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

func (*APIClient) ListOrganizationsExecute

func (a *APIClient) ListOrganizationsExecute(ctx context.Context, projectId string, region string) (*OrganizationsList, error)

func (*APIClient) ListPlatformQuotas

func (a *APIClient) ListPlatformQuotas(ctx context.Context, projectId string, region string, platformId string) ApiListPlatformQuotasRequest

ListPlatformQuotas: List organization quotas on a platform

Returns a list of organization quotas on a platform.

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

func (*APIClient) ListPlatformQuotasExecute

func (a *APIClient) ListPlatformQuotasExecute(ctx context.Context, projectId string, region string, platformId string) ([]Quota, error)

func (*APIClient) ListPlatforms

func (a *APIClient) ListPlatforms(ctx context.Context, projectId string, region string) ApiListPlatformsRequest

ListPlatforms: List all platforms

List all platforms available for a STACKIT project

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

func (*APIClient) ListPlatformsExecute

func (a *APIClient) ListPlatformsExecute(ctx context.Context, projectId string, region string) (*PlatformList, error)

func (*APIClient) ListSpaces

func (a *APIClient) ListSpaces(ctx context.Context, projectId string, region string, organizationId string) ApiListSpacesRequest

ListSpaces: List spaces

Returns a list of spaces for a specific organization.

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

func (*APIClient) ListSpacesExecute

func (a *APIClient) ListSpacesExecute(ctx context.Context, projectId string, region string, organizationId string) (*SpacesList, error)

func (*APIClient) UpdateOrganization

func (a *APIClient) UpdateOrganization(ctx context.Context, projectId string, region string, organizationId string) ApiUpdateOrganizationRequest

UpdateOrganization: Update organization

Update organization.

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

func (*APIClient) UpdateOrganizationExecute

func (a *APIClient) UpdateOrganizationExecute(ctx context.Context, projectId string, region string, organizationId string) (*Organization, error)

func (*APIClient) UpdateSpace

func (a *APIClient) UpdateSpace(ctx context.Context, projectId string, region string, organizationId string, spaceId string) ApiUpdateSpaceRequest

UpdateSpace: Update space

Update space.

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

func (*APIClient) UpdateSpaceExecute

func (a *APIClient) UpdateSpaceExecute(ctx context.Context, projectId string, region string, organizationId string, spaceId string) (*Space, error)

type ApiApplyOrganizationQuotaRequest

type ApiApplyOrganizationQuotaRequest interface {
	ApplyOrganizationQuotaPayload(applyOrganizationQuotaPayload ApplyOrganizationQuotaPayload) ApiApplyOrganizationQuotaRequest
	Execute() (*OrganizationQuota, error)
}

type ApiCreateOrgManagerRequest

type ApiCreateOrgManagerRequest interface {
	Execute() (*OrgManagerResponse, error)
}

type ApiCreateOrgRoleRequest

type ApiCreateOrgRoleRequest interface {
	CreateOrgRolePayload(createOrgRolePayload CreateOrgRolePayload) ApiCreateOrgRoleRequest
	Execute() (*OrgRoleResponse, error)
}

type ApiCreateOrganizationRequest

type ApiCreateOrganizationRequest interface {
	CreateOrganizationPayload(createOrganizationPayload CreateOrganizationPayload) ApiCreateOrganizationRequest
	Execute() (*OrganizationCreateResponse, error)
}

type ApiCreateSpaceRequest

type ApiCreateSpaceRequest interface {
	CreateSpacePayload(createSpacePayload CreateSpacePayload) ApiCreateSpaceRequest
	Execute() (*Space, error)
}

type ApiCreateSpaceRoleRequest

type ApiCreateSpaceRoleRequest interface {
	CreateSpaceRolePayload(createSpaceRolePayload CreateSpaceRolePayload) ApiCreateSpaceRoleRequest
	Execute() (*SpaceRoleCreateResponse, error)
}

type ApiDeleteOrgManagerRequest

type ApiDeleteOrgManagerRequest interface {
	Execute() (*OrgManagerDeleteResponse, error)
}

type ApiDeleteOrganizationRequest

type ApiDeleteOrganizationRequest interface {
	Execute() (*OrganizationDeleteResponse, error)
}

type ApiDeleteSpaceRequest

type ApiDeleteSpaceRequest interface {
	Execute() (*SpaceDeleteResponse, error)
}

type ApiGetOrgManagerRequest

type ApiGetOrgManagerRequest interface {
	Execute() (*OrgManager, error)
}

type ApiGetOrganizationQuotaRequest

type ApiGetOrganizationQuotaRequest interface {
	Execute() (*Quota, error)
}

type ApiGetOrganizationRequest

type ApiGetOrganizationRequest interface {
	Execute() (*Organization, error)
}

type ApiGetOrganizationUsageSummaryRequest

type ApiGetOrganizationUsageSummaryRequest interface {
	Execute() (*OrganizationUsageSummary, error)
}

type ApiGetPlatformQuotaRequest

type ApiGetPlatformQuotaRequest interface {
	Execute() (*Quota, error)
}

type ApiGetPlatformRequest

type ApiGetPlatformRequest interface {
	Execute() (*Platforms, error)
}

type ApiGetSpaceRequest

type ApiGetSpaceRequest interface {
	Execute() (*Space, error)
}

type ApiListOrganizationQuotasRequest

type ApiListOrganizationQuotasRequest interface {
	Execute() ([]Quota, error)
}

type ApiListOrganizationsRequest

type ApiListOrganizationsRequest interface {
	// Adds the details to the response that can be queried from the Cloud Controller API
	WithDetails(withDetails bool) ApiListOrganizationsRequest
	// In case `withDetails` is enabled, the organization list can be sorted by `name`.  In order to sort by `name`, you have to set the value `name`. The default sort ordering is ascending. To specify descending order for `name` field, you have to append ` desc` suffix; for example `name desc`.
	OrderBy(orderBy string) ApiListOrganizationsRequest
	// Which page is returned
	Page(page int64) ApiListOrganizationsRequest
	// Elements to be returned per page
	PerPage(perPage int64) ApiListOrganizationsRequest
	Execute() (*OrganizationsList, error)
}

type ApiListPlatformQuotasRequest

type ApiListPlatformQuotasRequest interface {
	Execute() ([]Quota, error)
}

type ApiListPlatformsRequest

type ApiListPlatformsRequest interface {
	// Which page is returned
	Page(page int64) ApiListPlatformsRequest
	// Elements to be returned per page
	PerPage(perPage int64) ApiListPlatformsRequest
	Execute() (*PlatformList, error)
}

type ApiListSpacesRequest

type ApiListSpacesRequest interface {
	// Which page is returned
	Page(page int64) ApiListSpacesRequest
	// Elements to be returned per page
	PerPage(perPage int64) ApiListSpacesRequest
	Execute() (*SpacesList, error)
}

type ApiUpdateOrganizationRequest

type ApiUpdateOrganizationRequest interface {
	UpdateOrganizationPayload(updateOrganizationPayload UpdateOrganizationPayload) ApiUpdateOrganizationRequest
	Execute() (*Organization, error)
}

type ApiUpdateSpaceRequest

type ApiUpdateSpaceRequest interface {
	UpdateSpacePayload(updateSpacePayload UpdateSpacePayload) ApiUpdateSpaceRequest
	Execute() (*Space, error)
}

type ApplyOrganizationQuotaPayload

type ApplyOrganizationQuotaPayload struct {
	// REQUIRED
	QuotaId ApplyOrganizationQuotaPayloadGetQuotaIdAttributeType `json:"quotaId" required:"true"`
}

ApplyOrganizationQuotaPayload struct for ApplyOrganizationQuotaPayload

func NewApplyOrganizationQuotaPayload

func NewApplyOrganizationQuotaPayload(quotaId ApplyOrganizationQuotaPayloadGetQuotaIdArgType) *ApplyOrganizationQuotaPayload

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

func NewApplyOrganizationQuotaPayloadWithDefaults

func NewApplyOrganizationQuotaPayloadWithDefaults() *ApplyOrganizationQuotaPayload

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

func (*ApplyOrganizationQuotaPayload) GetQuotaId

GetQuotaId returns the QuotaId field value

func (*ApplyOrganizationQuotaPayload) GetQuotaIdOk

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

func (*ApplyOrganizationQuotaPayload) SetQuotaId

SetQuotaId sets field value

func (ApplyOrganizationQuotaPayload) ToMap

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

type ApplyOrganizationQuotaPayloadGetQuotaIdArgType

type ApplyOrganizationQuotaPayloadGetQuotaIdArgType = string

type ApplyOrganizationQuotaPayloadGetQuotaIdAttributeType

type ApplyOrganizationQuotaPayloadGetQuotaIdAttributeType = *string

isNotNullableString

type ApplyOrganizationQuotaPayloadGetQuotaIdRetType

type ApplyOrganizationQuotaPayloadGetQuotaIdRetType = string

type ApplyOrganizationQuotaRequest

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

func (ApplyOrganizationQuotaRequest) ApplyOrganizationQuotaPayload

func (r ApplyOrganizationQuotaRequest) ApplyOrganizationQuotaPayload(applyOrganizationQuotaPayload ApplyOrganizationQuotaPayload) ApiApplyOrganizationQuotaRequest

func (ApplyOrganizationQuotaRequest) Execute

type CreateOrgManagerRequest

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

func (CreateOrgManagerRequest) Execute

type CreateOrgRolePayload

type CreateOrgRolePayload struct {
	// REQUIRED
	Type     CreateOrgRolePayloadGetTypeAttributeType     `json:"type" required:"true"`
	UserGuid CreateOrgRolePayloadGetUserGuidAttributeType `json:"userGuid,omitempty"`
	UserName CreateOrgRolePayloadGetUserNameAttributeType `json:"userName,omitempty"`
}

CreateOrgRolePayload struct for CreateOrgRolePayload

func NewCreateOrgRolePayload

func NewCreateOrgRolePayload(types CreateOrgRolePayloadGetTypeArgType) *CreateOrgRolePayload

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

func NewCreateOrgRolePayloadWithDefaults

func NewCreateOrgRolePayloadWithDefaults() *CreateOrgRolePayload

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

func (*CreateOrgRolePayload) GetType

GetType returns the Type field value

func (*CreateOrgRolePayload) GetTypeOk

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

func (*CreateOrgRolePayload) GetUserGuid

GetUserGuid returns the UserGuid field value if set, zero value otherwise.

func (*CreateOrgRolePayload) GetUserGuidOk

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

func (*CreateOrgRolePayload) GetUserName

GetUserName returns the UserName field value if set, zero value otherwise.

func (*CreateOrgRolePayload) GetUserNameOk

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 (*CreateOrgRolePayload) HasUserGuid

func (o *CreateOrgRolePayload) HasUserGuid() bool

HasUserGuid returns a boolean if a field has been set.

func (*CreateOrgRolePayload) HasUserName

func (o *CreateOrgRolePayload) HasUserName() bool

HasUserName returns a boolean if a field has been set.

func (*CreateOrgRolePayload) SetType

SetType sets field value

func (*CreateOrgRolePayload) SetUserGuid

SetUserGuid gets a reference to the given string and assigns it to the UserGuid field.

func (*CreateOrgRolePayload) SetUserName

SetUserName gets a reference to the given string and assigns it to the UserName field.

func (CreateOrgRolePayload) ToMap

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

type CreateOrgRolePayloadGetTypeArgType

type CreateOrgRolePayloadGetTypeArgType = OrgRoleType

type CreateOrgRolePayloadGetTypeAttributeType

type CreateOrgRolePayloadGetTypeAttributeType = *OrgRoleType

isEnumRef

type CreateOrgRolePayloadGetTypeRetType

type CreateOrgRolePayloadGetTypeRetType = OrgRoleType

type CreateOrgRolePayloadGetUserGuidArgType

type CreateOrgRolePayloadGetUserGuidArgType = string

type CreateOrgRolePayloadGetUserGuidAttributeType

type CreateOrgRolePayloadGetUserGuidAttributeType = *string

isNotNullableString

type CreateOrgRolePayloadGetUserGuidRetType

type CreateOrgRolePayloadGetUserGuidRetType = string

type CreateOrgRolePayloadGetUserNameArgType

type CreateOrgRolePayloadGetUserNameArgType = string

type CreateOrgRolePayloadGetUserNameAttributeType

type CreateOrgRolePayloadGetUserNameAttributeType = *string

isNotNullableString

type CreateOrgRolePayloadGetUserNameRetType

type CreateOrgRolePayloadGetUserNameRetType = string

type CreateOrgRoleRequest

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

func (CreateOrgRoleRequest) CreateOrgRolePayload

func (r CreateOrgRoleRequest) CreateOrgRolePayload(createOrgRolePayload CreateOrgRolePayload) ApiCreateOrgRoleRequest

func (CreateOrgRoleRequest) Execute

func (r CreateOrgRoleRequest) Execute() (*OrgRoleResponse, error)

type CreateOrganizationPayload

type CreateOrganizationPayload struct {
	// REQUIRED
	Name       CreateOrganizationPayloadGetNameAttributeType       `json:"name" required:"true"`
	PlatformId CreateOrganizationPayloadGetPlatformIdAttributeType `json:"platformId,omitempty"`
}

CreateOrganizationPayload struct for CreateOrganizationPayload

func NewCreateOrganizationPayload

func NewCreateOrganizationPayload(name CreateOrganizationPayloadGetNameArgType) *CreateOrganizationPayload

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

func NewCreateOrganizationPayloadWithDefaults

func NewCreateOrganizationPayloadWithDefaults() *CreateOrganizationPayload

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

func (*CreateOrganizationPayload) GetName

GetName returns the Name field value

func (*CreateOrganizationPayload) GetNameOk

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

func (*CreateOrganizationPayload) GetPlatformId

GetPlatformId returns the PlatformId field value if set, zero value otherwise.

func (*CreateOrganizationPayload) GetPlatformIdOk

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

func (*CreateOrganizationPayload) HasPlatformId

func (o *CreateOrganizationPayload) HasPlatformId() bool

HasPlatformId returns a boolean if a field has been set.

func (*CreateOrganizationPayload) SetName

SetName sets field value

func (*CreateOrganizationPayload) SetPlatformId

SetPlatformId gets a reference to the given string and assigns it to the PlatformId field.

func (CreateOrganizationPayload) ToMap

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

type CreateOrganizationPayloadGetNameArgType

type CreateOrganizationPayloadGetNameArgType = string

type CreateOrganizationPayloadGetNameAttributeType

type CreateOrganizationPayloadGetNameAttributeType = *string

isNotNullableString

type CreateOrganizationPayloadGetNameRetType

type CreateOrganizationPayloadGetNameRetType = string

type CreateOrganizationPayloadGetPlatformIdArgType

type CreateOrganizationPayloadGetPlatformIdArgType = string

type CreateOrganizationPayloadGetPlatformIdAttributeType

type CreateOrganizationPayloadGetPlatformIdAttributeType = *string

isNotNullableString

type CreateOrganizationPayloadGetPlatformIdRetType

type CreateOrganizationPayloadGetPlatformIdRetType = string

type CreateOrganizationRequest

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

func (CreateOrganizationRequest) CreateOrganizationPayload

func (r CreateOrganizationRequest) CreateOrganizationPayload(createOrganizationPayload CreateOrganizationPayload) ApiCreateOrganizationRequest

func (CreateOrganizationRequest) Execute

type CreateSpacePayload

type CreateSpacePayload struct {
	// Name of the space
	// REQUIRED
	Name CreateSpacePayloadGetNameAttributeType `json:"name" required:"true"`
}

CreateSpacePayload struct for CreateSpacePayload

func NewCreateSpacePayload

func NewCreateSpacePayload(name CreateSpacePayloadGetNameArgType) *CreateSpacePayload

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

func NewCreateSpacePayloadWithDefaults

func NewCreateSpacePayloadWithDefaults() *CreateSpacePayload

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

func (*CreateSpacePayload) GetName

GetName returns the Name field value

func (*CreateSpacePayload) GetNameOk

func (o *CreateSpacePayload) GetNameOk() (ret CreateSpacePayloadGetNameRetType, ok bool)

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

func (*CreateSpacePayload) SetName

SetName sets field value

func (CreateSpacePayload) ToMap

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

type CreateSpacePayloadGetNameArgType

type CreateSpacePayloadGetNameArgType = string

type CreateSpacePayloadGetNameAttributeType

type CreateSpacePayloadGetNameAttributeType = *string

isNotNullableString

type CreateSpacePayloadGetNameRetType

type CreateSpacePayloadGetNameRetType = string

type CreateSpaceRequest

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

func (CreateSpaceRequest) CreateSpacePayload

func (r CreateSpaceRequest) CreateSpacePayload(createSpacePayload CreateSpacePayload) ApiCreateSpaceRequest

func (CreateSpaceRequest) Execute

func (r CreateSpaceRequest) Execute() (*Space, error)

type CreateSpaceRolePayload

type CreateSpaceRolePayload struct {
	// REQUIRED
	Type     CreateSpaceRolePayloadGetTypeAttributeType     `json:"type" required:"true"`
	UserGuid CreateSpaceRolePayloadGetUserGuidAttributeType `json:"userGuid,omitempty"`
	UserName CreateSpaceRolePayloadGetUserNameAttributeType `json:"userName,omitempty"`
}

CreateSpaceRolePayload struct for CreateSpaceRolePayload

func NewCreateSpaceRolePayload

func NewCreateSpaceRolePayload(types CreateSpaceRolePayloadGetTypeArgType) *CreateSpaceRolePayload

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

func NewCreateSpaceRolePayloadWithDefaults

func NewCreateSpaceRolePayloadWithDefaults() *CreateSpaceRolePayload

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

func (*CreateSpaceRolePayload) GetType

GetType returns the Type field value

func (*CreateSpaceRolePayload) GetTypeOk

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

func (*CreateSpaceRolePayload) GetUserGuid

GetUserGuid returns the UserGuid field value if set, zero value otherwise.

func (*CreateSpaceRolePayload) GetUserGuidOk

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

func (*CreateSpaceRolePayload) GetUserName

GetUserName returns the UserName field value if set, zero value otherwise.

func (*CreateSpaceRolePayload) GetUserNameOk

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 (*CreateSpaceRolePayload) HasUserGuid

func (o *CreateSpaceRolePayload) HasUserGuid() bool

HasUserGuid returns a boolean if a field has been set.

func (*CreateSpaceRolePayload) HasUserName

func (o *CreateSpaceRolePayload) HasUserName() bool

HasUserName returns a boolean if a field has been set.

func (*CreateSpaceRolePayload) SetType

SetType sets field value

func (*CreateSpaceRolePayload) SetUserGuid

SetUserGuid gets a reference to the given string and assigns it to the UserGuid field.

func (*CreateSpaceRolePayload) SetUserName

SetUserName gets a reference to the given string and assigns it to the UserName field.

func (CreateSpaceRolePayload) ToMap

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

type CreateSpaceRolePayloadGetTypeArgType

type CreateSpaceRolePayloadGetTypeArgType = SpaceRoleType

type CreateSpaceRolePayloadGetTypeAttributeType

type CreateSpaceRolePayloadGetTypeAttributeType = *SpaceRoleType

isEnumRef

type CreateSpaceRolePayloadGetTypeRetType

type CreateSpaceRolePayloadGetTypeRetType = SpaceRoleType

type CreateSpaceRolePayloadGetUserGuidArgType

type CreateSpaceRolePayloadGetUserGuidArgType = string

type CreateSpaceRolePayloadGetUserGuidAttributeType

type CreateSpaceRolePayloadGetUserGuidAttributeType = *string

isNotNullableString

type CreateSpaceRolePayloadGetUserGuidRetType

type CreateSpaceRolePayloadGetUserGuidRetType = string

type CreateSpaceRolePayloadGetUserNameArgType

type CreateSpaceRolePayloadGetUserNameArgType = string

type CreateSpaceRolePayloadGetUserNameAttributeType

type CreateSpaceRolePayloadGetUserNameAttributeType = *string

isNotNullableString

type CreateSpaceRolePayloadGetUserNameRetType

type CreateSpaceRolePayloadGetUserNameRetType = string

type CreateSpaceRoleRequest

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

func (CreateSpaceRoleRequest) CreateSpaceRolePayload

func (r CreateSpaceRoleRequest) CreateSpaceRolePayload(createSpaceRolePayload CreateSpaceRolePayload) ApiCreateSpaceRoleRequest

func (CreateSpaceRoleRequest) Execute

type DefaultApi

type DefaultApi interface {
	/*
		ApplyOrganizationQuota Apply an organization quota
		Change the organization quota of an organization.

		@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
		@param projectId
		@param region
		@param organizationId
		@return ApiApplyOrganizationQuotaRequest
	*/
	ApplyOrganizationQuota(ctx context.Context, projectId string, region string, organizationId string) ApiApplyOrganizationQuotaRequest
	/*
		ApplyOrganizationQuotaExecute executes the request

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

	*/
	ApplyOrganizationQuotaExecute(ctx context.Context, projectId string, region string, organizationId string) (*OrganizationQuota, error)
	/*
		CreateOrgManager Create organization manager
		Creates organization manager within an organization.

		The organization manager will be backed by a CF user.
		There is only one organization manager per organization.
		The organization manager gets assigned the CF role Org Manager.

		This endpoint does synchronously several non-atomic steps behind the scenes.
		If any of those steps fail, the 'Delete Organization Manager' needs to be called first to clean up the failed creation attempt and afterwards the creation can be retried.

		The password needs to be stored by the API callee since it cannot be retrieved after creation.


		@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
		@param projectId
		@param region
		@param organizationId
		@return ApiCreateOrgManagerRequest
	*/
	CreateOrgManager(ctx context.Context, projectId string, region string, organizationId string) ApiCreateOrgManagerRequest
	/*
		CreateOrgManagerExecute executes the request

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

	*/
	CreateOrgManagerExecute(ctx context.Context, projectId string, region string, organizationId string) (*OrgManagerResponse, error)
	/*
		CreateOrgRole Assign organization role
		Assign organization role within an organization. If the role is already assigned, the existing role GUID gets returned.

		@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
		@param projectId
		@param region
		@param organizationId
		@return ApiCreateOrgRoleRequest
	*/
	CreateOrgRole(ctx context.Context, projectId string, region string, organizationId string) ApiCreateOrgRoleRequest
	/*
		CreateOrgRoleExecute executes the request

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

	*/
	CreateOrgRoleExecute(ctx context.Context, projectId string, region string, organizationId string) (*OrgRoleResponse, error)
	/*
		CreateOrganization Create an organization
		Creates an organization without assigning any CF roles or creating a space.

		@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
		@param projectId
		@param region
		@return ApiCreateOrganizationRequest
	*/
	CreateOrganization(ctx context.Context, projectId string, region string) ApiCreateOrganizationRequest
	/*
		CreateOrganizationExecute executes the request

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

	*/
	CreateOrganizationExecute(ctx context.Context, projectId string, region string) (*OrganizationCreateResponse, error)
	/*
		CreateSpace Create space
		Create space.

		@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
		@param projectId
		@param region
		@param organizationId
		@return ApiCreateSpaceRequest
	*/
	CreateSpace(ctx context.Context, projectId string, region string, organizationId string) ApiCreateSpaceRequest
	/*
		CreateSpaceExecute executes the request

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

	*/
	CreateSpaceExecute(ctx context.Context, projectId string, region string, organizationId string) (*Space, error)
	/*
		CreateSpaceRole Assign space role
		Assign space role within an space. If the role is already assigned, the existing role GUID gets returned.

		@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
		@param projectId
		@param region
		@param organizationId
		@param spaceId
		@return ApiCreateSpaceRoleRequest
	*/
	CreateSpaceRole(ctx context.Context, projectId string, region string, organizationId string, spaceId string) ApiCreateSpaceRoleRequest
	/*
		CreateSpaceRoleExecute executes the request

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

	*/
	CreateSpaceRoleExecute(ctx context.Context, projectId string, region string, organizationId string, spaceId string) (*SpaceRoleCreateResponse, error)
	/*
		DeleteOrgManager Delete organization manager
		Delete the organization manager.

		@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
		@param projectId
		@param region
		@param organizationId
		@return ApiDeleteOrgManagerRequest
	*/
	DeleteOrgManager(ctx context.Context, projectId string, region string, organizationId string) ApiDeleteOrgManagerRequest
	/*
		DeleteOrgManagerExecute executes the request

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

	*/
	DeleteOrgManagerExecute(ctx context.Context, projectId string, region string, organizationId string) (*OrgManagerDeleteResponse, error)
	/*
		DeleteOrganization Delete organization
		Delete an organization.

		@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
		@param projectId
		@param region
		@param organizationId
		@return ApiDeleteOrganizationRequest
	*/
	DeleteOrganization(ctx context.Context, projectId string, region string, organizationId string) ApiDeleteOrganizationRequest
	/*
		DeleteOrganizationExecute executes the request

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

	*/
	DeleteOrganizationExecute(ctx context.Context, projectId string, region string, organizationId string) (*OrganizationDeleteResponse, error)
	/*
		DeleteSpace Delete space
		Delete space.

		@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
		@param projectId
		@param region
		@param organizationId
		@param spaceId
		@return ApiDeleteSpaceRequest
	*/
	DeleteSpace(ctx context.Context, projectId string, region string, organizationId string, spaceId string) ApiDeleteSpaceRequest
	/*
		DeleteSpaceExecute executes the request

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

	*/
	DeleteSpaceExecute(ctx context.Context, projectId string, region string, organizationId string, spaceId string) (*SpaceDeleteResponse, error)
	/*
		GetOrgManager Get organization manager
		Returns the organization manager within an organization.

		@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
		@param projectId
		@param region
		@param organizationId
		@return ApiGetOrgManagerRequest
	*/
	GetOrgManager(ctx context.Context, projectId string, region string, organizationId string) ApiGetOrgManagerRequest
	/*
		GetOrgManagerExecute executes the request

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

	*/
	GetOrgManagerExecute(ctx context.Context, projectId string, region string, organizationId string) (*OrgManager, error)
	/*
		GetOrganization Get an organization
		Returns an organization.

		@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
		@param projectId
		@param region
		@param organizationId
		@return ApiGetOrganizationRequest
	*/
	GetOrganization(ctx context.Context, projectId string, region string, organizationId string) ApiGetOrganizationRequest
	/*
		GetOrganizationExecute executes the request

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

	*/
	GetOrganizationExecute(ctx context.Context, projectId string, region string, organizationId string) (*Organization, error)
	/*
		GetOrganizationQuota Get an organization quota
		Returns an organization quota.

		@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
		@param projectId
		@param region
		@param organizationId
		@param quotaId
		@return ApiGetOrganizationQuotaRequest
	*/
	GetOrganizationQuota(ctx context.Context, projectId string, region string, organizationId string, quotaId string) ApiGetOrganizationQuotaRequest
	/*
		GetOrganizationQuotaExecute executes the request

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

	*/
	GetOrganizationQuotaExecute(ctx context.Context, projectId string, region string, organizationId string, quotaId string) (*Quota, error)
	/*
		GetOrganizationUsageSummary Get an organization usage summary
		Returns an organization usage summary.

		@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
		@param projectId
		@param region
		@param organizationId
		@return ApiGetOrganizationUsageSummaryRequest
	*/
	GetOrganizationUsageSummary(ctx context.Context, projectId string, region string, organizationId string) ApiGetOrganizationUsageSummaryRequest
	/*
		GetOrganizationUsageSummaryExecute executes the request

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

	*/
	GetOrganizationUsageSummaryExecute(ctx context.Context, projectId string, region string, organizationId string) (*OrganizationUsageSummary, error)
	/*
		GetPlatform Get platform
		Fetch a single platform

		@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
		@param projectId
		@param region
		@param platformId
		@return ApiGetPlatformRequest
	*/
	GetPlatform(ctx context.Context, projectId string, region string, platformId string) ApiGetPlatformRequest
	/*
		GetPlatformExecute executes the request

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

	*/
	GetPlatformExecute(ctx context.Context, projectId string, region string, platformId string) (*Platforms, error)
	/*
		GetPlatformQuota Get organization quota on a platform
		Returns an organization quota on a platform.

		@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
		@param projectId
		@param region
		@param platformId
		@param quotaId
		@return ApiGetPlatformQuotaRequest
	*/
	GetPlatformQuota(ctx context.Context, projectId string, region string, platformId string, quotaId string) ApiGetPlatformQuotaRequest
	/*
		GetPlatformQuotaExecute executes the request

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

	*/
	GetPlatformQuotaExecute(ctx context.Context, projectId string, region string, platformId string, quotaId string) (*Quota, error)
	/*
		GetSpace Get a space
		Returns a space.

		@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
		@param projectId
		@param region
		@param organizationId
		@param spaceId
		@return ApiGetSpaceRequest
	*/
	GetSpace(ctx context.Context, projectId string, region string, organizationId string, spaceId string) ApiGetSpaceRequest
	/*
		GetSpaceExecute executes the request

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

	*/
	GetSpaceExecute(ctx context.Context, projectId string, region string, organizationId string, spaceId string) (*Space, error)
	/*
		ListOrganizationQuotas List organization quotas
		Returns a list of organization quotas.

		@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
		@param projectId
		@param region
		@param organizationId
		@return ApiListOrganizationQuotasRequest
	*/
	ListOrganizationQuotas(ctx context.Context, projectId string, region string, organizationId string) ApiListOrganizationQuotasRequest
	/*
		ListOrganizationQuotasExecute executes the request

		@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
		@param projectId
		@param region
		@param organizationId
		@return []Quota

	*/
	ListOrganizationQuotasExecute(ctx context.Context, projectId string, region string, organizationId string) ([]Quota, error)
	/*
		ListOrganizations List organizations
		Returns a list of organizations for a specific STACKIT project.

		@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
		@param projectId
		@param region
		@return ApiListOrganizationsRequest
	*/
	ListOrganizations(ctx context.Context, projectId string, region string) ApiListOrganizationsRequest
	/*
		ListOrganizationsExecute executes the request

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

	*/
	ListOrganizationsExecute(ctx context.Context, projectId string, region string) (*OrganizationsList, error)
	/*
		ListPlatformQuotas List organization quotas on a platform
		Returns a list of organization quotas on a platform.

		@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
		@param projectId
		@param region
		@param platformId
		@return ApiListPlatformQuotasRequest
	*/
	ListPlatformQuotas(ctx context.Context, projectId string, region string, platformId string) ApiListPlatformQuotasRequest
	/*
		ListPlatformQuotasExecute executes the request

		@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
		@param projectId
		@param region
		@param platformId
		@return []Quota

	*/
	ListPlatformQuotasExecute(ctx context.Context, projectId string, region string, platformId string) ([]Quota, error)
	/*
		ListPlatforms List all platforms
		List all platforms available for a STACKIT project

		@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
		@param projectId
		@param region
		@return ApiListPlatformsRequest
	*/
	ListPlatforms(ctx context.Context, projectId string, region string) ApiListPlatformsRequest
	/*
		ListPlatformsExecute executes the request

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

	*/
	ListPlatformsExecute(ctx context.Context, projectId string, region string) (*PlatformList, error)
	/*
		ListSpaces List spaces
		Returns a list of spaces for a specific organization.

		@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
		@param projectId
		@param region
		@param organizationId
		@return ApiListSpacesRequest
	*/
	ListSpaces(ctx context.Context, projectId string, region string, organizationId string) ApiListSpacesRequest
	/*
		ListSpacesExecute executes the request

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

	*/
	ListSpacesExecute(ctx context.Context, projectId string, region string, organizationId string) (*SpacesList, error)
	/*
		UpdateOrganization Update organization
		Update organization.

		@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
		@param projectId
		@param region
		@param organizationId
		@return ApiUpdateOrganizationRequest
	*/
	UpdateOrganization(ctx context.Context, projectId string, region string, organizationId string) ApiUpdateOrganizationRequest
	/*
		UpdateOrganizationExecute executes the request

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

	*/
	UpdateOrganizationExecute(ctx context.Context, projectId string, region string, organizationId string) (*Organization, error)
	/*
		UpdateSpace Update space
		Update space.

		@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
		@param projectId
		@param region
		@param organizationId
		@param spaceId
		@return ApiUpdateSpaceRequest
	*/
	UpdateSpace(ctx context.Context, projectId string, region string, organizationId string, spaceId string) ApiUpdateSpaceRequest
	/*
		UpdateSpaceExecute executes the request

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

	*/
	UpdateSpaceExecute(ctx context.Context, projectId string, region string, organizationId string, spaceId string) (*Space, error)
}

type DefaultApiService

type DefaultApiService service

DefaultApiService DefaultApi service

type DeleteOrgManagerRequest

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

func (DeleteOrgManagerRequest) Execute

type DeleteOrganizationRequest

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

func (DeleteOrganizationRequest) Execute

type DeleteSpaceRequest

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

func (DeleteSpaceRequest) Execute

type ErrorResponse

type ErrorResponse struct {
	// REQUIRED
	Code ErrorResponseGetCodeAttributeType `json:"code" required:"true"`
	// REQUIRED
	Message ErrorResponseGetMessageAttributeType `json:"message" required:"true"`
}

ErrorResponse struct for ErrorResponse

func NewErrorResponse

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

func NewErrorResponseWithDefaults

func NewErrorResponseWithDefaults() *ErrorResponse

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

func (*ErrorResponse) GetCode

func (o *ErrorResponse) GetCode() (ret ErrorResponseGetCodeRetType)

GetCode returns the Code field value

func (*ErrorResponse) GetCodeOk

func (o *ErrorResponse) GetCodeOk() (ret ErrorResponseGetCodeRetType, ok bool)

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

func (*ErrorResponse) GetMessage

func (o *ErrorResponse) GetMessage() (ret ErrorResponseGetMessageRetType)

GetMessage returns the Message field value

func (*ErrorResponse) GetMessageOk

func (o *ErrorResponse) GetMessageOk() (ret ErrorResponseGetMessageRetType, ok bool)

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

func (*ErrorResponse) SetCode

SetCode sets field value

func (*ErrorResponse) SetMessage

SetMessage sets field value

func (ErrorResponse) ToMap

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

type ErrorResponseGetCodeArgType

type ErrorResponseGetCodeArgType = string

type ErrorResponseGetCodeAttributeType

type ErrorResponseGetCodeAttributeType = *string

isNotNullableString

type ErrorResponseGetCodeRetType

type ErrorResponseGetCodeRetType = string

type ErrorResponseGetMessageArgType

type ErrorResponseGetMessageArgType = string

type ErrorResponseGetMessageAttributeType

type ErrorResponseGetMessageAttributeType = *string

isNotNullableString

type ErrorResponseGetMessageRetType

type ErrorResponseGetMessageRetType = string

type GetOrgManagerRequest

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

func (GetOrgManagerRequest) Execute

func (r GetOrgManagerRequest) Execute() (*OrgManager, error)

type GetOrganizationQuotaRequest

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

func (GetOrganizationQuotaRequest) Execute

func (r GetOrganizationQuotaRequest) Execute() (*Quota, error)

type GetOrganizationRequest

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

func (GetOrganizationRequest) Execute

func (r GetOrganizationRequest) Execute() (*Organization, error)

type GetOrganizationUsageSummaryRequest

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

func (GetOrganizationUsageSummaryRequest) Execute

type GetPlatformQuotaRequest

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

func (GetPlatformQuotaRequest) Execute

func (r GetPlatformQuotaRequest) Execute() (*Quota, error)

type GetPlatformRequest

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

func (GetPlatformRequest) Execute

func (r GetPlatformRequest) Execute() (*Platforms, error)

type GetSpaceRequest

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

func (GetSpaceRequest) Execute

func (r GetSpaceRequest) Execute() (*Space, error)

type ListOrganizationQuotasRequest

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

func (ListOrganizationQuotasRequest) Execute

func (r ListOrganizationQuotasRequest) Execute() ([]Quota, error)

type ListOrganizationsRequest

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

func (ListOrganizationsRequest) Execute

func (ListOrganizationsRequest) OrderBy

func (ListOrganizationsRequest) Page

func (ListOrganizationsRequest) PerPage

func (ListOrganizationsRequest) WithDetails

func (r ListOrganizationsRequest) WithDetails(withDetails bool) ApiListOrganizationsRequest

type ListPlatformQuotasRequest

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

func (ListPlatformQuotasRequest) Execute

func (r ListPlatformQuotasRequest) Execute() ([]Quota, error)

type ListPlatformsRequest

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

func (ListPlatformsRequest) Execute

func (r ListPlatformsRequest) Execute() (*PlatformList, error)

func (ListPlatformsRequest) Page

func (ListPlatformsRequest) PerPage

type ListSpacesRequest

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

func (ListSpacesRequest) Execute

func (r ListSpacesRequest) Execute() (*SpacesList, error)

func (ListSpacesRequest) Page

func (ListSpacesRequest) PerPage

func (r ListSpacesRequest) PerPage(perPage int64) ApiListSpacesRequest

type MappedNullable

type MappedNullable interface {
	ToMap() (map[string]interface{}, error)
}

type NullableApplyOrganizationQuotaPayload

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

func (NullableApplyOrganizationQuotaPayload) Get

func (NullableApplyOrganizationQuotaPayload) IsSet

func (NullableApplyOrganizationQuotaPayload) MarshalJSON

func (v NullableApplyOrganizationQuotaPayload) MarshalJSON() ([]byte, error)

func (*NullableApplyOrganizationQuotaPayload) Set

func (*NullableApplyOrganizationQuotaPayload) UnmarshalJSON

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

func (*NullableApplyOrganizationQuotaPayload) 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 NullableCreateOrgRolePayload

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

func NewNullableCreateOrgRolePayload

func NewNullableCreateOrgRolePayload(val *CreateOrgRolePayload) *NullableCreateOrgRolePayload

func (NullableCreateOrgRolePayload) Get

func (NullableCreateOrgRolePayload) IsSet

func (NullableCreateOrgRolePayload) MarshalJSON

func (v NullableCreateOrgRolePayload) MarshalJSON() ([]byte, error)

func (*NullableCreateOrgRolePayload) Set

func (*NullableCreateOrgRolePayload) UnmarshalJSON

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

func (*NullableCreateOrgRolePayload) Unset

func (v *NullableCreateOrgRolePayload) Unset()

type NullableCreateOrganizationPayload

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

func (NullableCreateOrganizationPayload) Get

func (NullableCreateOrganizationPayload) IsSet

func (NullableCreateOrganizationPayload) MarshalJSON

func (v NullableCreateOrganizationPayload) MarshalJSON() ([]byte, error)

func (*NullableCreateOrganizationPayload) Set

func (*NullableCreateOrganizationPayload) UnmarshalJSON

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

func (*NullableCreateOrganizationPayload) Unset

type NullableCreateSpacePayload

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

func NewNullableCreateSpacePayload

func NewNullableCreateSpacePayload(val *CreateSpacePayload) *NullableCreateSpacePayload

func (NullableCreateSpacePayload) Get

func (NullableCreateSpacePayload) IsSet

func (v NullableCreateSpacePayload) IsSet() bool

func (NullableCreateSpacePayload) MarshalJSON

func (v NullableCreateSpacePayload) MarshalJSON() ([]byte, error)

func (*NullableCreateSpacePayload) Set

func (*NullableCreateSpacePayload) UnmarshalJSON

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

func (*NullableCreateSpacePayload) Unset

func (v *NullableCreateSpacePayload) Unset()

type NullableCreateSpaceRolePayload

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

func (NullableCreateSpaceRolePayload) Get

func (NullableCreateSpaceRolePayload) IsSet

func (NullableCreateSpaceRolePayload) MarshalJSON

func (v NullableCreateSpaceRolePayload) MarshalJSON() ([]byte, error)

func (*NullableCreateSpaceRolePayload) Set

func (*NullableCreateSpaceRolePayload) UnmarshalJSON

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

func (*NullableCreateSpaceRolePayload) Unset

func (v *NullableCreateSpaceRolePayload) Unset()

type NullableErrorResponse

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

func NewNullableErrorResponse

func NewNullableErrorResponse(val *ErrorResponse) *NullableErrorResponse

func (NullableErrorResponse) Get

func (NullableErrorResponse) IsSet

func (v NullableErrorResponse) IsSet() bool

func (NullableErrorResponse) MarshalJSON

func (v NullableErrorResponse) MarshalJSON() ([]byte, error)

func (*NullableErrorResponse) Set

func (v *NullableErrorResponse) Set(val *ErrorResponse)

func (*NullableErrorResponse) UnmarshalJSON

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

func (*NullableErrorResponse) Unset

func (v *NullableErrorResponse) 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 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 NullableOrgManager

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

func NewNullableOrgManager

func NewNullableOrgManager(val *OrgManager) *NullableOrgManager

func (NullableOrgManager) Get

func (v NullableOrgManager) Get() *OrgManager

func (NullableOrgManager) IsSet

func (v NullableOrgManager) IsSet() bool

func (NullableOrgManager) MarshalJSON

func (v NullableOrgManager) MarshalJSON() ([]byte, error)

func (*NullableOrgManager) Set

func (v *NullableOrgManager) Set(val *OrgManager)

func (*NullableOrgManager) UnmarshalJSON

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

func (*NullableOrgManager) Unset

func (v *NullableOrgManager) Unset()

type NullableOrgManagerDeleteResponse

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

func (NullableOrgManagerDeleteResponse) Get

func (NullableOrgManagerDeleteResponse) IsSet

func (NullableOrgManagerDeleteResponse) MarshalJSON

func (v NullableOrgManagerDeleteResponse) MarshalJSON() ([]byte, error)

func (*NullableOrgManagerDeleteResponse) Set

func (*NullableOrgManagerDeleteResponse) UnmarshalJSON

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

func (*NullableOrgManagerDeleteResponse) Unset

type NullableOrgManagerResponse

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

func NewNullableOrgManagerResponse

func NewNullableOrgManagerResponse(val *OrgManagerResponse) *NullableOrgManagerResponse

func (NullableOrgManagerResponse) Get

func (NullableOrgManagerResponse) IsSet

func (v NullableOrgManagerResponse) IsSet() bool

func (NullableOrgManagerResponse) MarshalJSON

func (v NullableOrgManagerResponse) MarshalJSON() ([]byte, error)

func (*NullableOrgManagerResponse) Set

func (*NullableOrgManagerResponse) UnmarshalJSON

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

func (*NullableOrgManagerResponse) Unset

func (v *NullableOrgManagerResponse) Unset()

type NullableOrgRoleCreateBffRequest

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

func (NullableOrgRoleCreateBffRequest) Get

func (NullableOrgRoleCreateBffRequest) IsSet

func (NullableOrgRoleCreateBffRequest) MarshalJSON

func (v NullableOrgRoleCreateBffRequest) MarshalJSON() ([]byte, error)

func (*NullableOrgRoleCreateBffRequest) Set

func (*NullableOrgRoleCreateBffRequest) UnmarshalJSON

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

func (*NullableOrgRoleCreateBffRequest) Unset

type NullableOrgRoleResponse

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

func NewNullableOrgRoleResponse

func NewNullableOrgRoleResponse(val *OrgRoleResponse) *NullableOrgRoleResponse

func (NullableOrgRoleResponse) Get

func (NullableOrgRoleResponse) IsSet

func (v NullableOrgRoleResponse) IsSet() bool

func (NullableOrgRoleResponse) MarshalJSON

func (v NullableOrgRoleResponse) MarshalJSON() ([]byte, error)

func (*NullableOrgRoleResponse) Set

func (*NullableOrgRoleResponse) UnmarshalJSON

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

func (*NullableOrgRoleResponse) Unset

func (v *NullableOrgRoleResponse) Unset()

type NullableOrgRoleType

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

func NewNullableOrgRoleType

func NewNullableOrgRoleType(val *OrgRoleType) *NullableOrgRoleType

func (NullableOrgRoleType) Get

func (NullableOrgRoleType) IsSet

func (v NullableOrgRoleType) IsSet() bool

func (NullableOrgRoleType) MarshalJSON

func (v NullableOrgRoleType) MarshalJSON() ([]byte, error)

func (*NullableOrgRoleType) Set

func (v *NullableOrgRoleType) Set(val *OrgRoleType)

func (*NullableOrgRoleType) UnmarshalJSON

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

func (*NullableOrgRoleType) Unset

func (v *NullableOrgRoleType) Unset()

type NullableOrganization

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

func NewNullableOrganization

func NewNullableOrganization(val *Organization) *NullableOrganization

func (NullableOrganization) Get

func (NullableOrganization) IsSet

func (v NullableOrganization) IsSet() bool

func (NullableOrganization) MarshalJSON

func (v NullableOrganization) MarshalJSON() ([]byte, error)

func (*NullableOrganization) Set

func (v *NullableOrganization) Set(val *Organization)

func (*NullableOrganization) UnmarshalJSON

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

func (*NullableOrganization) Unset

func (v *NullableOrganization) Unset()

type NullableOrganizationCreateBffResponse

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

func (NullableOrganizationCreateBffResponse) Get

func (NullableOrganizationCreateBffResponse) IsSet

func (NullableOrganizationCreateBffResponse) MarshalJSON

func (v NullableOrganizationCreateBffResponse) MarshalJSON() ([]byte, error)

func (*NullableOrganizationCreateBffResponse) Set

func (*NullableOrganizationCreateBffResponse) UnmarshalJSON

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

func (*NullableOrganizationCreateBffResponse) Unset

type NullableOrganizationCreateResponse

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

func (NullableOrganizationCreateResponse) Get

func (NullableOrganizationCreateResponse) IsSet

func (NullableOrganizationCreateResponse) MarshalJSON

func (v NullableOrganizationCreateResponse) MarshalJSON() ([]byte, error)

func (*NullableOrganizationCreateResponse) Set

func (*NullableOrganizationCreateResponse) UnmarshalJSON

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

func (*NullableOrganizationCreateResponse) Unset

type NullableOrganizationDeleteResponse

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

func (NullableOrganizationDeleteResponse) Get

func (NullableOrganizationDeleteResponse) IsSet

func (NullableOrganizationDeleteResponse) MarshalJSON

func (v NullableOrganizationDeleteResponse) MarshalJSON() ([]byte, error)

func (*NullableOrganizationDeleteResponse) Set

func (*NullableOrganizationDeleteResponse) UnmarshalJSON

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

func (*NullableOrganizationDeleteResponse) Unset

type NullableOrganizationQuota

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

func NewNullableOrganizationQuota

func NewNullableOrganizationQuota(val *OrganizationQuota) *NullableOrganizationQuota

func (NullableOrganizationQuota) Get

func (NullableOrganizationQuota) IsSet

func (v NullableOrganizationQuota) IsSet() bool

func (NullableOrganizationQuota) MarshalJSON

func (v NullableOrganizationQuota) MarshalJSON() ([]byte, error)

func (*NullableOrganizationQuota) Set

func (*NullableOrganizationQuota) UnmarshalJSON

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

func (*NullableOrganizationQuota) Unset

func (v *NullableOrganizationQuota) Unset()

type NullableOrganizationUsageSummary

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

func (NullableOrganizationUsageSummary) Get

func (NullableOrganizationUsageSummary) IsSet

func (NullableOrganizationUsageSummary) MarshalJSON

func (v NullableOrganizationUsageSummary) MarshalJSON() ([]byte, error)

func (*NullableOrganizationUsageSummary) Set

func (*NullableOrganizationUsageSummary) UnmarshalJSON

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

func (*NullableOrganizationUsageSummary) Unset

type NullableOrganizationsList

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

func NewNullableOrganizationsList

func NewNullableOrganizationsList(val *OrganizationsList) *NullableOrganizationsList

func (NullableOrganizationsList) Get

func (NullableOrganizationsList) IsSet

func (v NullableOrganizationsList) IsSet() bool

func (NullableOrganizationsList) MarshalJSON

func (v NullableOrganizationsList) MarshalJSON() ([]byte, error)

func (*NullableOrganizationsList) Set

func (*NullableOrganizationsList) UnmarshalJSON

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

func (*NullableOrganizationsList) Unset

func (v *NullableOrganizationsList) Unset()

type NullableOrganizationsListItem

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

func (NullableOrganizationsListItem) Get

func (NullableOrganizationsListItem) IsSet

func (NullableOrganizationsListItem) MarshalJSON

func (v NullableOrganizationsListItem) MarshalJSON() ([]byte, error)

func (*NullableOrganizationsListItem) Set

func (*NullableOrganizationsListItem) UnmarshalJSON

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

func (*NullableOrganizationsListItem) Unset

func (v *NullableOrganizationsListItem) Unset()

type NullablePagination

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

func NewNullablePagination

func NewNullablePagination(val *Pagination) *NullablePagination

func (NullablePagination) Get

func (v NullablePagination) Get() *Pagination

func (NullablePagination) IsSet

func (v NullablePagination) IsSet() bool

func (NullablePagination) MarshalJSON

func (v NullablePagination) MarshalJSON() ([]byte, error)

func (*NullablePagination) Set

func (v *NullablePagination) Set(val *Pagination)

func (*NullablePagination) UnmarshalJSON

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

func (*NullablePagination) Unset

func (v *NullablePagination) Unset()

type NullablePlatformList

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

func NewNullablePlatformList

func NewNullablePlatformList(val *PlatformList) *NullablePlatformList

func (NullablePlatformList) Get

func (NullablePlatformList) IsSet

func (v NullablePlatformList) IsSet() bool

func (NullablePlatformList) MarshalJSON

func (v NullablePlatformList) MarshalJSON() ([]byte, error)

func (*NullablePlatformList) Set

func (v *NullablePlatformList) Set(val *PlatformList)

func (*NullablePlatformList) UnmarshalJSON

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

func (*NullablePlatformList) Unset

func (v *NullablePlatformList) Unset()

type NullablePlatforms

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

func NewNullablePlatforms

func NewNullablePlatforms(val *Platforms) *NullablePlatforms

func (NullablePlatforms) Get

func (v NullablePlatforms) Get() *Platforms

func (NullablePlatforms) IsSet

func (v NullablePlatforms) IsSet() bool

func (NullablePlatforms) MarshalJSON

func (v NullablePlatforms) MarshalJSON() ([]byte, error)

func (*NullablePlatforms) Set

func (v *NullablePlatforms) Set(val *Platforms)

func (*NullablePlatforms) UnmarshalJSON

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

func (*NullablePlatforms) Unset

func (v *NullablePlatforms) Unset()

type NullableQuota

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

func NewNullableQuota

func NewNullableQuota(val *Quota) *NullableQuota

func (NullableQuota) Get

func (v NullableQuota) Get() *Quota

func (NullableQuota) IsSet

func (v NullableQuota) IsSet() bool

func (NullableQuota) MarshalJSON

func (v NullableQuota) MarshalJSON() ([]byte, error)

func (*NullableQuota) Set

func (v *NullableQuota) Set(val *Quota)

func (*NullableQuota) UnmarshalJSON

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

func (*NullableQuota) Unset

func (v *NullableQuota) Unset()

type NullableQuotaApps

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

func NewNullableQuotaApps

func NewNullableQuotaApps(val *QuotaApps) *NullableQuotaApps

func (NullableQuotaApps) Get

func (v NullableQuotaApps) Get() *QuotaApps

func (NullableQuotaApps) IsSet

func (v NullableQuotaApps) IsSet() bool

func (NullableQuotaApps) MarshalJSON

func (v NullableQuotaApps) MarshalJSON() ([]byte, error)

func (*NullableQuotaApps) Set

func (v *NullableQuotaApps) Set(val *QuotaApps)

func (*NullableQuotaApps) UnmarshalJSON

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

func (*NullableQuotaApps) Unset

func (v *NullableQuotaApps) Unset()

type NullableQuotaDomains

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

func NewNullableQuotaDomains

func NewNullableQuotaDomains(val *QuotaDomains) *NullableQuotaDomains

func (NullableQuotaDomains) Get

func (NullableQuotaDomains) IsSet

func (v NullableQuotaDomains) IsSet() bool

func (NullableQuotaDomains) MarshalJSON

func (v NullableQuotaDomains) MarshalJSON() ([]byte, error)

func (*NullableQuotaDomains) Set

func (v *NullableQuotaDomains) Set(val *QuotaDomains)

func (*NullableQuotaDomains) UnmarshalJSON

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

func (*NullableQuotaDomains) Unset

func (v *NullableQuotaDomains) Unset()

type NullableQuotaRoutes

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

func NewNullableQuotaRoutes

func NewNullableQuotaRoutes(val *QuotaRoutes) *NullableQuotaRoutes

func (NullableQuotaRoutes) Get

func (NullableQuotaRoutes) IsSet

func (v NullableQuotaRoutes) IsSet() bool

func (NullableQuotaRoutes) MarshalJSON

func (v NullableQuotaRoutes) MarshalJSON() ([]byte, error)

func (*NullableQuotaRoutes) Set

func (v *NullableQuotaRoutes) Set(val *QuotaRoutes)

func (*NullableQuotaRoutes) UnmarshalJSON

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

func (*NullableQuotaRoutes) Unset

func (v *NullableQuotaRoutes) Unset()

type NullableQuotaServices

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

func NewNullableQuotaServices

func NewNullableQuotaServices(val *QuotaServices) *NullableQuotaServices

func (NullableQuotaServices) Get

func (NullableQuotaServices) IsSet

func (v NullableQuotaServices) IsSet() bool

func (NullableQuotaServices) MarshalJSON

func (v NullableQuotaServices) MarshalJSON() ([]byte, error)

func (*NullableQuotaServices) Set

func (v *NullableQuotaServices) Set(val *QuotaServices)

func (*NullableQuotaServices) UnmarshalJSON

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

func (*NullableQuotaServices) Unset

func (v *NullableQuotaServices) Unset()

type NullableSpace

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

func NewNullableSpace

func NewNullableSpace(val *Space) *NullableSpace

func (NullableSpace) Get

func (v NullableSpace) Get() *Space

func (NullableSpace) IsSet

func (v NullableSpace) IsSet() bool

func (NullableSpace) MarshalJSON

func (v NullableSpace) MarshalJSON() ([]byte, error)

func (*NullableSpace) Set

func (v *NullableSpace) Set(val *Space)

func (*NullableSpace) UnmarshalJSON

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

func (*NullableSpace) Unset

func (v *NullableSpace) Unset()

type NullableSpaceCreatedBffResponse

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

func (NullableSpaceCreatedBffResponse) Get

func (NullableSpaceCreatedBffResponse) IsSet

func (NullableSpaceCreatedBffResponse) MarshalJSON

func (v NullableSpaceCreatedBffResponse) MarshalJSON() ([]byte, error)

func (*NullableSpaceCreatedBffResponse) Set

func (*NullableSpaceCreatedBffResponse) UnmarshalJSON

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

func (*NullableSpaceCreatedBffResponse) Unset

type NullableSpaceDeleteResponse

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

func NewNullableSpaceDeleteResponse

func NewNullableSpaceDeleteResponse(val *SpaceDeleteResponse) *NullableSpaceDeleteResponse

func (NullableSpaceDeleteResponse) Get

func (NullableSpaceDeleteResponse) IsSet

func (NullableSpaceDeleteResponse) MarshalJSON

func (v NullableSpaceDeleteResponse) MarshalJSON() ([]byte, error)

func (*NullableSpaceDeleteResponse) Set

func (*NullableSpaceDeleteResponse) UnmarshalJSON

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

func (*NullableSpaceDeleteResponse) Unset

func (v *NullableSpaceDeleteResponse) Unset()

type NullableSpaceRoleCreateBffRequest

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

func (NullableSpaceRoleCreateBffRequest) Get

func (NullableSpaceRoleCreateBffRequest) IsSet

func (NullableSpaceRoleCreateBffRequest) MarshalJSON

func (v NullableSpaceRoleCreateBffRequest) MarshalJSON() ([]byte, error)

func (*NullableSpaceRoleCreateBffRequest) Set

func (*NullableSpaceRoleCreateBffRequest) UnmarshalJSON

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

func (*NullableSpaceRoleCreateBffRequest) Unset

type NullableSpaceRoleCreateBffResponse

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

func (NullableSpaceRoleCreateBffResponse) Get

func (NullableSpaceRoleCreateBffResponse) IsSet

func (NullableSpaceRoleCreateBffResponse) MarshalJSON

func (v NullableSpaceRoleCreateBffResponse) MarshalJSON() ([]byte, error)

func (*NullableSpaceRoleCreateBffResponse) Set

func (*NullableSpaceRoleCreateBffResponse) UnmarshalJSON

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

func (*NullableSpaceRoleCreateBffResponse) Unset

type NullableSpaceRoleCreateResponse

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

func (NullableSpaceRoleCreateResponse) Get

func (NullableSpaceRoleCreateResponse) IsSet

func (NullableSpaceRoleCreateResponse) MarshalJSON

func (v NullableSpaceRoleCreateResponse) MarshalJSON() ([]byte, error)

func (*NullableSpaceRoleCreateResponse) Set

func (*NullableSpaceRoleCreateResponse) UnmarshalJSON

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

func (*NullableSpaceRoleCreateResponse) Unset

type NullableSpaceRoleType

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

func NewNullableSpaceRoleType

func NewNullableSpaceRoleType(val *SpaceRoleType) *NullableSpaceRoleType

func (NullableSpaceRoleType) Get

func (NullableSpaceRoleType) IsSet

func (v NullableSpaceRoleType) IsSet() bool

func (NullableSpaceRoleType) MarshalJSON

func (v NullableSpaceRoleType) MarshalJSON() ([]byte, error)

func (*NullableSpaceRoleType) Set

func (v *NullableSpaceRoleType) Set(val *SpaceRoleType)

func (*NullableSpaceRoleType) UnmarshalJSON

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

func (*NullableSpaceRoleType) Unset

func (v *NullableSpaceRoleType) Unset()

type NullableSpacesList

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

func NewNullableSpacesList

func NewNullableSpacesList(val *SpacesList) *NullableSpacesList

func (NullableSpacesList) Get

func (v NullableSpacesList) Get() *SpacesList

func (NullableSpacesList) IsSet

func (v NullableSpacesList) IsSet() bool

func (NullableSpacesList) MarshalJSON

func (v NullableSpacesList) MarshalJSON() ([]byte, error)

func (*NullableSpacesList) Set

func (v *NullableSpacesList) Set(val *SpacesList)

func (*NullableSpacesList) UnmarshalJSON

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

func (*NullableSpacesList) Unset

func (v *NullableSpacesList) 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 NullableUpdateOrganizationPayload

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

func (NullableUpdateOrganizationPayload) Get

func (NullableUpdateOrganizationPayload) IsSet

func (NullableUpdateOrganizationPayload) MarshalJSON

func (v NullableUpdateOrganizationPayload) MarshalJSON() ([]byte, error)

func (*NullableUpdateOrganizationPayload) Set

func (*NullableUpdateOrganizationPayload) UnmarshalJSON

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

func (*NullableUpdateOrganizationPayload) Unset

type NullableUpdateSpacePayload

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

func NewNullableUpdateSpacePayload

func NewNullableUpdateSpacePayload(val *UpdateSpacePayload) *NullableUpdateSpacePayload

func (NullableUpdateSpacePayload) Get

func (NullableUpdateSpacePayload) IsSet

func (v NullableUpdateSpacePayload) IsSet() bool

func (NullableUpdateSpacePayload) MarshalJSON

func (v NullableUpdateSpacePayload) MarshalJSON() ([]byte, error)

func (*NullableUpdateSpacePayload) Set

func (*NullableUpdateSpacePayload) UnmarshalJSON

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

func (*NullableUpdateSpacePayload) Unset

func (v *NullableUpdateSpacePayload) Unset()

type NullableUsageSummary

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

func NewNullableUsageSummary

func NewNullableUsageSummary(val *UsageSummary) *NullableUsageSummary

func (NullableUsageSummary) Get

func (NullableUsageSummary) IsSet

func (v NullableUsageSummary) IsSet() bool

func (NullableUsageSummary) MarshalJSON

func (v NullableUsageSummary) MarshalJSON() ([]byte, error)

func (*NullableUsageSummary) Set

func (v *NullableUsageSummary) Set(val *UsageSummary)

func (*NullableUsageSummary) UnmarshalJSON

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

func (*NullableUsageSummary) Unset

func (v *NullableUsageSummary) Unset()

type NullableValue

type NullableValue[T any] struct {
	// contains filtered or unexported fields
}

func (NullableValue[T]) Get

func (v NullableValue[T]) Get() *T

func (NullableValue[T]) IsSet

func (v NullableValue[T]) IsSet() bool

func (*NullableValue[T]) Set

func (v *NullableValue[T]) Set(val *T)

func (*NullableValue[T]) Unset

func (v *NullableValue[T]) Unset()

type OrgManager

type OrgManager struct {
	// REQUIRED
	CreatedAt OrgManagerGetCreatedAtAttributeType `json:"createdAt" required:"true"`
	// REQUIRED
	Guid OrgManagerGetGuidAttributeType `json:"guid" required:"true"`
	// REQUIRED
	OrgId OrgManagerGetOrgIdAttributeType `json:"orgId" required:"true"`
	// REQUIRED
	PlatformId OrgManagerGetPlatformIdAttributeType `json:"platformId" required:"true"`
	// REQUIRED
	ProjectId OrgManagerGetProjectIdAttributeType `json:"projectId" required:"true"`
	// REQUIRED
	Region OrgManagerGetRegionAttributeType `json:"region" required:"true"`
	// REQUIRED
	UpdatedAt OrgManagerGetUpdatedAtAttributeType `json:"updatedAt" required:"true"`
	// REQUIRED
	Username OrgManagerGetUsernameAttributeType `json:"username" required:"true"`
}

OrgManager struct for OrgManager

func NewOrgManager

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

func NewOrgManagerWithDefaults

func NewOrgManagerWithDefaults() *OrgManager

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

func (*OrgManager) GetCreatedAt

func (o *OrgManager) GetCreatedAt() (ret OrgManagerGetCreatedAtRetType)

GetCreatedAt returns the CreatedAt field value

func (*OrgManager) GetCreatedAtOk

func (o *OrgManager) GetCreatedAtOk() (ret OrgManagerGetCreatedAtRetType, ok bool)

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

func (*OrgManager) GetGuid

func (o *OrgManager) GetGuid() (ret OrgManagerGetGuidRetType)

GetGuid returns the Guid field value

func (*OrgManager) GetGuidOk

func (o *OrgManager) GetGuidOk() (ret OrgManagerGetGuidRetType, ok bool)

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

func (*OrgManager) GetOrgId

func (o *OrgManager) GetOrgId() (ret OrgManagerGetOrgIdRetType)

GetOrgId returns the OrgId field value

func (*OrgManager) GetOrgIdOk

func (o *OrgManager) GetOrgIdOk() (ret OrgManagerGetOrgIdRetType, ok bool)

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

func (*OrgManager) GetPlatformId

func (o *OrgManager) GetPlatformId() (ret OrgManagerGetPlatformIdRetType)

GetPlatformId returns the PlatformId field value

func (*OrgManager) GetPlatformIdOk

func (o *OrgManager) GetPlatformIdOk() (ret OrgManagerGetPlatformIdRetType, ok bool)

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

func (*OrgManager) GetProjectId

func (o *OrgManager) GetProjectId() (ret OrgManagerGetProjectIdRetType)

GetProjectId returns the ProjectId field value

func (*OrgManager) GetProjectIdOk

func (o *OrgManager) GetProjectIdOk() (ret OrgManagerGetProjectIdRetType, ok bool)

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

func (*OrgManager) GetRegion

func (o *OrgManager) GetRegion() (ret OrgManagerGetRegionRetType)

GetRegion returns the Region field value

func (*OrgManager) GetRegionOk

func (o *OrgManager) GetRegionOk() (ret OrgManagerGetRegionRetType, ok bool)

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

func (*OrgManager) GetUpdatedAt

func (o *OrgManager) GetUpdatedAt() (ret OrgManagerGetUpdatedAtRetType)

GetUpdatedAt returns the UpdatedAt field value

func (*OrgManager) GetUpdatedAtOk

func (o *OrgManager) GetUpdatedAtOk() (ret OrgManagerGetUpdatedAtRetType, ok bool)

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

func (*OrgManager) GetUsername

func (o *OrgManager) GetUsername() (ret OrgManagerGetUsernameRetType)

GetUsername returns the Username field value

func (*OrgManager) GetUsernameOk

func (o *OrgManager) GetUsernameOk() (ret OrgManagerGetUsernameRetType, ok bool)

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

func (*OrgManager) SetCreatedAt

func (o *OrgManager) SetCreatedAt(v OrgManagerGetCreatedAtRetType)

SetCreatedAt sets field value

func (*OrgManager) SetGuid

func (o *OrgManager) SetGuid(v OrgManagerGetGuidRetType)

SetGuid sets field value

func (*OrgManager) SetOrgId

func (o *OrgManager) SetOrgId(v OrgManagerGetOrgIdRetType)

SetOrgId sets field value

func (*OrgManager) SetPlatformId

func (o *OrgManager) SetPlatformId(v OrgManagerGetPlatformIdRetType)

SetPlatformId sets field value

func (*OrgManager) SetProjectId

func (o *OrgManager) SetProjectId(v OrgManagerGetProjectIdRetType)

SetProjectId sets field value

func (*OrgManager) SetRegion

func (o *OrgManager) SetRegion(v OrgManagerGetRegionRetType)

SetRegion sets field value

func (*OrgManager) SetUpdatedAt

func (o *OrgManager) SetUpdatedAt(v OrgManagerGetUpdatedAtRetType)

SetUpdatedAt sets field value

func (*OrgManager) SetUsername

func (o *OrgManager) SetUsername(v OrgManagerGetUsernameRetType)

SetUsername sets field value

func (OrgManager) ToMap

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

type OrgManagerDeleteResponse

type OrgManagerDeleteResponse struct {
	// REQUIRED
	Message OrgManagerDeleteResponseGetMessageAttributeType `json:"message" required:"true"`
}

OrgManagerDeleteResponse struct for OrgManagerDeleteResponse

func NewOrgManagerDeleteResponse

func NewOrgManagerDeleteResponse(message OrgManagerDeleteResponseGetMessageArgType) *OrgManagerDeleteResponse

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

func NewOrgManagerDeleteResponseWithDefaults

func NewOrgManagerDeleteResponseWithDefaults() *OrgManagerDeleteResponse

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

func (*OrgManagerDeleteResponse) GetMessage

GetMessage returns the Message field value

func (*OrgManagerDeleteResponse) GetMessageOk

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

func (*OrgManagerDeleteResponse) SetMessage

SetMessage sets field value

func (OrgManagerDeleteResponse) ToMap

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

type OrgManagerDeleteResponseGetMessageArgType

type OrgManagerDeleteResponseGetMessageArgType = string

type OrgManagerDeleteResponseGetMessageAttributeType

type OrgManagerDeleteResponseGetMessageAttributeType = *string

isNotNullableString

type OrgManagerDeleteResponseGetMessageRetType

type OrgManagerDeleteResponseGetMessageRetType = string

type OrgManagerGetCreatedAtArgType

type OrgManagerGetCreatedAtArgType = time.Time

type OrgManagerGetCreatedAtAttributeType

type OrgManagerGetCreatedAtAttributeType = *time.Time

isDateTime

type OrgManagerGetCreatedAtRetType

type OrgManagerGetCreatedAtRetType = time.Time

type OrgManagerGetGuidArgType

type OrgManagerGetGuidArgType = string

type OrgManagerGetGuidAttributeType

type OrgManagerGetGuidAttributeType = *string

isNotNullableString

type OrgManagerGetGuidRetType

type OrgManagerGetGuidRetType = string

type OrgManagerGetOrgIdArgType

type OrgManagerGetOrgIdArgType = string

type OrgManagerGetOrgIdAttributeType

type OrgManagerGetOrgIdAttributeType = *string

isNotNullableString

type OrgManagerGetOrgIdRetType

type OrgManagerGetOrgIdRetType = string

type OrgManagerGetPlatformIdArgType

type OrgManagerGetPlatformIdArgType = string

type OrgManagerGetPlatformIdAttributeType

type OrgManagerGetPlatformIdAttributeType = *string

isNotNullableString

type OrgManagerGetPlatformIdRetType

type OrgManagerGetPlatformIdRetType = string

type OrgManagerGetProjectIdArgType

type OrgManagerGetProjectIdArgType = string

type OrgManagerGetProjectIdAttributeType

type OrgManagerGetProjectIdAttributeType = *string

isNotNullableString

type OrgManagerGetProjectIdRetType

type OrgManagerGetProjectIdRetType = string

type OrgManagerGetRegionArgType

type OrgManagerGetRegionArgType = string

type OrgManagerGetRegionAttributeType

type OrgManagerGetRegionAttributeType = *string

isNotNullableString

type OrgManagerGetRegionRetType

type OrgManagerGetRegionRetType = string

type OrgManagerGetUpdatedAtArgType

type OrgManagerGetUpdatedAtArgType = time.Time

type OrgManagerGetUpdatedAtAttributeType

type OrgManagerGetUpdatedAtAttributeType = *time.Time

isDateTime

type OrgManagerGetUpdatedAtRetType

type OrgManagerGetUpdatedAtRetType = time.Time

type OrgManagerGetUsernameArgType

type OrgManagerGetUsernameArgType = string

type OrgManagerGetUsernameAttributeType

type OrgManagerGetUsernameAttributeType = *string

isNotNullableString

type OrgManagerGetUsernameRetType

type OrgManagerGetUsernameRetType = string

type OrgManagerResponse

type OrgManagerResponse struct {
	// REQUIRED
	CreatedAt OrgManagerResponseGetCreatedAtAttributeType `json:"createdAt" required:"true"`
	// REQUIRED
	Guid OrgManagerResponseGetGuidAttributeType `json:"guid" required:"true"`
	// REQUIRED
	OrgId OrgManagerResponseGetOrgIdAttributeType `json:"orgId" required:"true"`
	// REQUIRED
	Password OrgManagerResponseGetPasswordAttributeType `json:"password" required:"true"`
	// REQUIRED
	PlatformId OrgManagerResponseGetPlatformIdAttributeType `json:"platformId" required:"true"`
	// REQUIRED
	ProjectId OrgManagerResponseGetProjectIdAttributeType `json:"projectId" required:"true"`
	// REQUIRED
	Region OrgManagerResponseGetRegionAttributeType `json:"region" required:"true"`
	// REQUIRED
	UpdatedAt OrgManagerResponseGetUpdatedAtAttributeType `json:"updatedAt" required:"true"`
	// REQUIRED
	Username OrgManagerResponseGetUsernameAttributeType `json:"username" required:"true"`
}

OrgManagerResponse struct for OrgManagerResponse

func NewOrgManagerResponse

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

func NewOrgManagerResponseWithDefaults

func NewOrgManagerResponseWithDefaults() *OrgManagerResponse

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

func (*OrgManagerResponse) GetCreatedAt

GetCreatedAt returns the CreatedAt field value

func (*OrgManagerResponse) GetCreatedAtOk

func (o *OrgManagerResponse) GetCreatedAtOk() (ret OrgManagerResponseGetCreatedAtRetType, ok bool)

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

func (*OrgManagerResponse) GetGuid

GetGuid returns the Guid field value

func (*OrgManagerResponse) GetGuidOk

func (o *OrgManagerResponse) GetGuidOk() (ret OrgManagerResponseGetGuidRetType, ok bool)

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

func (*OrgManagerResponse) GetOrgId

GetOrgId returns the OrgId field value

func (*OrgManagerResponse) GetOrgIdOk

func (o *OrgManagerResponse) GetOrgIdOk() (ret OrgManagerResponseGetOrgIdRetType, ok bool)

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

func (*OrgManagerResponse) GetPassword

GetPassword returns the Password field value

func (*OrgManagerResponse) GetPasswordOk

func (o *OrgManagerResponse) GetPasswordOk() (ret OrgManagerResponseGetPasswordRetType, ok bool)

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

func (*OrgManagerResponse) GetPlatformId

GetPlatformId returns the PlatformId field value

func (*OrgManagerResponse) GetPlatformIdOk

func (o *OrgManagerResponse) GetPlatformIdOk() (ret OrgManagerResponseGetPlatformIdRetType, ok bool)

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

func (*OrgManagerResponse) GetProjectId

GetProjectId returns the ProjectId field value

func (*OrgManagerResponse) GetProjectIdOk

func (o *OrgManagerResponse) GetProjectIdOk() (ret OrgManagerResponseGetProjectIdRetType, ok bool)

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

func (*OrgManagerResponse) GetRegion

GetRegion returns the Region field value

func (*OrgManagerResponse) GetRegionOk

func (o *OrgManagerResponse) GetRegionOk() (ret OrgManagerResponseGetRegionRetType, ok bool)

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

func (*OrgManagerResponse) GetUpdatedAt

GetUpdatedAt returns the UpdatedAt field value

func (*OrgManagerResponse) GetUpdatedAtOk

func (o *OrgManagerResponse) GetUpdatedAtOk() (ret OrgManagerResponseGetUpdatedAtRetType, ok bool)

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

func (*OrgManagerResponse) GetUsername

GetUsername returns the Username field value

func (*OrgManagerResponse) GetUsernameOk

func (o *OrgManagerResponse) GetUsernameOk() (ret OrgManagerResponseGetUsernameRetType, ok bool)

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

func (*OrgManagerResponse) SetCreatedAt

SetCreatedAt sets field value

func (*OrgManagerResponse) SetGuid

SetGuid sets field value

func (*OrgManagerResponse) SetOrgId

SetOrgId sets field value

func (*OrgManagerResponse) SetPassword

SetPassword sets field value

func (*OrgManagerResponse) SetPlatformId

SetPlatformId sets field value

func (*OrgManagerResponse) SetProjectId

SetProjectId sets field value

func (*OrgManagerResponse) SetRegion

SetRegion sets field value

func (*OrgManagerResponse) SetUpdatedAt

SetUpdatedAt sets field value

func (*OrgManagerResponse) SetUsername

SetUsername sets field value

func (OrgManagerResponse) ToMap

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

type OrgManagerResponseGetCreatedAtArgType

type OrgManagerResponseGetCreatedAtArgType = time.Time

type OrgManagerResponseGetCreatedAtAttributeType

type OrgManagerResponseGetCreatedAtAttributeType = *time.Time

isDateTime

type OrgManagerResponseGetCreatedAtRetType

type OrgManagerResponseGetCreatedAtRetType = time.Time

type OrgManagerResponseGetGuidArgType

type OrgManagerResponseGetGuidArgType = string

type OrgManagerResponseGetGuidAttributeType

type OrgManagerResponseGetGuidAttributeType = *string

isNotNullableString

type OrgManagerResponseGetGuidRetType

type OrgManagerResponseGetGuidRetType = string

type OrgManagerResponseGetOrgIdArgType

type OrgManagerResponseGetOrgIdArgType = string

type OrgManagerResponseGetOrgIdAttributeType

type OrgManagerResponseGetOrgIdAttributeType = *string

isNotNullableString

type OrgManagerResponseGetOrgIdRetType

type OrgManagerResponseGetOrgIdRetType = string

type OrgManagerResponseGetPasswordArgType

type OrgManagerResponseGetPasswordArgType = string

type OrgManagerResponseGetPasswordAttributeType

type OrgManagerResponseGetPasswordAttributeType = *string

isNotNullableString

type OrgManagerResponseGetPasswordRetType

type OrgManagerResponseGetPasswordRetType = string

type OrgManagerResponseGetPlatformIdArgType

type OrgManagerResponseGetPlatformIdArgType = string

type OrgManagerResponseGetPlatformIdAttributeType

type OrgManagerResponseGetPlatformIdAttributeType = *string

isNotNullableString

type OrgManagerResponseGetPlatformIdRetType

type OrgManagerResponseGetPlatformIdRetType = string

type OrgManagerResponseGetProjectIdArgType

type OrgManagerResponseGetProjectIdArgType = string

type OrgManagerResponseGetProjectIdAttributeType

type OrgManagerResponseGetProjectIdAttributeType = *string

isNotNullableString

type OrgManagerResponseGetProjectIdRetType

type OrgManagerResponseGetProjectIdRetType = string

type OrgManagerResponseGetRegionArgType

type OrgManagerResponseGetRegionArgType = string

type OrgManagerResponseGetRegionAttributeType

type OrgManagerResponseGetRegionAttributeType = *string

isNotNullableString

type OrgManagerResponseGetRegionRetType

type OrgManagerResponseGetRegionRetType = string

type OrgManagerResponseGetUpdatedAtArgType

type OrgManagerResponseGetUpdatedAtArgType = time.Time

type OrgManagerResponseGetUpdatedAtAttributeType

type OrgManagerResponseGetUpdatedAtAttributeType = *time.Time

isDateTime

type OrgManagerResponseGetUpdatedAtRetType

type OrgManagerResponseGetUpdatedAtRetType = time.Time

type OrgManagerResponseGetUsernameArgType

type OrgManagerResponseGetUsernameArgType = string

type OrgManagerResponseGetUsernameAttributeType

type OrgManagerResponseGetUsernameAttributeType = *string

isNotNullableString

type OrgManagerResponseGetUsernameRetType

type OrgManagerResponseGetUsernameRetType = string

type OrgRoleCreateBffRequest

type OrgRoleCreateBffRequest struct {
	// REQUIRED
	Type OrgRoleCreateBffRequestGetTypeAttributeType `json:"type" required:"true"`
}

OrgRoleCreateBffRequest struct for OrgRoleCreateBffRequest

func NewOrgRoleCreateBffRequest

func NewOrgRoleCreateBffRequest(types OrgRoleCreateBffRequestGetTypeArgType) *OrgRoleCreateBffRequest

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

func NewOrgRoleCreateBffRequestWithDefaults

func NewOrgRoleCreateBffRequestWithDefaults() *OrgRoleCreateBffRequest

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

func (*OrgRoleCreateBffRequest) GetType

GetType returns the Type field value

func (*OrgRoleCreateBffRequest) GetTypeOk

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

func (*OrgRoleCreateBffRequest) SetType

SetType sets field value

func (OrgRoleCreateBffRequest) ToMap

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

type OrgRoleCreateBffRequestGetTypeArgType

type OrgRoleCreateBffRequestGetTypeArgType = OrgRoleType

type OrgRoleCreateBffRequestGetTypeAttributeType

type OrgRoleCreateBffRequestGetTypeAttributeType = *OrgRoleType

isEnumRef

type OrgRoleCreateBffRequestGetTypeRetType

type OrgRoleCreateBffRequestGetTypeRetType = OrgRoleType

type OrgRoleResponse

type OrgRoleResponse struct {
	// REQUIRED
	Guid OrgRoleResponseGetGuidAttributeType `json:"guid" required:"true"`
	// REQUIRED
	OrgId OrgRoleResponseGetOrgIdAttributeType `json:"orgId" required:"true"`
	// REQUIRED
	PlatformId OrgRoleResponseGetPlatformIdAttributeType `json:"platformId" required:"true"`
	// REQUIRED
	ProjectId OrgRoleResponseGetProjectIdAttributeType `json:"projectId" required:"true"`
	// REQUIRED
	Region OrgRoleResponseGetRegionAttributeType `json:"region" required:"true"`
	// REQUIRED
	Type OrgRoleResponseGetTypeAttributeType `json:"type" required:"true"`
}

OrgRoleResponse struct for OrgRoleResponse

func NewOrgRoleResponse

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

func NewOrgRoleResponseWithDefaults

func NewOrgRoleResponseWithDefaults() *OrgRoleResponse

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

func (*OrgRoleResponse) GetGuid

GetGuid returns the Guid field value

func (*OrgRoleResponse) GetGuidOk

func (o *OrgRoleResponse) GetGuidOk() (ret OrgRoleResponseGetGuidRetType, ok bool)

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

func (*OrgRoleResponse) GetOrgId

func (o *OrgRoleResponse) GetOrgId() (ret OrgRoleResponseGetOrgIdRetType)

GetOrgId returns the OrgId field value

func (*OrgRoleResponse) GetOrgIdOk

func (o *OrgRoleResponse) GetOrgIdOk() (ret OrgRoleResponseGetOrgIdRetType, ok bool)

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

func (*OrgRoleResponse) GetPlatformId

func (o *OrgRoleResponse) GetPlatformId() (ret OrgRoleResponseGetPlatformIdRetType)

GetPlatformId returns the PlatformId field value

func (*OrgRoleResponse) GetPlatformIdOk

func (o *OrgRoleResponse) GetPlatformIdOk() (ret OrgRoleResponseGetPlatformIdRetType, ok bool)

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

func (*OrgRoleResponse) GetProjectId

func (o *OrgRoleResponse) GetProjectId() (ret OrgRoleResponseGetProjectIdRetType)

GetProjectId returns the ProjectId field value

func (*OrgRoleResponse) GetProjectIdOk

func (o *OrgRoleResponse) GetProjectIdOk() (ret OrgRoleResponseGetProjectIdRetType, ok bool)

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

func (*OrgRoleResponse) GetRegion

func (o *OrgRoleResponse) GetRegion() (ret OrgRoleResponseGetRegionRetType)

GetRegion returns the Region field value

func (*OrgRoleResponse) GetRegionOk

func (o *OrgRoleResponse) GetRegionOk() (ret OrgRoleResponseGetRegionRetType, ok bool)

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

func (*OrgRoleResponse) GetType

GetType returns the Type field value

func (*OrgRoleResponse) GetTypeOk

func (o *OrgRoleResponse) GetTypeOk() (ret OrgRoleResponseGetTypeRetType, ok bool)

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

func (*OrgRoleResponse) SetGuid

SetGuid sets field value

func (*OrgRoleResponse) SetOrgId

SetOrgId sets field value

func (*OrgRoleResponse) SetPlatformId

SetPlatformId sets field value

func (*OrgRoleResponse) SetProjectId

SetProjectId sets field value

func (*OrgRoleResponse) SetRegion

SetRegion sets field value

func (*OrgRoleResponse) SetType

SetType sets field value

func (OrgRoleResponse) ToMap

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

type OrgRoleResponseGetGuidArgType

type OrgRoleResponseGetGuidArgType = string

type OrgRoleResponseGetGuidAttributeType

type OrgRoleResponseGetGuidAttributeType = *string

isNotNullableString

type OrgRoleResponseGetGuidRetType

type OrgRoleResponseGetGuidRetType = string

type OrgRoleResponseGetOrgIdArgType

type OrgRoleResponseGetOrgIdArgType = string

type OrgRoleResponseGetOrgIdAttributeType

type OrgRoleResponseGetOrgIdAttributeType = *string

isNotNullableString

type OrgRoleResponseGetOrgIdRetType

type OrgRoleResponseGetOrgIdRetType = string

type OrgRoleResponseGetPlatformIdArgType

type OrgRoleResponseGetPlatformIdArgType = string

type OrgRoleResponseGetPlatformIdAttributeType

type OrgRoleResponseGetPlatformIdAttributeType = *string

isNotNullableString

type OrgRoleResponseGetPlatformIdRetType

type OrgRoleResponseGetPlatformIdRetType = string

type OrgRoleResponseGetProjectIdArgType

type OrgRoleResponseGetProjectIdArgType = string

type OrgRoleResponseGetProjectIdAttributeType

type OrgRoleResponseGetProjectIdAttributeType = *string

isNotNullableString

type OrgRoleResponseGetProjectIdRetType

type OrgRoleResponseGetProjectIdRetType = string

type OrgRoleResponseGetRegionArgType

type OrgRoleResponseGetRegionArgType = string

type OrgRoleResponseGetRegionAttributeType

type OrgRoleResponseGetRegionAttributeType = *string

isNotNullableString

type OrgRoleResponseGetRegionRetType

type OrgRoleResponseGetRegionRetType = string

type OrgRoleResponseGetTypeArgType

type OrgRoleResponseGetTypeArgType = OrgRoleType

type OrgRoleResponseGetTypeAttributeType

type OrgRoleResponseGetTypeAttributeType = *OrgRoleType

isEnumRef

type OrgRoleResponseGetTypeRetType

type OrgRoleResponseGetTypeRetType = OrgRoleType

type OrgRoleType

type OrgRoleType string

OrgRoleType the model 'OrgRoleType'

const (
	ORGROLETYPE_USER            OrgRoleType = "organization_user"
	ORGROLETYPE_AUDITOR         OrgRoleType = "organization_auditor"
	ORGROLETYPE_MANAGER         OrgRoleType = "organization_manager"
	ORGROLETYPE_BILLING_MANAGER OrgRoleType = "organization_billing_manager"
)

List of OrgRoleType

func NewOrgRoleTypeFromValue

func NewOrgRoleTypeFromValue(v string) (*OrgRoleType, error)

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

func (OrgRoleType) IsValid

func (v OrgRoleType) IsValid() bool

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

func (OrgRoleType) Ptr

func (v OrgRoleType) Ptr() *OrgRoleType

Ptr returns reference to OrgRoleType value

func (*OrgRoleType) UnmarshalJSON

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

type Organization

type Organization struct {
	// REQUIRED
	CreatedAt OrganizationGetCreatedAtAttributeType `json:"createdAt" required:"true"`
	// REQUIRED
	Guid OrganizationGetGuidAttributeType `json:"guid" required:"true"`
	// REQUIRED
	Name OrganizationGetNameAttributeType `json:"name" required:"true"`
	// REQUIRED
	PlatformId OrganizationGetPlatformIdAttributeType `json:"platformId" required:"true"`
	// REQUIRED
	ProjectId OrganizationGetProjectIdAttributeType `json:"projectId" required:"true"`
	// REQUIRED
	QuotaId OrganizationGetQuotaIdAttributeType `json:"quotaId" required:"true"`
	// REQUIRED
	Region OrganizationGetRegionAttributeType `json:"region" required:"true"`
	// The organization's status. The status value starts with `deleting` when a deleting request is in progress. The status value starts with `delete_failed` when the deletion failed. The status value can be different from `deleting` and `delete_failed`. Additional details can be provided in the future.
	// REQUIRED
	Status OrganizationGetStatusAttributeType `json:"status" required:"true"`
	// REQUIRED
	Suspended OrganizationgetSuspendedAttributeType `json:"suspended" required:"true"`
	// REQUIRED
	UpdatedAt OrganizationGetUpdatedAtAttributeType `json:"updatedAt" required:"true"`
}

Organization struct for Organization

func NewOrganization

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

func NewOrganizationWithDefaults

func NewOrganizationWithDefaults() *Organization

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

func (*Organization) GetCreatedAt

func (o *Organization) GetCreatedAt() (ret OrganizationGetCreatedAtRetType)

GetCreatedAt returns the CreatedAt field value

func (*Organization) GetCreatedAtOk

func (o *Organization) GetCreatedAtOk() (ret OrganizationGetCreatedAtRetType, ok bool)

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

func (*Organization) GetGuid

func (o *Organization) GetGuid() (ret OrganizationGetGuidRetType)

GetGuid returns the Guid field value

func (*Organization) GetGuidOk

func (o *Organization) GetGuidOk() (ret OrganizationGetGuidRetType, ok bool)

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

func (*Organization) GetName

func (o *Organization) GetName() (ret OrganizationGetNameRetType)

GetName returns the Name field value

func (*Organization) GetNameOk

func (o *Organization) GetNameOk() (ret OrganizationGetNameRetType, ok bool)

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

func (*Organization) GetPlatformId

func (o *Organization) GetPlatformId() (ret OrganizationGetPlatformIdRetType)

GetPlatformId returns the PlatformId field value

func (*Organization) GetPlatformIdOk

func (o *Organization) GetPlatformIdOk() (ret OrganizationGetPlatformIdRetType, ok bool)

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

func (*Organization) GetProjectId

func (o *Organization) GetProjectId() (ret OrganizationGetProjectIdRetType)

GetProjectId returns the ProjectId field value

func (*Organization) GetProjectIdOk

func (o *Organization) GetProjectIdOk() (ret OrganizationGetProjectIdRetType, ok bool)

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

func (*Organization) GetQuotaId

func (o *Organization) GetQuotaId() (ret OrganizationGetQuotaIdRetType)

GetQuotaId returns the QuotaId field value

func (*Organization) GetQuotaIdOk

func (o *Organization) GetQuotaIdOk() (ret OrganizationGetQuotaIdRetType, ok bool)

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

func (*Organization) GetRegion

func (o *Organization) GetRegion() (ret OrganizationGetRegionRetType)

GetRegion returns the Region field value

func (*Organization) GetRegionOk

func (o *Organization) GetRegionOk() (ret OrganizationGetRegionRetType, ok bool)

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

func (*Organization) GetStatus

func (o *Organization) GetStatus() (ret OrganizationGetStatusRetType)

GetStatus returns the Status field value

func (*Organization) GetStatusOk

func (o *Organization) GetStatusOk() (ret OrganizationGetStatusRetType, ok bool)

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

func (*Organization) GetSuspended

func (o *Organization) GetSuspended() (ret OrganizationgetSuspendedRetType)

GetSuspended returns the Suspended field value

func (*Organization) GetSuspendedOk

func (o *Organization) GetSuspendedOk() (ret OrganizationgetSuspendedRetType, ok bool)

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

func (*Organization) GetUpdatedAt

func (o *Organization) GetUpdatedAt() (ret OrganizationGetUpdatedAtRetType)

GetUpdatedAt returns the UpdatedAt field value

func (*Organization) GetUpdatedAtOk

func (o *Organization) GetUpdatedAtOk() (ret OrganizationGetUpdatedAtRetType, ok bool)

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

func (*Organization) SetCreatedAt

func (o *Organization) SetCreatedAt(v OrganizationGetCreatedAtRetType)

SetCreatedAt sets field value

func (*Organization) SetGuid

SetGuid sets field value

func (*Organization) SetName

SetName sets field value

func (*Organization) SetPlatformId

func (o *Organization) SetPlatformId(v OrganizationGetPlatformIdRetType)

SetPlatformId sets field value

func (*Organization) SetProjectId

func (o *Organization) SetProjectId(v OrganizationGetProjectIdRetType)

SetProjectId sets field value

func (*Organization) SetQuotaId

SetQuotaId sets field value

func (*Organization) SetRegion

SetRegion sets field value

func (*Organization) SetStatus

SetStatus sets field value

func (*Organization) SetSuspended

func (o *Organization) SetSuspended(v OrganizationgetSuspendedRetType)

SetSuspended sets field value

func (*Organization) SetUpdatedAt

func (o *Organization) SetUpdatedAt(v OrganizationGetUpdatedAtRetType)

SetUpdatedAt sets field value

func (Organization) ToMap

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

type OrganizationCreateBffResponse

type OrganizationCreateBffResponse struct {
	// REQUIRED
	Org OrganizationCreateBffResponseGetOrgAttributeType `json:"org" required:"true"`
	// REQUIRED
	Roles OrganizationCreateBffResponseGetRolesAttributeType `json:"roles" required:"true"`
}

OrganizationCreateBffResponse struct for OrganizationCreateBffResponse

func NewOrganizationCreateBffResponse

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

func NewOrganizationCreateBffResponseWithDefaults

func NewOrganizationCreateBffResponseWithDefaults() *OrganizationCreateBffResponse

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

func (*OrganizationCreateBffResponse) GetOrg

GetOrg returns the Org field value

func (*OrganizationCreateBffResponse) GetOrgOk

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

func (*OrganizationCreateBffResponse) GetRoles

GetRoles returns the Roles field value

func (*OrganizationCreateBffResponse) GetRolesOk

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

func (*OrganizationCreateBffResponse) SetOrg

SetOrg sets field value

func (*OrganizationCreateBffResponse) SetRoles

SetRoles sets field value

func (OrganizationCreateBffResponse) ToMap

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

type OrganizationCreateBffResponseGetOrgArgType

type OrganizationCreateBffResponseGetOrgArgType = OrganizationCreateResponse

type OrganizationCreateBffResponseGetOrgAttributeType

type OrganizationCreateBffResponseGetOrgAttributeType = *OrganizationCreateResponse

isModel

type OrganizationCreateBffResponseGetOrgRetType

type OrganizationCreateBffResponseGetOrgRetType = OrganizationCreateResponse

type OrganizationCreateBffResponseGetRolesArgType

type OrganizationCreateBffResponseGetRolesArgType = map[string]OrgRoleResponse

type OrganizationCreateBffResponseGetRolesAttributeType

type OrganizationCreateBffResponseGetRolesAttributeType = *map[string]OrgRoleResponse

isContainer

type OrganizationCreateBffResponseGetRolesRetType

type OrganizationCreateBffResponseGetRolesRetType = map[string]OrgRoleResponse

type OrganizationCreateResponse

type OrganizationCreateResponse struct {
	// REQUIRED
	Guid OrganizationCreateResponseGetGuidAttributeType `json:"guid" required:"true"`
	// REQUIRED
	PlatformId OrganizationCreateResponseGetPlatformIdAttributeType `json:"platformId" required:"true"`
	// REQUIRED
	ProjectId OrganizationCreateResponseGetProjectIdAttributeType `json:"projectId" required:"true"`
	// REQUIRED
	Region OrganizationCreateResponseGetRegionAttributeType `json:"region" required:"true"`
}

OrganizationCreateResponse struct for OrganizationCreateResponse

func NewOrganizationCreateResponse

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

func NewOrganizationCreateResponseWithDefaults

func NewOrganizationCreateResponseWithDefaults() *OrganizationCreateResponse

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

func (*OrganizationCreateResponse) GetGuid

GetGuid returns the Guid field value

func (*OrganizationCreateResponse) GetGuidOk

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

func (*OrganizationCreateResponse) GetPlatformId

GetPlatformId returns the PlatformId field value

func (*OrganizationCreateResponse) GetPlatformIdOk

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

func (*OrganizationCreateResponse) GetProjectId

GetProjectId returns the ProjectId field value

func (*OrganizationCreateResponse) GetProjectIdOk

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

func (*OrganizationCreateResponse) GetRegion

GetRegion returns the Region field value

func (*OrganizationCreateResponse) GetRegionOk

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

func (*OrganizationCreateResponse) SetGuid

SetGuid sets field value

func (*OrganizationCreateResponse) SetPlatformId

SetPlatformId sets field value

func (*OrganizationCreateResponse) SetProjectId

SetProjectId sets field value

func (*OrganizationCreateResponse) SetRegion

SetRegion sets field value

func (OrganizationCreateResponse) ToMap

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

type OrganizationCreateResponseGetGuidArgType

type OrganizationCreateResponseGetGuidArgType = string

type OrganizationCreateResponseGetGuidAttributeType

type OrganizationCreateResponseGetGuidAttributeType = *string

isNotNullableString

type OrganizationCreateResponseGetGuidRetType

type OrganizationCreateResponseGetGuidRetType = string

type OrganizationCreateResponseGetPlatformIdArgType

type OrganizationCreateResponseGetPlatformIdArgType = string

type OrganizationCreateResponseGetPlatformIdAttributeType

type OrganizationCreateResponseGetPlatformIdAttributeType = *string

isNotNullableString

type OrganizationCreateResponseGetPlatformIdRetType

type OrganizationCreateResponseGetPlatformIdRetType = string

type OrganizationCreateResponseGetProjectIdArgType

type OrganizationCreateResponseGetProjectIdArgType = string

type OrganizationCreateResponseGetProjectIdAttributeType

type OrganizationCreateResponseGetProjectIdAttributeType = *string

isNotNullableString

type OrganizationCreateResponseGetProjectIdRetType

type OrganizationCreateResponseGetProjectIdRetType = string

type OrganizationCreateResponseGetRegionArgType

type OrganizationCreateResponseGetRegionArgType = string

type OrganizationCreateResponseGetRegionAttributeType

type OrganizationCreateResponseGetRegionAttributeType = *string

isNotNullableString

type OrganizationCreateResponseGetRegionRetType

type OrganizationCreateResponseGetRegionRetType = string

type OrganizationDeleteResponse

type OrganizationDeleteResponse struct {
	// REQUIRED
	Guid OrganizationDeleteResponseGetGuidAttributeType `json:"guid" required:"true"`
	// REQUIRED
	PlatformId OrganizationDeleteResponseGetPlatformIdAttributeType `json:"platformId" required:"true"`
	// REQUIRED
	ProjectId OrganizationDeleteResponseGetProjectIdAttributeType `json:"projectId" required:"true"`
	// REQUIRED
	Region OrganizationDeleteResponseGetRegionAttributeType `json:"region" required:"true"`
}

OrganizationDeleteResponse struct for OrganizationDeleteResponse

func NewOrganizationDeleteResponse

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

func NewOrganizationDeleteResponseWithDefaults

func NewOrganizationDeleteResponseWithDefaults() *OrganizationDeleteResponse

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

func (*OrganizationDeleteResponse) GetGuid

GetGuid returns the Guid field value

func (*OrganizationDeleteResponse) GetGuidOk

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

func (*OrganizationDeleteResponse) GetPlatformId

GetPlatformId returns the PlatformId field value

func (*OrganizationDeleteResponse) GetPlatformIdOk

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

func (*OrganizationDeleteResponse) GetProjectId

GetProjectId returns the ProjectId field value

func (*OrganizationDeleteResponse) GetProjectIdOk

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

func (*OrganizationDeleteResponse) GetRegion

GetRegion returns the Region field value

func (*OrganizationDeleteResponse) GetRegionOk

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

func (*OrganizationDeleteResponse) SetGuid

SetGuid sets field value

func (*OrganizationDeleteResponse) SetPlatformId

SetPlatformId sets field value

func (*OrganizationDeleteResponse) SetProjectId

SetProjectId sets field value

func (*OrganizationDeleteResponse) SetRegion

SetRegion sets field value

func (OrganizationDeleteResponse) ToMap

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

type OrganizationDeleteResponseGetGuidArgType

type OrganizationDeleteResponseGetGuidArgType = string

type OrganizationDeleteResponseGetGuidAttributeType

type OrganizationDeleteResponseGetGuidAttributeType = *string

isNotNullableString

type OrganizationDeleteResponseGetGuidRetType

type OrganizationDeleteResponseGetGuidRetType = string

type OrganizationDeleteResponseGetPlatformIdArgType

type OrganizationDeleteResponseGetPlatformIdArgType = string

type OrganizationDeleteResponseGetPlatformIdAttributeType

type OrganizationDeleteResponseGetPlatformIdAttributeType = *string

isNotNullableString

type OrganizationDeleteResponseGetPlatformIdRetType

type OrganizationDeleteResponseGetPlatformIdRetType = string

type OrganizationDeleteResponseGetProjectIdArgType

type OrganizationDeleteResponseGetProjectIdArgType = string

type OrganizationDeleteResponseGetProjectIdAttributeType

type OrganizationDeleteResponseGetProjectIdAttributeType = *string

isNotNullableString

type OrganizationDeleteResponseGetProjectIdRetType

type OrganizationDeleteResponseGetProjectIdRetType = string

type OrganizationDeleteResponseGetRegionArgType

type OrganizationDeleteResponseGetRegionArgType = string

type OrganizationDeleteResponseGetRegionAttributeType

type OrganizationDeleteResponseGetRegionAttributeType = *string

isNotNullableString

type OrganizationDeleteResponseGetRegionRetType

type OrganizationDeleteResponseGetRegionRetType = string

type OrganizationGetCreatedAtArgType

type OrganizationGetCreatedAtArgType = time.Time

type OrganizationGetCreatedAtAttributeType

type OrganizationGetCreatedAtAttributeType = *time.Time

isDateTime

type OrganizationGetCreatedAtRetType

type OrganizationGetCreatedAtRetType = time.Time

type OrganizationGetGuidArgType

type OrganizationGetGuidArgType = string

type OrganizationGetGuidAttributeType

type OrganizationGetGuidAttributeType = *string

isNotNullableString

type OrganizationGetGuidRetType

type OrganizationGetGuidRetType = string

type OrganizationGetNameArgType

type OrganizationGetNameArgType = string

type OrganizationGetNameAttributeType

type OrganizationGetNameAttributeType = *string

isNotNullableString

type OrganizationGetNameRetType

type OrganizationGetNameRetType = string

type OrganizationGetPlatformIdArgType

type OrganizationGetPlatformIdArgType = string

type OrganizationGetPlatformIdAttributeType

type OrganizationGetPlatformIdAttributeType = *string

isNotNullableString

type OrganizationGetPlatformIdRetType

type OrganizationGetPlatformIdRetType = string

type OrganizationGetProjectIdArgType

type OrganizationGetProjectIdArgType = string

type OrganizationGetProjectIdAttributeType

type OrganizationGetProjectIdAttributeType = *string

isNotNullableString

type OrganizationGetProjectIdRetType

type OrganizationGetProjectIdRetType = string

type OrganizationGetQuotaIdArgType

type OrganizationGetQuotaIdArgType = string

type OrganizationGetQuotaIdAttributeType

type OrganizationGetQuotaIdAttributeType = *string

isNotNullableString

type OrganizationGetQuotaIdRetType

type OrganizationGetQuotaIdRetType = string

type OrganizationGetRegionArgType

type OrganizationGetRegionArgType = string

type OrganizationGetRegionAttributeType

type OrganizationGetRegionAttributeType = *string

isNotNullableString

type OrganizationGetRegionRetType

type OrganizationGetRegionRetType = string

type OrganizationGetStatusArgType

type OrganizationGetStatusArgType = string

type OrganizationGetStatusAttributeType

type OrganizationGetStatusAttributeType = *string

isNotNullableString

type OrganizationGetStatusRetType

type OrganizationGetStatusRetType = string

type OrganizationGetUpdatedAtArgType

type OrganizationGetUpdatedAtArgType = time.Time

type OrganizationGetUpdatedAtAttributeType

type OrganizationGetUpdatedAtAttributeType = *time.Time

isDateTime

type OrganizationGetUpdatedAtRetType

type OrganizationGetUpdatedAtRetType = time.Time

type OrganizationQuota

type OrganizationQuota struct {
	// REQUIRED
	OrgId OrganizationQuotaGetOrgIdAttributeType `json:"orgId" required:"true"`
	// REQUIRED
	PlatformId OrganizationQuotaGetPlatformIdAttributeType `json:"platformId" required:"true"`
	// REQUIRED
	ProjectId OrganizationQuotaGetProjectIdAttributeType `json:"projectId" required:"true"`
	// REQUIRED
	QuotaId OrganizationQuotaGetQuotaIdAttributeType `json:"quotaId" required:"true"`
	// REQUIRED
	Region OrganizationQuotaGetRegionAttributeType `json:"region" required:"true"`
}

OrganizationQuota struct for OrganizationQuota

func NewOrganizationQuota

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

func NewOrganizationQuotaWithDefaults

func NewOrganizationQuotaWithDefaults() *OrganizationQuota

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

func (*OrganizationQuota) GetOrgId

GetOrgId returns the OrgId field value

func (*OrganizationQuota) GetOrgIdOk

func (o *OrganizationQuota) GetOrgIdOk() (ret OrganizationQuotaGetOrgIdRetType, ok bool)

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

func (*OrganizationQuota) GetPlatformId

GetPlatformId returns the PlatformId field value

func (*OrganizationQuota) GetPlatformIdOk

func (o *OrganizationQuota) GetPlatformIdOk() (ret OrganizationQuotaGetPlatformIdRetType, ok bool)

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

func (*OrganizationQuota) GetProjectId

GetProjectId returns the ProjectId field value

func (*OrganizationQuota) GetProjectIdOk

func (o *OrganizationQuota) GetProjectIdOk() (ret OrganizationQuotaGetProjectIdRetType, ok bool)

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

func (*OrganizationQuota) GetQuotaId

GetQuotaId returns the QuotaId field value

func (*OrganizationQuota) GetQuotaIdOk

func (o *OrganizationQuota) GetQuotaIdOk() (ret OrganizationQuotaGetQuotaIdRetType, ok bool)

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

func (*OrganizationQuota) GetRegion

GetRegion returns the Region field value

func (*OrganizationQuota) GetRegionOk

func (o *OrganizationQuota) GetRegionOk() (ret OrganizationQuotaGetRegionRetType, ok bool)

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

func (*OrganizationQuota) SetOrgId

SetOrgId sets field value

func (*OrganizationQuota) SetPlatformId

SetPlatformId sets field value

func (*OrganizationQuota) SetProjectId

SetProjectId sets field value

func (*OrganizationQuota) SetQuotaId

SetQuotaId sets field value

func (*OrganizationQuota) SetRegion

SetRegion sets field value

func (OrganizationQuota) ToMap

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

type OrganizationQuotaGetOrgIdArgType

type OrganizationQuotaGetOrgIdArgType = string

type OrganizationQuotaGetOrgIdAttributeType

type OrganizationQuotaGetOrgIdAttributeType = *string

isNotNullableString

type OrganizationQuotaGetOrgIdRetType

type OrganizationQuotaGetOrgIdRetType = string

type OrganizationQuotaGetPlatformIdArgType

type OrganizationQuotaGetPlatformIdArgType = string

type OrganizationQuotaGetPlatformIdAttributeType

type OrganizationQuotaGetPlatformIdAttributeType = *string

isNotNullableString

type OrganizationQuotaGetPlatformIdRetType

type OrganizationQuotaGetPlatformIdRetType = string

type OrganizationQuotaGetProjectIdArgType

type OrganizationQuotaGetProjectIdArgType = string

type OrganizationQuotaGetProjectIdAttributeType

type OrganizationQuotaGetProjectIdAttributeType = *string

isNotNullableString

type OrganizationQuotaGetProjectIdRetType

type OrganizationQuotaGetProjectIdRetType = string

type OrganizationQuotaGetQuotaIdArgType

type OrganizationQuotaGetQuotaIdArgType = string

type OrganizationQuotaGetQuotaIdAttributeType

type OrganizationQuotaGetQuotaIdAttributeType = *string

isNotNullableString

type OrganizationQuotaGetQuotaIdRetType

type OrganizationQuotaGetQuotaIdRetType = string

type OrganizationQuotaGetRegionArgType

type OrganizationQuotaGetRegionArgType = string

type OrganizationQuotaGetRegionAttributeType

type OrganizationQuotaGetRegionAttributeType = *string

isNotNullableString

type OrganizationQuotaGetRegionRetType

type OrganizationQuotaGetRegionRetType = string

type OrganizationUsageSummary

type OrganizationUsageSummary struct {
	// REQUIRED
	OrgId OrganizationUsageSummaryGetOrgIdAttributeType `json:"orgId" required:"true"`
	// REQUIRED
	PlatformId OrganizationUsageSummaryGetPlatformIdAttributeType `json:"platformId" required:"true"`
	// REQUIRED
	ProjectId OrganizationUsageSummaryGetProjectIdAttributeType `json:"projectId" required:"true"`
	// REQUIRED
	Region OrganizationUsageSummaryGetRegionAttributeType `json:"region" required:"true"`
	// REQUIRED
	UsageSummary OrganizationUsageSummaryGetUsageSummaryAttributeType `json:"usageSummary" required:"true"`
}

OrganizationUsageSummary struct for OrganizationUsageSummary

func NewOrganizationUsageSummary

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

func NewOrganizationUsageSummaryWithDefaults

func NewOrganizationUsageSummaryWithDefaults() *OrganizationUsageSummary

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

func (*OrganizationUsageSummary) GetOrgId

GetOrgId returns the OrgId field value

func (*OrganizationUsageSummary) GetOrgIdOk

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

func (*OrganizationUsageSummary) GetPlatformId

GetPlatformId returns the PlatformId field value

func (*OrganizationUsageSummary) GetPlatformIdOk

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

func (*OrganizationUsageSummary) GetProjectId

GetProjectId returns the ProjectId field value

func (*OrganizationUsageSummary) GetProjectIdOk

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

func (*OrganizationUsageSummary) GetRegion

GetRegion returns the Region field value

func (*OrganizationUsageSummary) GetRegionOk

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

func (*OrganizationUsageSummary) GetUsageSummary

GetUsageSummary returns the UsageSummary field value

func (*OrganizationUsageSummary) GetUsageSummaryOk

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

func (*OrganizationUsageSummary) SetOrgId

SetOrgId sets field value

func (*OrganizationUsageSummary) SetPlatformId

SetPlatformId sets field value

func (*OrganizationUsageSummary) SetProjectId

SetProjectId sets field value

func (*OrganizationUsageSummary) SetRegion

SetRegion sets field value

func (*OrganizationUsageSummary) SetUsageSummary

SetUsageSummary sets field value

func (OrganizationUsageSummary) ToMap

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

type OrganizationUsageSummaryGetOrgIdArgType

type OrganizationUsageSummaryGetOrgIdArgType = string

type OrganizationUsageSummaryGetOrgIdAttributeType

type OrganizationUsageSummaryGetOrgIdAttributeType = *string

isNotNullableString

type OrganizationUsageSummaryGetOrgIdRetType

type OrganizationUsageSummaryGetOrgIdRetType = string

type OrganizationUsageSummaryGetPlatformIdArgType

type OrganizationUsageSummaryGetPlatformIdArgType = string

type OrganizationUsageSummaryGetPlatformIdAttributeType

type OrganizationUsageSummaryGetPlatformIdAttributeType = *string

isNotNullableString

type OrganizationUsageSummaryGetPlatformIdRetType

type OrganizationUsageSummaryGetPlatformIdRetType = string

type OrganizationUsageSummaryGetProjectIdArgType

type OrganizationUsageSummaryGetProjectIdArgType = string

type OrganizationUsageSummaryGetProjectIdAttributeType

type OrganizationUsageSummaryGetProjectIdAttributeType = *string

isNotNullableString

type OrganizationUsageSummaryGetProjectIdRetType

type OrganizationUsageSummaryGetProjectIdRetType = string

type OrganizationUsageSummaryGetRegionArgType

type OrganizationUsageSummaryGetRegionArgType = string

type OrganizationUsageSummaryGetRegionAttributeType

type OrganizationUsageSummaryGetRegionAttributeType = *string

isNotNullableString

type OrganizationUsageSummaryGetRegionRetType

type OrganizationUsageSummaryGetRegionRetType = string

type OrganizationUsageSummaryGetUsageSummaryArgType

type OrganizationUsageSummaryGetUsageSummaryArgType = UsageSummary

type OrganizationUsageSummaryGetUsageSummaryAttributeType

type OrganizationUsageSummaryGetUsageSummaryAttributeType = *UsageSummary

isModel

type OrganizationUsageSummaryGetUsageSummaryRetType

type OrganizationUsageSummaryGetUsageSummaryRetType = UsageSummary

type OrganizationgetSuspendedArgType

type OrganizationgetSuspendedArgType = bool

type OrganizationgetSuspendedAttributeType

type OrganizationgetSuspendedAttributeType = *bool

isBoolean

type OrganizationgetSuspendedRetType

type OrganizationgetSuspendedRetType = bool

type OrganizationsList

type OrganizationsList struct {
	// REQUIRED
	Pagination OrganizationsListGetPaginationAttributeType `json:"pagination" required:"true"`
	// REQUIRED
	Resources OrganizationsListGetResourcesAttributeType `json:"resources" required:"true"`
}

OrganizationsList struct for OrganizationsList

func NewOrganizationsList

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

func NewOrganizationsListWithDefaults

func NewOrganizationsListWithDefaults() *OrganizationsList

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

func (*OrganizationsList) GetPagination

GetPagination returns the Pagination field value

func (*OrganizationsList) GetPaginationOk

func (o *OrganizationsList) GetPaginationOk() (ret OrganizationsListGetPaginationRetType, ok bool)

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

func (*OrganizationsList) GetResources

GetResources returns the Resources field value

func (*OrganizationsList) GetResourcesOk

func (o *OrganizationsList) GetResourcesOk() (ret OrganizationsListGetResourcesRetType, ok bool)

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

func (*OrganizationsList) SetPagination

SetPagination sets field value

func (*OrganizationsList) SetResources

SetResources sets field value

func (OrganizationsList) ToMap

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

type OrganizationsListGetPaginationArgType

type OrganizationsListGetPaginationArgType = Pagination

type OrganizationsListGetPaginationAttributeType

type OrganizationsListGetPaginationAttributeType = *Pagination

isModel

type OrganizationsListGetPaginationRetType

type OrganizationsListGetPaginationRetType = Pagination

type OrganizationsListGetResourcesArgType

type OrganizationsListGetResourcesArgType = []OrganizationsListItem

type OrganizationsListGetResourcesAttributeType

type OrganizationsListGetResourcesAttributeType = *[]OrganizationsListItem

isArray

type OrganizationsListGetResourcesRetType

type OrganizationsListGetResourcesRetType = []OrganizationsListItem

type OrganizationsListItem

type OrganizationsListItem struct {
	CreatedAt OrganizationsListItemGetCreatedAtAttributeType `json:"createdAt,omitempty"`
	// REQUIRED
	Guid OrganizationsListItemGetGuidAttributeType `json:"guid" required:"true"`
	Name OrganizationsListItemGetNameAttributeType `json:"name,omitempty"`
	// REQUIRED
	PlatformId OrganizationsListItemGetPlatformIdAttributeType `json:"platformId" required:"true"`
	// REQUIRED
	ProjectId OrganizationsListItemGetProjectIdAttributeType `json:"projectId" required:"true"`
	QuotaId   OrganizationsListItemGetQuotaIdAttributeType   `json:"quotaId,omitempty"`
	// REQUIRED
	Region OrganizationsListItemGetRegionAttributeType `json:"region" required:"true"`
	// The organization's status. The status value starts with `deleting` when a deleting request is in progress. The status value starts with `delete_failed` when the deletion failed. The status value can be different from `deleting` and `delete_failed`. Additional details can be provided in the future.
	// REQUIRED
	Status    OrganizationsListItemGetStatusAttributeType    `json:"status" required:"true"`
	Suspended OrganizationsListItemgetSuspendedAttributeType `json:"suspended,omitempty"`
	UpdatedAt OrganizationsListItemGetUpdatedAtAttributeType `json:"updatedAt,omitempty"`
}

OrganizationsListItem struct for OrganizationsListItem

func NewOrganizationsListItem

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

func NewOrganizationsListItemWithDefaults

func NewOrganizationsListItemWithDefaults() *OrganizationsListItem

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

func (*OrganizationsListItem) GetCreatedAt

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

func (*OrganizationsListItem) GetCreatedAtOk

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 (*OrganizationsListItem) GetGuid

GetGuid returns the Guid field value

func (*OrganizationsListItem) GetGuidOk

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

func (*OrganizationsListItem) GetName

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

func (*OrganizationsListItem) 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 (*OrganizationsListItem) GetPlatformId

GetPlatformId returns the PlatformId field value

func (*OrganizationsListItem) GetPlatformIdOk

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

func (*OrganizationsListItem) GetProjectId

GetProjectId returns the ProjectId field value

func (*OrganizationsListItem) GetProjectIdOk

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

func (*OrganizationsListItem) GetQuotaId

GetQuotaId returns the QuotaId field value if set, zero value otherwise.

func (*OrganizationsListItem) GetQuotaIdOk

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

func (*OrganizationsListItem) GetRegion

GetRegion returns the Region field value

func (*OrganizationsListItem) GetRegionOk

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

func (*OrganizationsListItem) GetStatus

GetStatus returns the Status field value

func (*OrganizationsListItem) GetStatusOk

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

func (*OrganizationsListItem) GetSuspended

GetSuspended returns the Suspended field value if set, zero value otherwise.

func (*OrganizationsListItem) GetSuspendedOk

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

func (*OrganizationsListItem) GetUpdatedAt

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

func (*OrganizationsListItem) GetUpdatedAtOk

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 (*OrganizationsListItem) HasCreatedAt

func (o *OrganizationsListItem) HasCreatedAt() bool

HasCreatedAt returns a boolean if a field has been set.

func (*OrganizationsListItem) HasName

func (o *OrganizationsListItem) HasName() bool

HasName returns a boolean if a field has been set.

func (*OrganizationsListItem) HasQuotaId

func (o *OrganizationsListItem) HasQuotaId() bool

HasQuotaId returns a boolean if a field has been set.

func (*OrganizationsListItem) HasSuspended

func (o *OrganizationsListItem) HasSuspended() bool

HasSuspended returns a boolean if a field has been set.

func (*OrganizationsListItem) HasUpdatedAt

func (o *OrganizationsListItem) HasUpdatedAt() bool

HasUpdatedAt returns a boolean if a field has been set.

func (*OrganizationsListItem) SetCreatedAt

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

func (*OrganizationsListItem) SetGuid

SetGuid sets field value

func (*OrganizationsListItem) SetName

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

func (*OrganizationsListItem) SetPlatformId

SetPlatformId sets field value

func (*OrganizationsListItem) SetProjectId

SetProjectId sets field value

func (*OrganizationsListItem) SetQuotaId

SetQuotaId gets a reference to the given string and assigns it to the QuotaId field.

func (*OrganizationsListItem) SetRegion

SetRegion sets field value

func (*OrganizationsListItem) SetStatus

SetStatus sets field value

func (*OrganizationsListItem) SetSuspended

SetSuspended gets a reference to the given bool and assigns it to the Suspended field.

func (*OrganizationsListItem) SetUpdatedAt

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

func (OrganizationsListItem) ToMap

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

type OrganizationsListItemGetCreatedAtArgType

type OrganizationsListItemGetCreatedAtArgType = time.Time

type OrganizationsListItemGetCreatedAtAttributeType

type OrganizationsListItemGetCreatedAtAttributeType = *time.Time

isDateTime

type OrganizationsListItemGetCreatedAtRetType

type OrganizationsListItemGetCreatedAtRetType = time.Time

type OrganizationsListItemGetGuidArgType

type OrganizationsListItemGetGuidArgType = string

type OrganizationsListItemGetGuidAttributeType

type OrganizationsListItemGetGuidAttributeType = *string

isNotNullableString

type OrganizationsListItemGetGuidRetType

type OrganizationsListItemGetGuidRetType = string

type OrganizationsListItemGetNameArgType

type OrganizationsListItemGetNameArgType = string

type OrganizationsListItemGetNameAttributeType

type OrganizationsListItemGetNameAttributeType = *string

isNotNullableString

type OrganizationsListItemGetNameRetType

type OrganizationsListItemGetNameRetType = string

type OrganizationsListItemGetPlatformIdArgType

type OrganizationsListItemGetPlatformIdArgType = string

type OrganizationsListItemGetPlatformIdAttributeType

type OrganizationsListItemGetPlatformIdAttributeType = *string

isNotNullableString

type OrganizationsListItemGetPlatformIdRetType

type OrganizationsListItemGetPlatformIdRetType = string

type OrganizationsListItemGetProjectIdArgType

type OrganizationsListItemGetProjectIdArgType = string

type OrganizationsListItemGetProjectIdAttributeType

type OrganizationsListItemGetProjectIdAttributeType = *string

isNotNullableString

type OrganizationsListItemGetProjectIdRetType

type OrganizationsListItemGetProjectIdRetType = string

type OrganizationsListItemGetQuotaIdArgType

type OrganizationsListItemGetQuotaIdArgType = string

type OrganizationsListItemGetQuotaIdAttributeType

type OrganizationsListItemGetQuotaIdAttributeType = *string

isNotNullableString

type OrganizationsListItemGetQuotaIdRetType

type OrganizationsListItemGetQuotaIdRetType = string

type OrganizationsListItemGetRegionArgType

type OrganizationsListItemGetRegionArgType = string

type OrganizationsListItemGetRegionAttributeType

type OrganizationsListItemGetRegionAttributeType = *string

isNotNullableString

type OrganizationsListItemGetRegionRetType

type OrganizationsListItemGetRegionRetType = string

type OrganizationsListItemGetStatusArgType

type OrganizationsListItemGetStatusArgType = string

type OrganizationsListItemGetStatusAttributeType

type OrganizationsListItemGetStatusAttributeType = *string

isNotNullableString

type OrganizationsListItemGetStatusRetType

type OrganizationsListItemGetStatusRetType = string

type OrganizationsListItemGetUpdatedAtArgType

type OrganizationsListItemGetUpdatedAtArgType = time.Time

type OrganizationsListItemGetUpdatedAtAttributeType

type OrganizationsListItemGetUpdatedAtAttributeType = *time.Time

isDateTime

type OrganizationsListItemGetUpdatedAtRetType

type OrganizationsListItemGetUpdatedAtRetType = time.Time

type OrganizationsListItemgetSuspendedArgType

type OrganizationsListItemgetSuspendedArgType = bool

type OrganizationsListItemgetSuspendedAttributeType

type OrganizationsListItemgetSuspendedAttributeType = *bool

isBoolean

type OrganizationsListItemgetSuspendedRetType

type OrganizationsListItemgetSuspendedRetType = bool

type Pagination

type Pagination struct {
	TotalPages   PaginationGetTotalPagesAttributeType   `json:"totalPages,omitempty"`
	TotalResults PaginationGetTotalResultsAttributeType `json:"totalResults,omitempty"`
}

Pagination struct for Pagination

func NewPagination

func NewPagination() *Pagination

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

func NewPaginationWithDefaults

func NewPaginationWithDefaults() *Pagination

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

func (*Pagination) GetTotalPages

func (o *Pagination) GetTotalPages() (res PaginationGetTotalPagesRetType)

GetTotalPages returns the TotalPages field value if set, zero value otherwise.

func (*Pagination) GetTotalPagesOk

func (o *Pagination) GetTotalPagesOk() (ret PaginationGetTotalPagesRetType, ok 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 (*Pagination) GetTotalResults

func (o *Pagination) GetTotalResults() (res PaginationGetTotalResultsRetType)

GetTotalResults returns the TotalResults field value if set, zero value otherwise.

func (*Pagination) GetTotalResultsOk

func (o *Pagination) GetTotalResultsOk() (ret PaginationGetTotalResultsRetType, ok bool)

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

func (*Pagination) HasTotalPages

func (o *Pagination) HasTotalPages() bool

HasTotalPages returns a boolean if a field has been set.

func (*Pagination) HasTotalResults

func (o *Pagination) HasTotalResults() bool

HasTotalResults returns a boolean if a field has been set.

func (*Pagination) SetTotalPages

func (o *Pagination) SetTotalPages(v PaginationGetTotalPagesRetType)

SetTotalPages gets a reference to the given int64 and assigns it to the TotalPages field.

func (*Pagination) SetTotalResults

func (o *Pagination) SetTotalResults(v PaginationGetTotalResultsRetType)

SetTotalResults gets a reference to the given int64 and assigns it to the TotalResults field.

func (Pagination) ToMap

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

type PaginationGetTotalPagesArgType

type PaginationGetTotalPagesArgType = int64

type PaginationGetTotalPagesAttributeType

type PaginationGetTotalPagesAttributeType = *int64

isLong

type PaginationGetTotalPagesRetType

type PaginationGetTotalPagesRetType = int64

type PaginationGetTotalResultsArgType

type PaginationGetTotalResultsArgType = int64

type PaginationGetTotalResultsAttributeType

type PaginationGetTotalResultsAttributeType = *int64

isLong

type PaginationGetTotalResultsRetType

type PaginationGetTotalResultsRetType = int64

type PlatformList

type PlatformList struct {
	// REQUIRED
	Pagination PlatformListGetPaginationAttributeType `json:"pagination" required:"true"`
	// REQUIRED
	Resources PlatformListGetResourcesAttributeType `json:"resources" required:"true"`
}

PlatformList struct for PlatformList

func NewPlatformList

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

func NewPlatformListWithDefaults

func NewPlatformListWithDefaults() *PlatformList

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

func (*PlatformList) GetPagination

func (o *PlatformList) GetPagination() (ret PlatformListGetPaginationRetType)

GetPagination returns the Pagination field value

func (*PlatformList) GetPaginationOk

func (o *PlatformList) GetPaginationOk() (ret PlatformListGetPaginationRetType, ok bool)

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

func (*PlatformList) GetResources

func (o *PlatformList) GetResources() (ret PlatformListGetResourcesRetType)

GetResources returns the Resources field value

func (*PlatformList) GetResourcesOk

func (o *PlatformList) GetResourcesOk() (ret PlatformListGetResourcesRetType, ok bool)

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

func (*PlatformList) SetPagination

func (o *PlatformList) SetPagination(v PlatformListGetPaginationRetType)

SetPagination sets field value

func (*PlatformList) SetResources

func (o *PlatformList) SetResources(v PlatformListGetResourcesRetType)

SetResources sets field value

func (PlatformList) ToMap

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

type PlatformListGetPaginationArgType

type PlatformListGetPaginationArgType = Pagination

type PlatformListGetPaginationAttributeType

type PlatformListGetPaginationAttributeType = *Pagination

isModel

type PlatformListGetPaginationRetType

type PlatformListGetPaginationRetType = Pagination

type PlatformListGetResourcesArgType

type PlatformListGetResourcesArgType = []Platforms

type PlatformListGetResourcesAttributeType

type PlatformListGetResourcesAttributeType = *[]Platforms

isArray

type PlatformListGetResourcesRetType

type PlatformListGetResourcesRetType = []Platforms

type Platforms

type Platforms struct {
	// REQUIRED
	ApiUrl     PlatformsGetApiUrlAttributeType     `json:"apiUrl" required:"true"`
	ConsoleUrl PlatformsGetConsoleUrlAttributeType `json:"consoleUrl,omitempty"`
	// REQUIRED
	DisplayName PlatformsGetDisplayNameAttributeType `json:"displayName" required:"true"`
	// REQUIRED
	Guid PlatformsGetGuidAttributeType `json:"guid" required:"true"`
	// REQUIRED
	Region PlatformsGetRegionAttributeType `json:"region" required:"true"`
	// REQUIRED
	SystemId PlatformsGetSystemIdAttributeType `json:"systemId" required:"true"`
}

Platforms struct for Platforms

func NewPlatforms

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

func NewPlatformsWithDefaults

func NewPlatformsWithDefaults() *Platforms

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

func (*Platforms) GetApiUrl

func (o *Platforms) GetApiUrl() (ret PlatformsGetApiUrlRetType)

GetApiUrl returns the ApiUrl field value

func (*Platforms) GetApiUrlOk

func (o *Platforms) GetApiUrlOk() (ret PlatformsGetApiUrlRetType, ok bool)

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

func (*Platforms) GetConsoleUrl

func (o *Platforms) GetConsoleUrl() (res PlatformsGetConsoleUrlRetType)

GetConsoleUrl returns the ConsoleUrl field value if set, zero value otherwise.

func (*Platforms) GetConsoleUrlOk

func (o *Platforms) GetConsoleUrlOk() (ret PlatformsGetConsoleUrlRetType, ok bool)

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

func (*Platforms) GetDisplayName

func (o *Platforms) GetDisplayName() (ret PlatformsGetDisplayNameRetType)

GetDisplayName returns the DisplayName field value

func (*Platforms) GetDisplayNameOk

func (o *Platforms) GetDisplayNameOk() (ret PlatformsGetDisplayNameRetType, ok bool)

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

func (*Platforms) GetGuid

func (o *Platforms) GetGuid() (ret PlatformsGetGuidRetType)

GetGuid returns the Guid field value

func (*Platforms) GetGuidOk

func (o *Platforms) GetGuidOk() (ret PlatformsGetGuidRetType, ok bool)

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

func (*Platforms) GetRegion

func (o *Platforms) GetRegion() (ret PlatformsGetRegionRetType)

GetRegion returns the Region field value

func (*Platforms) GetRegionOk

func (o *Platforms) GetRegionOk() (ret PlatformsGetRegionRetType, ok bool)

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

func (*Platforms) GetSystemId

func (o *Platforms) GetSystemId() (ret PlatformsGetSystemIdRetType)

GetSystemId returns the SystemId field value

func (*Platforms) GetSystemIdOk

func (o *Platforms) GetSystemIdOk() (ret PlatformsGetSystemIdRetType, ok bool)

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

func (*Platforms) HasConsoleUrl

func (o *Platforms) HasConsoleUrl() bool

HasConsoleUrl returns a boolean if a field has been set.

func (*Platforms) SetApiUrl

func (o *Platforms) SetApiUrl(v PlatformsGetApiUrlRetType)

SetApiUrl sets field value

func (*Platforms) SetConsoleUrl

func (o *Platforms) SetConsoleUrl(v PlatformsGetConsoleUrlRetType)

SetConsoleUrl gets a reference to the given string and assigns it to the ConsoleUrl field.

func (*Platforms) SetDisplayName

func (o *Platforms) SetDisplayName(v PlatformsGetDisplayNameRetType)

SetDisplayName sets field value

func (*Platforms) SetGuid

func (o *Platforms) SetGuid(v PlatformsGetGuidRetType)

SetGuid sets field value

func (*Platforms) SetRegion

func (o *Platforms) SetRegion(v PlatformsGetRegionRetType)

SetRegion sets field value

func (*Platforms) SetSystemId

func (o *Platforms) SetSystemId(v PlatformsGetSystemIdRetType)

SetSystemId sets field value

func (Platforms) ToMap

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

type PlatformsGetApiUrlArgType

type PlatformsGetApiUrlArgType = string

type PlatformsGetApiUrlAttributeType

type PlatformsGetApiUrlAttributeType = *string

isNotNullableString

type PlatformsGetApiUrlRetType

type PlatformsGetApiUrlRetType = string

type PlatformsGetConsoleUrlArgType

type PlatformsGetConsoleUrlArgType = string

type PlatformsGetConsoleUrlAttributeType

type PlatformsGetConsoleUrlAttributeType = *string

isNotNullableString

type PlatformsGetConsoleUrlRetType

type PlatformsGetConsoleUrlRetType = string

type PlatformsGetDisplayNameArgType

type PlatformsGetDisplayNameArgType = string

type PlatformsGetDisplayNameAttributeType

type PlatformsGetDisplayNameAttributeType = *string

isNotNullableString

type PlatformsGetDisplayNameRetType

type PlatformsGetDisplayNameRetType = string

type PlatformsGetGuidArgType

type PlatformsGetGuidArgType = string

type PlatformsGetGuidAttributeType

type PlatformsGetGuidAttributeType = *string

isNotNullableString

type PlatformsGetGuidRetType

type PlatformsGetGuidRetType = string

type PlatformsGetRegionArgType

type PlatformsGetRegionArgType = string

type PlatformsGetRegionAttributeType

type PlatformsGetRegionAttributeType = *string

isNotNullableString

type PlatformsGetRegionRetType

type PlatformsGetRegionRetType = string

type PlatformsGetSystemIdArgType

type PlatformsGetSystemIdArgType = string

type PlatformsGetSystemIdAttributeType

type PlatformsGetSystemIdAttributeType = *string

isNotNullableString

type PlatformsGetSystemIdRetType

type PlatformsGetSystemIdRetType = string

type Quota

type Quota struct {
	// REQUIRED
	Apps QuotaGetAppsAttributeType `json:"apps" required:"true"`
	// REQUIRED
	CreatedAt QuotaGetCreatedAtAttributeType `json:"createdAt" required:"true"`
	// REQUIRED
	Domains QuotaGetDomainsAttributeType `json:"domains" required:"true"`
	// REQUIRED
	Guid QuotaGetGuidAttributeType `json:"guid" required:"true"`
	// REQUIRED
	Name  QuotaGetNameAttributeType  `json:"name" required:"true"`
	OrgId QuotaGetOrgIdAttributeType `json:"orgId,omitempty"`
	// REQUIRED
	PlatformId QuotaGetPlatformIdAttributeType `json:"platformId" required:"true"`
	// REQUIRED
	ProjectId QuotaGetProjectIdAttributeType `json:"projectId" required:"true"`
	// REQUIRED
	Region QuotaGetRegionAttributeType `json:"region" required:"true"`
	// REQUIRED
	Routes QuotaGetRoutesAttributeType `json:"routes" required:"true"`
	// REQUIRED
	Services QuotaGetServicesAttributeType `json:"services" required:"true"`
	// REQUIRED
	UpdatedAt QuotaGetUpdatedAtAttributeType `json:"updatedAt" required:"true"`
}

Quota struct for Quota

func NewQuota

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

func NewQuotaWithDefaults

func NewQuotaWithDefaults() *Quota

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

func (*Quota) GetApps

func (o *Quota) GetApps() (ret QuotaGetAppsRetType)

GetApps returns the Apps field value

func (*Quota) GetAppsOk

func (o *Quota) GetAppsOk() (ret QuotaGetAppsRetType, ok bool)

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

func (*Quota) GetCreatedAt

func (o *Quota) GetCreatedAt() (ret QuotaGetCreatedAtRetType)

GetCreatedAt returns the CreatedAt field value

func (*Quota) GetCreatedAtOk

func (o *Quota) GetCreatedAtOk() (ret QuotaGetCreatedAtRetType, ok bool)

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

func (*Quota) GetDomains

func (o *Quota) GetDomains() (ret QuotaGetDomainsRetType)

GetDomains returns the Domains field value

func (*Quota) GetDomainsOk

func (o *Quota) GetDomainsOk() (ret QuotaGetDomainsRetType, ok bool)

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

func (*Quota) GetGuid

func (o *Quota) GetGuid() (ret QuotaGetGuidRetType)

GetGuid returns the Guid field value

func (*Quota) GetGuidOk

func (o *Quota) GetGuidOk() (ret QuotaGetGuidRetType, ok bool)

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

func (*Quota) GetName

func (o *Quota) GetName() (ret QuotaGetNameRetType)

GetName returns the Name field value

func (*Quota) GetNameOk

func (o *Quota) GetNameOk() (ret QuotaGetNameRetType, ok bool)

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

func (*Quota) GetOrgId

func (o *Quota) GetOrgId() (res QuotaGetOrgIdRetType)

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

func (*Quota) GetOrgIdOk

func (o *Quota) GetOrgIdOk() (ret QuotaGetOrgIdRetType, ok 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 (*Quota) GetPlatformId

func (o *Quota) GetPlatformId() (ret QuotaGetPlatformIdRetType)

GetPlatformId returns the PlatformId field value

func (*Quota) GetPlatformIdOk

func (o *Quota) GetPlatformIdOk() (ret QuotaGetPlatformIdRetType, ok bool)

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

func (*Quota) GetProjectId

func (o *Quota) GetProjectId() (ret QuotaGetProjectIdRetType)

GetProjectId returns the ProjectId field value

func (*Quota) GetProjectIdOk

func (o *Quota) GetProjectIdOk() (ret QuotaGetProjectIdRetType, ok bool)

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

func (*Quota) GetRegion

func (o *Quota) GetRegion() (ret QuotaGetRegionRetType)

GetRegion returns the Region field value

func (*Quota) GetRegionOk

func (o *Quota) GetRegionOk() (ret QuotaGetRegionRetType, ok bool)

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

func (*Quota) GetRoutes

func (o *Quota) GetRoutes() (ret QuotaGetRoutesRetType)

GetRoutes returns the Routes field value

func (*Quota) GetRoutesOk

func (o *Quota) GetRoutesOk() (ret QuotaGetRoutesRetType, ok bool)

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

func (*Quota) GetServices

func (o *Quota) GetServices() (ret QuotaGetServicesRetType)

GetServices returns the Services field value

func (*Quota) GetServicesOk

func (o *Quota) GetServicesOk() (ret QuotaGetServicesRetType, ok bool)

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

func (*Quota) GetUpdatedAt

func (o *Quota) GetUpdatedAt() (ret QuotaGetUpdatedAtRetType)

GetUpdatedAt returns the UpdatedAt field value

func (*Quota) GetUpdatedAtOk

func (o *Quota) GetUpdatedAtOk() (ret QuotaGetUpdatedAtRetType, ok bool)

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

func (*Quota) HasOrgId

func (o *Quota) HasOrgId() bool

HasOrgId returns a boolean if a field has been set.

func (*Quota) SetApps

func (o *Quota) SetApps(v QuotaGetAppsRetType)

SetApps sets field value

func (*Quota) SetCreatedAt

func (o *Quota) SetCreatedAt(v QuotaGetCreatedAtRetType)

SetCreatedAt sets field value

func (*Quota) SetDomains

func (o *Quota) SetDomains(v QuotaGetDomainsRetType)

SetDomains sets field value

func (*Quota) SetGuid

func (o *Quota) SetGuid(v QuotaGetGuidRetType)

SetGuid sets field value

func (*Quota) SetName

func (o *Quota) SetName(v QuotaGetNameRetType)

SetName sets field value

func (*Quota) SetOrgId

func (o *Quota) SetOrgId(v QuotaGetOrgIdRetType)

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

func (*Quota) SetPlatformId

func (o *Quota) SetPlatformId(v QuotaGetPlatformIdRetType)

SetPlatformId sets field value

func (*Quota) SetProjectId

func (o *Quota) SetProjectId(v QuotaGetProjectIdRetType)

SetProjectId sets field value

func (*Quota) SetRegion

func (o *Quota) SetRegion(v QuotaGetRegionRetType)

SetRegion sets field value

func (*Quota) SetRoutes

func (o *Quota) SetRoutes(v QuotaGetRoutesRetType)

SetRoutes sets field value

func (*Quota) SetServices

func (o *Quota) SetServices(v QuotaGetServicesRetType)

SetServices sets field value

func (*Quota) SetUpdatedAt

func (o *Quota) SetUpdatedAt(v QuotaGetUpdatedAtRetType)

SetUpdatedAt sets field value

func (Quota) ToMap

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

type QuotaApps

type QuotaApps struct {
	// The value `null` means `unlimited`.
	// REQUIRED
	LogRateLimitInBytesPerSecond QuotaAppsGetLogRateLimitInBytesPerSecondAttributeType `json:"logRateLimitInBytesPerSecond" required:"true"`
	// The value `null` means `unlimited`.
	// REQUIRED
	PerAppTasks QuotaAppsGetPerAppTasksAttributeType `json:"perAppTasks" required:"true"`
	// The value `null` means `unlimited`.
	// REQUIRED
	PerProcessMemoryInMb QuotaAppsGetPerProcessMemoryInMbAttributeType `json:"perProcessMemoryInMb" required:"true"`
	// The value `null` means `unlimited`.
	// REQUIRED
	TotalInstances QuotaAppsGetTotalInstancesAttributeType `json:"totalInstances" required:"true"`
	// The value `null` means `unlimited`.
	// REQUIRED
	TotalMemoryInMb QuotaAppsGetTotalMemoryInMbAttributeType `json:"totalMemoryInMb" required:"true"`
}

QuotaApps struct for QuotaApps

func NewQuotaApps

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

func NewQuotaAppsWithDefaults

func NewQuotaAppsWithDefaults() *QuotaApps

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

func (*QuotaApps) GetLogRateLimitInBytesPerSecond

func (o *QuotaApps) GetLogRateLimitInBytesPerSecond() (ret QuotaAppsGetLogRateLimitInBytesPerSecondRetType)

GetLogRateLimitInBytesPerSecond returns the LogRateLimitInBytesPerSecond field value If the value is explicit nil, the zero value for int64 will be returned

func (*QuotaApps) GetLogRateLimitInBytesPerSecondOk

func (o *QuotaApps) GetLogRateLimitInBytesPerSecondOk() (ret QuotaAppsGetLogRateLimitInBytesPerSecondRetType, ok bool)

GetLogRateLimitInBytesPerSecondOk returns a tuple with the LogRateLimitInBytesPerSecond field value 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 (*QuotaApps) GetPerAppTasks

func (o *QuotaApps) GetPerAppTasks() (ret QuotaAppsGetPerAppTasksRetType)

GetPerAppTasks returns the PerAppTasks field value If the value is explicit nil, the zero value for int64 will be returned

func (*QuotaApps) GetPerAppTasksOk

func (o *QuotaApps) GetPerAppTasksOk() (ret QuotaAppsGetPerAppTasksRetType, ok bool)

GetPerAppTasksOk returns a tuple with the PerAppTasks field value 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 (*QuotaApps) GetPerProcessMemoryInMb

func (o *QuotaApps) GetPerProcessMemoryInMb() (ret QuotaAppsGetPerProcessMemoryInMbRetType)

GetPerProcessMemoryInMb returns the PerProcessMemoryInMb field value If the value is explicit nil, the zero value for int64 will be returned

func (*QuotaApps) GetPerProcessMemoryInMbOk

func (o *QuotaApps) GetPerProcessMemoryInMbOk() (ret QuotaAppsGetPerProcessMemoryInMbRetType, ok bool)

GetPerProcessMemoryInMbOk returns a tuple with the PerProcessMemoryInMb field value 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 (*QuotaApps) GetTotalInstances

func (o *QuotaApps) GetTotalInstances() (ret QuotaAppsGetTotalInstancesRetType)

GetTotalInstances returns the TotalInstances field value If the value is explicit nil, the zero value for int64 will be returned

func (*QuotaApps) GetTotalInstancesOk

func (o *QuotaApps) GetTotalInstancesOk() (ret QuotaAppsGetTotalInstancesRetType, ok bool)

GetTotalInstancesOk returns a tuple with the TotalInstances field value 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 (*QuotaApps) GetTotalMemoryInMb

func (o *QuotaApps) GetTotalMemoryInMb() (ret QuotaAppsGetTotalMemoryInMbRetType)

GetTotalMemoryInMb returns the TotalMemoryInMb field value If the value is explicit nil, the zero value for int64 will be returned

func (*QuotaApps) GetTotalMemoryInMbOk

func (o *QuotaApps) GetTotalMemoryInMbOk() (ret QuotaAppsGetTotalMemoryInMbRetType, ok bool)

GetTotalMemoryInMbOk returns a tuple with the TotalMemoryInMb field value 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 (*QuotaApps) SetLogRateLimitInBytesPerSecond

func (o *QuotaApps) SetLogRateLimitInBytesPerSecond(v QuotaAppsGetLogRateLimitInBytesPerSecondRetType)

SetLogRateLimitInBytesPerSecond sets field value

func (*QuotaApps) SetPerAppTasks

func (o *QuotaApps) SetPerAppTasks(v QuotaAppsGetPerAppTasksRetType)

SetPerAppTasks sets field value

func (*QuotaApps) SetPerProcessMemoryInMb

func (o *QuotaApps) SetPerProcessMemoryInMb(v QuotaAppsGetPerProcessMemoryInMbRetType)

SetPerProcessMemoryInMb sets field value

func (*QuotaApps) SetTotalInstances

func (o *QuotaApps) SetTotalInstances(v QuotaAppsGetTotalInstancesRetType)

SetTotalInstances sets field value

func (*QuotaApps) SetTotalMemoryInMb

func (o *QuotaApps) SetTotalMemoryInMb(v QuotaAppsGetTotalMemoryInMbRetType)

SetTotalMemoryInMb sets field value

func (QuotaApps) ToMap

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

type QuotaAppsGetLogRateLimitInBytesPerSecondArgType

type QuotaAppsGetLogRateLimitInBytesPerSecondArgType = *int64

type QuotaAppsGetLogRateLimitInBytesPerSecondAttributeType

type QuotaAppsGetLogRateLimitInBytesPerSecondAttributeType = *int64

isLong

type QuotaAppsGetLogRateLimitInBytesPerSecondRetType

type QuotaAppsGetLogRateLimitInBytesPerSecondRetType = *int64

type QuotaAppsGetPerAppTasksArgType

type QuotaAppsGetPerAppTasksArgType = *int64

type QuotaAppsGetPerAppTasksAttributeType

type QuotaAppsGetPerAppTasksAttributeType = *int64

isLong

type QuotaAppsGetPerAppTasksRetType

type QuotaAppsGetPerAppTasksRetType = *int64

type QuotaAppsGetPerProcessMemoryInMbArgType

type QuotaAppsGetPerProcessMemoryInMbArgType = *int64

type QuotaAppsGetPerProcessMemoryInMbAttributeType

type QuotaAppsGetPerProcessMemoryInMbAttributeType = *int64

isLong

type QuotaAppsGetPerProcessMemoryInMbRetType

type QuotaAppsGetPerProcessMemoryInMbRetType = *int64

type QuotaAppsGetTotalInstancesArgType

type QuotaAppsGetTotalInstancesArgType = *int64

type QuotaAppsGetTotalInstancesAttributeType

type QuotaAppsGetTotalInstancesAttributeType = *int64

isLong

type QuotaAppsGetTotalInstancesRetType

type QuotaAppsGetTotalInstancesRetType = *int64

type QuotaAppsGetTotalMemoryInMbArgType

type QuotaAppsGetTotalMemoryInMbArgType = *int64

type QuotaAppsGetTotalMemoryInMbAttributeType

type QuotaAppsGetTotalMemoryInMbAttributeType = *int64

isLong

type QuotaAppsGetTotalMemoryInMbRetType

type QuotaAppsGetTotalMemoryInMbRetType = *int64

type QuotaDomains

type QuotaDomains struct {
	// The value `null` means `unlimited`.
	// REQUIRED
	TotalDomains QuotaDomainsGetTotalDomainsAttributeType `json:"totalDomains" required:"true"`
}

QuotaDomains struct for QuotaDomains

func NewQuotaDomains

func NewQuotaDomains(totalDomains QuotaDomainsGetTotalDomainsArgType) *QuotaDomains

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

func NewQuotaDomainsWithDefaults

func NewQuotaDomainsWithDefaults() *QuotaDomains

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

func (*QuotaDomains) GetTotalDomains

func (o *QuotaDomains) GetTotalDomains() (ret QuotaDomainsGetTotalDomainsRetType)

GetTotalDomains returns the TotalDomains field value If the value is explicit nil, the zero value for int64 will be returned

func (*QuotaDomains) GetTotalDomainsOk

func (o *QuotaDomains) GetTotalDomainsOk() (ret QuotaDomainsGetTotalDomainsRetType, ok bool)

GetTotalDomainsOk returns a tuple with the TotalDomains field value 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 (*QuotaDomains) SetTotalDomains

func (o *QuotaDomains) SetTotalDomains(v QuotaDomainsGetTotalDomainsRetType)

SetTotalDomains sets field value

func (QuotaDomains) ToMap

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

type QuotaDomainsGetTotalDomainsArgType

type QuotaDomainsGetTotalDomainsArgType = *int64

type QuotaDomainsGetTotalDomainsAttributeType

type QuotaDomainsGetTotalDomainsAttributeType = *int64

isLong

type QuotaDomainsGetTotalDomainsRetType

type QuotaDomainsGetTotalDomainsRetType = *int64

type QuotaGetAppsArgType

type QuotaGetAppsArgType = QuotaApps

type QuotaGetAppsAttributeType

type QuotaGetAppsAttributeType = *QuotaApps

isModel

type QuotaGetAppsRetType

type QuotaGetAppsRetType = QuotaApps

type QuotaGetCreatedAtArgType

type QuotaGetCreatedAtArgType = time.Time

type QuotaGetCreatedAtAttributeType

type QuotaGetCreatedAtAttributeType = *time.Time

isDateTime

type QuotaGetCreatedAtRetType

type QuotaGetCreatedAtRetType = time.Time

type QuotaGetDomainsArgType

type QuotaGetDomainsArgType = QuotaDomains

type QuotaGetDomainsAttributeType

type QuotaGetDomainsAttributeType = *QuotaDomains

isModel

type QuotaGetDomainsRetType

type QuotaGetDomainsRetType = QuotaDomains

type QuotaGetGuidArgType

type QuotaGetGuidArgType = string

type QuotaGetGuidAttributeType

type QuotaGetGuidAttributeType = *string

isNotNullableString

type QuotaGetGuidRetType

type QuotaGetGuidRetType = string

type QuotaGetNameArgType

type QuotaGetNameArgType = string

type QuotaGetNameAttributeType

type QuotaGetNameAttributeType = *string

isNotNullableString

type QuotaGetNameRetType

type QuotaGetNameRetType = string

type QuotaGetOrgIdArgType

type QuotaGetOrgIdArgType = string

type QuotaGetOrgIdAttributeType

type QuotaGetOrgIdAttributeType = *string

isNotNullableString

type QuotaGetOrgIdRetType

type QuotaGetOrgIdRetType = string

type QuotaGetPlatformIdArgType

type QuotaGetPlatformIdArgType = string

type QuotaGetPlatformIdAttributeType

type QuotaGetPlatformIdAttributeType = *string

isNotNullableString

type QuotaGetPlatformIdRetType

type QuotaGetPlatformIdRetType = string

type QuotaGetProjectIdArgType

type QuotaGetProjectIdArgType = string

type QuotaGetProjectIdAttributeType

type QuotaGetProjectIdAttributeType = *string

isNotNullableString

type QuotaGetProjectIdRetType

type QuotaGetProjectIdRetType = string

type QuotaGetRegionArgType

type QuotaGetRegionArgType = string

type QuotaGetRegionAttributeType

type QuotaGetRegionAttributeType = *string

isNotNullableString

type QuotaGetRegionRetType

type QuotaGetRegionRetType = string

type QuotaGetRoutesArgType

type QuotaGetRoutesArgType = QuotaRoutes

type QuotaGetRoutesAttributeType

type QuotaGetRoutesAttributeType = *QuotaRoutes

isModel

type QuotaGetRoutesRetType

type QuotaGetRoutesRetType = QuotaRoutes

type QuotaGetServicesArgType

type QuotaGetServicesArgType = QuotaServices

type QuotaGetServicesAttributeType

type QuotaGetServicesAttributeType = *QuotaServices

isModel

type QuotaGetServicesRetType

type QuotaGetServicesRetType = QuotaServices

type QuotaGetUpdatedAtArgType

type QuotaGetUpdatedAtArgType = time.Time

type QuotaGetUpdatedAtAttributeType

type QuotaGetUpdatedAtAttributeType = *time.Time

isDateTime

type QuotaGetUpdatedAtRetType

type QuotaGetUpdatedAtRetType = time.Time

type QuotaRoutes

type QuotaRoutes struct {
	// The value `null` means `unlimited`.
	// REQUIRED
	TotalReservedPorts QuotaRoutesGetTotalReservedPortsAttributeType `json:"totalReservedPorts" required:"true"`
	// The value `null` means `unlimited`.
	// REQUIRED
	TotalRoutes QuotaRoutesGetTotalRoutesAttributeType `json:"totalRoutes" required:"true"`
}

QuotaRoutes struct for QuotaRoutes

func NewQuotaRoutes

func NewQuotaRoutes(totalReservedPorts QuotaRoutesGetTotalReservedPortsArgType, totalRoutes QuotaRoutesGetTotalRoutesArgType) *QuotaRoutes

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

func NewQuotaRoutesWithDefaults

func NewQuotaRoutesWithDefaults() *QuotaRoutes

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

func (*QuotaRoutes) GetTotalReservedPorts

func (o *QuotaRoutes) GetTotalReservedPorts() (ret QuotaRoutesGetTotalReservedPortsRetType)

GetTotalReservedPorts returns the TotalReservedPorts field value If the value is explicit nil, the zero value for int64 will be returned

func (*QuotaRoutes) GetTotalReservedPortsOk

func (o *QuotaRoutes) GetTotalReservedPortsOk() (ret QuotaRoutesGetTotalReservedPortsRetType, ok bool)

GetTotalReservedPortsOk returns a tuple with the TotalReservedPorts field value 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 (*QuotaRoutes) GetTotalRoutes

func (o *QuotaRoutes) GetTotalRoutes() (ret QuotaRoutesGetTotalRoutesRetType)

GetTotalRoutes returns the TotalRoutes field value If the value is explicit nil, the zero value for int64 will be returned

func (*QuotaRoutes) GetTotalRoutesOk

func (o *QuotaRoutes) GetTotalRoutesOk() (ret QuotaRoutesGetTotalRoutesRetType, ok bool)

GetTotalRoutesOk returns a tuple with the TotalRoutes field value 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 (*QuotaRoutes) SetTotalReservedPorts

func (o *QuotaRoutes) SetTotalReservedPorts(v QuotaRoutesGetTotalReservedPortsRetType)

SetTotalReservedPorts sets field value

func (*QuotaRoutes) SetTotalRoutes

func (o *QuotaRoutes) SetTotalRoutes(v QuotaRoutesGetTotalRoutesRetType)

SetTotalRoutes sets field value

func (QuotaRoutes) ToMap

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

type QuotaRoutesGetTotalReservedPortsArgType

type QuotaRoutesGetTotalReservedPortsArgType = *int64

type QuotaRoutesGetTotalReservedPortsAttributeType

type QuotaRoutesGetTotalReservedPortsAttributeType = *int64

isLong

type QuotaRoutesGetTotalReservedPortsRetType

type QuotaRoutesGetTotalReservedPortsRetType = *int64

type QuotaRoutesGetTotalRoutesArgType

type QuotaRoutesGetTotalRoutesArgType = *int64

type QuotaRoutesGetTotalRoutesAttributeType

type QuotaRoutesGetTotalRoutesAttributeType = *int64

isLong

type QuotaRoutesGetTotalRoutesRetType

type QuotaRoutesGetTotalRoutesRetType = *int64

type QuotaServices

type QuotaServices struct {
	// REQUIRED
	PaidServicesAllowed QuotaServicesgetPaidServicesAllowedAttributeType `json:"paidServicesAllowed" required:"true"`
	// The value `null` means `unlimited`.
	// REQUIRED
	TotalServiceInstances QuotaServicesGetTotalServiceInstancesAttributeType `json:"totalServiceInstances" required:"true"`
	// The value `null` means `unlimited`.
	// REQUIRED
	TotalServiceKeys QuotaServicesGetTotalServiceKeysAttributeType `json:"totalServiceKeys" required:"true"`
}

QuotaServices struct for QuotaServices

func NewQuotaServices

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

func NewQuotaServicesWithDefaults

func NewQuotaServicesWithDefaults() *QuotaServices

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

func (*QuotaServices) GetPaidServicesAllowed

func (o *QuotaServices) GetPaidServicesAllowed() (ret QuotaServicesgetPaidServicesAllowedRetType)

GetPaidServicesAllowed returns the PaidServicesAllowed field value

func (*QuotaServices) GetPaidServicesAllowedOk

func (o *QuotaServices) GetPaidServicesAllowedOk() (ret QuotaServicesgetPaidServicesAllowedRetType, ok bool)

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

func (*QuotaServices) GetTotalServiceInstances

func (o *QuotaServices) GetTotalServiceInstances() (ret QuotaServicesGetTotalServiceInstancesRetType)

GetTotalServiceInstances returns the TotalServiceInstances field value If the value is explicit nil, the zero value for int64 will be returned

func (*QuotaServices) GetTotalServiceInstancesOk

func (o *QuotaServices) GetTotalServiceInstancesOk() (ret QuotaServicesGetTotalServiceInstancesRetType, ok bool)

GetTotalServiceInstancesOk returns a tuple with the TotalServiceInstances field value 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 (*QuotaServices) GetTotalServiceKeys

func (o *QuotaServices) GetTotalServiceKeys() (ret QuotaServicesGetTotalServiceKeysRetType)

GetTotalServiceKeys returns the TotalServiceKeys field value If the value is explicit nil, the zero value for int64 will be returned

func (*QuotaServices) GetTotalServiceKeysOk

func (o *QuotaServices) GetTotalServiceKeysOk() (ret QuotaServicesGetTotalServiceKeysRetType, ok bool)

GetTotalServiceKeysOk returns a tuple with the TotalServiceKeys field value 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 (*QuotaServices) SetPaidServicesAllowed

func (o *QuotaServices) SetPaidServicesAllowed(v QuotaServicesgetPaidServicesAllowedRetType)

SetPaidServicesAllowed sets field value

func (*QuotaServices) SetTotalServiceInstances

func (o *QuotaServices) SetTotalServiceInstances(v QuotaServicesGetTotalServiceInstancesRetType)

SetTotalServiceInstances sets field value

func (*QuotaServices) SetTotalServiceKeys

func (o *QuotaServices) SetTotalServiceKeys(v QuotaServicesGetTotalServiceKeysRetType)

SetTotalServiceKeys sets field value

func (QuotaServices) ToMap

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

type QuotaServicesGetTotalServiceInstancesArgType

type QuotaServicesGetTotalServiceInstancesArgType = *int64

type QuotaServicesGetTotalServiceInstancesAttributeType

type QuotaServicesGetTotalServiceInstancesAttributeType = *int64

isLong

type QuotaServicesGetTotalServiceInstancesRetType

type QuotaServicesGetTotalServiceInstancesRetType = *int64

type QuotaServicesGetTotalServiceKeysArgType

type QuotaServicesGetTotalServiceKeysArgType = *int64

type QuotaServicesGetTotalServiceKeysAttributeType

type QuotaServicesGetTotalServiceKeysAttributeType = *int64

isLong

type QuotaServicesGetTotalServiceKeysRetType

type QuotaServicesGetTotalServiceKeysRetType = *int64

type QuotaServicesgetPaidServicesAllowedArgType

type QuotaServicesgetPaidServicesAllowedArgType = bool

type QuotaServicesgetPaidServicesAllowedAttributeType

type QuotaServicesgetPaidServicesAllowedAttributeType = *bool

isBoolean

type QuotaServicesgetPaidServicesAllowedRetType

type QuotaServicesgetPaidServicesAllowedRetType = bool

type Space

type Space struct {
	// REQUIRED
	CreatedAt SpaceGetCreatedAtAttributeType `json:"createdAt" required:"true"`
	// REQUIRED
	Guid SpaceGetGuidAttributeType `json:"guid" required:"true"`
	// REQUIRED
	Name SpaceGetNameAttributeType `json:"name" required:"true"`
	// REQUIRED
	OrgId SpaceGetOrgIdAttributeType `json:"orgId" required:"true"`
	// REQUIRED
	PlatformId SpaceGetPlatformIdAttributeType `json:"platformId" required:"true"`
	// REQUIRED
	ProjectId SpaceGetProjectIdAttributeType `json:"projectId" required:"true"`
	// REQUIRED
	Region SpaceGetRegionAttributeType `json:"region" required:"true"`
	// REQUIRED
	UpdatedAt SpaceGetUpdatedAtAttributeType `json:"updatedAt" required:"true"`
}

Space struct for Space

func NewSpace

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

func NewSpaceWithDefaults

func NewSpaceWithDefaults() *Space

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

func (*Space) GetCreatedAt

func (o *Space) GetCreatedAt() (ret SpaceGetCreatedAtRetType)

GetCreatedAt returns the CreatedAt field value

func (*Space) GetCreatedAtOk

func (o *Space) GetCreatedAtOk() (ret SpaceGetCreatedAtRetType, ok bool)

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

func (*Space) GetGuid

func (o *Space) GetGuid() (ret SpaceGetGuidRetType)

GetGuid returns the Guid field value

func (*Space) GetGuidOk

func (o *Space) GetGuidOk() (ret SpaceGetGuidRetType, ok bool)

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

func (*Space) GetName

func (o *Space) GetName() (ret SpaceGetNameRetType)

GetName returns the Name field value

func (*Space) GetNameOk

func (o *Space) GetNameOk() (ret SpaceGetNameRetType, ok bool)

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

func (*Space) GetOrgId

func (o *Space) GetOrgId() (ret SpaceGetOrgIdRetType)

GetOrgId returns the OrgId field value

func (*Space) GetOrgIdOk

func (o *Space) GetOrgIdOk() (ret SpaceGetOrgIdRetType, ok bool)

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

func (*Space) GetPlatformId

func (o *Space) GetPlatformId() (ret SpaceGetPlatformIdRetType)

GetPlatformId returns the PlatformId field value

func (*Space) GetPlatformIdOk

func (o *Space) GetPlatformIdOk() (ret SpaceGetPlatformIdRetType, ok bool)

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

func (*Space) GetProjectId

func (o *Space) GetProjectId() (ret SpaceGetProjectIdRetType)

GetProjectId returns the ProjectId field value

func (*Space) GetProjectIdOk

func (o *Space) GetProjectIdOk() (ret SpaceGetProjectIdRetType, ok bool)

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

func (*Space) GetRegion

func (o *Space) GetRegion() (ret SpaceGetRegionRetType)

GetRegion returns the Region field value

func (*Space) GetRegionOk

func (o *Space) GetRegionOk() (ret SpaceGetRegionRetType, ok bool)

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

func (*Space) GetUpdatedAt

func (o *Space) GetUpdatedAt() (ret SpaceGetUpdatedAtRetType)

GetUpdatedAt returns the UpdatedAt field value

func (*Space) GetUpdatedAtOk

func (o *Space) GetUpdatedAtOk() (ret SpaceGetUpdatedAtRetType, ok bool)

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

func (*Space) SetCreatedAt

func (o *Space) SetCreatedAt(v SpaceGetCreatedAtRetType)

SetCreatedAt sets field value

func (*Space) SetGuid

func (o *Space) SetGuid(v SpaceGetGuidRetType)

SetGuid sets field value

func (*Space) SetName

func (o *Space) SetName(v SpaceGetNameRetType)

SetName sets field value

func (*Space) SetOrgId

func (o *Space) SetOrgId(v SpaceGetOrgIdRetType)

SetOrgId sets field value

func (*Space) SetPlatformId

func (o *Space) SetPlatformId(v SpaceGetPlatformIdRetType)

SetPlatformId sets field value

func (*Space) SetProjectId

func (o *Space) SetProjectId(v SpaceGetProjectIdRetType)

SetProjectId sets field value

func (*Space) SetRegion

func (o *Space) SetRegion(v SpaceGetRegionRetType)

SetRegion sets field value

func (*Space) SetUpdatedAt

func (o *Space) SetUpdatedAt(v SpaceGetUpdatedAtRetType)

SetUpdatedAt sets field value

func (Space) ToMap

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

type SpaceCreatedBffResponse

type SpaceCreatedBffResponse struct {
	OrgRole SpaceCreatedBffResponseGetOrgRoleAttributeType `json:"orgRole,omitempty"`
	// REQUIRED
	Space SpaceCreatedBffResponseGetSpaceAttributeType `json:"space" required:"true"`
	// REQUIRED
	SpaceRole SpaceCreatedBffResponseGetSpaceRoleAttributeType `json:"spaceRole" required:"true"`
}

SpaceCreatedBffResponse struct for SpaceCreatedBffResponse

func NewSpaceCreatedBffResponse

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

func NewSpaceCreatedBffResponseWithDefaults

func NewSpaceCreatedBffResponseWithDefaults() *SpaceCreatedBffResponse

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

func (*SpaceCreatedBffResponse) GetOrgRole

GetOrgRole returns the OrgRole field value if set, zero value otherwise.

func (*SpaceCreatedBffResponse) GetOrgRoleOk

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

func (*SpaceCreatedBffResponse) GetSpace

GetSpace returns the Space field value

func (*SpaceCreatedBffResponse) GetSpaceOk

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

func (*SpaceCreatedBffResponse) GetSpaceRole

GetSpaceRole returns the SpaceRole field value

func (*SpaceCreatedBffResponse) GetSpaceRoleOk

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

func (*SpaceCreatedBffResponse) HasOrgRole

func (o *SpaceCreatedBffResponse) HasOrgRole() bool

HasOrgRole returns a boolean if a field has been set.

func (*SpaceCreatedBffResponse) SetOrgRole

SetOrgRole gets a reference to the given OrgRoleResponse and assigns it to the OrgRole field.

func (*SpaceCreatedBffResponse) SetSpace

SetSpace sets field value

func (*SpaceCreatedBffResponse) SetSpaceRole

SetSpaceRole sets field value

func (SpaceCreatedBffResponse) ToMap

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

type SpaceCreatedBffResponseGetOrgRoleArgType

type SpaceCreatedBffResponseGetOrgRoleArgType = OrgRoleResponse

type SpaceCreatedBffResponseGetOrgRoleAttributeType

type SpaceCreatedBffResponseGetOrgRoleAttributeType = *OrgRoleResponse

isModel

type SpaceCreatedBffResponseGetOrgRoleRetType

type SpaceCreatedBffResponseGetOrgRoleRetType = OrgRoleResponse

type SpaceCreatedBffResponseGetSpaceArgType

type SpaceCreatedBffResponseGetSpaceArgType = Space

type SpaceCreatedBffResponseGetSpaceAttributeType

type SpaceCreatedBffResponseGetSpaceAttributeType = *Space

isModel

type SpaceCreatedBffResponseGetSpaceRetType

type SpaceCreatedBffResponseGetSpaceRetType = Space

type SpaceCreatedBffResponseGetSpaceRoleArgType

type SpaceCreatedBffResponseGetSpaceRoleArgType = SpaceRoleCreateResponse

type SpaceCreatedBffResponseGetSpaceRoleAttributeType

type SpaceCreatedBffResponseGetSpaceRoleAttributeType = *SpaceRoleCreateResponse

isModel

type SpaceCreatedBffResponseGetSpaceRoleRetType

type SpaceCreatedBffResponseGetSpaceRoleRetType = SpaceRoleCreateResponse

type SpaceDeleteResponse

type SpaceDeleteResponse struct {
	// REQUIRED
	Message SpaceDeleteResponseGetMessageAttributeType `json:"message" required:"true"`
}

SpaceDeleteResponse struct for SpaceDeleteResponse

func NewSpaceDeleteResponse

func NewSpaceDeleteResponse(message SpaceDeleteResponseGetMessageArgType) *SpaceDeleteResponse

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

func NewSpaceDeleteResponseWithDefaults

func NewSpaceDeleteResponseWithDefaults() *SpaceDeleteResponse

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

func (*SpaceDeleteResponse) GetMessage

GetMessage returns the Message field value

func (*SpaceDeleteResponse) GetMessageOk

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

func (*SpaceDeleteResponse) SetMessage

SetMessage sets field value

func (SpaceDeleteResponse) ToMap

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

type SpaceDeleteResponseGetMessageArgType

type SpaceDeleteResponseGetMessageArgType = string

type SpaceDeleteResponseGetMessageAttributeType

type SpaceDeleteResponseGetMessageAttributeType = *string

isNotNullableString

type SpaceDeleteResponseGetMessageRetType

type SpaceDeleteResponseGetMessageRetType = string

type SpaceGetCreatedAtArgType

type SpaceGetCreatedAtArgType = time.Time

type SpaceGetCreatedAtAttributeType

type SpaceGetCreatedAtAttributeType = *time.Time

isDateTime

type SpaceGetCreatedAtRetType

type SpaceGetCreatedAtRetType = time.Time

type SpaceGetGuidArgType

type SpaceGetGuidArgType = string

type SpaceGetGuidAttributeType

type SpaceGetGuidAttributeType = *string

isNotNullableString

type SpaceGetGuidRetType

type SpaceGetGuidRetType = string

type SpaceGetNameArgType

type SpaceGetNameArgType = string

type SpaceGetNameAttributeType

type SpaceGetNameAttributeType = *string

isNotNullableString

type SpaceGetNameRetType

type SpaceGetNameRetType = string

type SpaceGetOrgIdArgType

type SpaceGetOrgIdArgType = string

type SpaceGetOrgIdAttributeType

type SpaceGetOrgIdAttributeType = *string

isNotNullableString

type SpaceGetOrgIdRetType

type SpaceGetOrgIdRetType = string

type SpaceGetPlatformIdArgType

type SpaceGetPlatformIdArgType = string

type SpaceGetPlatformIdAttributeType

type SpaceGetPlatformIdAttributeType = *string

isNotNullableString

type SpaceGetPlatformIdRetType

type SpaceGetPlatformIdRetType = string

type SpaceGetProjectIdArgType

type SpaceGetProjectIdArgType = string

type SpaceGetProjectIdAttributeType

type SpaceGetProjectIdAttributeType = *string

isNotNullableString

type SpaceGetProjectIdRetType

type SpaceGetProjectIdRetType = string

type SpaceGetRegionArgType

type SpaceGetRegionArgType = string

type SpaceGetRegionAttributeType

type SpaceGetRegionAttributeType = *string

isNotNullableString

type SpaceGetRegionRetType

type SpaceGetRegionRetType = string

type SpaceGetUpdatedAtArgType

type SpaceGetUpdatedAtArgType = time.Time

type SpaceGetUpdatedAtAttributeType

type SpaceGetUpdatedAtAttributeType = *time.Time

isDateTime

type SpaceGetUpdatedAtRetType

type SpaceGetUpdatedAtRetType = time.Time

type SpaceRoleCreateBffRequest

type SpaceRoleCreateBffRequest struct {
	// REQUIRED
	Type SpaceRoleCreateBffRequestGetTypeAttributeType `json:"type" required:"true"`
}

SpaceRoleCreateBffRequest struct for SpaceRoleCreateBffRequest

func NewSpaceRoleCreateBffRequest

func NewSpaceRoleCreateBffRequest(types SpaceRoleCreateBffRequestGetTypeArgType) *SpaceRoleCreateBffRequest

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

func NewSpaceRoleCreateBffRequestWithDefaults

func NewSpaceRoleCreateBffRequestWithDefaults() *SpaceRoleCreateBffRequest

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

func (*SpaceRoleCreateBffRequest) GetType

GetType returns the Type field value

func (*SpaceRoleCreateBffRequest) GetTypeOk

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

func (*SpaceRoleCreateBffRequest) SetType

SetType sets field value

func (SpaceRoleCreateBffRequest) ToMap

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

type SpaceRoleCreateBffRequestGetTypeArgType

type SpaceRoleCreateBffRequestGetTypeArgType = SpaceRoleType

type SpaceRoleCreateBffRequestGetTypeAttributeType

type SpaceRoleCreateBffRequestGetTypeAttributeType = *SpaceRoleType

isEnumRef

type SpaceRoleCreateBffRequestGetTypeRetType

type SpaceRoleCreateBffRequestGetTypeRetType = SpaceRoleType

type SpaceRoleCreateBffResponse

type SpaceRoleCreateBffResponse struct {
	OrgRole SpaceRoleCreateBffResponseGetOrgRoleAttributeType `json:"orgRole,omitempty"`
	// REQUIRED
	SpaceRole SpaceRoleCreateBffResponseGetSpaceRoleAttributeType `json:"spaceRole" required:"true"`
}

SpaceRoleCreateBffResponse struct for SpaceRoleCreateBffResponse

func NewSpaceRoleCreateBffResponse

func NewSpaceRoleCreateBffResponse(spaceRole SpaceRoleCreateBffResponseGetSpaceRoleArgType) *SpaceRoleCreateBffResponse

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

func NewSpaceRoleCreateBffResponseWithDefaults

func NewSpaceRoleCreateBffResponseWithDefaults() *SpaceRoleCreateBffResponse

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

func (*SpaceRoleCreateBffResponse) GetOrgRole

GetOrgRole returns the OrgRole field value if set, zero value otherwise.

func (*SpaceRoleCreateBffResponse) GetOrgRoleOk

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

func (*SpaceRoleCreateBffResponse) GetSpaceRole

GetSpaceRole returns the SpaceRole field value

func (*SpaceRoleCreateBffResponse) GetSpaceRoleOk

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

func (*SpaceRoleCreateBffResponse) HasOrgRole

func (o *SpaceRoleCreateBffResponse) HasOrgRole() bool

HasOrgRole returns a boolean if a field has been set.

func (*SpaceRoleCreateBffResponse) SetOrgRole

SetOrgRole gets a reference to the given OrgRoleResponse and assigns it to the OrgRole field.

func (*SpaceRoleCreateBffResponse) SetSpaceRole

SetSpaceRole sets field value

func (SpaceRoleCreateBffResponse) ToMap

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

type SpaceRoleCreateBffResponseGetOrgRoleArgType

type SpaceRoleCreateBffResponseGetOrgRoleArgType = OrgRoleResponse

type SpaceRoleCreateBffResponseGetOrgRoleAttributeType

type SpaceRoleCreateBffResponseGetOrgRoleAttributeType = *OrgRoleResponse

isModel

type SpaceRoleCreateBffResponseGetOrgRoleRetType

type SpaceRoleCreateBffResponseGetOrgRoleRetType = OrgRoleResponse

type SpaceRoleCreateBffResponseGetSpaceRoleArgType

type SpaceRoleCreateBffResponseGetSpaceRoleArgType = SpaceRoleCreateResponse

type SpaceRoleCreateBffResponseGetSpaceRoleAttributeType

type SpaceRoleCreateBffResponseGetSpaceRoleAttributeType = *SpaceRoleCreateResponse

isModel

type SpaceRoleCreateBffResponseGetSpaceRoleRetType

type SpaceRoleCreateBffResponseGetSpaceRoleRetType = SpaceRoleCreateResponse

type SpaceRoleCreateResponse

type SpaceRoleCreateResponse struct {
	// REQUIRED
	Guid SpaceRoleCreateResponseGetGuidAttributeType `json:"guid" required:"true"`
	// REQUIRED
	OrgId SpaceRoleCreateResponseGetOrgIdAttributeType `json:"orgId" required:"true"`
	// REQUIRED
	PlatformId SpaceRoleCreateResponseGetPlatformIdAttributeType `json:"platformId" required:"true"`
	// REQUIRED
	ProjectId SpaceRoleCreateResponseGetProjectIdAttributeType `json:"projectId" required:"true"`
	// REQUIRED
	Region SpaceRoleCreateResponseGetRegionAttributeType `json:"region" required:"true"`
	// REQUIRED
	SpaceId SpaceRoleCreateResponseGetSpaceIdAttributeType `json:"spaceId" required:"true"`
	// REQUIRED
	Type SpaceRoleCreateResponseGetTypeAttributeType `json:"type" required:"true"`
}

SpaceRoleCreateResponse struct for SpaceRoleCreateResponse

func NewSpaceRoleCreateResponse

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

func NewSpaceRoleCreateResponseWithDefaults

func NewSpaceRoleCreateResponseWithDefaults() *SpaceRoleCreateResponse

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

func (*SpaceRoleCreateResponse) GetGuid

GetGuid returns the Guid field value

func (*SpaceRoleCreateResponse) GetGuidOk

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

func (*SpaceRoleCreateResponse) GetOrgId

GetOrgId returns the OrgId field value

func (*SpaceRoleCreateResponse) GetOrgIdOk

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

func (*SpaceRoleCreateResponse) GetPlatformId

GetPlatformId returns the PlatformId field value

func (*SpaceRoleCreateResponse) GetPlatformIdOk

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

func (*SpaceRoleCreateResponse) GetProjectId

GetProjectId returns the ProjectId field value

func (*SpaceRoleCreateResponse) GetProjectIdOk

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

func (*SpaceRoleCreateResponse) GetRegion

GetRegion returns the Region field value

func (*SpaceRoleCreateResponse) GetRegionOk

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

func (*SpaceRoleCreateResponse) GetSpaceId

GetSpaceId returns the SpaceId field value

func (*SpaceRoleCreateResponse) GetSpaceIdOk

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

func (*SpaceRoleCreateResponse) GetType

GetType returns the Type field value

func (*SpaceRoleCreateResponse) GetTypeOk

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

func (*SpaceRoleCreateResponse) SetGuid

SetGuid sets field value

func (*SpaceRoleCreateResponse) SetOrgId

SetOrgId sets field value

func (*SpaceRoleCreateResponse) SetPlatformId

SetPlatformId sets field value

func (*SpaceRoleCreateResponse) SetProjectId

SetProjectId sets field value

func (*SpaceRoleCreateResponse) SetRegion

SetRegion sets field value

func (*SpaceRoleCreateResponse) SetSpaceId

SetSpaceId sets field value

func (*SpaceRoleCreateResponse) SetType

SetType sets field value

func (SpaceRoleCreateResponse) ToMap

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

type SpaceRoleCreateResponseGetGuidArgType

type SpaceRoleCreateResponseGetGuidArgType = string

type SpaceRoleCreateResponseGetGuidAttributeType

type SpaceRoleCreateResponseGetGuidAttributeType = *string

isNotNullableString

type SpaceRoleCreateResponseGetGuidRetType

type SpaceRoleCreateResponseGetGuidRetType = string

type SpaceRoleCreateResponseGetOrgIdArgType

type SpaceRoleCreateResponseGetOrgIdArgType = string

type SpaceRoleCreateResponseGetOrgIdAttributeType

type SpaceRoleCreateResponseGetOrgIdAttributeType = *string

isNotNullableString

type SpaceRoleCreateResponseGetOrgIdRetType

type SpaceRoleCreateResponseGetOrgIdRetType = string

type SpaceRoleCreateResponseGetPlatformIdArgType

type SpaceRoleCreateResponseGetPlatformIdArgType = string

type SpaceRoleCreateResponseGetPlatformIdAttributeType

type SpaceRoleCreateResponseGetPlatformIdAttributeType = *string

isNotNullableString

type SpaceRoleCreateResponseGetPlatformIdRetType

type SpaceRoleCreateResponseGetPlatformIdRetType = string

type SpaceRoleCreateResponseGetProjectIdArgType

type SpaceRoleCreateResponseGetProjectIdArgType = string

type SpaceRoleCreateResponseGetProjectIdAttributeType

type SpaceRoleCreateResponseGetProjectIdAttributeType = *string

isNotNullableString

type SpaceRoleCreateResponseGetProjectIdRetType

type SpaceRoleCreateResponseGetProjectIdRetType = string

type SpaceRoleCreateResponseGetRegionArgType

type SpaceRoleCreateResponseGetRegionArgType = string

type SpaceRoleCreateResponseGetRegionAttributeType

type SpaceRoleCreateResponseGetRegionAttributeType = *string

isNotNullableString

type SpaceRoleCreateResponseGetRegionRetType

type SpaceRoleCreateResponseGetRegionRetType = string

type SpaceRoleCreateResponseGetSpaceIdArgType

type SpaceRoleCreateResponseGetSpaceIdArgType = string

type SpaceRoleCreateResponseGetSpaceIdAttributeType

type SpaceRoleCreateResponseGetSpaceIdAttributeType = *string

isNotNullableString

type SpaceRoleCreateResponseGetSpaceIdRetType

type SpaceRoleCreateResponseGetSpaceIdRetType = string

type SpaceRoleCreateResponseGetTypeArgType

type SpaceRoleCreateResponseGetTypeArgType = SpaceRoleType

type SpaceRoleCreateResponseGetTypeAttributeType

type SpaceRoleCreateResponseGetTypeAttributeType = *SpaceRoleType

isEnumRef

type SpaceRoleCreateResponseGetTypeRetType

type SpaceRoleCreateResponseGetTypeRetType = SpaceRoleType

type SpaceRoleType

type SpaceRoleType string

SpaceRoleType the model 'SpaceRoleType'

const (
	SPACEROLETYPE_AUDITOR   SpaceRoleType = "space_auditor"
	SPACEROLETYPE_DEVELOPER SpaceRoleType = "space_developer"
	SPACEROLETYPE_MANAGER   SpaceRoleType = "space_manager"
	SPACEROLETYPE_SUPPORTER SpaceRoleType = "space_supporter"
)

List of SpaceRoleType

func NewSpaceRoleTypeFromValue

func NewSpaceRoleTypeFromValue(v string) (*SpaceRoleType, error)

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

func (SpaceRoleType) IsValid

func (v SpaceRoleType) IsValid() bool

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

func (SpaceRoleType) Ptr

func (v SpaceRoleType) Ptr() *SpaceRoleType

Ptr returns reference to SpaceRoleType value

func (*SpaceRoleType) UnmarshalJSON

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

type SpacesList

type SpacesList struct {
	// REQUIRED
	Pagination SpacesListGetPaginationAttributeType `json:"pagination" required:"true"`
	// REQUIRED
	Resources SpacesListGetResourcesAttributeType `json:"resources" required:"true"`
}

SpacesList struct for SpacesList

func NewSpacesList

func NewSpacesList(pagination SpacesListGetPaginationArgType, resources SpacesListGetResourcesArgType) *SpacesList

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

func NewSpacesListWithDefaults

func NewSpacesListWithDefaults() *SpacesList

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

func (*SpacesList) GetPagination

func (o *SpacesList) GetPagination() (ret SpacesListGetPaginationRetType)

GetPagination returns the Pagination field value

func (*SpacesList) GetPaginationOk

func (o *SpacesList) GetPaginationOk() (ret SpacesListGetPaginationRetType, ok bool)

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

func (*SpacesList) GetResources

func (o *SpacesList) GetResources() (ret SpacesListGetResourcesRetType)

GetResources returns the Resources field value

func (*SpacesList) GetResourcesOk

func (o *SpacesList) GetResourcesOk() (ret SpacesListGetResourcesRetType, ok bool)

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

func (*SpacesList) SetPagination

func (o *SpacesList) SetPagination(v SpacesListGetPaginationRetType)

SetPagination sets field value

func (*SpacesList) SetResources

func (o *SpacesList) SetResources(v SpacesListGetResourcesRetType)

SetResources sets field value

func (SpacesList) ToMap

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

type SpacesListGetPaginationArgType

type SpacesListGetPaginationArgType = Pagination

type SpacesListGetPaginationAttributeType

type SpacesListGetPaginationAttributeType = *Pagination

isModel

type SpacesListGetPaginationRetType

type SpacesListGetPaginationRetType = Pagination

type SpacesListGetResourcesArgType

type SpacesListGetResourcesArgType = []Space

type SpacesListGetResourcesAttributeType

type SpacesListGetResourcesAttributeType = *[]Space

isArray

type SpacesListGetResourcesRetType

type SpacesListGetResourcesRetType = []Space

type UpdateOrganizationPayload

type UpdateOrganizationPayload struct {
	// Name of the organization
	Name      UpdateOrganizationPayloadGetNameAttributeType      `json:"name,omitempty"`
	Suspended UpdateOrganizationPayloadgetSuspendedAttributeType `json:"suspended,omitempty"`
}

UpdateOrganizationPayload struct for UpdateOrganizationPayload

func NewUpdateOrganizationPayload

func NewUpdateOrganizationPayload() *UpdateOrganizationPayload

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

func NewUpdateOrganizationPayloadWithDefaults

func NewUpdateOrganizationPayloadWithDefaults() *UpdateOrganizationPayload

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

func (*UpdateOrganizationPayload) GetName

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

func (*UpdateOrganizationPayload) 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 (*UpdateOrganizationPayload) GetSuspended

GetSuspended returns the Suspended field value if set, zero value otherwise.

func (*UpdateOrganizationPayload) GetSuspendedOk

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

func (*UpdateOrganizationPayload) HasName

func (o *UpdateOrganizationPayload) HasName() bool

HasName returns a boolean if a field has been set.

func (*UpdateOrganizationPayload) HasSuspended

func (o *UpdateOrganizationPayload) HasSuspended() bool

HasSuspended returns a boolean if a field has been set.

func (*UpdateOrganizationPayload) SetName

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

func (*UpdateOrganizationPayload) SetSuspended

SetSuspended gets a reference to the given bool and assigns it to the Suspended field.

func (UpdateOrganizationPayload) ToMap

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

type UpdateOrganizationPayloadGetNameArgType

type UpdateOrganizationPayloadGetNameArgType = string

type UpdateOrganizationPayloadGetNameAttributeType

type UpdateOrganizationPayloadGetNameAttributeType = *string

isNotNullableString

type UpdateOrganizationPayloadGetNameRetType

type UpdateOrganizationPayloadGetNameRetType = string

type UpdateOrganizationPayloadgetSuspendedArgType

type UpdateOrganizationPayloadgetSuspendedArgType = bool

type UpdateOrganizationPayloadgetSuspendedAttributeType

type UpdateOrganizationPayloadgetSuspendedAttributeType = *bool

isBoolean

type UpdateOrganizationPayloadgetSuspendedRetType

type UpdateOrganizationPayloadgetSuspendedRetType = bool

type UpdateOrganizationRequest

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

func (UpdateOrganizationRequest) Execute

func (UpdateOrganizationRequest) UpdateOrganizationPayload

func (r UpdateOrganizationRequest) UpdateOrganizationPayload(updateOrganizationPayload UpdateOrganizationPayload) ApiUpdateOrganizationRequest

type UpdateSpacePayload

type UpdateSpacePayload struct {
	// Name of the space
	// REQUIRED
	Name UpdateSpacePayloadGetNameAttributeType `json:"name" required:"true"`
}

UpdateSpacePayload struct for UpdateSpacePayload

func NewUpdateSpacePayload

func NewUpdateSpacePayload(name UpdateSpacePayloadGetNameArgType) *UpdateSpacePayload

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

func NewUpdateSpacePayloadWithDefaults

func NewUpdateSpacePayloadWithDefaults() *UpdateSpacePayload

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

func (*UpdateSpacePayload) GetName

GetName returns the Name field value

func (*UpdateSpacePayload) GetNameOk

func (o *UpdateSpacePayload) GetNameOk() (ret UpdateSpacePayloadGetNameRetType, ok bool)

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

func (*UpdateSpacePayload) SetName

SetName sets field value

func (UpdateSpacePayload) ToMap

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

type UpdateSpacePayloadGetNameArgType

type UpdateSpacePayloadGetNameArgType = string

type UpdateSpacePayloadGetNameAttributeType

type UpdateSpacePayloadGetNameAttributeType = *string

isNotNullableString

type UpdateSpacePayloadGetNameRetType

type UpdateSpacePayloadGetNameRetType = string

type UpdateSpaceRequest

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

func (UpdateSpaceRequest) Execute

func (r UpdateSpaceRequest) Execute() (*Space, error)

func (UpdateSpaceRequest) UpdateSpacePayload

func (r UpdateSpaceRequest) UpdateSpacePayload(updateSpacePayload UpdateSpacePayload) ApiUpdateSpaceRequest

type UsageSummary

type UsageSummary struct {
	// REQUIRED
	Domains UsageSummaryGetDomainsAttributeType `json:"domains" required:"true"`
	// REQUIRED
	MemoryInMb UsageSummaryGetMemoryInMbAttributeType `json:"memoryInMb" required:"true"`
	// REQUIRED
	PerAppTasks UsageSummaryGetPerAppTasksAttributeType `json:"perAppTasks" required:"true"`
	// REQUIRED
	ReservedPorts UsageSummaryGetReservedPortsAttributeType `json:"reservedPorts" required:"true"`
	// REQUIRED
	Routes UsageSummaryGetRoutesAttributeType `json:"routes" required:"true"`
	// REQUIRED
	ServiceInstances UsageSummaryGetServiceInstancesAttributeType `json:"serviceInstances" required:"true"`
	// REQUIRED
	ServiceKeys UsageSummaryGetServiceKeysAttributeType `json:"serviceKeys" required:"true"`
	// REQUIRED
	StartedInstances UsageSummaryGetStartedInstancesAttributeType `json:"startedInstances" required:"true"`
}

UsageSummary struct for UsageSummary

func NewUsageSummary

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

func NewUsageSummaryWithDefaults

func NewUsageSummaryWithDefaults() *UsageSummary

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

func (*UsageSummary) GetDomains

func (o *UsageSummary) GetDomains() (ret UsageSummaryGetDomainsRetType)

GetDomains returns the Domains field value

func (*UsageSummary) GetDomainsOk

func (o *UsageSummary) GetDomainsOk() (ret UsageSummaryGetDomainsRetType, ok bool)

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

func (*UsageSummary) GetMemoryInMb

func (o *UsageSummary) GetMemoryInMb() (ret UsageSummaryGetMemoryInMbRetType)

GetMemoryInMb returns the MemoryInMb field value

func (*UsageSummary) GetMemoryInMbOk

func (o *UsageSummary) GetMemoryInMbOk() (ret UsageSummaryGetMemoryInMbRetType, ok bool)

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

func (*UsageSummary) GetPerAppTasks

func (o *UsageSummary) GetPerAppTasks() (ret UsageSummaryGetPerAppTasksRetType)

GetPerAppTasks returns the PerAppTasks field value

func (*UsageSummary) GetPerAppTasksOk

func (o *UsageSummary) GetPerAppTasksOk() (ret UsageSummaryGetPerAppTasksRetType, ok bool)

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

func (*UsageSummary) GetReservedPorts

func (o *UsageSummary) GetReservedPorts() (ret UsageSummaryGetReservedPortsRetType)

GetReservedPorts returns the ReservedPorts field value

func (*UsageSummary) GetReservedPortsOk

func (o *UsageSummary) GetReservedPortsOk() (ret UsageSummaryGetReservedPortsRetType, ok bool)

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

func (*UsageSummary) GetRoutes

func (o *UsageSummary) GetRoutes() (ret UsageSummaryGetRoutesRetType)

GetRoutes returns the Routes field value

func (*UsageSummary) GetRoutesOk

func (o *UsageSummary) GetRoutesOk() (ret UsageSummaryGetRoutesRetType, ok bool)

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

func (*UsageSummary) GetServiceInstances

func (o *UsageSummary) GetServiceInstances() (ret UsageSummaryGetServiceInstancesRetType)

GetServiceInstances returns the ServiceInstances field value

func (*UsageSummary) GetServiceInstancesOk

func (o *UsageSummary) GetServiceInstancesOk() (ret UsageSummaryGetServiceInstancesRetType, ok bool)

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

func (*UsageSummary) GetServiceKeys

func (o *UsageSummary) GetServiceKeys() (ret UsageSummaryGetServiceKeysRetType)

GetServiceKeys returns the ServiceKeys field value

func (*UsageSummary) GetServiceKeysOk

func (o *UsageSummary) GetServiceKeysOk() (ret UsageSummaryGetServiceKeysRetType, ok bool)

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

func (*UsageSummary) GetStartedInstances

func (o *UsageSummary) GetStartedInstances() (ret UsageSummaryGetStartedInstancesRetType)

GetStartedInstances returns the StartedInstances field value

func (*UsageSummary) GetStartedInstancesOk

func (o *UsageSummary) GetStartedInstancesOk() (ret UsageSummaryGetStartedInstancesRetType, ok bool)

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

func (*UsageSummary) SetDomains

SetDomains sets field value

func (*UsageSummary) SetMemoryInMb

func (o *UsageSummary) SetMemoryInMb(v UsageSummaryGetMemoryInMbRetType)

SetMemoryInMb sets field value

func (*UsageSummary) SetPerAppTasks

func (o *UsageSummary) SetPerAppTasks(v UsageSummaryGetPerAppTasksRetType)

SetPerAppTasks sets field value

func (*UsageSummary) SetReservedPorts

func (o *UsageSummary) SetReservedPorts(v UsageSummaryGetReservedPortsRetType)

SetReservedPorts sets field value

func (*UsageSummary) SetRoutes

SetRoutes sets field value

func (*UsageSummary) SetServiceInstances

func (o *UsageSummary) SetServiceInstances(v UsageSummaryGetServiceInstancesRetType)

SetServiceInstances sets field value

func (*UsageSummary) SetServiceKeys

func (o *UsageSummary) SetServiceKeys(v UsageSummaryGetServiceKeysRetType)

SetServiceKeys sets field value

func (*UsageSummary) SetStartedInstances

func (o *UsageSummary) SetStartedInstances(v UsageSummaryGetStartedInstancesRetType)

SetStartedInstances sets field value

func (UsageSummary) ToMap

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

type UsageSummaryGetDomainsArgType

type UsageSummaryGetDomainsArgType = int64

type UsageSummaryGetDomainsAttributeType

type UsageSummaryGetDomainsAttributeType = *int64

isLong

type UsageSummaryGetDomainsRetType

type UsageSummaryGetDomainsRetType = int64

type UsageSummaryGetMemoryInMbArgType

type UsageSummaryGetMemoryInMbArgType = int64

type UsageSummaryGetMemoryInMbAttributeType

type UsageSummaryGetMemoryInMbAttributeType = *int64

isLong

type UsageSummaryGetMemoryInMbRetType

type UsageSummaryGetMemoryInMbRetType = int64

type UsageSummaryGetPerAppTasksArgType

type UsageSummaryGetPerAppTasksArgType = int64

type UsageSummaryGetPerAppTasksAttributeType

type UsageSummaryGetPerAppTasksAttributeType = *int64

isLong

type UsageSummaryGetPerAppTasksRetType

type UsageSummaryGetPerAppTasksRetType = int64

type UsageSummaryGetReservedPortsArgType

type UsageSummaryGetReservedPortsArgType = int64

type UsageSummaryGetReservedPortsAttributeType

type UsageSummaryGetReservedPortsAttributeType = *int64

isLong

type UsageSummaryGetReservedPortsRetType

type UsageSummaryGetReservedPortsRetType = int64

type UsageSummaryGetRoutesArgType

type UsageSummaryGetRoutesArgType = int64

type UsageSummaryGetRoutesAttributeType

type UsageSummaryGetRoutesAttributeType = *int64

isLong

type UsageSummaryGetRoutesRetType

type UsageSummaryGetRoutesRetType = int64

type UsageSummaryGetServiceInstancesArgType

type UsageSummaryGetServiceInstancesArgType = int64

type UsageSummaryGetServiceInstancesAttributeType

type UsageSummaryGetServiceInstancesAttributeType = *int64

isLong

type UsageSummaryGetServiceInstancesRetType

type UsageSummaryGetServiceInstancesRetType = int64

type UsageSummaryGetServiceKeysArgType

type UsageSummaryGetServiceKeysArgType = int64

type UsageSummaryGetServiceKeysAttributeType

type UsageSummaryGetServiceKeysAttributeType = *int64

isLong

type UsageSummaryGetServiceKeysRetType

type UsageSummaryGetServiceKeysRetType = int64

type UsageSummaryGetStartedInstancesArgType

type UsageSummaryGetStartedInstancesArgType = int64

type UsageSummaryGetStartedInstancesAttributeType

type UsageSummaryGetStartedInstancesAttributeType = *int64

isLong

type UsageSummaryGetStartedInstancesRetType

type UsageSummaryGetStartedInstancesRetType = int64

Jump to

Keyboard shortcuts

? : This menu
/ : Search site
f or F : Jump to
y or Y : Canonical URL