-
Notifications
You must be signed in to change notification settings - Fork 55
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
IWF-122: adding set search attributes and set search objects apis
- Loading branch information
Katie Atrops
committed
Nov 7, 2024
1 parent
7fe9eb9
commit 3ae5a22
Showing
6 changed files
with
582 additions
and
0 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,103 @@ | ||
# WorkflowSetDataObjectsRequest | ||
|
||
## Properties | ||
|
||
Name | Type | Description | Notes | ||
------------ | ------------- | ------------- | ------------- | ||
**WorkflowId** | **string** | | | ||
**WorkflowRunId** | Pointer to **string** | | [optional] | ||
**Objects** | Pointer to [**[]KeyValue**](KeyValue.md) | | [optional] | ||
|
||
## Methods | ||
|
||
### NewWorkflowSetDataObjectsRequest | ||
|
||
`func NewWorkflowSetDataObjectsRequest(workflowId string, ) *WorkflowSetDataObjectsRequest` | ||
|
||
NewWorkflowSetDataObjectsRequest instantiates a new WorkflowSetDataObjectsRequest 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 | ||
|
||
### NewWorkflowSetDataObjectsRequestWithDefaults | ||
|
||
`func NewWorkflowSetDataObjectsRequestWithDefaults() *WorkflowSetDataObjectsRequest` | ||
|
||
NewWorkflowSetDataObjectsRequestWithDefaults instantiates a new WorkflowSetDataObjectsRequest 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 | ||
|
||
### GetWorkflowId | ||
|
||
`func (o *WorkflowSetDataObjectsRequest) GetWorkflowId() string` | ||
|
||
GetWorkflowId returns the WorkflowId field if non-nil, zero value otherwise. | ||
|
||
### GetWorkflowIdOk | ||
|
||
`func (o *WorkflowSetDataObjectsRequest) GetWorkflowIdOk() (*string, bool)` | ||
|
||
GetWorkflowIdOk returns a tuple with the WorkflowId field if it's non-nil, zero value otherwise | ||
and a boolean to check if the value has been set. | ||
|
||
### SetWorkflowId | ||
|
||
`func (o *WorkflowSetDataObjectsRequest) SetWorkflowId(v string)` | ||
|
||
SetWorkflowId sets WorkflowId field to given value. | ||
|
||
|
||
### GetWorkflowRunId | ||
|
||
`func (o *WorkflowSetDataObjectsRequest) GetWorkflowRunId() string` | ||
|
||
GetWorkflowRunId returns the WorkflowRunId field if non-nil, zero value otherwise. | ||
|
||
### GetWorkflowRunIdOk | ||
|
||
`func (o *WorkflowSetDataObjectsRequest) GetWorkflowRunIdOk() (*string, bool)` | ||
|
||
GetWorkflowRunIdOk returns a tuple with the WorkflowRunId field if it's non-nil, zero value otherwise | ||
and a boolean to check if the value has been set. | ||
|
||
### SetWorkflowRunId | ||
|
||
`func (o *WorkflowSetDataObjectsRequest) SetWorkflowRunId(v string)` | ||
|
||
SetWorkflowRunId sets WorkflowRunId field to given value. | ||
|
||
### HasWorkflowRunId | ||
|
||
`func (o *WorkflowSetDataObjectsRequest) HasWorkflowRunId() bool` | ||
|
||
HasWorkflowRunId returns a boolean if a field has been set. | ||
|
||
### GetObjects | ||
|
||
`func (o *WorkflowSetDataObjectsRequest) GetObjects() []KeyValue` | ||
|
||
GetObjects returns the Objects field if non-nil, zero value otherwise. | ||
|
||
### GetObjectsOk | ||
|
||
`func (o *WorkflowSetDataObjectsRequest) GetObjectsOk() (*[]KeyValue, bool)` | ||
|
||
GetObjectsOk returns a tuple with the Objects field if it's non-nil, zero value otherwise | ||
and a boolean to check if the value has been set. | ||
|
||
### SetObjects | ||
|
||
`func (o *WorkflowSetDataObjectsRequest) SetObjects(v []KeyValue)` | ||
|
||
SetObjects sets Objects field to given value. | ||
|
||
### HasObjects | ||
|
||
`func (o *WorkflowSetDataObjectsRequest) HasObjects() bool` | ||
|
||
HasObjects returns a boolean if a field has been set. | ||
|
||
|
||
[[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,103 @@ | ||
# WorkflowSetSearchAttributesRequest | ||
|
||
## Properties | ||
|
||
Name | Type | Description | Notes | ||
------------ | ------------- | ------------- | ------------- | ||
**WorkflowId** | **string** | | | ||
**WorkflowRunId** | Pointer to **string** | | [optional] | ||
**SearchAttributes** | Pointer to [**[]SearchAttribute**](SearchAttribute.md) | | [optional] | ||
|
||
## Methods | ||
|
||
### NewWorkflowSetSearchAttributesRequest | ||
|
||
`func NewWorkflowSetSearchAttributesRequest(workflowId string, ) *WorkflowSetSearchAttributesRequest` | ||
|
||
NewWorkflowSetSearchAttributesRequest instantiates a new WorkflowSetSearchAttributesRequest 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 | ||
|
||
### NewWorkflowSetSearchAttributesRequestWithDefaults | ||
|
||
`func NewWorkflowSetSearchAttributesRequestWithDefaults() *WorkflowSetSearchAttributesRequest` | ||
|
||
NewWorkflowSetSearchAttributesRequestWithDefaults instantiates a new WorkflowSetSearchAttributesRequest 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 | ||
|
||
### GetWorkflowId | ||
|
||
`func (o *WorkflowSetSearchAttributesRequest) GetWorkflowId() string` | ||
|
||
GetWorkflowId returns the WorkflowId field if non-nil, zero value otherwise. | ||
|
||
### GetWorkflowIdOk | ||
|
||
`func (o *WorkflowSetSearchAttributesRequest) GetWorkflowIdOk() (*string, bool)` | ||
|
||
GetWorkflowIdOk returns a tuple with the WorkflowId field if it's non-nil, zero value otherwise | ||
and a boolean to check if the value has been set. | ||
|
||
### SetWorkflowId | ||
|
||
`func (o *WorkflowSetSearchAttributesRequest) SetWorkflowId(v string)` | ||
|
||
SetWorkflowId sets WorkflowId field to given value. | ||
|
||
|
||
### GetWorkflowRunId | ||
|
||
`func (o *WorkflowSetSearchAttributesRequest) GetWorkflowRunId() string` | ||
|
||
GetWorkflowRunId returns the WorkflowRunId field if non-nil, zero value otherwise. | ||
|
||
### GetWorkflowRunIdOk | ||
|
||
`func (o *WorkflowSetSearchAttributesRequest) GetWorkflowRunIdOk() (*string, bool)` | ||
|
||
GetWorkflowRunIdOk returns a tuple with the WorkflowRunId field if it's non-nil, zero value otherwise | ||
and a boolean to check if the value has been set. | ||
|
||
### SetWorkflowRunId | ||
|
||
`func (o *WorkflowSetSearchAttributesRequest) SetWorkflowRunId(v string)` | ||
|
||
SetWorkflowRunId sets WorkflowRunId field to given value. | ||
|
||
### HasWorkflowRunId | ||
|
||
`func (o *WorkflowSetSearchAttributesRequest) HasWorkflowRunId() bool` | ||
|
||
HasWorkflowRunId returns a boolean if a field has been set. | ||
|
||
### GetSearchAttributes | ||
|
||
`func (o *WorkflowSetSearchAttributesRequest) GetSearchAttributes() []SearchAttribute` | ||
|
||
GetSearchAttributes returns the SearchAttributes field if non-nil, zero value otherwise. | ||
|
||
### GetSearchAttributesOk | ||
|
||
`func (o *WorkflowSetSearchAttributesRequest) GetSearchAttributesOk() (*[]SearchAttribute, bool)` | ||
|
||
GetSearchAttributesOk returns a tuple with the SearchAttributes field if it's non-nil, zero value otherwise | ||
and a boolean to check if the value has been set. | ||
|
||
### SetSearchAttributes | ||
|
||
`func (o *WorkflowSetSearchAttributesRequest) SetSearchAttributes(v []SearchAttribute)` | ||
|
||
SetSearchAttributes sets SearchAttributes field to given value. | ||
|
||
### HasSearchAttributes | ||
|
||
`func (o *WorkflowSetSearchAttributesRequest) HasSearchAttributes() bool` | ||
|
||
HasSearchAttributes returns a boolean if a field has been set. | ||
|
||
|
||
[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) | ||
|
||
|
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
Oops, something went wrong.