Skip to content

Commit

Permalink
Automated build 'Automated commit 'Merge pull request #1897 from sail…
Browse files Browse the repository at this point in the history
…point/devrel-1884

Fix status type, should be an integer' by github action: 11863532793' go sdk: 11863538536
  • Loading branch information
developer-relations-sp committed Nov 15, 2024
1 parent 0a44e24 commit 66d4033
Show file tree
Hide file tree
Showing 14 changed files with 98 additions and 98 deletions.
28 changes: 14 additions & 14 deletions api_beta/api/openapi.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -79511,7 +79511,7 @@ components:
description: Bulk remove Governance Groups Response.
example:
- id: 464ae7bf791e49fdb74606a2e4a89635
status: "204"
status: 204
description: Governance Group deleted successfully.
items:
$ref: '#/components/schemas/WorkgroupDeleteItem'
Expand Down Expand Up @@ -79550,7 +79550,7 @@ components:
description: Bulk add Governance Group members Response.
example:
- id: 464ae7bf791e49fdb74606a2e4a89635
status: "201"
status: 201
description: Identity added to Governance Group members list.
items:
$ref: '#/components/schemas/WorkgroupMemberAddItem'
Expand All @@ -79559,7 +79559,7 @@ components:
description: Bulk add Governance Group members Response.
example:
- id: 464ae7bf791e49fdb74606a2e4a89635
status: "204"
status: 204
description: Identity deleted from Governance Group members list.
items:
$ref: '#/components/schemas/WorkgroupMemberDeleteItem'
Expand Down Expand Up @@ -87284,8 +87284,9 @@ components:
> 409 - Governance Group is in use,hence can not be deleted.

> 404 - Governance Group not found.
example: "204"
type: string
example: 204
format: int32
type: integer
description:
description: |
Human readable status description and containing additional context information about success or failures etc.
Expand Down Expand Up @@ -87333,15 +87334,14 @@ components:
description: |2

The HTTP response status code returned for an individual member that is requested for addition during a bulk add operation.

The HTTP response status code returned for an individual Governance Group is requested for deletion.

The HTTP response status code returned for an individual Governance Group is requested for deletion.

> 201 - Identity is added into Governance Group members list.

> 409 - Identity is already member of Governance Group.
example: "201"
type: string
example: 201
format: int32
type: integer
description:
description: |
Human readable status description and containing additional context information about success or failures etc.
Expand All @@ -87362,15 +87362,15 @@ components:
example: 464ae7bf791e49fdb74606a2e4a89635
type: string
status:
description: |2

description: |
The HTTP response status code returned for an individual member that is requested for deletion during a bulk delete operation.

> 204 - Identity is removed from Governance Group members list.

> 404 - Identity is not member of Governance Group.
example: "204"
type: string
example: 204
format: int32
type: integer
description:
description: |
Human readable status description and containing additional context information about success or failures etc.
Expand Down
10 changes: 5 additions & 5 deletions api_beta/docs/WorkgroupDeleteItem.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,14 +5,14 @@
Name | Type | Description | Notes
------------ | ------------- | ------------- | -------------
**Id** | **string** | Id of the Governance Group. |
**Status** | **string** | The HTTP response status code returned for an individual Governance Group that is requested for deletion during a bulk delete operation. > 204 - Governance Group deleted successfully. > 409 - Governance Group is in use,hence can not be deleted. > 404 - Governance Group not found. |
**Status** | **int32** | The HTTP response status code returned for an individual Governance Group that is requested for deletion during a bulk delete operation. > 204 - Governance Group deleted successfully. > 409 - Governance Group is in use,hence can not be deleted. > 404 - Governance Group not found. |
**Description** | Pointer to **string** | Human readable status description and containing additional context information about success or failures etc. | [optional]

## Methods

### NewWorkgroupDeleteItem

`func NewWorkgroupDeleteItem(id string, status string, ) *WorkgroupDeleteItem`
`func NewWorkgroupDeleteItem(id string, status int32, ) *WorkgroupDeleteItem`

NewWorkgroupDeleteItem instantiates a new WorkgroupDeleteItem object
This constructor will assign default values to properties that have it defined,
Expand Down Expand Up @@ -49,20 +49,20 @@ SetId sets Id field to given value.

### GetStatus

`func (o *WorkgroupDeleteItem) GetStatus() string`
`func (o *WorkgroupDeleteItem) GetStatus() int32`

GetStatus returns the Status field if non-nil, zero value otherwise.

### GetStatusOk

`func (o *WorkgroupDeleteItem) GetStatusOk() (*string, bool)`
`func (o *WorkgroupDeleteItem) GetStatusOk() (*int32, bool)`

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

### SetStatus

