-
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.
Support AWS IC permission sets (#14)
cp ../opal/web/backend/router/handlers/public/openapi.yaml api/openapi.yaml make gen-openapi
- Loading branch information
Showing
13 changed files
with
725 additions
and
12 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
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
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,51 @@ | ||
# AwsPermissionSetMetadata | ||
|
||
## Properties | ||
|
||
Name | Type | Description | Notes | ||
------------ | ------------- | ------------- | ------------- | ||
**AwsPermissionSet** | [**AwsPermissionSetMetadataAwsPermissionSet**](AwsPermissionSetMetadataAwsPermissionSet.md) | | | ||
|
||
## Methods | ||
|
||
### NewAwsPermissionSetMetadata | ||
|
||
`func NewAwsPermissionSetMetadata(awsPermissionSet AwsPermissionSetMetadataAwsPermissionSet, ) *AwsPermissionSetMetadata` | ||
|
||
NewAwsPermissionSetMetadata instantiates a new AwsPermissionSetMetadata 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 | ||
|
||
### NewAwsPermissionSetMetadataWithDefaults | ||
|
||
`func NewAwsPermissionSetMetadataWithDefaults() *AwsPermissionSetMetadata` | ||
|
||
NewAwsPermissionSetMetadataWithDefaults instantiates a new AwsPermissionSetMetadata 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 | ||
|
||
### GetAwsPermissionSet | ||
|
||
`func (o *AwsPermissionSetMetadata) GetAwsPermissionSet() AwsPermissionSetMetadataAwsPermissionSet` | ||
|
||
GetAwsPermissionSet returns the AwsPermissionSet field if non-nil, zero value otherwise. | ||
|
||
### GetAwsPermissionSetOk | ||
|
||
`func (o *AwsPermissionSetMetadata) GetAwsPermissionSetOk() (*AwsPermissionSetMetadataAwsPermissionSet, bool)` | ||
|
||
GetAwsPermissionSetOk returns a tuple with the AwsPermissionSet field if it's non-nil, zero value otherwise | ||
and a boolean to check if the value has been set. | ||
|
||
### SetAwsPermissionSet | ||
|
||
`func (o *AwsPermissionSetMetadata) SetAwsPermissionSet(v AwsPermissionSetMetadataAwsPermissionSet)` | ||
|
||
SetAwsPermissionSet sets AwsPermissionSet field to given value. | ||
|
||
|
||
|
||
[[Back to Model list]](../README.md#documentation-for-models) [[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,72 @@ | ||
# AwsPermissionSetMetadataAwsPermissionSet | ||
|
||
## Properties | ||
|
||
Name | Type | Description | Notes | ||
------------ | ------------- | ------------- | ------------- | ||
**Arn** | **string** | The ARN of the permission set. | | ||
**AccountId** | **string** | The ID of an AWS account to which this permission set is provisioned. | | ||
|
||
## Methods | ||
|
||
### NewAwsPermissionSetMetadataAwsPermissionSet | ||
|
||
`func NewAwsPermissionSetMetadataAwsPermissionSet(arn string, accountId string, ) *AwsPermissionSetMetadataAwsPermissionSet` | ||
|
||
NewAwsPermissionSetMetadataAwsPermissionSet instantiates a new AwsPermissionSetMetadataAwsPermissionSet 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 | ||
|
||
### NewAwsPermissionSetMetadataAwsPermissionSetWithDefaults | ||
|
||
`func NewAwsPermissionSetMetadataAwsPermissionSetWithDefaults() *AwsPermissionSetMetadataAwsPermissionSet` | ||
|
||
NewAwsPermissionSetMetadataAwsPermissionSetWithDefaults instantiates a new AwsPermissionSetMetadataAwsPermissionSet 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 | ||
|
||
### GetArn | ||
|
||
`func (o *AwsPermissionSetMetadataAwsPermissionSet) GetArn() string` | ||
|
||
GetArn returns the Arn field if non-nil, zero value otherwise. | ||
|
||
### GetArnOk | ||
|
||
`func (o *AwsPermissionSetMetadataAwsPermissionSet) GetArnOk() (*string, bool)` | ||
|
||
GetArnOk returns a tuple with the Arn field if it's non-nil, zero value otherwise | ||
and a boolean to check if the value has been set. | ||
|
||
### SetArn | ||
|
||
`func (o *AwsPermissionSetMetadataAwsPermissionSet) SetArn(v string)` | ||
|
||
SetArn sets Arn field to given value. | ||
|
||
|
||
### GetAccountId | ||
|
||
`func (o *AwsPermissionSetMetadataAwsPermissionSet) GetAccountId() string` | ||
|
||
GetAccountId returns the AccountId field if non-nil, zero value otherwise. | ||
|
||
### GetAccountIdOk | ||
|
||
`func (o *AwsPermissionSetMetadataAwsPermissionSet) GetAccountIdOk() (*string, bool)` | ||
|
||
GetAccountIdOk returns a tuple with the AccountId field if it's non-nil, zero value otherwise | ||
and a boolean to check if the value has been set. | ||
|
||
### SetAccountId | ||
|
||
`func (o *AwsPermissionSetMetadataAwsPermissionSet) SetAccountId(v string)` | ||
|
||
SetAccountId sets AccountId field to given value. | ||
|
||
|
||
|
||
[[Back to Model list]](../README.md#documentation-for-models) [[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
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
Oops, something went wrong.