Skip to content

Commit 273592f

Browse files
committed
WIP
1 parent 56c6652 commit 273592f

10 files changed

+251
-60
lines changed

v10/README.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -314,6 +314,7 @@ Class | Method | HTTP request | Description
314314
*SecurityRolePermissionsApi* | [**SecurityRolePermissionsSetGlobalPermissions**](docs/SecurityRolePermissionsApi.md#securityrolepermissionssetglobalpermissions) | **Put** /Security/Roles/{id}/Permissions/Global | Adds global permissions to the security role that matches the id.
315315
*SecurityRolesApi* | [**SecurityRolesDeleteSecurityRole**](docs/SecurityRolesApi.md#securityrolesdeletesecurityrole) | **Delete** /Security/Roles/{id} | Deletes the security role whose ID is provided.
316316
*SecurityRolesApi* | [**SecurityRolesGetIdentitiesWithRole**](docs/SecurityRolesApi.md#securityrolesgetidentitieswithrole) | **Get** /Security/Roles/{id}/Identities | Returns all identities which have the security role that matches the id.
317+
*SecurityRolesApi* | [**SecurityRolesGetSecurityRole**](docs/SecurityRolesApi.md#securityrolesgetsecurityrole) | **Get** /Security/Roles/{id} | Returns a single security role that matches the id.
317318
*SecurityRolesApi* | [**SecurityRolesUpdateIdentitiesWithRole**](docs/SecurityRolesApi.md#securityrolesupdateidentitieswithrole) | **Put** /Security/Roles/{id}/Identities | Updates the identities which have the security role that matches the id.
318319
*ServerApi* | [**ServerAddAccess**](docs/ServerApi.md#serveraddaccess) | **Post** /SSH/Servers/Access | Updates logons and users with access to those logons for an existing server
319320
*ServerApi* | [**ServerCreateServer**](docs/ServerApi.md#servercreateserver) | **Post** /SSH/Servers | Creates a server with the provided properties
@@ -744,7 +745,9 @@ Class | Method | HTTP request | Description
744745
- [ModelsSecurityIdentitiesSecurityIdentityLookupResponse](docs/ModelsSecurityIdentitiesSecurityIdentityLookupResponse.md)
745746
- [ModelsSecurityIdentitiesSecurityIdentityPermissionsResponse](docs/ModelsSecurityIdentitiesSecurityIdentityPermissionsResponse.md)
746747
- [ModelsSecurityIdentitiesSecurityIdentityRequest](docs/ModelsSecurityIdentitiesSecurityIdentityRequest.md)
748+
- [ModelsSecurityIdentitiesSecurityIdentityResponse](docs/ModelsSecurityIdentitiesSecurityIdentityResponse.md)
747749
- [ModelsSecuritySecurityRolesSecurityRoleCreationRequest](docs/ModelsSecuritySecurityRolesSecurityRoleCreationRequest.md)
750+
- [ModelsSecuritySecurityRolesSecurityRoleResponse](docs/ModelsSecuritySecurityRolesSecurityRoleResponse.md)
748751
- [ModelsSecuritySecurityRolesSecurityRoleResponseBase](docs/ModelsSecuritySecurityRolesSecurityRoleResponseBase.md)
749752
- [ModelsSecuritySecurityRolesSecurityRoleUpdateRequest](docs/ModelsSecuritySecurityRolesSecurityRoleUpdateRequest.md)
750753
- [ModelsSubjectAlternativeName](docs/ModelsSubjectAlternativeName.md)

v10/api/command/api_security_roles.go

Lines changed: 128 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

v10/api/command/api_security_roles_test.go

Lines changed: 15 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

v10/api/command/model_models_template_collection_retrieval_response.go

Lines changed: 13 additions & 22 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

v10/api/command/model_models_template_retrieval_response.go

Lines changed: 13 additions & 22 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

v10/docs/ModelsTemplateCollectionRetrievalResponse.md

Lines changed: 2 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44

55
Name | Type | Description | Notes
66
------------ | ------------- | ------------- | -------------
7-
**Id** | Pointer to **int32** | | [optional]
7+
**Id** | **int32** | |
88
**CommonName** | Pointer to **string** | | [optional]
99
**TemplateName** | Pointer to **string** | | [optional]
1010
**Oid** | Pointer to **string** | | [optional]
@@ -30,7 +30,7 @@ Name | Type | Description | Notes
3030

3131
### NewModelsTemplateCollectionRetrievalResponse
3232

33-
`func NewModelsTemplateCollectionRetrievalResponse() *ModelsTemplateCollectionRetrievalResponse`
33+
`func NewModelsTemplateCollectionRetrievalResponse(id int32, ) *ModelsTemplateCollectionRetrievalResponse`
3434

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

6565
SetId sets Id field to given value.
6666

67-
### HasId
68-
69-
`func (o *ModelsTemplateCollectionRetrievalResponse) HasId() bool`
70-
71-
HasId returns a boolean if a field has been set.
7267

7368
### GetCommonName
7469

v10/docs/ModelsTemplateRetrievalResponse.md

Lines changed: 2 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44

55
Name | Type | Description | Notes
66
------------ | ------------- | ------------- | -------------
7-
**Id** | Pointer to **int32** | | [optional]
7+
**Id** | **int32** | |
88
**CommonName** | Pointer to **string** | | [optional]
99
**TemplateName** | Pointer to **string** | | [optional]
1010
**Oid** | Pointer to **string** | | [optional]
@@ -35,7 +35,7 @@ Name | Type | Description | Notes
3535

3636
### NewModelsTemplateRetrievalResponse
3737

38-
`func NewModelsTemplateRetrievalResponse() *ModelsTemplateRetrievalResponse`
38+
`func NewModelsTemplateRetrievalResponse(id int32, ) *ModelsTemplateRetrievalResponse`
3939

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

7070
SetId sets Id field to given value.
7171

72-
### HasId
73-
74-
`func (o *ModelsTemplateRetrievalResponse) HasId() bool`
75-
76-
HasId returns a boolean if a field has been set.
7772

7873
### GetCommonName
7974

0 commit comments

Comments
 (0)