Skip to content

Latest commit

 

History

History
186 lines (101 loc) · 4.69 KB

AwsStorage.md

File metadata and controls

186 lines (101 loc) · 4.69 KB

AwsStorage

Properties

Name Type Description Notes
AccessKeyId Pointer to string creds [optional]
AccessKeySecret Pointer to string [optional]
AuthType Pointer to string [optional]
Bucket Pointer to string [optional]
Prefix Pointer to string [optional]
Region Pointer to string [optional]

Methods

NewAwsStorage

func NewAwsStorage() *AwsStorage

NewAwsStorage instantiates a new AwsStorage 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

NewAwsStorageWithDefaults

func NewAwsStorageWithDefaults() *AwsStorage

NewAwsStorageWithDefaults instantiates a new AwsStorage 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

GetAccessKeyId

func (o *AwsStorage) GetAccessKeyId() string

GetAccessKeyId returns the AccessKeyId field if non-nil, zero value otherwise.

GetAccessKeyIdOk

func (o *AwsStorage) GetAccessKeyIdOk() (*string, bool)

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

SetAccessKeyId

func (o *AwsStorage) SetAccessKeyId(v string)

SetAccessKeyId sets AccessKeyId field to given value.

HasAccessKeyId

func (o *AwsStorage) HasAccessKeyId() bool

HasAccessKeyId returns a boolean if a field has been set.

GetAccessKeySecret

func (o *AwsStorage) GetAccessKeySecret() string

GetAccessKeySecret returns the AccessKeySecret field if non-nil, zero value otherwise.

GetAccessKeySecretOk

func (o *AwsStorage) GetAccessKeySecretOk() (*string, bool)

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

SetAccessKeySecret

func (o *AwsStorage) SetAccessKeySecret(v string)

SetAccessKeySecret sets AccessKeySecret field to given value.

HasAccessKeySecret

func (o *AwsStorage) HasAccessKeySecret() bool

HasAccessKeySecret returns a boolean if a field has been set.

GetAuthType

func (o *AwsStorage) GetAuthType() string

GetAuthType returns the AuthType field if non-nil, zero value otherwise.

GetAuthTypeOk

func (o *AwsStorage) GetAuthTypeOk() (*string, bool)

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

SetAuthType

func (o *AwsStorage) SetAuthType(v string)

SetAuthType sets AuthType field to given value.

HasAuthType

func (o *AwsStorage) HasAuthType() bool

HasAuthType returns a boolean if a field has been set.

GetBucket

func (o *AwsStorage) GetBucket() string

GetBucket returns the Bucket field if non-nil, zero value otherwise.

GetBucketOk

func (o *AwsStorage) GetBucketOk() (*string, bool)

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

SetBucket

func (o *AwsStorage) SetBucket(v string)

SetBucket sets Bucket field to given value.

HasBucket

func (o *AwsStorage) HasBucket() bool

HasBucket returns a boolean if a field has been set.

GetPrefix

func (o *AwsStorage) GetPrefix() string

GetPrefix returns the Prefix field if non-nil, zero value otherwise.

GetPrefixOk

func (o *AwsStorage) GetPrefixOk() (*string, bool)

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

SetPrefix

func (o *AwsStorage) SetPrefix(v string)

SetPrefix sets Prefix field to given value.

HasPrefix

func (o *AwsStorage) HasPrefix() bool

HasPrefix returns a boolean if a field has been set.

GetRegion

func (o *AwsStorage) GetRegion() string

GetRegion returns the Region field if non-nil, zero value otherwise.

GetRegionOk

func (o *AwsStorage) GetRegionOk() (*string, bool)

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

SetRegion

func (o *AwsStorage) SetRegion(v string)

SetRegion sets Region field to given value.

HasRegion

func (o *AwsStorage) HasRegion() bool

HasRegion returns a boolean if a field has been set.

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