Versions in this module Expand all Collapse all v0 v0.19.0 Mar 4, 2026 Changes in this version + var AllowedLifecycleStateEnumValues = []LifecycleState + var JsonCheck = regexp.MustCompile(`(?i:(?:application|text)/(?:[^;]+\+)?json)`) + var XmlCheck = regexp.MustCompile(`(?i:(?:application|text)/(?:[^;]+\+)?xml)`) + func CacheExpires(r *http.Response) time.Time + func IsNil(i interface{}) bool + func NewConfiguration() *config.Configuration + func PtrBool(v bool) *bool + func PtrFloat32(v float32) *float32 + func PtrFloat64(v float64) *float64 + func PtrInt(v int) *int + func PtrInt32(v int32) *int32 + func PtrInt64(v int64) *int64 + func PtrString(v string) *string + func PtrTime(v time.Time) *time.Time + type APIClient struct + DefaultAPI DefaultAPI + func NewAPIClient(opts ...config.ConfigurationOption) (*APIClient, error) + func (c *APIClient) GetConfig() *config.Configuration + type APIResponse struct + Message string + Method string + Operation string + Payload []byte + RequestURL string + func NewAPIResponse(r *http.Response) *APIResponse + func NewAPIResponseWithError(errorMessage string) *APIResponse + type ApiCreateFolderRequest struct + ApiService DefaultAPI + func (r ApiCreateFolderRequest) CreateFolderPayload(createFolderPayload CreateFolderPayload) ApiCreateFolderRequest + func (r ApiCreateFolderRequest) Execute() (*FolderResponse, error) + type ApiCreateProjectRequest struct + ApiService DefaultAPI + func (r ApiCreateProjectRequest) CreateProjectPayload(createProjectPayload CreateProjectPayload) ApiCreateProjectRequest + func (r ApiCreateProjectRequest) Execute() (*Project, error) + type ApiDeleteFolderLabelsRequest struct + ApiService DefaultAPI + func (r ApiDeleteFolderLabelsRequest) Execute() error + func (r ApiDeleteFolderLabelsRequest) Keys(keys []string) ApiDeleteFolderLabelsRequest + type ApiDeleteFolderRequest struct + ApiService DefaultAPI + func (r ApiDeleteFolderRequest) Execute() error + func (r ApiDeleteFolderRequest) Force(force bool) ApiDeleteFolderRequest + type ApiDeleteOrganizationLabelsRequest struct + ApiService DefaultAPI + func (r ApiDeleteOrganizationLabelsRequest) Execute() error + func (r ApiDeleteOrganizationLabelsRequest) Keys(keys []string) ApiDeleteOrganizationLabelsRequest + type ApiDeleteProjectLabelsRequest struct + ApiService DefaultAPI + func (r ApiDeleteProjectLabelsRequest) Execute() error + func (r ApiDeleteProjectLabelsRequest) Keys(keys []string) ApiDeleteProjectLabelsRequest + type ApiDeleteProjectRequest struct + ApiService DefaultAPI + func (r ApiDeleteProjectRequest) Execute() error + type ApiGetFolderDetailsRequest struct + ApiService DefaultAPI + func (r ApiGetFolderDetailsRequest) Execute() (*GetFolderDetailsResponse, error) + func (r ApiGetFolderDetailsRequest) IncludeParents(includeParents bool) ApiGetFolderDetailsRequest + type ApiGetOrganizationRequest struct + ApiService DefaultAPI + func (r ApiGetOrganizationRequest) Execute() (*OrganizationResponse, error) + type ApiGetProjectRequest struct + ApiService DefaultAPI + func (r ApiGetProjectRequest) Execute() (*GetProjectResponse, error) + func (r ApiGetProjectRequest) IncludeParents(includeParents bool) ApiGetProjectRequest + type ApiListFoldersRequest struct + ApiService DefaultAPI + func (r ApiListFoldersRequest) ContainerIds(containerIds []string) ApiListFoldersRequest + func (r ApiListFoldersRequest) ContainerParentId(containerParentId string) ApiListFoldersRequest + func (r ApiListFoldersRequest) CreationTimeStart(creationTimeStart time.Time) ApiListFoldersRequest + func (r ApiListFoldersRequest) Execute() (*ListFoldersResponse, error) + func (r ApiListFoldersRequest) Limit(limit float32) ApiListFoldersRequest + func (r ApiListFoldersRequest) Member(member string) ApiListFoldersRequest + func (r ApiListFoldersRequest) Offset(offset float32) ApiListFoldersRequest + type ApiListOrganizationsRequest struct + ApiService DefaultAPI + func (r ApiListOrganizationsRequest) ContainerIds(containerIds []string) ApiListOrganizationsRequest + func (r ApiListOrganizationsRequest) CreationTimeStart(creationTimeStart time.Time) ApiListOrganizationsRequest + func (r ApiListOrganizationsRequest) Execute() (*ListOrganizationsResponse, error) + func (r ApiListOrganizationsRequest) Limit(limit float32) ApiListOrganizationsRequest + func (r ApiListOrganizationsRequest) Member(member string) ApiListOrganizationsRequest + func (r ApiListOrganizationsRequest) Offset(offset float32) ApiListOrganizationsRequest + type ApiListProjectsRequest struct + ApiService DefaultAPI + func (r ApiListProjectsRequest) ContainerIds(containerIds []string) ApiListProjectsRequest + func (r ApiListProjectsRequest) ContainerParentId(containerParentId string) ApiListProjectsRequest + func (r ApiListProjectsRequest) CreationTimeStart(creationTimeStart time.Time) ApiListProjectsRequest + func (r ApiListProjectsRequest) Execute() (*ListProjectsResponse, error) + func (r ApiListProjectsRequest) Limit(limit float32) ApiListProjectsRequest + func (r ApiListProjectsRequest) Member(member string) ApiListProjectsRequest + func (r ApiListProjectsRequest) Offset(offset float32) ApiListProjectsRequest + type ApiPartialUpdateFolderRequest struct + ApiService DefaultAPI + func (r ApiPartialUpdateFolderRequest) Execute() (*FolderResponse, error) + func (r ApiPartialUpdateFolderRequest) PartialUpdateFolderPayload(partialUpdateFolderPayload PartialUpdateFolderPayload) ApiPartialUpdateFolderRequest + type ApiPartialUpdateOrganizationRequest struct + ApiService DefaultAPI + func (r ApiPartialUpdateOrganizationRequest) Execute() (*OrganizationResponse, error) + func (r ApiPartialUpdateOrganizationRequest) PartialUpdateOrganizationPayload(partialUpdateOrganizationPayload PartialUpdateOrganizationPayload) ApiPartialUpdateOrganizationRequest + type ApiPartialUpdateProjectRequest struct + ApiService DefaultAPI + func (r ApiPartialUpdateProjectRequest) Execute() (*Project, error) + func (r ApiPartialUpdateProjectRequest) PartialUpdateProjectPayload(partialUpdateProjectPayload PartialUpdateProjectPayload) ApiPartialUpdateProjectRequest + type ContainerSearchResult struct + ContainerId string + ContainerType string + Id string + LifecycleState *LifecycleState + Name string + OrganizationId *string + func NewContainerSearchResult(containerId string, containerType string, id string, name string) *ContainerSearchResult + func NewContainerSearchResultWithDefaults() *ContainerSearchResult + func (o *ContainerSearchResult) GetContainerId() string + func (o *ContainerSearchResult) GetContainerIdOk() (*string, bool) + func (o *ContainerSearchResult) GetContainerType() string + func (o *ContainerSearchResult) GetContainerTypeOk() (*string, bool) + func (o *ContainerSearchResult) GetId() string + func (o *ContainerSearchResult) GetIdOk() (*string, bool) + func (o *ContainerSearchResult) GetLifecycleState() LifecycleState + func (o *ContainerSearchResult) GetLifecycleStateOk() (*LifecycleState, bool) + func (o *ContainerSearchResult) GetName() string + func (o *ContainerSearchResult) GetNameOk() (*string, bool) + func (o *ContainerSearchResult) GetOrganizationId() string + func (o *ContainerSearchResult) GetOrganizationIdOk() (*string, bool) + func (o *ContainerSearchResult) HasLifecycleState() bool + func (o *ContainerSearchResult) HasOrganizationId() bool + func (o *ContainerSearchResult) SetContainerId(v string) + func (o *ContainerSearchResult) SetContainerType(v string) + func (o *ContainerSearchResult) SetId(v string) + func (o *ContainerSearchResult) SetLifecycleState(v LifecycleState) + func (o *ContainerSearchResult) SetName(v string) + func (o *ContainerSearchResult) SetOrganizationId(v string) + func (o *ContainerSearchResult) UnmarshalJSON(data []byte) (err error) + func (o ContainerSearchResult) MarshalJSON() ([]byte, error) + func (o ContainerSearchResult) ToMap() (map[string]interface{}, error) + type CreateFolderPayload struct + ContainerParentId string + Labels *map[string]string + Members []Member + Name string + func NewCreateFolderPayload(containerParentId string, name string) *CreateFolderPayload + func NewCreateFolderPayloadWithDefaults() *CreateFolderPayload + func (o *CreateFolderPayload) GetContainerParentId() string + func (o *CreateFolderPayload) GetContainerParentIdOk() (*string, bool) + func (o *CreateFolderPayload) GetLabels() map[string]string + func (o *CreateFolderPayload) GetLabelsOk() (*map[string]string, bool) + func (o *CreateFolderPayload) GetMembers() []Member + func (o *CreateFolderPayload) GetMembersOk() ([]Member, bool) + func (o *CreateFolderPayload) GetName() string + func (o *CreateFolderPayload) GetNameOk() (*string, bool) + func (o *CreateFolderPayload) HasLabels() bool + func (o *CreateFolderPayload) HasMembers() bool + func (o *CreateFolderPayload) SetContainerParentId(v string) + func (o *CreateFolderPayload) SetLabels(v map[string]string) + func (o *CreateFolderPayload) SetMembers(v []Member) + func (o *CreateFolderPayload) SetName(v string) + func (o *CreateFolderPayload) UnmarshalJSON(data []byte) (err error) + func (o CreateFolderPayload) MarshalJSON() ([]byte, error) + func (o CreateFolderPayload) ToMap() (map[string]interface{}, error) + type CreateProjectPayload struct + ContainerParentId string + Labels *map[string]string + Members []Member + Name string + func NewCreateProjectPayload(containerParentId string, members []Member, name string) *CreateProjectPayload + func NewCreateProjectPayloadWithDefaults() *CreateProjectPayload + func (o *CreateProjectPayload) GetContainerParentId() string + func (o *CreateProjectPayload) GetContainerParentIdOk() (*string, bool) + func (o *CreateProjectPayload) GetLabels() map[string]string + func (o *CreateProjectPayload) GetLabelsOk() (*map[string]string, bool) + func (o *CreateProjectPayload) GetMembers() []Member + func (o *CreateProjectPayload) GetMembersOk() ([]Member, bool) + func (o *CreateProjectPayload) GetName() string + func (o *CreateProjectPayload) GetNameOk() (*string, bool) + func (o *CreateProjectPayload) HasLabels() bool + func (o *CreateProjectPayload) SetContainerParentId(v string) + func (o *CreateProjectPayload) SetLabels(v map[string]string) + func (o *CreateProjectPayload) SetMembers(v []Member) + func (o *CreateProjectPayload) SetName(v string) + func (o *CreateProjectPayload) UnmarshalJSON(data []byte) (err error) + func (o CreateProjectPayload) MarshalJSON() ([]byte, error) + func (o CreateProjectPayload) ToMap() (map[string]interface{}, error) + type DefaultAPI interface + CreateFolder func(ctx context.Context) ApiCreateFolderRequest + CreateFolderExecute func(r ApiCreateFolderRequest) (*FolderResponse, error) + CreateProject func(ctx context.Context) ApiCreateProjectRequest + CreateProjectExecute func(r ApiCreateProjectRequest) (*Project, error) + DeleteFolder func(ctx context.Context, containerId string) ApiDeleteFolderRequest + DeleteFolderExecute func(r ApiDeleteFolderRequest) error + DeleteFolderLabels func(ctx context.Context, containerId string) ApiDeleteFolderLabelsRequest + DeleteFolderLabelsExecute func(r ApiDeleteFolderLabelsRequest) error + DeleteOrganizationLabels func(ctx context.Context, containerId string) ApiDeleteOrganizationLabelsRequest + DeleteOrganizationLabelsExecute func(r ApiDeleteOrganizationLabelsRequest) error + DeleteProject func(ctx context.Context, id string) ApiDeleteProjectRequest + DeleteProjectExecute func(r ApiDeleteProjectRequest) error + DeleteProjectLabels func(ctx context.Context, containerId string) ApiDeleteProjectLabelsRequest + DeleteProjectLabelsExecute func(r ApiDeleteProjectLabelsRequest) error + GetFolderDetails func(ctx context.Context, containerId string) ApiGetFolderDetailsRequest + GetFolderDetailsExecute func(r ApiGetFolderDetailsRequest) (*GetFolderDetailsResponse, error) + GetOrganization func(ctx context.Context, id string) ApiGetOrganizationRequest + GetOrganizationExecute func(r ApiGetOrganizationRequest) (*OrganizationResponse, error) + GetProject func(ctx context.Context, id string) ApiGetProjectRequest + GetProjectExecute func(r ApiGetProjectRequest) (*GetProjectResponse, error) + ListFolders func(ctx context.Context) ApiListFoldersRequest + ListFoldersExecute func(r ApiListFoldersRequest) (*ListFoldersResponse, error) + ListOrganizations func(ctx context.Context) ApiListOrganizationsRequest + ListOrganizationsExecute func(r ApiListOrganizationsRequest) (*ListOrganizationsResponse, error) + ListProjects func(ctx context.Context) ApiListProjectsRequest + ListProjectsExecute func(r ApiListProjectsRequest) (*ListProjectsResponse, error) + PartialUpdateFolder func(ctx context.Context, containerId string) ApiPartialUpdateFolderRequest + PartialUpdateFolderExecute func(r ApiPartialUpdateFolderRequest) (*FolderResponse, error) + PartialUpdateOrganization func(ctx context.Context, id string) ApiPartialUpdateOrganizationRequest + PartialUpdateOrganizationExecute func(r ApiPartialUpdateOrganizationRequest) (*OrganizationResponse, error) + PartialUpdateProject func(ctx context.Context, id string) ApiPartialUpdateProjectRequest + PartialUpdateProjectExecute func(r ApiPartialUpdateProjectRequest) (*Project, error) + type DefaultAPIService service + func (a *DefaultAPIService) CreateFolder(ctx context.Context) ApiCreateFolderRequest + func (a *DefaultAPIService) CreateFolderExecute(r ApiCreateFolderRequest) (*FolderResponse, error) + func (a *DefaultAPIService) CreateProject(ctx context.Context) ApiCreateProjectRequest + func (a *DefaultAPIService) CreateProjectExecute(r ApiCreateProjectRequest) (*Project, error) + func (a *DefaultAPIService) DeleteFolder(ctx context.Context, containerId string) ApiDeleteFolderRequest + func (a *DefaultAPIService) DeleteFolderExecute(r ApiDeleteFolderRequest) error + func (a *DefaultAPIService) DeleteFolderLabels(ctx context.Context, containerId string) ApiDeleteFolderLabelsRequest + func (a *DefaultAPIService) DeleteFolderLabelsExecute(r ApiDeleteFolderLabelsRequest) error + func (a *DefaultAPIService) DeleteOrganizationLabels(ctx context.Context, containerId string) ApiDeleteOrganizationLabelsRequest + func (a *DefaultAPIService) DeleteOrganizationLabelsExecute(r ApiDeleteOrganizationLabelsRequest) error + func (a *DefaultAPIService) DeleteProject(ctx context.Context, id string) ApiDeleteProjectRequest + func (a *DefaultAPIService) DeleteProjectExecute(r ApiDeleteProjectRequest) error + func (a *DefaultAPIService) DeleteProjectLabels(ctx context.Context, containerId string) ApiDeleteProjectLabelsRequest + func (a *DefaultAPIService) DeleteProjectLabelsExecute(r ApiDeleteProjectLabelsRequest) error + func (a *DefaultAPIService) GetFolderDetails(ctx context.Context, containerId string) ApiGetFolderDetailsRequest + func (a *DefaultAPIService) GetFolderDetailsExecute(r ApiGetFolderDetailsRequest) (*GetFolderDetailsResponse, error) + func (a *DefaultAPIService) GetOrganization(ctx context.Context, id string) ApiGetOrganizationRequest + func (a *DefaultAPIService) GetOrganizationExecute(r ApiGetOrganizationRequest) (*OrganizationResponse, error) + func (a *DefaultAPIService) GetProject(ctx context.Context, id string) ApiGetProjectRequest + func (a *DefaultAPIService) GetProjectExecute(r ApiGetProjectRequest) (*GetProjectResponse, error) + func (a *DefaultAPIService) ListFolders(ctx context.Context) ApiListFoldersRequest + func (a *DefaultAPIService) ListFoldersExecute(r ApiListFoldersRequest) (*ListFoldersResponse, error) + func (a *DefaultAPIService) ListOrganizations(ctx context.Context) ApiListOrganizationsRequest + func (a *DefaultAPIService) ListOrganizationsExecute(r ApiListOrganizationsRequest) (*ListOrganizationsResponse, error) + func (a *DefaultAPIService) ListProjects(ctx context.Context) ApiListProjectsRequest + func (a *DefaultAPIService) ListProjectsExecute(r ApiListProjectsRequest) (*ListProjectsResponse, error) + func (a *DefaultAPIService) PartialUpdateFolder(ctx context.Context, containerId string) ApiPartialUpdateFolderRequest + func (a *DefaultAPIService) PartialUpdateFolderExecute(r ApiPartialUpdateFolderRequest) (*FolderResponse, error) + func (a *DefaultAPIService) PartialUpdateOrganization(ctx context.Context, id string) ApiPartialUpdateOrganizationRequest + func (a *DefaultAPIService) PartialUpdateOrganizationExecute(r ApiPartialUpdateOrganizationRequest) (*OrganizationResponse, error) + func (a *DefaultAPIService) PartialUpdateProject(ctx context.Context, id string) ApiPartialUpdateProjectRequest + func (a *DefaultAPIService) PartialUpdateProjectExecute(r ApiPartialUpdateProjectRequest) (*Project, error) + type DefaultAPIServiceMock struct + CreateFolderExecuteMock *func(r ApiCreateFolderRequest) (*FolderResponse, error) + CreateProjectExecuteMock *func(r ApiCreateProjectRequest) (*Project, error) + DeleteFolderExecuteMock *func(r ApiDeleteFolderRequest) error + DeleteFolderLabelsExecuteMock *func(r ApiDeleteFolderLabelsRequest) error + DeleteOrganizationLabelsExecuteMock *func(r ApiDeleteOrganizationLabelsRequest) error + DeleteProjectExecuteMock *func(r ApiDeleteProjectRequest) error + DeleteProjectLabelsExecuteMock *func(r ApiDeleteProjectLabelsRequest) error + GetFolderDetailsExecuteMock *func(r ApiGetFolderDetailsRequest) (*GetFolderDetailsResponse, error) + GetOrganizationExecuteMock *func(r ApiGetOrganizationRequest) (*OrganizationResponse, error) + GetProjectExecuteMock *func(r ApiGetProjectRequest) (*GetProjectResponse, error) + ListFoldersExecuteMock *func(r ApiListFoldersRequest) (*ListFoldersResponse, error) + ListOrganizationsExecuteMock *func(r ApiListOrganizationsRequest) (*ListOrganizationsResponse, error) + ListProjectsExecuteMock *func(r ApiListProjectsRequest) (*ListProjectsResponse, error) + PartialUpdateFolderExecuteMock *func(r ApiPartialUpdateFolderRequest) (*FolderResponse, error) + PartialUpdateOrganizationExecuteMock *func(r ApiPartialUpdateOrganizationRequest) (*OrganizationResponse, error) + PartialUpdateProjectExecuteMock *func(r ApiPartialUpdateProjectRequest) (*Project, error) + func (a DefaultAPIServiceMock) CreateFolder(ctx context.Context) ApiCreateFolderRequest + func (a DefaultAPIServiceMock) CreateFolderExecute(r ApiCreateFolderRequest) (*FolderResponse, error) + func (a DefaultAPIServiceMock) CreateProject(ctx context.Context) ApiCreateProjectRequest + func (a DefaultAPIServiceMock) CreateProjectExecute(r ApiCreateProjectRequest) (*Project, error) + func (a DefaultAPIServiceMock) DeleteFolder(ctx context.Context, containerId string) ApiDeleteFolderRequest + func (a DefaultAPIServiceMock) DeleteFolderExecute(r ApiDeleteFolderRequest) error + func (a DefaultAPIServiceMock) DeleteFolderLabels(ctx context.Context, containerId string) ApiDeleteFolderLabelsRequest + func (a DefaultAPIServiceMock) DeleteFolderLabelsExecute(r ApiDeleteFolderLabelsRequest) error + func (a DefaultAPIServiceMock) DeleteOrganizationLabels(ctx context.Context, containerId string) ApiDeleteOrganizationLabelsRequest + func (a DefaultAPIServiceMock) DeleteOrganizationLabelsExecute(r ApiDeleteOrganizationLabelsRequest) error + func (a DefaultAPIServiceMock) DeleteProject(ctx context.Context, id string) ApiDeleteProjectRequest + func (a DefaultAPIServiceMock) DeleteProjectExecute(r ApiDeleteProjectRequest) error + func (a DefaultAPIServiceMock) DeleteProjectLabels(ctx context.Context, containerId string) ApiDeleteProjectLabelsRequest + func (a DefaultAPIServiceMock) DeleteProjectLabelsExecute(r ApiDeleteProjectLabelsRequest) error + func (a DefaultAPIServiceMock) GetFolderDetails(ctx context.Context, containerId string) ApiGetFolderDetailsRequest + func (a DefaultAPIServiceMock) GetFolderDetailsExecute(r ApiGetFolderDetailsRequest) (*GetFolderDetailsResponse, error) + func (a DefaultAPIServiceMock) GetOrganization(ctx context.Context, id string) ApiGetOrganizationRequest + func (a DefaultAPIServiceMock) GetOrganizationExecute(r ApiGetOrganizationRequest) (*OrganizationResponse, error) + func (a DefaultAPIServiceMock) GetProject(ctx context.Context, id string) ApiGetProjectRequest + func (a DefaultAPIServiceMock) GetProjectExecute(r ApiGetProjectRequest) (*GetProjectResponse, error) + func (a DefaultAPIServiceMock) ListFolders(ctx context.Context) ApiListFoldersRequest + func (a DefaultAPIServiceMock) ListFoldersExecute(r ApiListFoldersRequest) (*ListFoldersResponse, error) + func (a DefaultAPIServiceMock) ListOrganizations(ctx context.Context) ApiListOrganizationsRequest + func (a DefaultAPIServiceMock) ListOrganizationsExecute(r ApiListOrganizationsRequest) (*ListOrganizationsResponse, error) + func (a DefaultAPIServiceMock) ListProjects(ctx context.Context) ApiListProjectsRequest + func (a DefaultAPIServiceMock) ListProjectsExecute(r ApiListProjectsRequest) (*ListProjectsResponse, error) + func (a DefaultAPIServiceMock) PartialUpdateFolder(ctx context.Context, containerId string) ApiPartialUpdateFolderRequest + func (a DefaultAPIServiceMock) PartialUpdateFolderExecute(r ApiPartialUpdateFolderRequest) (*FolderResponse, error) + func (a DefaultAPIServiceMock) PartialUpdateOrganization(ctx context.Context, id string) ApiPartialUpdateOrganizationRequest + func (a DefaultAPIServiceMock) PartialUpdateOrganizationExecute(r ApiPartialUpdateOrganizationRequest) (*OrganizationResponse, error) + func (a DefaultAPIServiceMock) PartialUpdateProject(ctx context.Context, id string) ApiPartialUpdateProjectRequest + func (a DefaultAPIServiceMock) PartialUpdateProjectExecute(r ApiPartialUpdateProjectRequest) (*Project, error) + type ErrorResponse struct + Error string + Message string + Path string + Status float32 + TimeStamp time.Time + func NewErrorResponse(error_ string, message string, path string, status float32, ...) *ErrorResponse + func NewErrorResponseWithDefaults() *ErrorResponse + func (o *ErrorResponse) GetError() string + func (o *ErrorResponse) GetErrorOk() (*string, bool) + func (o *ErrorResponse) GetMessage() string + func (o *ErrorResponse) GetMessageOk() (*string, bool) + func (o *ErrorResponse) GetPath() string + func (o *ErrorResponse) GetPathOk() (*string, bool) + func (o *ErrorResponse) GetStatus() float32 + func (o *ErrorResponse) GetStatusOk() (*float32, bool) + func (o *ErrorResponse) GetTimeStamp() time.Time + func (o *ErrorResponse) GetTimeStampOk() (*time.Time, bool) + func (o *ErrorResponse) SetError(v string) + func (o *ErrorResponse) SetMessage(v string) + func (o *ErrorResponse) SetPath(v string) + func (o *ErrorResponse) SetStatus(v float32) + func (o *ErrorResponse) SetTimeStamp(v time.Time) + func (o *ErrorResponse) UnmarshalJSON(data []byte) (err error) + func (o ErrorResponse) MarshalJSON() ([]byte, error) + func (o ErrorResponse) ToMap() (map[string]interface{}, error) + type FolderResponse struct + ContainerId string + CreationTime time.Time + FolderId string + Labels *map[string]string + Name string + Parent Parent + UpdateTime time.Time + func NewFolderResponse(containerId string, creationTime time.Time, folderId string, name string, ...) *FolderResponse + func NewFolderResponseWithDefaults() *FolderResponse + func (o *FolderResponse) GetContainerId() string + func (o *FolderResponse) GetContainerIdOk() (*string, bool) + func (o *FolderResponse) GetCreationTime() time.Time + func (o *FolderResponse) GetCreationTimeOk() (*time.Time, bool) + func (o *FolderResponse) GetFolderId() string + func (o *FolderResponse) GetFolderIdOk() (*string, bool) + func (o *FolderResponse) GetLabels() map[string]string + func (o *FolderResponse) GetLabelsOk() (*map[string]string, bool) + func (o *FolderResponse) GetName() string + func (o *FolderResponse) GetNameOk() (*string, bool) + func (o *FolderResponse) GetParent() Parent + func (o *FolderResponse) GetParentOk() (*Parent, bool) + func (o *FolderResponse) GetUpdateTime() time.Time + func (o *FolderResponse) GetUpdateTimeOk() (*time.Time, bool) + func (o *FolderResponse) HasLabels() bool + func (o *FolderResponse) SetContainerId(v string) + func (o *FolderResponse) SetCreationTime(v time.Time) + func (o *FolderResponse) SetFolderId(v string) + func (o *FolderResponse) SetLabels(v map[string]string) + func (o *FolderResponse) SetName(v string) + func (o *FolderResponse) SetParent(v Parent) + func (o *FolderResponse) SetUpdateTime(v time.Time) + func (o *FolderResponse) UnmarshalJSON(data []byte) (err error) + func (o FolderResponse) MarshalJSON() ([]byte, error) + func (o FolderResponse) ToMap() (map[string]interface{}, error) + type GetFolderDetailsResponse struct + ContainerId string + CreationTime time.Time + FolderId string + Labels *map[string]string + Name string + Parent Parent + Parents []ParentListInner + UpdateTime time.Time + func NewGetFolderDetailsResponse(containerId string, creationTime time.Time, folderId string, name string, ...) *GetFolderDetailsResponse + func NewGetFolderDetailsResponseWithDefaults() *GetFolderDetailsResponse + func (o *GetFolderDetailsResponse) GetContainerId() string + func (o *GetFolderDetailsResponse) GetContainerIdOk() (*string, bool) + func (o *GetFolderDetailsResponse) GetCreationTime() time.Time + func (o *GetFolderDetailsResponse) GetCreationTimeOk() (*time.Time, bool) + func (o *GetFolderDetailsResponse) GetFolderId() string + func (o *GetFolderDetailsResponse) GetFolderIdOk() (*string, bool) + func (o *GetFolderDetailsResponse) GetLabels() map[string]string + func (o *GetFolderDetailsResponse) GetLabelsOk() (*map[string]string, bool) + func (o *GetFolderDetailsResponse) GetName() string + func (o *GetFolderDetailsResponse) GetNameOk() (*string, bool) + func (o *GetFolderDetailsResponse) GetParent() Parent + func (o *GetFolderDetailsResponse) GetParentOk() (*Parent, bool) + func (o *GetFolderDetailsResponse) GetParents() []ParentListInner + func (o *GetFolderDetailsResponse) GetParentsOk() ([]ParentListInner, bool) + func (o *GetFolderDetailsResponse) GetUpdateTime() time.Time + func (o *GetFolderDetailsResponse) GetUpdateTimeOk() (*time.Time, bool) + func (o *GetFolderDetailsResponse) HasLabels() bool + func (o *GetFolderDetailsResponse) HasParents() bool + func (o *GetFolderDetailsResponse) SetContainerId(v string) + func (o *GetFolderDetailsResponse) SetCreationTime(v time.Time) + func (o *GetFolderDetailsResponse) SetFolderId(v string) + func (o *GetFolderDetailsResponse) SetLabels(v map[string]string) + func (o *GetFolderDetailsResponse) SetName(v string) + func (o *GetFolderDetailsResponse) SetParent(v Parent) + func (o *GetFolderDetailsResponse) SetParents(v []ParentListInner) + func (o *GetFolderDetailsResponse) SetUpdateTime(v time.Time) + func (o *GetFolderDetailsResponse) UnmarshalJSON(data []byte) (err error) + func (o GetFolderDetailsResponse) MarshalJSON() ([]byte, error) + func (o GetFolderDetailsResponse) ToMap() (map[string]interface{}, error) + type GetProjectResponse struct + ContainerId string + CreationTime time.Time + Labels *map[string]string + LifecycleState LifecycleState + Name string + Parent Parent + Parents []ParentListInner + ProjectId string + UpdateTime time.Time + func NewGetProjectResponse(containerId string, creationTime time.Time, lifecycleState LifecycleState, ...) *GetProjectResponse + func NewGetProjectResponseWithDefaults() *GetProjectResponse + func (o *GetProjectResponse) GetContainerId() string + func (o *GetProjectResponse) GetContainerIdOk() (*string, bool) + func (o *GetProjectResponse) GetCreationTime() time.Time + func (o *GetProjectResponse) GetCreationTimeOk() (*time.Time, bool) + func (o *GetProjectResponse) GetLabels() map[string]string + func (o *GetProjectResponse) GetLabelsOk() (*map[string]string, bool) + func (o *GetProjectResponse) GetLifecycleState() LifecycleState + func (o *GetProjectResponse) GetLifecycleStateOk() (*LifecycleState, bool) + func (o *GetProjectResponse) GetName() string + func (o *GetProjectResponse) GetNameOk() (*string, bool) + func (o *GetProjectResponse) GetParent() Parent + func (o *GetProjectResponse) GetParentOk() (*Parent, bool) + func (o *GetProjectResponse) GetParents() []ParentListInner + func (o *GetProjectResponse) GetParentsOk() ([]ParentListInner, bool) + func (o *GetProjectResponse) GetProjectId() string + func (o *GetProjectResponse) GetProjectIdOk() (*string, bool) + func (o *GetProjectResponse) GetUpdateTime() time.Time + func (o *GetProjectResponse) GetUpdateTimeOk() (*time.Time, bool) + func (o *GetProjectResponse) HasLabels() bool + func (o *GetProjectResponse) HasParents() bool + func (o *GetProjectResponse) SetContainerId(v string) + func (o *GetProjectResponse) SetCreationTime(v time.Time) + func (o *GetProjectResponse) SetLabels(v map[string]string) + func (o *GetProjectResponse) SetLifecycleState(v LifecycleState) + func (o *GetProjectResponse) SetName(v string) + func (o *GetProjectResponse) SetParent(v Parent) + func (o *GetProjectResponse) SetParents(v []ParentListInner) + func (o *GetProjectResponse) SetProjectId(v string) + func (o *GetProjectResponse) SetUpdateTime(v time.Time) + func (o *GetProjectResponse) UnmarshalJSON(data []byte) (err error) + func (o GetProjectResponse) MarshalJSON() ([]byte, error) + func (o GetProjectResponse) ToMap() (map[string]interface{}, error) + type LifecycleState string + const LIFECYCLESTATE_ACTIVE + const LIFECYCLESTATE_CREATING + const LIFECYCLESTATE_DELETING + const LIFECYCLESTATE_INACTIVE + func NewLifecycleStateFromValue(v string) (*LifecycleState, error) + func (v *LifecycleState) UnmarshalJSON(src []byte) error + func (v LifecycleState) IsValid() bool + func (v LifecycleState) Ptr() *LifecycleState + type ListFoldersResponse struct + Items []ListFoldersResponseItemsInner + Limit float32 + Offset float32 + func NewListFoldersResponse(items []ListFoldersResponseItemsInner, limit float32, offset float32) *ListFoldersResponse + func NewListFoldersResponseWithDefaults() *ListFoldersResponse + func (o *ListFoldersResponse) GetItems() []ListFoldersResponseItemsInner + func (o *ListFoldersResponse) GetItemsOk() ([]ListFoldersResponseItemsInner, bool) + func (o *ListFoldersResponse) GetLimit() float32 + func (o *ListFoldersResponse) GetLimitOk() (*float32, bool) + func (o *ListFoldersResponse) GetOffset() float32 + func (o *ListFoldersResponse) GetOffsetOk() (*float32, bool) + func (o *ListFoldersResponse) SetItems(v []ListFoldersResponseItemsInner) + func (o *ListFoldersResponse) SetLimit(v float32) + func (o *ListFoldersResponse) SetOffset(v float32) + func (o *ListFoldersResponse) UnmarshalJSON(data []byte) (err error) + func (o ListFoldersResponse) MarshalJSON() ([]byte, error) + func (o ListFoldersResponse) ToMap() (map[string]interface{}, error) + type ListFoldersResponseItemsInner struct + ContainerId string + CreationTime time.Time + FolderId string + Labels *map[string]string + Name string + Parent Parent + UpdateTime time.Time + func NewListFoldersResponseItemsInner(containerId string, creationTime time.Time, folderId string, name string, ...) *ListFoldersResponseItemsInner + func NewListFoldersResponseItemsInnerWithDefaults() *ListFoldersResponseItemsInner + func (o *ListFoldersResponseItemsInner) GetContainerId() string + func (o *ListFoldersResponseItemsInner) GetContainerIdOk() (*string, bool) + func (o *ListFoldersResponseItemsInner) GetCreationTime() time.Time + func (o *ListFoldersResponseItemsInner) GetCreationTimeOk() (*time.Time, bool) + func (o *ListFoldersResponseItemsInner) GetFolderId() string + func (o *ListFoldersResponseItemsInner) GetFolderIdOk() (*string, bool) + func (o *ListFoldersResponseItemsInner) GetLabels() map[string]string + func (o *ListFoldersResponseItemsInner) GetLabelsOk() (*map[string]string, bool) + func (o *ListFoldersResponseItemsInner) GetName() string + func (o *ListFoldersResponseItemsInner) GetNameOk() (*string, bool) + func (o *ListFoldersResponseItemsInner) GetParent() Parent + func (o *ListFoldersResponseItemsInner) GetParentOk() (*Parent, bool) + func (o *ListFoldersResponseItemsInner) GetUpdateTime() time.Time + func (o *ListFoldersResponseItemsInner) GetUpdateTimeOk() (*time.Time, bool) + func (o *ListFoldersResponseItemsInner) HasLabels() bool + func (o *ListFoldersResponseItemsInner) SetContainerId(v string) + func (o *ListFoldersResponseItemsInner) SetCreationTime(v time.Time) + func (o *ListFoldersResponseItemsInner) SetFolderId(v string) + func (o *ListFoldersResponseItemsInner) SetLabels(v map[string]string) + func (o *ListFoldersResponseItemsInner) SetName(v string) + func (o *ListFoldersResponseItemsInner) SetParent(v Parent) + func (o *ListFoldersResponseItemsInner) SetUpdateTime(v time.Time) + func (o *ListFoldersResponseItemsInner) UnmarshalJSON(data []byte) (err error) + func (o ListFoldersResponseItemsInner) MarshalJSON() ([]byte, error) + func (o ListFoldersResponseItemsInner) ToMap() (map[string]interface{}, error) + type ListOrganizationsResponse struct + Items []ListOrganizationsResponseItemsInner + Limit float32 + Offset float32 + func NewListOrganizationsResponse(items []ListOrganizationsResponseItemsInner, limit float32, offset float32) *ListOrganizationsResponse + func NewListOrganizationsResponseWithDefaults() *ListOrganizationsResponse + func (o *ListOrganizationsResponse) GetItems() []ListOrganizationsResponseItemsInner + func (o *ListOrganizationsResponse) GetItemsOk() ([]ListOrganizationsResponseItemsInner, bool) + func (o *ListOrganizationsResponse) GetLimit() float32 + func (o *ListOrganizationsResponse) GetLimitOk() (*float32, bool) + func (o *ListOrganizationsResponse) GetOffset() float32 + func (o *ListOrganizationsResponse) GetOffsetOk() (*float32, bool) + func (o *ListOrganizationsResponse) SetItems(v []ListOrganizationsResponseItemsInner) + func (o *ListOrganizationsResponse) SetLimit(v float32) + func (o *ListOrganizationsResponse) SetOffset(v float32) + func (o *ListOrganizationsResponse) UnmarshalJSON(data []byte) (err error) + func (o ListOrganizationsResponse) MarshalJSON() ([]byte, error) + func (o ListOrganizationsResponse) ToMap() (map[string]interface{}, error) + type ListOrganizationsResponseItemsInner struct + ContainerId string + CreationTime time.Time + Labels *map[string]string + LifecycleState LifecycleState + Name string + OrganizationId string + UpdateTime time.Time + func NewListOrganizationsResponseItemsInner(containerId string, creationTime time.Time, lifecycleState LifecycleState, ...) *ListOrganizationsResponseItemsInner + func NewListOrganizationsResponseItemsInnerWithDefaults() *ListOrganizationsResponseItemsInner + func (o *ListOrganizationsResponseItemsInner) GetContainerId() string + func (o *ListOrganizationsResponseItemsInner) GetContainerIdOk() (*string, bool) + func (o *ListOrganizationsResponseItemsInner) GetCreationTime() time.Time + func (o *ListOrganizationsResponseItemsInner) GetCreationTimeOk() (*time.Time, bool) + func (o *ListOrganizationsResponseItemsInner) GetLabels() map[string]string + func (o *ListOrganizationsResponseItemsInner) GetLabelsOk() (*map[string]string, bool) + func (o *ListOrganizationsResponseItemsInner) GetLifecycleState() LifecycleState + func (o *ListOrganizationsResponseItemsInner) GetLifecycleStateOk() (*LifecycleState, bool) + func (o *ListOrganizationsResponseItemsInner) GetName() string + func (o *ListOrganizationsResponseItemsInner) GetNameOk() (*string, bool) + func (o *ListOrganizationsResponseItemsInner) GetOrganizationId() string + func (o *ListOrganizationsResponseItemsInner) GetOrganizationIdOk() (*string, bool) + func (o *ListOrganizationsResponseItemsInner) GetUpdateTime() time.Time + func (o *ListOrganizationsResponseItemsInner) GetUpdateTimeOk() (*time.Time, bool) + func (o *ListOrganizationsResponseItemsInner) HasLabels() bool + func (o *ListOrganizationsResponseItemsInner) SetContainerId(v string) + func (o *ListOrganizationsResponseItemsInner) SetCreationTime(v time.Time) + func (o *ListOrganizationsResponseItemsInner) SetLabels(v map[string]string) + func (o *ListOrganizationsResponseItemsInner) SetLifecycleState(v LifecycleState) + func (o *ListOrganizationsResponseItemsInner) SetName(v string) + func (o *ListOrganizationsResponseItemsInner) SetOrganizationId(v string) + func (o *ListOrganizationsResponseItemsInner) SetUpdateTime(v time.Time) + func (o *ListOrganizationsResponseItemsInner) UnmarshalJSON(data []byte) (err error) + func (o ListOrganizationsResponseItemsInner) MarshalJSON() ([]byte, error) + func (o ListOrganizationsResponseItemsInner) ToMap() (map[string]interface{}, error) + type ListProjectsResponse struct + Items []Project + Limit float32 + Offset float32 + func NewListProjectsResponse(items []Project, limit float32, offset float32) *ListProjectsResponse + func NewListProjectsResponseWithDefaults() *ListProjectsResponse + func (o *ListProjectsResponse) GetItems() []Project + func (o *ListProjectsResponse) GetItemsOk() ([]Project, bool) + func (o *ListProjectsResponse) GetLimit() float32 + func (o *ListProjectsResponse) GetLimitOk() (*float32, bool) + func (o *ListProjectsResponse) GetOffset() float32 + func (o *ListProjectsResponse) GetOffsetOk() (*float32, bool) + func (o *ListProjectsResponse) SetItems(v []Project) + func (o *ListProjectsResponse) SetLimit(v float32) + func (o *ListProjectsResponse) SetOffset(v float32) + func (o *ListProjectsResponse) UnmarshalJSON(data []byte) (err error) + func (o ListProjectsResponse) MarshalJSON() ([]byte, error) + func (o ListProjectsResponse) ToMap() (map[string]interface{}, error) + type MappedNullable interface + ToMap func() (map[string]interface{}, error) + type Member struct + Role string + Subject string + func NewMember(role string, subject string) *Member + func NewMemberWithDefaults() *Member + func (o *Member) GetRole() string + func (o *Member) GetRoleOk() (*string, bool) + func (o *Member) GetSubject() string + func (o *Member) GetSubjectOk() (*string, bool) + func (o *Member) SetRole(v string) + func (o *Member) SetSubject(v string) + func (o *Member) UnmarshalJSON(data []byte) (err error) + func (o Member) MarshalJSON() ([]byte, error) + func (o Member) ToMap() (map[string]interface{}, error) + type NullableBool struct + func NewNullableBool(val *bool) *NullableBool + func (v *NullableBool) Set(val *bool) + func (v *NullableBool) UnmarshalJSON(src []byte) error + func (v *NullableBool) Unset() + func (v NullableBool) Get() *bool + func (v NullableBool) IsSet() bool + func (v NullableBool) MarshalJSON() ([]byte, error) + type NullableContainerSearchResult struct + func NewNullableContainerSearchResult(val *ContainerSearchResult) *NullableContainerSearchResult + func (v *NullableContainerSearchResult) Set(val *ContainerSearchResult) + func (v *NullableContainerSearchResult) UnmarshalJSON(src []byte) error + func (v *NullableContainerSearchResult) Unset() + func (v NullableContainerSearchResult) Get() *ContainerSearchResult + func (v NullableContainerSearchResult) IsSet() bool + func (v NullableContainerSearchResult) MarshalJSON() ([]byte, error) + type NullableCreateFolderPayload struct + func NewNullableCreateFolderPayload(val *CreateFolderPayload) *NullableCreateFolderPayload + func (v *NullableCreateFolderPayload) Set(val *CreateFolderPayload) + func (v *NullableCreateFolderPayload) UnmarshalJSON(src []byte) error + func (v *NullableCreateFolderPayload) Unset() + func (v NullableCreateFolderPayload) Get() *CreateFolderPayload + func (v NullableCreateFolderPayload) IsSet() bool + func (v NullableCreateFolderPayload) MarshalJSON() ([]byte, error) + type NullableCreateProjectPayload struct + func NewNullableCreateProjectPayload(val *CreateProjectPayload) *NullableCreateProjectPayload + func (v *NullableCreateProjectPayload) Set(val *CreateProjectPayload) + func (v *NullableCreateProjectPayload) UnmarshalJSON(src []byte) error + func (v *NullableCreateProjectPayload) Unset() + func (v NullableCreateProjectPayload) Get() *CreateProjectPayload + func (v NullableCreateProjectPayload) IsSet() bool + func (v NullableCreateProjectPayload) MarshalJSON() ([]byte, error) + type NullableErrorResponse struct + func NewNullableErrorResponse(val *ErrorResponse) *NullableErrorResponse + func (v *NullableErrorResponse) Set(val *ErrorResponse) + func (v *NullableErrorResponse) UnmarshalJSON(src []byte) error + func (v *NullableErrorResponse) Unset() + func (v NullableErrorResponse) Get() *ErrorResponse + func (v NullableErrorResponse) IsSet() bool + func (v NullableErrorResponse) MarshalJSON() ([]byte, error) + type NullableFloat32 struct + func NewNullableFloat32(val *float32) *NullableFloat32 + func (v *NullableFloat32) Set(val *float32) + func (v *NullableFloat32) UnmarshalJSON(src []byte) error + func (v *NullableFloat32) Unset() + func (v NullableFloat32) Get() *float32 + func (v NullableFloat32) IsSet() bool + func (v NullableFloat32) MarshalJSON() ([]byte, error) + type NullableFloat64 struct + func NewNullableFloat64(val *float64) *NullableFloat64 + func (v *NullableFloat64) Set(val *float64) + func (v *NullableFloat64) UnmarshalJSON(src []byte) error + func (v *NullableFloat64) Unset() + func (v NullableFloat64) Get() *float64 + func (v NullableFloat64) IsSet() bool + func (v NullableFloat64) MarshalJSON() ([]byte, error) + type NullableFolderResponse struct + func NewNullableFolderResponse(val *FolderResponse) *NullableFolderResponse + func (v *NullableFolderResponse) Set(val *FolderResponse) + func (v *NullableFolderResponse) UnmarshalJSON(src []byte) error + func (v *NullableFolderResponse) Unset() + func (v NullableFolderResponse) Get() *FolderResponse + func (v NullableFolderResponse) IsSet() bool + func (v NullableFolderResponse) MarshalJSON() ([]byte, error) + type NullableGetFolderDetailsResponse struct + func NewNullableGetFolderDetailsResponse(val *GetFolderDetailsResponse) *NullableGetFolderDetailsResponse + func (v *NullableGetFolderDetailsResponse) Set(val *GetFolderDetailsResponse) + func (v *NullableGetFolderDetailsResponse) UnmarshalJSON(src []byte) error + func (v *NullableGetFolderDetailsResponse) Unset() + func (v NullableGetFolderDetailsResponse) Get() *GetFolderDetailsResponse + func (v NullableGetFolderDetailsResponse) IsSet() bool + func (v NullableGetFolderDetailsResponse) MarshalJSON() ([]byte, error) + type NullableGetProjectResponse struct + func NewNullableGetProjectResponse(val *GetProjectResponse) *NullableGetProjectResponse + func (v *NullableGetProjectResponse) Set(val *GetProjectResponse) + func (v *NullableGetProjectResponse) UnmarshalJSON(src []byte) error + func (v *NullableGetProjectResponse) Unset() + func (v NullableGetProjectResponse) Get() *GetProjectResponse + func (v NullableGetProjectResponse) IsSet() bool + func (v NullableGetProjectResponse) MarshalJSON() ([]byte, error) + type NullableInt struct + func NewNullableInt(val *int) *NullableInt + func (v *NullableInt) Set(val *int) + func (v *NullableInt) UnmarshalJSON(src []byte) error + func (v *NullableInt) Unset() + func (v NullableInt) Get() *int + func (v NullableInt) IsSet() bool + func (v NullableInt) MarshalJSON() ([]byte, error) + type NullableInt32 struct + func NewNullableInt32(val *int32) *NullableInt32 + func (v *NullableInt32) Set(val *int32) + func (v *NullableInt32) UnmarshalJSON(src []byte) error + func (v *NullableInt32) Unset() + func (v NullableInt32) Get() *int32 + func (v NullableInt32) IsSet() bool + func (v NullableInt32) MarshalJSON() ([]byte, error) + type NullableInt64 struct + func NewNullableInt64(val *int64) *NullableInt64 + func (v *NullableInt64) Set(val *int64) + func (v *NullableInt64) UnmarshalJSON(src []byte) error + func (v *NullableInt64) Unset() + func (v NullableInt64) Get() *int64 + func (v NullableInt64) IsSet() bool + func (v NullableInt64) MarshalJSON() ([]byte, error) + type NullableLifecycleState struct + func NewNullableLifecycleState(val *LifecycleState) *NullableLifecycleState + func (v *NullableLifecycleState) Set(val *LifecycleState) + func (v *NullableLifecycleState) UnmarshalJSON(src []byte) error + func (v *NullableLifecycleState) Unset() + func (v NullableLifecycleState) Get() *LifecycleState + func (v NullableLifecycleState) IsSet() bool + func (v NullableLifecycleState) MarshalJSON() ([]byte, error) + type NullableListFoldersResponse struct + func NewNullableListFoldersResponse(val *ListFoldersResponse) *NullableListFoldersResponse + func (v *NullableListFoldersResponse) Set(val *ListFoldersResponse) + func (v *NullableListFoldersResponse) UnmarshalJSON(src []byte) error + func (v *NullableListFoldersResponse) Unset() + func (v NullableListFoldersResponse) Get() *ListFoldersResponse + func (v NullableListFoldersResponse) IsSet() bool + func (v NullableListFoldersResponse) MarshalJSON() ([]byte, error) + type NullableListFoldersResponseItemsInner struct + func NewNullableListFoldersResponseItemsInner(val *ListFoldersResponseItemsInner) *NullableListFoldersResponseItemsInner + func (v *NullableListFoldersResponseItemsInner) Set(val *ListFoldersResponseItemsInner) + func (v *NullableListFoldersResponseItemsInner) UnmarshalJSON(src []byte) error + func (v *NullableListFoldersResponseItemsInner) Unset() + func (v NullableListFoldersResponseItemsInner) Get() *ListFoldersResponseItemsInner + func (v NullableListFoldersResponseItemsInner) IsSet() bool + func (v NullableListFoldersResponseItemsInner) MarshalJSON() ([]byte, error) + type NullableListOrganizationsResponse struct + func NewNullableListOrganizationsResponse(val *ListOrganizationsResponse) *NullableListOrganizationsResponse + func (v *NullableListOrganizationsResponse) Set(val *ListOrganizationsResponse) + func (v *NullableListOrganizationsResponse) UnmarshalJSON(src []byte) error + func (v *NullableListOrganizationsResponse) Unset() + func (v NullableListOrganizationsResponse) Get() *ListOrganizationsResponse + func (v NullableListOrganizationsResponse) IsSet() bool + func (v NullableListOrganizationsResponse) MarshalJSON() ([]byte, error) + type NullableListOrganizationsResponseItemsInner struct + func NewNullableListOrganizationsResponseItemsInner(val *ListOrganizationsResponseItemsInner) *NullableListOrganizationsResponseItemsInner + func (v *NullableListOrganizationsResponseItemsInner) Set(val *ListOrganizationsResponseItemsInner) + func (v *NullableListOrganizationsResponseItemsInner) UnmarshalJSON(src []byte) error + func (v *NullableListOrganizationsResponseItemsInner) Unset() + func (v NullableListOrganizationsResponseItemsInner) Get() *ListOrganizationsResponseItemsInner + func (v NullableListOrganizationsResponseItemsInner) IsSet() bool + func (v NullableListOrganizationsResponseItemsInner) MarshalJSON() ([]byte, error) + type NullableListProjectsResponse struct + func NewNullableListProjectsResponse(val *ListProjectsResponse) *NullableListProjectsResponse + func (v *NullableListProjectsResponse) Set(val *ListProjectsResponse) + func (v *NullableListProjectsResponse) UnmarshalJSON(src []byte) error + func (v *NullableListProjectsResponse) Unset() + func (v NullableListProjectsResponse) Get() *ListProjectsResponse + func (v NullableListProjectsResponse) IsSet() bool + func (v NullableListProjectsResponse) MarshalJSON() ([]byte, error) + type NullableMember struct + func NewNullableMember(val *Member) *NullableMember + func (v *NullableMember) Set(val *Member) + func (v *NullableMember) UnmarshalJSON(src []byte) error + func (v *NullableMember) Unset() + func (v NullableMember) Get() *Member + func (v NullableMember) IsSet() bool + func (v NullableMember) MarshalJSON() ([]byte, error) + type NullableOrganizationResponse struct + func NewNullableOrganizationResponse(val *OrganizationResponse) *NullableOrganizationResponse + func (v *NullableOrganizationResponse) Set(val *OrganizationResponse) + func (v *NullableOrganizationResponse) UnmarshalJSON(src []byte) error + func (v *NullableOrganizationResponse) Unset() + func (v NullableOrganizationResponse) Get() *OrganizationResponse + func (v NullableOrganizationResponse) IsSet() bool + func (v NullableOrganizationResponse) MarshalJSON() ([]byte, error) + type NullableParent struct + func NewNullableParent(val *Parent) *NullableParent + func (v *NullableParent) Set(val *Parent) + func (v *NullableParent) UnmarshalJSON(src []byte) error + func (v *NullableParent) Unset() + func (v NullableParent) Get() *Parent + func (v NullableParent) IsSet() bool + func (v NullableParent) MarshalJSON() ([]byte, error) + type NullableParentListInner struct + func NewNullableParentListInner(val *ParentListInner) *NullableParentListInner + func (v *NullableParentListInner) Set(val *ParentListInner) + func (v *NullableParentListInner) UnmarshalJSON(src []byte) error + func (v *NullableParentListInner) Unset() + func (v NullableParentListInner) Get() *ParentListInner + func (v NullableParentListInner) IsSet() bool + func (v NullableParentListInner) MarshalJSON() ([]byte, error) + type NullablePartialUpdateFolderPayload struct + func NewNullablePartialUpdateFolderPayload(val *PartialUpdateFolderPayload) *NullablePartialUpdateFolderPayload + func (v *NullablePartialUpdateFolderPayload) Set(val *PartialUpdateFolderPayload) + func (v *NullablePartialUpdateFolderPayload) UnmarshalJSON(src []byte) error + func (v *NullablePartialUpdateFolderPayload) Unset() + func (v NullablePartialUpdateFolderPayload) Get() *PartialUpdateFolderPayload + func (v NullablePartialUpdateFolderPayload) IsSet() bool + func (v NullablePartialUpdateFolderPayload) MarshalJSON() ([]byte, error) + type NullablePartialUpdateOrganizationPayload struct + func NewNullablePartialUpdateOrganizationPayload(val *PartialUpdateOrganizationPayload) *NullablePartialUpdateOrganizationPayload + func (v *NullablePartialUpdateOrganizationPayload) Set(val *PartialUpdateOrganizationPayload) + func (v *NullablePartialUpdateOrganizationPayload) UnmarshalJSON(src []byte) error + func (v *NullablePartialUpdateOrganizationPayload) Unset() + func (v NullablePartialUpdateOrganizationPayload) Get() *PartialUpdateOrganizationPayload + func (v NullablePartialUpdateOrganizationPayload) IsSet() bool + func (v NullablePartialUpdateOrganizationPayload) MarshalJSON() ([]byte, error) + type NullablePartialUpdateProjectPayload struct + func NewNullablePartialUpdateProjectPayload(val *PartialUpdateProjectPayload) *NullablePartialUpdateProjectPayload + func (v *NullablePartialUpdateProjectPayload) Set(val *PartialUpdateProjectPayload) + func (v *NullablePartialUpdateProjectPayload) UnmarshalJSON(src []byte) error + func (v *NullablePartialUpdateProjectPayload) Unset() + func (v NullablePartialUpdateProjectPayload) Get() *PartialUpdateProjectPayload + func (v NullablePartialUpdateProjectPayload) IsSet() bool + func (v NullablePartialUpdateProjectPayload) MarshalJSON() ([]byte, error) + type NullableProject struct + func NewNullableProject(val *Project) *NullableProject + func (v *NullableProject) Set(val *Project) + func (v *NullableProject) UnmarshalJSON(src []byte) error + func (v *NullableProject) Unset() + func (v NullableProject) Get() *Project + func (v NullableProject) IsSet() bool + func (v NullableProject) MarshalJSON() ([]byte, error) + type NullableString struct + func NewNullableString(val *string) *NullableString + func (v *NullableString) Set(val *string) + func (v *NullableString) UnmarshalJSON(src []byte) error + func (v *NullableString) Unset() + func (v NullableString) Get() *string + func (v NullableString) IsSet() bool + func (v NullableString) MarshalJSON() ([]byte, error) + type NullableTime struct + func NewNullableTime(val *time.Time) *NullableTime + func (v *NullableTime) Set(val *time.Time) + func (v *NullableTime) UnmarshalJSON(src []byte) error + func (v *NullableTime) Unset() + func (v NullableTime) Get() *time.Time + func (v NullableTime) IsSet() bool + func (v NullableTime) MarshalJSON() ([]byte, error) + type OrganizationResponse struct + ContainerId string + CreationTime time.Time + Labels *map[string]string + LifecycleState LifecycleState + Name string + OrganizationId string + UpdateTime time.Time + func NewOrganizationResponse(containerId string, creationTime time.Time, lifecycleState LifecycleState, ...) *OrganizationResponse + func NewOrganizationResponseWithDefaults() *OrganizationResponse + func (o *OrganizationResponse) GetContainerId() string + func (o *OrganizationResponse) GetContainerIdOk() (*string, bool) + func (o *OrganizationResponse) GetCreationTime() time.Time + func (o *OrganizationResponse) GetCreationTimeOk() (*time.Time, bool) + func (o *OrganizationResponse) GetLabels() map[string]string + func (o *OrganizationResponse) GetLabelsOk() (*map[string]string, bool) + func (o *OrganizationResponse) GetLifecycleState() LifecycleState + func (o *OrganizationResponse) GetLifecycleStateOk() (*LifecycleState, bool) + func (o *OrganizationResponse) GetName() string + func (o *OrganizationResponse) GetNameOk() (*string, bool) + func (o *OrganizationResponse) GetOrganizationId() string + func (o *OrganizationResponse) GetOrganizationIdOk() (*string, bool) + func (o *OrganizationResponse) GetUpdateTime() time.Time + func (o *OrganizationResponse) GetUpdateTimeOk() (*time.Time, bool) + func (o *OrganizationResponse) HasLabels() bool + func (o *OrganizationResponse) SetContainerId(v string) + func (o *OrganizationResponse) SetCreationTime(v time.Time) + func (o *OrganizationResponse) SetLabels(v map[string]string) + func (o *OrganizationResponse) SetLifecycleState(v LifecycleState) + func (o *OrganizationResponse) SetName(v string) + func (o *OrganizationResponse) SetOrganizationId(v string) + func (o *OrganizationResponse) SetUpdateTime(v time.Time) + func (o *OrganizationResponse) UnmarshalJSON(data []byte) (err error) + func (o OrganizationResponse) MarshalJSON() ([]byte, error) + func (o OrganizationResponse) ToMap() (map[string]interface{}, error) + type Parent struct + ContainerId string + Id string + Type string + func NewParent(containerId string, id string, types string) *Parent + func NewParentWithDefaults() *Parent + func (o *Parent) GetContainerId() string + func (o *Parent) GetContainerIdOk() (*string, bool) + func (o *Parent) GetId() string + func (o *Parent) GetIdOk() (*string, bool) + func (o *Parent) GetType() string + func (o *Parent) GetTypeOk() (*string, bool) + func (o *Parent) SetContainerId(v string) + func (o *Parent) SetId(v string) + func (o *Parent) SetType(v string) + func (o *Parent) UnmarshalJSON(data []byte) (err error) + func (o Parent) MarshalJSON() ([]byte, error) + func (o Parent) ToMap() (map[string]interface{}, error) + type ParentListInner struct + ContainerId string + ContainerParentId *string + Id string + Name string + ParentId *string + Type string + func NewParentListInner(containerId string, id string, name string, types string) *ParentListInner + func NewParentListInnerWithDefaults() *ParentListInner + func (o *ParentListInner) GetContainerId() string + func (o *ParentListInner) GetContainerIdOk() (*string, bool) + func (o *ParentListInner) GetContainerParentId() string + func (o *ParentListInner) GetContainerParentIdOk() (*string, bool) + func (o *ParentListInner) GetId() string + func (o *ParentListInner) GetIdOk() (*string, bool) + func (o *ParentListInner) GetName() string + func (o *ParentListInner) GetNameOk() (*string, bool) + func (o *ParentListInner) GetParentId() string + func (o *ParentListInner) GetParentIdOk() (*string, bool) + func (o *ParentListInner) GetType() string + func (o *ParentListInner) GetTypeOk() (*string, bool) + func (o *ParentListInner) HasContainerParentId() bool + func (o *ParentListInner) HasParentId() bool + func (o *ParentListInner) SetContainerId(v string) + func (o *ParentListInner) SetContainerParentId(v string) + func (o *ParentListInner) SetId(v string) + func (o *ParentListInner) SetName(v string) + func (o *ParentListInner) SetParentId(v string) + func (o *ParentListInner) SetType(v string) + func (o *ParentListInner) UnmarshalJSON(data []byte) (err error) + func (o ParentListInner) MarshalJSON() ([]byte, error) + func (o ParentListInner) ToMap() (map[string]interface{}, error) + type PartialUpdateFolderPayload struct + ContainerParentId *string + Labels *map[string]string + Name *string + func NewPartialUpdateFolderPayload() *PartialUpdateFolderPayload + func NewPartialUpdateFolderPayloadWithDefaults() *PartialUpdateFolderPayload + func (o *PartialUpdateFolderPayload) GetContainerParentId() string + func (o *PartialUpdateFolderPayload) GetContainerParentIdOk() (*string, bool) + func (o *PartialUpdateFolderPayload) GetLabels() map[string]string + func (o *PartialUpdateFolderPayload) GetLabelsOk() (*map[string]string, bool) + func (o *PartialUpdateFolderPayload) GetName() string + func (o *PartialUpdateFolderPayload) GetNameOk() (*string, bool) + func (o *PartialUpdateFolderPayload) HasContainerParentId() bool + func (o *PartialUpdateFolderPayload) HasLabels() bool + func (o *PartialUpdateFolderPayload) HasName() bool + func (o *PartialUpdateFolderPayload) SetContainerParentId(v string) + func (o *PartialUpdateFolderPayload) SetLabels(v map[string]string) + func (o *PartialUpdateFolderPayload) SetName(v string) + func (o PartialUpdateFolderPayload) MarshalJSON() ([]byte, error) + func (o PartialUpdateFolderPayload) ToMap() (map[string]interface{}, error) + type PartialUpdateOrganizationPayload struct + Labels *map[string]string + Name *string + func NewPartialUpdateOrganizationPayload() *PartialUpdateOrganizationPayload + func NewPartialUpdateOrganizationPayloadWithDefaults() *PartialUpdateOrganizationPayload + func (o *PartialUpdateOrganizationPayload) GetLabels() map[string]string + func (o *PartialUpdateOrganizationPayload) GetLabelsOk() (*map[string]string, bool) + func (o *PartialUpdateOrganizationPayload) GetName() string + func (o *PartialUpdateOrganizationPayload) GetNameOk() (*string, bool) + func (o *PartialUpdateOrganizationPayload) HasLabels() bool + func (o *PartialUpdateOrganizationPayload) HasName() bool + func (o *PartialUpdateOrganizationPayload) SetLabels(v map[string]string) + func (o *PartialUpdateOrganizationPayload) SetName(v string) + func (o PartialUpdateOrganizationPayload) MarshalJSON() ([]byte, error) + func (o PartialUpdateOrganizationPayload) ToMap() (map[string]interface{}, error) + type PartialUpdateProjectPayload struct + ContainerParentId *string + Labels *map[string]string + Name *string + func NewPartialUpdateProjectPayload() *PartialUpdateProjectPayload + func NewPartialUpdateProjectPayloadWithDefaults() *PartialUpdateProjectPayload + func (o *PartialUpdateProjectPayload) GetContainerParentId() string + func (o *PartialUpdateProjectPayload) GetContainerParentIdOk() (*string, bool) + func (o *PartialUpdateProjectPayload) GetLabels() map[string]string + func (o *PartialUpdateProjectPayload) GetLabelsOk() (*map[string]string, bool) + func (o *PartialUpdateProjectPayload) GetName() string + func (o *PartialUpdateProjectPayload) GetNameOk() (*string, bool) + func (o *PartialUpdateProjectPayload) HasContainerParentId() bool + func (o *PartialUpdateProjectPayload) HasLabels() bool + func (o *PartialUpdateProjectPayload) HasName() bool + func (o *PartialUpdateProjectPayload) SetContainerParentId(v string) + func (o *PartialUpdateProjectPayload) SetLabels(v map[string]string) + func (o *PartialUpdateProjectPayload) SetName(v string) + func (o PartialUpdateProjectPayload) MarshalJSON() ([]byte, error) + func (o PartialUpdateProjectPayload) ToMap() (map[string]interface{}, error) + type Project struct + ContainerId string + CreationTime time.Time + Labels *map[string]string + LifecycleState LifecycleState + Name string + Parent Parent + ProjectId string + UpdateTime time.Time + func NewProject(containerId string, creationTime time.Time, lifecycleState LifecycleState, ...) *Project + func NewProjectWithDefaults() *Project + func (o *Project) GetContainerId() string + func (o *Project) GetContainerIdOk() (*string, bool) + func (o *Project) GetCreationTime() time.Time + func (o *Project) GetCreationTimeOk() (*time.Time, bool) + func (o *Project) GetLabels() map[string]string + func (o *Project) GetLabelsOk() (*map[string]string, bool) + func (o *Project) GetLifecycleState() LifecycleState + func (o *Project) GetLifecycleStateOk() (*LifecycleState, bool) + func (o *Project) GetName() string + func (o *Project) GetNameOk() (*string, bool) + func (o *Project) GetParent() Parent + func (o *Project) GetParentOk() (*Parent, bool) + func (o *Project) GetProjectId() string + func (o *Project) GetProjectIdOk() (*string, bool) + func (o *Project) GetUpdateTime() time.Time + func (o *Project) GetUpdateTimeOk() (*time.Time, bool) + func (o *Project) HasLabels() bool + func (o *Project) SetContainerId(v string) + func (o *Project) SetCreationTime(v time.Time) + func (o *Project) SetLabels(v map[string]string) + func (o *Project) SetLifecycleState(v LifecycleState) + func (o *Project) SetName(v string) + func (o *Project) SetParent(v Parent) + func (o *Project) SetProjectId(v string) + func (o *Project) SetUpdateTime(v time.Time) + func (o *Project) UnmarshalJSON(data []byte) (err error) + func (o Project) MarshalJSON() ([]byte, error) + func (o Project) ToMap() (map[string]interface{}, error)