Skip to content

Latest commit

 

History

History
238 lines (129 loc) · 6.1 KB

Project.md

File metadata and controls

238 lines (129 loc) · 6.1 KB

Project

Properties

Name Type Description Notes
IsDomain Pointer to bool Indicates whether the project also acts as a domain. If set to true, this project acts as both a project and domain. As a domain, the project provides a name space in which you can create users, groups, and other projects. If set to false, this project behaves as a regular project that contains only resources. [optional]
Enabled Pointer to bool If set to true, project is enabled. If set to false, project is disabled. [optional]
Description Pointer to string The description of the project. [optional]
DomainId Pointer to string The ID of the domain for the project. [optional]
Id Pointer to string The ID of the project. [optional]
Name Pointer to string The name of the project. [optional]
ParentId Pointer to string The ID of the parent for the project. [optional]
Links Pointer to SelfLink [optional]

Methods

NewProject

func NewProject() *Project

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

NewProjectWithDefaults

func NewProjectWithDefaults() *Project

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

GetIsDomain

func (o *Project) GetIsDomain() bool

GetIsDomain returns the IsDomain field if non-nil, zero value otherwise.

GetIsDomainOk

func (o *Project) GetIsDomainOk() (*bool, bool)

GetIsDomainOk returns a tuple with the IsDomain field if it's non-nil, zero value otherwise and a boolean to check if the value has been set.

SetIsDomain

func (o *Project) SetIsDomain(v bool)

SetIsDomain sets IsDomain field to given value.

HasIsDomain

func (o *Project) HasIsDomain() bool

HasIsDomain returns a boolean if a field has been set.

GetEnabled

func (o *Project) GetEnabled() bool

GetEnabled returns the Enabled field if non-nil, zero value otherwise.

GetEnabledOk

func (o *Project) GetEnabledOk() (*bool, bool)

GetEnabledOk returns a tuple with the Enabled field if it's non-nil, zero value otherwise and a boolean to check if the value has been set.

SetEnabled

func (o *Project) SetEnabled(v bool)

SetEnabled sets Enabled field to given value.

HasEnabled

func (o *Project) HasEnabled() bool

HasEnabled returns a boolean if a field has been set.

GetDescription

func (o *Project) GetDescription() string

GetDescription returns the Description field if non-nil, zero value otherwise.

GetDescriptionOk

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

GetDescriptionOk returns a tuple with the Description field if it's non-nil, zero value otherwise and a boolean to check if the value has been set.

SetDescription

func (o *Project) SetDescription(v string)

SetDescription sets Description field to given value.

HasDescription

func (o *Project) HasDescription() bool

HasDescription returns a boolean if a field has been set.

GetDomainId

func (o *Project) GetDomainId() string

GetDomainId returns the DomainId field if non-nil, zero value otherwise.

GetDomainIdOk

func (o *Project) GetDomainIdOk() (*string, bool)

GetDomainIdOk returns a tuple with the DomainId field if it's non-nil, zero value otherwise and a boolean to check if the value has been set.

SetDomainId

func (o *Project) SetDomainId(v string)

SetDomainId sets DomainId field to given value.

HasDomainId

func (o *Project) HasDomainId() bool

HasDomainId returns a boolean if a field has been set.

GetId

func (o *Project) GetId() string

GetId returns the Id field if non-nil, zero value otherwise.

GetIdOk

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

GetIdOk returns a tuple with the Id field if it's non-nil, zero value otherwise and a boolean to check if the value has been set.

SetId

func (o *Project) SetId(v string)

SetId sets Id field to given value.

HasId

func (o *Project) HasId() bool

HasId returns a boolean if a field has been set.

GetName

func (o *Project) GetName() string

GetName returns the Name field if non-nil, zero value otherwise.

GetNameOk

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

GetNameOk returns a tuple with the Name field if it's non-nil, zero value otherwise and a boolean to check if the value has been set.

SetName

func (o *Project) SetName(v string)

SetName sets Name field to given value.

HasName

func (o *Project) HasName() bool

HasName returns a boolean if a field has been set.

GetParentId

func (o *Project) GetParentId() string

GetParentId returns the ParentId field if non-nil, zero value otherwise.

GetParentIdOk

func (o *Project) GetParentIdOk() (*string, bool)

GetParentIdOk returns a tuple with the ParentId field if it's non-nil, zero value otherwise and a boolean to check if the value has been set.

SetParentId

func (o *Project) SetParentId(v string)

SetParentId sets ParentId field to given value.

HasParentId

func (o *Project) HasParentId() bool

HasParentId returns a boolean if a field has been set.

GetLinks

func (o *Project) GetLinks() SelfLink

GetLinks returns the Links field if non-nil, zero value otherwise.

GetLinksOk

func (o *Project) GetLinksOk() (*SelfLink, bool)

GetLinksOk returns a tuple with the Links field if it's non-nil, zero value otherwise and a boolean to check if the value has been set.

SetLinks

func (o *Project) SetLinks(v SelfLink)

SetLinks sets Links field to given value.

HasLinks

func (o *Project) HasLinks() bool

HasLinks returns a boolean if a field has been set.

[Back to Model list] [Back to API list] [Back to README]