`func (o *WorkgroupDeleteItem) SetStatus(v string)`
`func (o *WorkgroupDeleteItem) SetStatus(v int32)`

SetStatus sets Status field to given value.

Expand Down
10 changes: 5 additions & 5 deletions api_beta/docs/WorkgroupMemberAddItem.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,14 +5,14 @@
Name | Type | Description | Notes
------------ | ------------- | ------------- | -------------
**Id** | **string** | Identifier of identity in bulk member add request. |
**Status** | **string** | The HTTP response status code returned for an individual member that is requested for addition during a bulk add operation. The HTTP response status code returned for an individual Governance Group is requested for deletion. > 201 - Identity is added into Governance Group members list. > 409 - Identity is already member of Governance Group. |
**Status** | **int32** | The HTTP response status code returned for an individual member that is requested for addition during a bulk add operation. The HTTP response status code returned for an individual Governance Group is requested for deletion. > 201 - Identity is added into Governance Group members list. > 409 - Identity is already member of Governance Group. |
**Description** | Pointer to **string** | Human readable status description and containing additional context information about success or failures etc. | [optional]

## Methods

### NewWorkgroupMemberAddItem

`func NewWorkgroupMemberAddItem(id string, status string, ) *WorkgroupMemberAddItem`
`func NewWorkgroupMemberAddItem(id string, status int32, ) *WorkgroupMemberAddItem`

NewWorkgroupMemberAddItem instantiates a new WorkgroupMemberAddItem object
This constructor will assign default values to properties that have it defined,
Expand Down Expand Up @@ -49,20 +49,20 @@ SetId sets Id field to given value.

### GetStatus

`func (o *WorkgroupMemberAddItem) GetStatus() string`
`func (o *WorkgroupMemberAddItem) GetStatus() int32`

GetStatus returns the Status field if non-nil, zero value otherwise.

### GetStatusOk

`func (o *WorkgroupMemberAddItem) GetStatusOk() (*string, bool)`
`func (o *WorkgroupMemberAddItem) GetStatusOk() (*int32, bool)`

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

### SetStatus

`func (o *WorkgroupMemberAddItem) SetStatus(v string)`
`func (o *WorkgroupMemberAddItem) SetStatus(v int32)`

SetStatus sets Status field to given value.

Expand Down
10 changes: 5 additions & 5 deletions api_beta/docs/WorkgroupMemberDeleteItem.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,14 +5,14 @@
Name | Type | Description | Notes
------------ | ------------- | ------------- | -------------
**Id** | **string** | Identifier of identity in bulk member add /remove request. |
**Status** | **string** | The HTTP response status code returned for an individual member that is requested for deletion during a bulk delete operation. > 204 - Identity is removed from Governance Group members list. > 404 - Identity is not member of Governance Group. |
**Status** | **int32** | The HTTP response status code returned for an individual member that is requested for deletion during a bulk delete operation. > 204 - Identity is removed from Governance Group members list. > 404 - Identity is not member of Governance Group. |
**Description** | Pointer to **string** | Human readable status description and containing additional context information about success or failures etc. | [optional]

## Methods

### NewWorkgroupMemberDeleteItem

`func NewWorkgroupMemberDeleteItem(id string, status string, ) *WorkgroupMemberDeleteItem`
`func NewWorkgroupMemberDeleteItem(id string, status int32, ) *WorkgroupMemberDeleteItem`

NewWorkgroupMemberDeleteItem instantiates a new WorkgroupMemberDeleteItem object
This constructor will assign default values to properties that have it defined,
Expand Down Expand Up @@ -49,20 +49,20 @@ SetId sets Id field to given value.

### GetStatus

`func (o *WorkgroupMemberDeleteItem) GetStatus() string`
`func (o *WorkgroupMemberDeleteItem) GetStatus() int32`

GetStatus returns the Status field if non-nil, zero value otherwise.

### GetStatusOk

`func (o *WorkgroupMemberDeleteItem) GetStatusOk() (*string, bool)`
`func (o *WorkgroupMemberDeleteItem) GetStatusOk() (*int32, bool)`

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

### SetStatus

`func (o *WorkgroupMemberDeleteItem) SetStatus(v string)`
`func (o *WorkgroupMemberDeleteItem) SetStatus(v int32)`

SetStatus sets Status field to given value.

Expand Down
12 changes: 6 additions & 6 deletions api_beta/model_workgroup_delete_item.go

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

14 changes: 7 additions & 7 deletions api_beta/model_workgroup_member_add_item.go

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

14 changes: 7 additions & 7 deletions api_beta/model_workgroup_member_delete_item.go

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

Loading

0 comments on commit 66d4033

Please sign in to comment.