-
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
Jun 28, 2023
1 parent
923473b
commit fa0ef12
Showing
61 changed files
with
8,188 additions
and
670 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,158 @@ | ||
# AutomationToken | ||
|
||
## Properties | ||
|
||
Name | Type | Description | Notes | ||
------------ | ------------- | ------------- | ------------- | ||
**Name** | Pointer to **string** | The name of the token. | [optional] | ||
**Role** | Pointer to **string** | The role on the token. | [optional] | ||
**Services** | Pointer to **[]string** | (Optional) The service IDs of the services the token will have access to. Separate service IDs with a space. If no services are specified, the token will have access to all services on the account. | [optional] | ||
**Scope** | Pointer to **string** | A space-delimited list of authorization scope. | [optional] [default to "global"] | ||
**ExpiresAt** | Pointer to **string** | A UTC time-stamp of when the token expires. | [optional] | ||
|
||
## Methods | ||
|
||
### NewAutomationToken | ||
|
||
`func NewAutomationToken() *AutomationToken` | ||
|
||
NewAutomationToken instantiates a new AutomationToken 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 | ||
|
||
### NewAutomationTokenWithDefaults | ||
|
||
`func NewAutomationTokenWithDefaults() *AutomationToken` | ||
|
||
NewAutomationTokenWithDefaults instantiates a new AutomationToken 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 | ||
|
||
### GetName | ||
|
||
`func (o *AutomationToken) GetName() string` | ||
|
||
GetName returns the Name field if non-nil, zero value otherwise. | ||
|
||
### GetNameOk | ||
|
||
`func (o *AutomationToken) 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 *AutomationToken) SetName(v string)` | ||
|
||
SetName sets Name field to given value. | ||
|
||
### HasName | ||
|
||
`func (o *AutomationToken) HasName() bool` | ||
|
||
HasName returns a boolean if a field has been set. | ||
|
||
### GetRole | ||
|
||
`func (o *AutomationToken) GetRole() string` | ||
|
||
GetRole returns the Role field if non-nil, zero value otherwise. | ||
|
||
### GetRoleOk | ||
|
||
`func (o *AutomationToken) GetRoleOk() (*string, bool)` | ||
|
||
GetRoleOk returns a tuple with the Role field if it's non-nil, zero value otherwise | ||
and a boolean to check if the value has been set. | ||
|
||
### SetRole | ||
|
||
`func (o *AutomationToken) SetRole(v string)` | ||
|
||
SetRole sets Role field to given value. | ||
|
||
### HasRole | ||
|
||
`func (o *AutomationToken) HasRole() bool` | ||
|
||
HasRole returns a boolean if a field has been set. | ||
|
||
### GetServices | ||
|
||
`func (o *AutomationToken) GetServices() []string` | ||
|
||
GetServices returns the Services field if non-nil, zero value otherwise. | ||
|
||
### GetServicesOk | ||
|
||
`func (o *AutomationToken) GetServicesOk() (*[]string, bool)` | ||
|
||
GetServicesOk returns a tuple with the Services field if it's non-nil, zero value otherwise | ||
and a boolean to check if the value has been set. | ||
|
||
### SetServices | ||
|
||
`func (o *AutomationToken) SetServices(v []string)` | ||
|
||
SetServices sets Services field to given value. | ||
|
||
### HasServices | ||
|
||
`func (o *AutomationToken) HasServices() bool` | ||
|
||
HasServices returns a boolean if a field has been set. | ||
|
||
### GetScope | ||
|
||
`func (o *AutomationToken) GetScope() string` | ||
|
||
GetScope returns the Scope field if non-nil, zero value otherwise. | ||
|
||
### GetScopeOk | ||
|
||
`func (o *AutomationToken) GetScopeOk() (*string, bool)` | ||
|
||
GetScopeOk returns a tuple with the Scope field if it's non-nil, zero value otherwise | ||
and a boolean to check if the value has been set. | ||
|
||
### SetScope | ||
|
||
`func (o *AutomationToken) SetScope(v string)` | ||
|
||
SetScope sets Scope field to given value. | ||
|
||
### HasScope | ||
|
||
`func (o *AutomationToken) HasScope() bool` | ||
|
||
HasScope returns a boolean if a field has been set. | ||
|
||
### GetExpiresAt | ||
|
||
`func (o *AutomationToken) GetExpiresAt() string` | ||
|
||
GetExpiresAt returns the ExpiresAt field if non-nil, zero value otherwise. | ||
|
||
### GetExpiresAtOk | ||
|
||
`func (o *AutomationToken) GetExpiresAtOk() (*string, bool)` | ||
|
||
GetExpiresAtOk returns a tuple with the ExpiresAt field if it's non-nil, zero value otherwise | ||
and a boolean to check if the value has been set. | ||
|
||
### SetExpiresAt | ||
|
||
`func (o *AutomationToken) SetExpiresAt(v string)` | ||
|
||
SetExpiresAt sets ExpiresAt field to given value. | ||
|
||
### HasExpiresAt | ||
|
||
`func (o *AutomationToken) HasExpiresAt() bool` | ||
|
||
HasExpiresAt 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,54 @@ | ||
# AutomationTokenCreateRequest | ||
|
||
## Properties | ||
|
||
Name | Type | Description | Notes | ||
------------ | ------------- | ------------- | ------------- | ||
**Attributes** | Pointer to [**AutomationTokenCreateRequestAttributes**](AutomationTokenCreateRequestAttributes.md) | | [optional] | ||
|
||
## Methods | ||
|
||
### NewAutomationTokenCreateRequest | ||
|
||
`func NewAutomationTokenCreateRequest() *AutomationTokenCreateRequest` | ||
|
||
NewAutomationTokenCreateRequest instantiates a new AutomationTokenCreateRequest 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 | ||
|
||
### NewAutomationTokenCreateRequestWithDefaults | ||
|
||
`func NewAutomationTokenCreateRequestWithDefaults() *AutomationTokenCreateRequest` | ||
|
||
NewAutomationTokenCreateRequestWithDefaults instantiates a new AutomationTokenCreateRequest 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 | ||
|
||
### GetAttributes | ||
|
||
`func (o *AutomationTokenCreateRequest) GetAttributes() AutomationTokenCreateRequestAttributes` | ||
|
||
GetAttributes returns the Attributes field if non-nil, zero value otherwise. | ||
|
||
### GetAttributesOk | ||
|
||
`func (o *AutomationTokenCreateRequest) GetAttributesOk() (*AutomationTokenCreateRequestAttributes, bool)` | ||
|
||
GetAttributesOk returns a tuple with the Attributes field if it's non-nil, zero value otherwise | ||
and a boolean to check if the value has been set. | ||
|
||
### SetAttributes | ||
|
||
`func (o *AutomationTokenCreateRequest) SetAttributes(v AutomationTokenCreateRequestAttributes)` | ||
|
||
SetAttributes sets Attributes field to given value. | ||
|
||
### HasAttributes | ||
|
||
`func (o *AutomationTokenCreateRequest) HasAttributes() bool` | ||
|
||
HasAttributes returns a boolean if a field has been set. | ||
|
||
|
||
[Back to API list](../README.md#documentation-for-api-endpoints) | [Back to README](../README.md) |
Oops, something went wrong.