Skip to content

Commit

Permalink
Add creation support for Gitlab and Teleport and allow fetching owner…
Browse files Browse the repository at this point in the history
… by name (2)
  • Loading branch information
jan-opal committed Feb 22, 2023
1 parent d6bb094 commit 530a02e
Show file tree
Hide file tree
Showing 17 changed files with 1,747 additions and 0 deletions.
51 changes: 51 additions & 0 deletions docs/GroupRemoteInfoGitlabGroup.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,51 @@
# GroupRemoteInfoGitlabGroup

## Properties

Name | Type | Description | Notes
------------ | ------------- | ------------- | -------------
**GroupId** | **string** | The id of the Gitlab group. |

## Methods

### NewGroupRemoteInfoGitlabGroup

`func NewGroupRemoteInfoGitlabGroup(groupId string, ) *GroupRemoteInfoGitlabGroup`

NewGroupRemoteInfoGitlabGroup instantiates a new GroupRemoteInfoGitlabGroup 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

### NewGroupRemoteInfoGitlabGroupWithDefaults

`func NewGroupRemoteInfoGitlabGroupWithDefaults() *GroupRemoteInfoGitlabGroup`

NewGroupRemoteInfoGitlabGroupWithDefaults instantiates a new GroupRemoteInfoGitlabGroup 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

### GetGroupId

`func (o *GroupRemoteInfoGitlabGroup) GetGroupId() string`

GetGroupId returns the GroupId field if non-nil, zero value otherwise.

### GetGroupIdOk

`func (o *GroupRemoteInfoGitlabGroup) GetGroupIdOk() (*string, bool)`

GetGroupIdOk returns a tuple with the GroupId field if it's non-nil, zero value otherwise
and a boolean to check if the value has been set.

### SetGroupId

`func (o *GroupRemoteInfoGitlabGroup) SetGroupId(v string)`

SetGroupId sets GroupId 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)


51 changes: 51 additions & 0 deletions docs/ResourceRemoteInfoGitlabProject.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,51 @@
# ResourceRemoteInfoGitlabProject

## Properties

Name | Type | Description | Notes
------------ | ------------- | ------------- | -------------
**ProjectId** | **string** | The id of the project. |

## Methods

### NewResourceRemoteInfoGitlabProject

`func NewResourceRemoteInfoGitlabProject(projectId string, ) *ResourceRemoteInfoGitlabProject`

NewResourceRemoteInfoGitlabProject instantiates a new ResourceRemoteInfoGitlabProject 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

### NewResourceRemoteInfoGitlabProjectWithDefaults

`func NewResourceRemoteInfoGitlabProjectWithDefaults() *ResourceRemoteInfoGitlabProject`

NewResourceRemoteInfoGitlabProjectWithDefaults instantiates a new ResourceRemoteInfoGitlabProject 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

### GetProjectId

`func (o *ResourceRemoteInfoGitlabProject) GetProjectId() string`

GetProjectId returns the ProjectId field if non-nil, zero value otherwise.

### GetProjectIdOk

`func (o *ResourceRemoteInfoGitlabProject) GetProjectIdOk() (*string, bool)`

GetProjectIdOk returns a tuple with the ProjectId field if it's non-nil, zero value otherwise
and a boolean to check if the value has been set.

### SetProjectId

`func (o *ResourceRemoteInfoGitlabProject) SetProjectId(v string)`

SetProjectId sets ProjectId 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)


51 changes: 51 additions & 0 deletions docs/ResourceRemoteInfoTeleportRole.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,51 @@
# ResourceRemoteInfoTeleportRole

## Properties

Name | Type | Description | Notes
------------ | ------------- | ------------- | -------------
**RoleName** | **string** | The name role. |

## Methods

### NewResourceRemoteInfoTeleportRole

`func NewResourceRemoteInfoTeleportRole(roleName string, ) *ResourceRemoteInfoTeleportRole`

NewResourceRemoteInfoTeleportRole instantiates a new ResourceRemoteInfoTeleportRole 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

### NewResourceRemoteInfoTeleportRoleWithDefaults

`func NewResourceRemoteInfoTeleportRoleWithDefaults() *ResourceRemoteInfoTeleportRole`

NewResourceRemoteInfoTeleportRoleWithDefaults instantiates a new ResourceRemoteInfoTeleportRole 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

### GetRoleName

`func (o *ResourceRemoteInfoTeleportRole) GetRoleName() string`

GetRoleName returns the RoleName field if non-nil, zero value otherwise.

### GetRoleNameOk

`func (o *ResourceRemoteInfoTeleportRole) GetRoleNameOk() (*string, bool)`

GetRoleNameOk returns a tuple with the RoleName field if it's non-nil, zero value otherwise
and a boolean to check if the value has been set.

### SetRoleName

`func (o *ResourceRemoteInfoTeleportRole) SetRoleName(v string)`

SetRoleName sets RoleName 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)


119 changes: 119 additions & 0 deletions model_group_remote_info_gitlab_group.go

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

119 changes: 119 additions & 0 deletions model_resource_remote_info_gitlab_project.go

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

0 comments on commit 530a02e

Please sign in to comment.