ResourceMetadata
Last updated
Last updated
Name | Type | Description | Notes |
---|---|---|---|
func NewResourceMetadata(state string, ) *ResourceMetadata
NewResourceMetadata instantiates a new ResourceMetadata object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed
func NewResourceMetadataWithDefaults() *ResourceMetadata
NewResourceMetadataWithDefaults instantiates a new ResourceMetadata object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set
func (o *ResourceMetadata) GetCreatedDate() time.Time
GetCreatedDate returns the CreatedDate field if non-nil, zero value otherwise.
func (o *ResourceMetadata) GetCreatedDateOk() (*time.Time, bool)
GetCreatedDateOk returns a tuple with the CreatedDate field if it's non-nil, zero value otherwise and a boolean to check if the value has been set.
func (o *ResourceMetadata) SetCreatedDate(v time.Time)
SetCreatedDate sets CreatedDate field to given value.
func (o *ResourceMetadata) HasCreatedDate() bool
HasCreatedDate returns a boolean if a field has been set.
func (o *ResourceMetadata) GetCreatedBy() string
GetCreatedBy returns the CreatedBy field if non-nil, zero value otherwise.
func (o *ResourceMetadata) GetCreatedByOk() (*string, bool)
GetCreatedByOk returns a tuple with the CreatedBy field if it's non-nil, zero value otherwise and a boolean to check if the value has been set.
func (o *ResourceMetadata) SetCreatedBy(v string)
SetCreatedBy sets CreatedBy field to given value.
func (o *ResourceMetadata) HasCreatedBy() bool
HasCreatedBy returns a boolean if a field has been set.
func (o *ResourceMetadata) GetCreatedByUserId() string
GetCreatedByUserId returns the CreatedByUserId field if non-nil, zero value otherwise.
func (o *ResourceMetadata) GetCreatedByUserIdOk() (*string, bool)
GetCreatedByUserIdOk returns a tuple with the CreatedByUserId field if it's non-nil, zero value otherwise and a boolean to check if the value has been set.
func (o *ResourceMetadata) SetCreatedByUserId(v string)
SetCreatedByUserId sets CreatedByUserId field to given value.
func (o *ResourceMetadata) HasCreatedByUserId() bool
HasCreatedByUserId returns a boolean if a field has been set.
func (o *ResourceMetadata) GetLastModifiedDate() time.Time
GetLastModifiedDate returns the LastModifiedDate field if non-nil, zero value otherwise.
func (o *ResourceMetadata) GetLastModifiedDateOk() (*time.Time, bool)
GetLastModifiedDateOk returns a tuple with the LastModifiedDate field if it's non-nil, zero value otherwise and a boolean to check if the value has been set.
func (o *ResourceMetadata) SetLastModifiedDate(v time.Time)
SetLastModifiedDate sets LastModifiedDate field to given value.
func (o *ResourceMetadata) HasLastModifiedDate() bool
HasLastModifiedDate returns a boolean if a field has been set.
func (o *ResourceMetadata) GetLastModifiedBy() string
GetLastModifiedBy returns the LastModifiedBy field if non-nil, zero value otherwise.
func (o *ResourceMetadata) GetLastModifiedByOk() (*string, bool)
GetLastModifiedByOk returns a tuple with the LastModifiedBy field if it's non-nil, zero value otherwise and a boolean to check if the value has been set.
func (o *ResourceMetadata) SetLastModifiedBy(v string)
SetLastModifiedBy sets LastModifiedBy field to given value.
func (o *ResourceMetadata) HasLastModifiedBy() bool
HasLastModifiedBy returns a boolean if a field has been set.
func (o *ResourceMetadata) GetLastModifiedByUserId() string
GetLastModifiedByUserId returns the LastModifiedByUserId field if non-nil, zero value otherwise.
func (o *ResourceMetadata) GetLastModifiedByUserIdOk() (*string, bool)
GetLastModifiedByUserIdOk returns a tuple with the LastModifiedByUserId field if it's non-nil, zero value otherwise and a boolean to check if the value has been set.
func (o *ResourceMetadata) SetLastModifiedByUserId(v string)
SetLastModifiedByUserId sets LastModifiedByUserId field to given value.
func (o *ResourceMetadata) HasLastModifiedByUserId() bool
HasLastModifiedByUserId returns a boolean if a field has been set.
func (o *ResourceMetadata) GetResourceURN() string
GetResourceURN returns the ResourceURN field if non-nil, zero value otherwise.
func (o *ResourceMetadata) GetResourceURNOk() (*string, bool)
GetResourceURNOk returns a tuple with the ResourceURN field if it's non-nil, zero value otherwise and a boolean to check if the value has been set.
func (o *ResourceMetadata) SetResourceURN(v string)
SetResourceURN sets ResourceURN field to given value.
func (o *ResourceMetadata) HasResourceURN() bool
HasResourceURN returns a boolean if a field has been set.
func (o *ResourceMetadata) GetState() string
GetState returns the State field if non-nil, zero value otherwise.
func (o *ResourceMetadata) GetStateOk() (*string, bool)
GetStateOk returns a tuple with the State field if it's non-nil, zero value otherwise and a boolean to check if the value has been set.
func (o *ResourceMetadata) SetState(v string)
SetState sets State field to given value.
func (o *ResourceMetadata) GetMessage() string
GetMessage returns the Message field if non-nil, zero value otherwise.
func (o *ResourceMetadata) GetMessageOk() (*string, bool)
GetMessageOk returns a tuple with the Message field if it's non-nil, zero value otherwise and a boolean to check if the value has been set.
func (o *ResourceMetadata) SetMessage(v string)
SetMessage sets Message field to given value.
func (o *ResourceMetadata) HasMessage() bool
HasMessage returns a boolean if a field has been set.
CreatedDate
Pointer to time.Time
The ISO 8601 creation timestamp.
[optional] [readonly]
CreatedBy
Pointer to string
Unique name of the identity that created the resource.
[optional] [readonly]
CreatedByUserId
Pointer to string
Unique id of the identity that created the resource.
[optional] [readonly]
LastModifiedDate
Pointer to time.Time
The ISO 8601 modified timestamp.
[optional] [readonly]
LastModifiedBy
Pointer to string
Unique name of the identity that last modified the resource.
[optional] [readonly]
LastModifiedByUserId
Pointer to string
Unique id of the identity that last modified the resource.
[optional] [readonly]
ResourceURN
Pointer to string
Unique name of the resource.
[optional] [readonly]
State
string
State of the resource. Resource states: `AVAILABLE`: There are no pending modification requests for this item. `BUSY`: There is at least one modification request pending and all following requests will be queued. `DEPLOYING`: The resource is being created. `FAILED`: The creation of the resource failed. `UPDATING`: The resource is being updated. `FAILED_UPDATING`: An update to the resource was not successful. `DESTROYING`: A delete command was issued, and the resource is being deleted.
Message
Pointer to string
A human readable message describing the current state. In case of an error, the message will contain a detailed error message.
[optional]