Skip to content

Commit

Permalink
WIP
Browse files Browse the repository at this point in the history
  • Loading branch information
spbsoluble committed Jan 11, 2024
1 parent 56c6652 commit 273592f
Show file tree
Hide file tree
Showing 10 changed files with 251 additions and 60 deletions.
3 changes: 3 additions & 0 deletions v10/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -314,6 +314,7 @@ Class | Method | HTTP request | Description
*SecurityRolePermissionsApi* | [**SecurityRolePermissionsSetGlobalPermissions**](docs/SecurityRolePermissionsApi.md#securityrolepermissionssetglobalpermissions) | **Put** /Security/Roles/{id}/Permissions/Global | Adds global permissions to the security role that matches the id.
*SecurityRolesApi* | [**SecurityRolesDeleteSecurityRole**](docs/SecurityRolesApi.md#securityrolesdeletesecurityrole) | **Delete** /Security/Roles/{id} | Deletes the security role whose ID is provided.
*SecurityRolesApi* | [**SecurityRolesGetIdentitiesWithRole**](docs/SecurityRolesApi.md#securityrolesgetidentitieswithrole) | **Get** /Security/Roles/{id}/Identities | Returns all identities which have the security role that matches the id.
*SecurityRolesApi* | [**SecurityRolesGetSecurityRole**](docs/SecurityRolesApi.md#securityrolesgetsecurityrole) | **Get** /Security/Roles/{id} | Returns a single security role that matches the id.
*SecurityRolesApi* | [**SecurityRolesUpdateIdentitiesWithRole**](docs/SecurityRolesApi.md#securityrolesupdateidentitieswithrole) | **Put** /Security/Roles/{id}/Identities | Updates the identities which have the security role that matches the id.
*ServerApi* | [**ServerAddAccess**](docs/ServerApi.md#serveraddaccess) | **Post** /SSH/Servers/Access | Updates logons and users with access to those logons for an existing server
*ServerApi* | [**ServerCreateServer**](docs/ServerApi.md#servercreateserver) | **Post** /SSH/Servers | Creates a server with the provided properties
Expand Down Expand Up @@ -744,7 +745,9 @@ Class | Method | HTTP request | Description
- [ModelsSecurityIdentitiesSecurityIdentityLookupResponse](docs/ModelsSecurityIdentitiesSecurityIdentityLookupResponse.md)
- [ModelsSecurityIdentitiesSecurityIdentityPermissionsResponse](docs/ModelsSecurityIdentitiesSecurityIdentityPermissionsResponse.md)
- [ModelsSecurityIdentitiesSecurityIdentityRequest](docs/ModelsSecurityIdentitiesSecurityIdentityRequest.md)
- [ModelsSecurityIdentitiesSecurityIdentityResponse](docs/ModelsSecurityIdentitiesSecurityIdentityResponse.md)
- [ModelsSecuritySecurityRolesSecurityRoleCreationRequest](docs/ModelsSecuritySecurityRolesSecurityRoleCreationRequest.md)
- [ModelsSecuritySecurityRolesSecurityRoleResponse](docs/ModelsSecuritySecurityRolesSecurityRoleResponse.md)
- [ModelsSecuritySecurityRolesSecurityRoleResponseBase](docs/ModelsSecuritySecurityRolesSecurityRoleResponseBase.md)
- [ModelsSecuritySecurityRolesSecurityRoleUpdateRequest](docs/ModelsSecuritySecurityRolesSecurityRoleUpdateRequest.md)
- [ModelsSubjectAlternativeName](docs/ModelsSubjectAlternativeName.md)
Expand Down
128 changes: 128 additions & 0 deletions v10/api/command/api_security_roles.go

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

15 changes: 15 additions & 0 deletions v10/api/command/api_security_roles_test.go

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

35 changes: 13 additions & 22 deletions v10/api/command/model_models_template_retrieval_response.go

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

9 changes: 2 additions & 7 deletions v10/docs/ModelsTemplateCollectionRetrievalResponse.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@

Name | Type | Description | Notes
------------ | ------------- | ------------- | -------------
**Id** | Pointer to **int32** | | [optional]
**Id** | **int32** | |
**CommonName** | Pointer to **string** | | [optional]
**TemplateName** | Pointer to **string** | | [optional]
**Oid** | Pointer to **string** | | [optional]
Expand All @@ -30,7 +30,7 @@ Name | Type | Description | Notes

### NewModelsTemplateCollectionRetrievalResponse

`func NewModelsTemplateCollectionRetrievalResponse() *ModelsTemplateCollectionRetrievalResponse`
`func NewModelsTemplateCollectionRetrievalResponse(id int32, ) *ModelsTemplateCollectionRetrievalResponse`

NewModelsTemplateCollectionRetrievalResponse instantiates a new ModelsTemplateCollectionRetrievalResponse object
This constructor will assign default values to properties that have it defined,
Expand Down Expand Up @@ -64,11 +64,6 @@ and a boolean to check if the value has been set.

SetId sets Id field to given value.

### HasId

`func (o *ModelsTemplateCollectionRetrievalResponse) HasId() bool`

HasId returns a boolean if a field has been set.

### GetCommonName

Expand Down
9 changes: 2 additions & 7 deletions v10/docs/ModelsTemplateRetrievalResponse.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@

Name | Type | Description | Notes
------------ | ------------- | ------------- | -------------
**Id** | Pointer to **int32** | | [optional]
**Id** | **int32** | |
**CommonName** | Pointer to **string** | | [optional]
**TemplateName** | Pointer to **string** | | [optional]
**Oid** | Pointer to **string** | | [optional]
Expand Down Expand Up @@ -35,7 +35,7 @@ Name | Type | Description | Notes

### NewModelsTemplateRetrievalResponse

`func NewModelsTemplateRetrievalResponse() *ModelsTemplateRetrievalResponse`
`func NewModelsTemplateRetrievalResponse(id int32, ) *ModelsTemplateRetrievalResponse`

NewModelsTemplateRetrievalResponse instantiates a new ModelsTemplateRetrievalResponse object
This constructor will assign default values to properties that have it defined,
Expand Down Expand Up @@ -69,11 +69,6 @@ and a boolean to check if the value has been set.

SetId sets Id field to given value.

### HasId

`func (o *ModelsTemplateRetrievalResponse) HasId() bool`

HasId returns a boolean if a field has been set.

### GetCommonName

Expand Down
Loading

0 comments on commit 273592f

Please sign in to comment.