Skip to content
This repository has been archived by the owner on Nov 20, 2023. It is now read-only.

Latest commit

 

History

History
186 lines (101 loc) · 4.59 KB

ACLPolicy.md

File metadata and controls

186 lines (101 loc) · 4.59 KB

ACLPolicy

Properties

Name Type Description Notes
CreateIndex Pointer to int32 [optional]
Description Pointer to string [optional]
JobACL Pointer to JobACL [optional]
ModifyIndex Pointer to int32 [optional]
Name Pointer to string [optional]
Rules Pointer to string [optional]

Methods

NewACLPolicy

func NewACLPolicy() *ACLPolicy

NewACLPolicy instantiates a new ACLPolicy 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

NewACLPolicyWithDefaults

func NewACLPolicyWithDefaults() *ACLPolicy

NewACLPolicyWithDefaults instantiates a new ACLPolicy 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

GetCreateIndex

func (o *ACLPolicy) GetCreateIndex() int32

GetCreateIndex returns the CreateIndex field if non-nil, zero value otherwise.

GetCreateIndexOk

func (o *ACLPolicy) GetCreateIndexOk() (*int32, bool)

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

SetCreateIndex

func (o *ACLPolicy) SetCreateIndex(v int32)

SetCreateIndex sets CreateIndex field to given value.

HasCreateIndex

func (o *ACLPolicy) HasCreateIndex() bool

HasCreateIndex returns a boolean if a field has been set.

GetDescription

func (o *ACLPolicy) GetDescription() string

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

GetDescriptionOk

func (o *ACLPolicy) 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 *ACLPolicy) SetDescription(v string)

SetDescription sets Description field to given value.

HasDescription

func (o *ACLPolicy) HasDescription() bool

HasDescription returns a boolean if a field has been set.

GetJobACL

func (o *ACLPolicy) GetJobACL() JobACL

GetJobACL returns the JobACL field if non-nil, zero value otherwise.

GetJobACLOk

func (o *ACLPolicy) GetJobACLOk() (*JobACL, bool)

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

SetJobACL

func (o *ACLPolicy) SetJobACL(v JobACL)

SetJobACL sets JobACL field to given value.

HasJobACL

func (o *ACLPolicy) HasJobACL() bool

HasJobACL returns a boolean if a field has been set.

GetModifyIndex

func (o *ACLPolicy) GetModifyIndex() int32

GetModifyIndex returns the ModifyIndex field if non-nil, zero value otherwise.

GetModifyIndexOk

func (o *ACLPolicy) GetModifyIndexOk() (*int32, bool)

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

SetModifyIndex

func (o *ACLPolicy) SetModifyIndex(v int32)

SetModifyIndex sets ModifyIndex field to given value.

HasModifyIndex

func (o *ACLPolicy) HasModifyIndex() bool

HasModifyIndex returns a boolean if a field has been set.

GetName

func (o *ACLPolicy) GetName() string

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

GetNameOk

func (o *ACLPolicy) 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 *ACLPolicy) SetName(v string)

SetName sets Name field to given value.

HasName

func (o *ACLPolicy) HasName() bool

HasName returns a boolean if a field has been set.

GetRules

func (o *ACLPolicy) GetRules() string

GetRules returns the Rules field if non-nil, zero value otherwise.

GetRulesOk

func (o *ACLPolicy) GetRulesOk() (*string, bool)

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

SetRules

func (o *ACLPolicy) SetRules(v string)

SetRules sets Rules field to given value.

HasRules

func (o *ACLPolicy) HasRules() bool

HasRules returns a boolean if a field has been set.

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