-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
github-actions
committed
Dec 6, 2024
1 parent
6411a90
commit 57a45cb
Showing
97 changed files
with
15,038 additions
and
1,489 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,96 @@ | ||
# AccessKey | ||
|
||
## Properties | ||
|
||
Name | Type | Description | Notes | ||
------------ | ------------- | ------------- | ------------- | ||
**Description** | **string** | A description of the access key. | | ||
**Permission** | **string** | The permissions granted to an access key. | | ||
**Buckets** | Pointer to **[]string** | | [optional] | ||
|
||
## Methods | ||
|
||
### NewAccessKey | ||
|
||
`func NewAccessKey(description string, permission string, ) *AccessKey` | ||
|
||
NewAccessKey instantiates a new AccessKey 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 | ||
|
||
### NewAccessKeyWithDefaults | ||
|
||
`func NewAccessKeyWithDefaults() *AccessKey` | ||
|
||
NewAccessKeyWithDefaults instantiates a new AccessKey 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 | ||
|
||
### GetDescription | ||
|
||
`func (o *AccessKey) GetDescription() string` | ||
|
||
GetDescription returns the Description field if non-nil, zero value otherwise. | ||
|
||
### GetDescriptionOk | ||
|
||
`func (o *AccessKey) 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 *AccessKey) SetDescription(v string)` | ||
|
||
SetDescription sets Description field to given value. | ||
|
||
|
||
### GetPermission | ||
|
||
`func (o *AccessKey) GetPermission() string` | ||
|
||
GetPermission returns the Permission field if non-nil, zero value otherwise. | ||
|
||
### GetPermissionOk | ||
|
||
`func (o *AccessKey) GetPermissionOk() (*string, bool)` | ||
|
||
GetPermissionOk returns a tuple with the Permission field if it's non-nil, zero value otherwise | ||
and a boolean to check if the value has been set. | ||
|
||
### SetPermission | ||
|
||
`func (o *AccessKey) SetPermission(v string)` | ||
|
||
SetPermission sets Permission field to given value. | ||
|
||
|
||
### GetBuckets | ||
|
||
`func (o *AccessKey) GetBuckets() []string` | ||
|
||
GetBuckets returns the Buckets field if non-nil, zero value otherwise. | ||
|
||
### GetBucketsOk | ||
|
||
`func (o *AccessKey) GetBucketsOk() (*[]string, bool)` | ||
|
||
GetBucketsOk returns a tuple with the Buckets field if it's non-nil, zero value otherwise | ||
and a boolean to check if the value has been set. | ||
|
||
### SetBuckets | ||
|
||
`func (o *AccessKey) SetBuckets(v []string)` | ||
|
||
SetBuckets sets Buckets field to given value. | ||
|
||
### HasBuckets | ||
|
||
`func (o *AccessKey) HasBuckets() bool` | ||
|
||
HasBuckets returns a boolean if a field has been set. | ||
|
||
|
||
[Back to API list](../README.md#documentation-for-api-endpoints) | [Back to README](../README.md) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,194 @@ | ||
# AccessKeyResponse | ||
|
||
## Properties | ||
|
||
Name | Type | Description | Notes | ||
------------ | ------------- | ------------- | ------------- | ||
**AccessKey** | Pointer to **string** | Generated access key. | [optional] | ||
**SecretKey** | Pointer to **string** | Generated secret key. | [optional] | ||
**Description** | Pointer to **string** | Description for the access key. | [optional] | ||
**Permission** | Pointer to **string** | Permissions granted to an access key. | [optional] | ||
**Buckets** | Pointer to **[]string** | | [optional] | ||
**CreatedAt** | Pointer to **NullableTime** | Date and time in ISO 8601 format. | [optional] [readonly] | ||
|
||
## Methods | ||
|
||
### NewAccessKeyResponse | ||
|
||
`func NewAccessKeyResponse() *AccessKeyResponse` | ||
|
||
NewAccessKeyResponse instantiates a new AccessKeyResponse 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 | ||
|
||
### NewAccessKeyResponseWithDefaults | ||
|
||
`func NewAccessKeyResponseWithDefaults() *AccessKeyResponse` | ||
|
||
NewAccessKeyResponseWithDefaults instantiates a new AccessKeyResponse 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 | ||
|
||
### GetAccessKey | ||
|
||
`func (o *AccessKeyResponse) GetAccessKey() string` | ||
|
||
GetAccessKey returns the AccessKey field if non-nil, zero value otherwise. | ||
|
||
### GetAccessKeyOk | ||
|
||
`func (o *AccessKeyResponse) GetAccessKeyOk() (*string, bool)` | ||
|
||
GetAccessKeyOk returns a tuple with the AccessKey field if it's non-nil, zero value otherwise | ||
and a boolean to check if the value has been set. | ||
|
||
### SetAccessKey | ||
|
||
`func (o *AccessKeyResponse) SetAccessKey(v string)` | ||
|
||
SetAccessKey sets AccessKey field to given value. | ||
|
||
### HasAccessKey | ||
|
||
`func (o *AccessKeyResponse) HasAccessKey() bool` | ||
|
||
HasAccessKey returns a boolean if a field has been set. | ||
|
||
### GetSecretKey | ||
|
||
`func (o *AccessKeyResponse) GetSecretKey() string` | ||
|
||
GetSecretKey returns the SecretKey field if non-nil, zero value otherwise. | ||
|
||
### GetSecretKeyOk | ||
|
||
`func (o *AccessKeyResponse) GetSecretKeyOk() (*string, bool)` | ||
|
||
GetSecretKeyOk returns a tuple with the SecretKey field if it's non-nil, zero value otherwise | ||
and a boolean to check if the value has been set. | ||
|
||
### SetSecretKey | ||
|
||
`func (o *AccessKeyResponse) SetSecretKey(v string)` | ||
|
||
SetSecretKey sets SecretKey field to given value. | ||
|
||
### HasSecretKey | ||
|
||
`func (o *AccessKeyResponse) HasSecretKey() bool` | ||
|
||
HasSecretKey returns a boolean if a field has been set. | ||
|
||
### GetDescription | ||
|
||
`func (o *AccessKeyResponse) GetDescription() string` | ||
|
||
GetDescription returns the Description field if non-nil, zero value otherwise. | ||
|
||
### GetDescriptionOk | ||
|
||
`func (o *AccessKeyResponse) 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 *AccessKeyResponse) SetDescription(v string)` | ||
|
||
SetDescription sets Description field to given value. | ||
|
||
### HasDescription | ||
|
||
`func (o *AccessKeyResponse) HasDescription() bool` | ||
|
||
HasDescription returns a boolean if a field has been set. | ||
|
||
### GetPermission | ||
|
||
`func (o *AccessKeyResponse) GetPermission() string` | ||
|
||
GetPermission returns the Permission field if non-nil, zero value otherwise. | ||
|
||
### GetPermissionOk | ||
|
||
`func (o *AccessKeyResponse) GetPermissionOk() (*string, bool)` | ||
|
||
GetPermissionOk returns a tuple with the Permission field if it's non-nil, zero value otherwise | ||
and a boolean to check if the value has been set. | ||
|
||
### SetPermission | ||
|
||
`func (o *AccessKeyResponse) SetPermission(v string)` | ||
|
||
SetPermission sets Permission field to given value. | ||
|
||
### HasPermission | ||
|
||
`func (o *AccessKeyResponse) HasPermission() bool` | ||
|
||
HasPermission returns a boolean if a field has been set. | ||
|
||
### GetBuckets | ||
|
||
`func (o *AccessKeyResponse) GetBuckets() []string` | ||
|
||
GetBuckets returns the Buckets field if non-nil, zero value otherwise. | ||
|
||
### GetBucketsOk | ||
|
||
`func (o *AccessKeyResponse) GetBucketsOk() (*[]string, bool)` | ||
|
||
GetBucketsOk returns a tuple with the Buckets field if it's non-nil, zero value otherwise | ||
and a boolean to check if the value has been set. | ||
|
||
### SetBuckets | ||
|
||
`func (o *AccessKeyResponse) SetBuckets(v []string)` | ||
|
||
SetBuckets sets Buckets field to given value. | ||
|
||
### HasBuckets | ||
|
||
`func (o *AccessKeyResponse) HasBuckets() bool` | ||
|
||
HasBuckets returns a boolean if a field has been set. | ||
|
||
### GetCreatedAt | ||
|
||
`func (o *AccessKeyResponse) GetCreatedAt() time.Time` | ||
|
||
GetCreatedAt returns the CreatedAt field if non-nil, zero value otherwise. | ||
|
||
### GetCreatedAtOk | ||
|
||
`func (o *AccessKeyResponse) GetCreatedAtOk() (*time.Time, bool)` | ||
|
||
GetCreatedAtOk returns a tuple with the CreatedAt field if it's non-nil, zero value otherwise | ||
and a boolean to check if the value has been set. | ||
|
||
### SetCreatedAt | ||
|
||
`func (o *AccessKeyResponse) SetCreatedAt(v time.Time)` | ||
|
||
SetCreatedAt sets CreatedAt field to given value. | ||
|
||
### HasCreatedAt | ||
|
||
`func (o *AccessKeyResponse) HasCreatedAt() bool` | ||
|
||
HasCreatedAt returns a boolean if a field has been set. | ||
|
||
### SetCreatedAtNil | ||
|
||
`func (o *AccessKeyResponse) SetCreatedAtNil(b bool)` | ||
|
||
SetCreatedAtNil sets the value for CreatedAt to be an explicit nil | ||
|
||
### UnsetCreatedAt | ||
`func (o *AccessKeyResponse) UnsetCreatedAt()` | ||
|
||
UnsetCreatedAt ensures that no value is present for CreatedAt, not even an explicit nil | ||
|
||
[Back to API list](../README.md#documentation-for-api-endpoints) | [Back to README](../README.md) |
Oops, something went wrong.