Name | Type | Description | Notes |
---|---|---|---|
Id | Pointer to string | The id of the component. | [optional] |
VersionedComponentId | Pointer to string | The ID of the corresponding component that is under version control | [optional] |
ParentGroupId | Pointer to string | The id of parent process group of this component if applicable. | [optional] |
Position | Pointer to PositionDTO | [optional] | |
Name | Pointer to string | The name of the controller service. | [optional] |
Type | Pointer to string | The type of the controller service. | [optional] |
Bundle | Pointer to BundleDTO | [optional] | |
ControllerServiceApis | Pointer to []ControllerServiceApiDTO | Lists the APIs this Controller Service implements. | [optional] |
Comments | Pointer to string | The comments for the controller service. | [optional] |
State | Pointer to string | The state of the controller service. | [optional] |
PersistsState | Pointer to bool | Whether the controller service persists state. | [optional] |
Restricted | Pointer to bool | Whether the controller service requires elevated privileges. | [optional] |
Deprecated | Pointer to bool | Whether the ontroller service has been deprecated. | [optional] |
MultipleVersionsAvailable | Pointer to bool | Whether the controller service has multiple versions available. | [optional] |
Properties | Pointer to map[string]string | The properties of the controller service. | [optional] |
Descriptors | Pointer to map[string]PropertyDescriptorDTO | The descriptors for the controller service properties. | [optional] |
CustomUiUrl | Pointer to string | The URL for the controller services custom configuration UI if applicable. | [optional] |
AnnotationData | Pointer to string | The annotation for the controller service. This is how the custom UI relays configuration to the controller service. | [optional] |
ReferencingComponents | Pointer to []ControllerServiceReferencingComponentEntity | All components referencing this controller service. | [optional] |
ValidationErrors | Pointer to []string | The validation errors from the controller service. These validation errors represent the problems with the controller service that must be resolved before it can be enabled. | [optional] |
ValidationStatus | Pointer to string | Indicates whether the ControllerService is valid, invalid, or still in the process of validating (i.e., it is unknown whether or not the ControllerService is valid) | [optional] [readonly] |
ExtensionMissing | Pointer to bool | Whether the underlying extension is missing. | [optional] |
func NewControllerServiceDTO() *ControllerServiceDTO
NewControllerServiceDTO instantiates a new ControllerServiceDTO 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 NewControllerServiceDTOWithDefaults() *ControllerServiceDTO
NewControllerServiceDTOWithDefaults instantiates a new ControllerServiceDTO 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 *ControllerServiceDTO) GetId() string
GetId returns the Id field if non-nil, zero value otherwise.
func (o *ControllerServiceDTO) 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.
func (o *ControllerServiceDTO) SetId(v string)
SetId sets Id field to given value.
func (o *ControllerServiceDTO) HasId() bool
HasId returns a boolean if a field has been set.
func (o *ControllerServiceDTO) GetVersionedComponentId() string
GetVersionedComponentId returns the VersionedComponentId field if non-nil, zero value otherwise.
func (o *ControllerServiceDTO) GetVersionedComponentIdOk() (*string, bool)
GetVersionedComponentIdOk returns a tuple with the VersionedComponentId field if it's non-nil, zero value otherwise and a boolean to check if the value has been set.
func (o *ControllerServiceDTO) SetVersionedComponentId(v string)
SetVersionedComponentId sets VersionedComponentId field to given value.
func (o *ControllerServiceDTO) HasVersionedComponentId() bool
HasVersionedComponentId returns a boolean if a field has been set.
func (o *ControllerServiceDTO) GetParentGroupId() string
GetParentGroupId returns the ParentGroupId field if non-nil, zero value otherwise.
func (o *ControllerServiceDTO) GetParentGroupIdOk() (*string, bool)
GetParentGroupIdOk returns a tuple with the ParentGroupId field if it's non-nil, zero value otherwise and a boolean to check if the value has been set.
func (o *ControllerServiceDTO) SetParentGroupId(v string)
SetParentGroupId sets ParentGroupId field to given value.
func (o *ControllerServiceDTO) HasParentGroupId() bool
HasParentGroupId returns a boolean if a field has been set.
func (o *ControllerServiceDTO) GetPosition() PositionDTO
GetPosition returns the Position field if non-nil, zero value otherwise.
func (o *ControllerServiceDTO) GetPositionOk() (*PositionDTO, bool)
GetPositionOk returns a tuple with the Position field if it's non-nil, zero value otherwise and a boolean to check if the value has been set.
func (o *ControllerServiceDTO) SetPosition(v PositionDTO)
SetPosition sets Position field to given value.
func (o *ControllerServiceDTO) HasPosition() bool
HasPosition returns a boolean if a field has been set.
func (o *ControllerServiceDTO) GetName() string
GetName returns the Name field if non-nil, zero value otherwise.
func (o *ControllerServiceDTO) 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.
func (o *ControllerServiceDTO) SetName(v string)
SetName sets Name field to given value.
func (o *ControllerServiceDTO) HasName() bool
HasName returns a boolean if a field has been set.
func (o *ControllerServiceDTO) GetType() string
GetType returns the Type field if non-nil, zero value otherwise.
func (o *ControllerServiceDTO) GetTypeOk() (*string, bool)
GetTypeOk returns a tuple with the Type field if it's non-nil, zero value otherwise and a boolean to check if the value has been set.
func (o *ControllerServiceDTO) SetType(v string)
SetType sets Type field to given value.
func (o *ControllerServiceDTO) HasType() bool
HasType returns a boolean if a field has been set.
func (o *ControllerServiceDTO) GetBundle() BundleDTO
GetBundle returns the Bundle field if non-nil, zero value otherwise.
func (o *ControllerServiceDTO) GetBundleOk() (*BundleDTO, bool)
GetBundleOk returns a tuple with the Bundle field if it's non-nil, zero value otherwise and a boolean to check if the value has been set.
func (o *ControllerServiceDTO) SetBundle(v BundleDTO)
SetBundle sets Bundle field to given value.
func (o *ControllerServiceDTO) HasBundle() bool
HasBundle returns a boolean if a field has been set.
func (o *ControllerServiceDTO) GetControllerServiceApis() []ControllerServiceApiDTO
GetControllerServiceApis returns the ControllerServiceApis field if non-nil, zero value otherwise.
func (o *ControllerServiceDTO) GetControllerServiceApisOk() (*[]ControllerServiceApiDTO, bool)
GetControllerServiceApisOk returns a tuple with the ControllerServiceApis field if it's non-nil, zero value otherwise and a boolean to check if the value has been set.
func (o *ControllerServiceDTO) SetControllerServiceApis(v []ControllerServiceApiDTO)
SetControllerServiceApis sets ControllerServiceApis field to given value.
func (o *ControllerServiceDTO) HasControllerServiceApis() bool
HasControllerServiceApis returns a boolean if a field has been set.
func (o *ControllerServiceDTO) GetComments() string
GetComments returns the Comments field if non-nil, zero value otherwise.
func (o *ControllerServiceDTO) GetCommentsOk() (*string, bool)
GetCommentsOk returns a tuple with the Comments field if it's non-nil, zero value otherwise and a boolean to check if the value has been set.
func (o *ControllerServiceDTO) SetComments(v string)
SetComments sets Comments field to given value.
func (o *ControllerServiceDTO) HasComments() bool
HasComments returns a boolean if a field has been set.
func (o *ControllerServiceDTO) GetState() string
GetState returns the State field if non-nil, zero value otherwise.
func (o *ControllerServiceDTO) 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 *ControllerServiceDTO) SetState(v string)
SetState sets State field to given value.
func (o *ControllerServiceDTO) HasState() bool
HasState returns a boolean if a field has been set.
func (o *ControllerServiceDTO) GetPersistsState() bool
GetPersistsState returns the PersistsState field if non-nil, zero value otherwise.
func (o *ControllerServiceDTO) GetPersistsStateOk() (*bool, bool)
GetPersistsStateOk returns a tuple with the PersistsState field if it's non-nil, zero value otherwise and a boolean to check if the value has been set.
func (o *ControllerServiceDTO) SetPersistsState(v bool)
SetPersistsState sets PersistsState field to given value.
func (o *ControllerServiceDTO) HasPersistsState() bool
HasPersistsState returns a boolean if a field has been set.
func (o *ControllerServiceDTO) GetRestricted() bool
GetRestricted returns the Restricted field if non-nil, zero value otherwise.
func (o *ControllerServiceDTO) GetRestrictedOk() (*bool, bool)
GetRestrictedOk returns a tuple with the Restricted field if it's non-nil, zero value otherwise and a boolean to check if the value has been set.
func (o *ControllerServiceDTO) SetRestricted(v bool)
SetRestricted sets Restricted field to given value.
func (o *ControllerServiceDTO) HasRestricted() bool
HasRestricted returns a boolean if a field has been set.
func (o *ControllerServiceDTO) GetDeprecated() bool
GetDeprecated returns the Deprecated field if non-nil, zero value otherwise.
func (o *ControllerServiceDTO) GetDeprecatedOk() (*bool, bool)
GetDeprecatedOk returns a tuple with the Deprecated field if it's non-nil, zero value otherwise and a boolean to check if the value has been set.
func (o *ControllerServiceDTO) SetDeprecated(v bool)
SetDeprecated sets Deprecated field to given value.
func (o *ControllerServiceDTO) HasDeprecated() bool
HasDeprecated returns a boolean if a field has been set.
func (o *ControllerServiceDTO) GetMultipleVersionsAvailable() bool
GetMultipleVersionsAvailable returns the MultipleVersionsAvailable field if non-nil, zero value otherwise.
func (o *ControllerServiceDTO) GetMultipleVersionsAvailableOk() (*bool, bool)
GetMultipleVersionsAvailableOk returns a tuple with the MultipleVersionsAvailable field if it's non-nil, zero value otherwise and a boolean to check if the value has been set.
func (o *ControllerServiceDTO) SetMultipleVersionsAvailable(v bool)
SetMultipleVersionsAvailable sets MultipleVersionsAvailable field to given value.
func (o *ControllerServiceDTO) HasMultipleVersionsAvailable() bool
HasMultipleVersionsAvailable returns a boolean if a field has been set.
func (o *ControllerServiceDTO) GetProperties() map[string]string
GetProperties returns the Properties field if non-nil, zero value otherwise.
func (o *ControllerServiceDTO) GetPropertiesOk() (*map[string]string, bool)
GetPropertiesOk returns a tuple with the Properties field if it's non-nil, zero value otherwise and a boolean to check if the value has been set.
func (o *ControllerServiceDTO) SetProperties(v map[string]string)
SetProperties sets Properties field to given value.
func (o *ControllerServiceDTO) HasProperties() bool
HasProperties returns a boolean if a field has been set.
func (o *ControllerServiceDTO) GetDescriptors() map[string]PropertyDescriptorDTO
GetDescriptors returns the Descriptors field if non-nil, zero value otherwise.
func (o *ControllerServiceDTO) GetDescriptorsOk() (*map[string]PropertyDescriptorDTO, bool)
GetDescriptorsOk returns a tuple with the Descriptors field if it's non-nil, zero value otherwise and a boolean to check if the value has been set.
func (o *ControllerServiceDTO) SetDescriptors(v map[string]PropertyDescriptorDTO)
SetDescriptors sets Descriptors field to given value.
func (o *ControllerServiceDTO) HasDescriptors() bool
HasDescriptors returns a boolean if a field has been set.
func (o *ControllerServiceDTO) GetCustomUiUrl() string
GetCustomUiUrl returns the CustomUiUrl field if non-nil, zero value otherwise.
func (o *ControllerServiceDTO) GetCustomUiUrlOk() (*string, bool)
GetCustomUiUrlOk returns a tuple with the CustomUiUrl field if it's non-nil, zero value otherwise and a boolean to check if the value has been set.
func (o *ControllerServiceDTO) SetCustomUiUrl(v string)
SetCustomUiUrl sets CustomUiUrl field to given value.
func (o *ControllerServiceDTO) HasCustomUiUrl() bool
HasCustomUiUrl returns a boolean if a field has been set.
func (o *ControllerServiceDTO) GetAnnotationData() string
GetAnnotationData returns the AnnotationData field if non-nil, zero value otherwise.
func (o *ControllerServiceDTO) GetAnnotationDataOk() (*string, bool)
GetAnnotationDataOk returns a tuple with the AnnotationData field if it's non-nil, zero value otherwise and a boolean to check if the value has been set.
func (o *ControllerServiceDTO) SetAnnotationData(v string)
SetAnnotationData sets AnnotationData field to given value.
func (o *ControllerServiceDTO) HasAnnotationData() bool
HasAnnotationData returns a boolean if a field has been set.
func (o *ControllerServiceDTO) GetReferencingComponents() []ControllerServiceReferencingComponentEntity
GetReferencingComponents returns the ReferencingComponents field if non-nil, zero value otherwise.
func (o *ControllerServiceDTO) GetReferencingComponentsOk() (*[]ControllerServiceReferencingComponentEntity, bool)
GetReferencingComponentsOk returns a tuple with the ReferencingComponents field if it's non-nil, zero value otherwise and a boolean to check if the value has been set.
func (o *ControllerServiceDTO) SetReferencingComponents(v []ControllerServiceReferencingComponentEntity)
SetReferencingComponents sets ReferencingComponents field to given value.
func (o *ControllerServiceDTO) HasReferencingComponents() bool
HasReferencingComponents returns a boolean if a field has been set.
func (o *ControllerServiceDTO) GetValidationErrors() []string
GetValidationErrors returns the ValidationErrors field if non-nil, zero value otherwise.
func (o *ControllerServiceDTO) GetValidationErrorsOk() (*[]string, bool)
GetValidationErrorsOk returns a tuple with the ValidationErrors field if it's non-nil, zero value otherwise and a boolean to check if the value has been set.
func (o *ControllerServiceDTO) SetValidationErrors(v []string)
SetValidationErrors sets ValidationErrors field to given value.
func (o *ControllerServiceDTO) HasValidationErrors() bool
HasValidationErrors returns a boolean if a field has been set.
func (o *ControllerServiceDTO) GetValidationStatus() string
GetValidationStatus returns the ValidationStatus field if non-nil, zero value otherwise.
func (o *ControllerServiceDTO) GetValidationStatusOk() (*string, bool)
GetValidationStatusOk returns a tuple with the ValidationStatus field if it's non-nil, zero value otherwise and a boolean to check if the value has been set.
func (o *ControllerServiceDTO) SetValidationStatus(v string)
SetValidationStatus sets ValidationStatus field to given value.
func (o *ControllerServiceDTO) HasValidationStatus() bool
HasValidationStatus returns a boolean if a field has been set.
func (o *ControllerServiceDTO) GetExtensionMissing() bool
GetExtensionMissing returns the ExtensionMissing field if non-nil, zero value otherwise.
func (o *ControllerServiceDTO) GetExtensionMissingOk() (*bool, bool)
GetExtensionMissingOk returns a tuple with the ExtensionMissing field if it's non-nil, zero value otherwise and a boolean to check if the value has been set.
func (o *ControllerServiceDTO) SetExtensionMissing(v bool)
SetExtensionMissing sets ExtensionMissing field to given value.
func (o *ControllerServiceDTO) HasExtensionMissing() bool
HasExtensionMissing returns a boolean if a field has been set.