Skip to content

Commit 22029b8

Browse files
authored
IWF-137: Update iwf-idl to latest to allow separate persistence loading policy for state API (#82)
1 parent f1d0335 commit 22029b8

8 files changed

+752
-157
lines changed

gen/iwfidl/api/openapi.yaml

+432-96
Large diffs are not rendered by default.

gen/iwfidl/docs/WorkflowConfig.md

+13-13
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
Name | Type | Description | Notes
66
------------ | ------------- | ------------- | -------------
77
**DisableSystemSearchAttribute** | Pointer to **bool** | | [optional]
8-
**EnabledExecutingStateExecutionIds** | Pointer to **bool** | | [optional]
8+
**ExecutingStateIdMode** | Pointer to **string** | | [optional]
99
**ContinueAsNewThreshold** | Pointer to **int32** | | [optional]
1010
**ContinueAsNewPageSizeInBytes** | Pointer to **int32** | | [optional]
1111
**OptimizeActivity** | Pointer to **bool** | | [optional]
@@ -54,30 +54,30 @@ SetDisableSystemSearchAttribute sets DisableSystemSearchAttribute field to given
5454

5555
HasDisableSystemSearchAttribute returns a boolean if a field has been set.
5656

57-
### GetEnabledExecutingStateExecutionIds
57+
### GetExecutingStateIdMode
5858

59-
`func (o *WorkflowConfig) GetEnabledExecutingStateExecutionIds() bool`
59+
`func (o *WorkflowConfig) GetExecutingStateIdMode() string`
6060

61-
GetEnabledExecutingStateExecutionIds returns the EnabledExecutingStateExecutionIds field if non-nil, zero value otherwise.
61+
GetExecutingStateIdMode returns the ExecutingStateIdMode field if non-nil, zero value otherwise.
6262

63-
### GetEnabledExecutingStateExecutionIdsOk
63+
### GetExecutingStateIdModeOk
6464

65-
`func (o *WorkflowConfig) GetEnabledExecutingStateExecutionIdsOk() (*bool, bool)`
65+
`func (o *WorkflowConfig) GetExecutingStateIdModeOk() (*string, bool)`
6666

67-
GetEnabledExecutingStateExecutionIdsOk returns a tuple with the EnabledExecutingStateExecutionIds field if it's non-nil, zero value otherwise
67+
GetExecutingStateIdModeOk returns a tuple with the ExecutingStateIdMode field if it's non-nil, zero value otherwise
6868
and a boolean to check if the value has been set.
6969

70-
### SetEnabledExecutingStateExecutionIds
70+
### SetExecutingStateIdMode
7171

72-
`func (o *WorkflowConfig) SetEnabledExecutingStateExecutionIds(v bool)`
72+
`func (o *WorkflowConfig) SetExecutingStateIdMode(v string)`
7373

74-
SetEnabledExecutingStateExecutionIds sets EnabledExecutingStateExecutionIds field to given value.
74+
SetExecutingStateIdMode sets ExecutingStateIdMode field to given value.
7575

76-
### HasEnabledExecutingStateExecutionIds
76+
### HasExecutingStateIdMode
7777

78-
`func (o *WorkflowConfig) HasEnabledExecutingStateExecutionIds() bool`
78+
`func (o *WorkflowConfig) HasExecutingStateIdMode() bool`
7979

80-
HasEnabledExecutingStateExecutionIds returns a boolean if a field has been set.
80+
HasExecutingStateIdMode returns a boolean if a field has been set.
8181

8282
### GetContinueAsNewThreshold
8383

gen/iwfidl/docs/WorkflowStateOptions.md

+104
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,11 @@
55
Name | Type | Description | Notes
66
------------ | ------------- | ------------- | -------------
77
**SearchAttributesLoadingPolicy** | Pointer to [**PersistenceLoadingPolicy**](PersistenceLoadingPolicy.md) | | [optional]
8+
**WaitUntilApiSearchAttributesLoadingPolicy** | Pointer to [**PersistenceLoadingPolicy**](PersistenceLoadingPolicy.md) | | [optional]
9+
**ExecuteApiSearchAttributesLoadingPolicy** | Pointer to [**PersistenceLoadingPolicy**](PersistenceLoadingPolicy.md) | | [optional]
810
**DataAttributesLoadingPolicy** | Pointer to [**PersistenceLoadingPolicy**](PersistenceLoadingPolicy.md) | | [optional]
11+
**WaitUntilApiDataAttributesLoadingPolicy** | Pointer to [**PersistenceLoadingPolicy**](PersistenceLoadingPolicy.md) | | [optional]
12+
**ExecuteApiDataAttributesLoadingPolicy** | Pointer to [**PersistenceLoadingPolicy**](PersistenceLoadingPolicy.md) | | [optional]
913
**WaitUntilApiTimeoutSeconds** | Pointer to **int32** | | [optional]
1014
**ExecuteApiTimeoutSeconds** | Pointer to **int32** | | [optional]
1115
**WaitUntilApiRetryPolicy** | Pointer to [**RetryPolicy**](RetryPolicy.md) | | [optional]
@@ -60,6 +64,56 @@ SetSearchAttributesLoadingPolicy sets SearchAttributesLoadingPolicy field to giv
6064

6165
HasSearchAttributesLoadingPolicy returns a boolean if a field has been set.
6266

67+
### GetWaitUntilApiSearchAttributesLoadingPolicy
68+
69+
`func (o *WorkflowStateOptions) GetWaitUntilApiSearchAttributesLoadingPolicy() PersistenceLoadingPolicy`
70+
71+
GetWaitUntilApiSearchAttributesLoadingPolicy returns the WaitUntilApiSearchAttributesLoadingPolicy field if non-nil, zero value otherwise.
72+
73+
### GetWaitUntilApiSearchAttributesLoadingPolicyOk
74+
75+
`func (o *WorkflowStateOptions) GetWaitUntilApiSearchAttributesLoadingPolicyOk() (*PersistenceLoadingPolicy, bool)`
76+
77+
GetWaitUntilApiSearchAttributesLoadingPolicyOk returns a tuple with the WaitUntilApiSearchAttributesLoadingPolicy field if it's non-nil, zero value otherwise
78+
and a boolean to check if the value has been set.
79+
80+
### SetWaitUntilApiSearchAttributesLoadingPolicy
81+
82+
`func (o *WorkflowStateOptions) SetWaitUntilApiSearchAttributesLoadingPolicy(v PersistenceLoadingPolicy)`
83+
84+
SetWaitUntilApiSearchAttributesLoadingPolicy sets WaitUntilApiSearchAttributesLoadingPolicy field to given value.
85+
86+
### HasWaitUntilApiSearchAttributesLoadingPolicy
87+
88+
`func (o *WorkflowStateOptions) HasWaitUntilApiSearchAttributesLoadingPolicy() bool`
89+
90+
HasWaitUntilApiSearchAttributesLoadingPolicy returns a boolean if a field has been set.
91+
92+
### GetExecuteApiSearchAttributesLoadingPolicy
93+
94+
`func (o *WorkflowStateOptions) GetExecuteApiSearchAttributesLoadingPolicy() PersistenceLoadingPolicy`
95+
96+
GetExecuteApiSearchAttributesLoadingPolicy returns the ExecuteApiSearchAttributesLoadingPolicy field if non-nil, zero value otherwise.
97+
98+
### GetExecuteApiSearchAttributesLoadingPolicyOk
99+
100+
`func (o *WorkflowStateOptions) GetExecuteApiSearchAttributesLoadingPolicyOk() (*PersistenceLoadingPolicy, bool)`
101+
102+
GetExecuteApiSearchAttributesLoadingPolicyOk returns a tuple with the ExecuteApiSearchAttributesLoadingPolicy field if it's non-nil, zero value otherwise
103+
and a boolean to check if the value has been set.
104+
105+
### SetExecuteApiSearchAttributesLoadingPolicy
106+
107+
`func (o *WorkflowStateOptions) SetExecuteApiSearchAttributesLoadingPolicy(v PersistenceLoadingPolicy)`
108+
109+
SetExecuteApiSearchAttributesLoadingPolicy sets ExecuteApiSearchAttributesLoadingPolicy field to given value.
110+
111+
### HasExecuteApiSearchAttributesLoadingPolicy
112+
113+
`func (o *WorkflowStateOptions) HasExecuteApiSearchAttributesLoadingPolicy() bool`
114+
115+
HasExecuteApiSearchAttributesLoadingPolicy returns a boolean if a field has been set.
116+
63117
### GetDataAttributesLoadingPolicy
64118

65119
`func (o *WorkflowStateOptions) GetDataAttributesLoadingPolicy() PersistenceLoadingPolicy`
@@ -85,6 +139,56 @@ SetDataAttributesLoadingPolicy sets DataAttributesLoadingPolicy field to given v
85139

86140
HasDataAttributesLoadingPolicy returns a boolean if a field has been set.
87141

142+
### GetWaitUntilApiDataAttributesLoadingPolicy
143+
144+
`func (o *WorkflowStateOptions) GetWaitUntilApiDataAttributesLoadingPolicy() PersistenceLoadingPolicy`
145+
146+
GetWaitUntilApiDataAttributesLoadingPolicy returns the WaitUntilApiDataAttributesLoadingPolicy field if non-nil, zero value otherwise.
147+
148+
### GetWaitUntilApiDataAttributesLoadingPolicyOk
149+
150+
`func (o *WorkflowStateOptions) GetWaitUntilApiDataAttributesLoadingPolicyOk() (*PersistenceLoadingPolicy, bool)`
151+
152+
GetWaitUntilApiDataAttributesLoadingPolicyOk returns a tuple with the WaitUntilApiDataAttributesLoadingPolicy field if it's non-nil, zero value otherwise
153+
and a boolean to check if the value has been set.
154+
155+
### SetWaitUntilApiDataAttributesLoadingPolicy
156+
157+
`func (o *WorkflowStateOptions) SetWaitUntilApiDataAttributesLoadingPolicy(v PersistenceLoadingPolicy)`
158+
159+
SetWaitUntilApiDataAttributesLoadingPolicy sets WaitUntilApiDataAttributesLoadingPolicy field to given value.
160+
161+
### HasWaitUntilApiDataAttributesLoadingPolicy
162+
163+
`func (o *WorkflowStateOptions) HasWaitUntilApiDataAttributesLoadingPolicy() bool`
164+
165+
HasWaitUntilApiDataAttributesLoadingPolicy returns a boolean if a field has been set.
166+
167+
### GetExecuteApiDataAttributesLoadingPolicy
168+
169+
`func (o *WorkflowStateOptions) GetExecuteApiDataAttributesLoadingPolicy() PersistenceLoadingPolicy`
170+
171+
GetExecuteApiDataAttributesLoadingPolicy returns the ExecuteApiDataAttributesLoadingPolicy field if non-nil, zero value otherwise.
172+
173+
### GetExecuteApiDataAttributesLoadingPolicyOk
174+
175+
`func (o *WorkflowStateOptions) GetExecuteApiDataAttributesLoadingPolicyOk() (*PersistenceLoadingPolicy, bool)`
176+
177+
GetExecuteApiDataAttributesLoadingPolicyOk returns a tuple with the ExecuteApiDataAttributesLoadingPolicy field if it's non-nil, zero value otherwise
178+
and a boolean to check if the value has been set.
179+
180+
### SetExecuteApiDataAttributesLoadingPolicy
181+
182+
`func (o *WorkflowStateOptions) SetExecuteApiDataAttributesLoadingPolicy(v PersistenceLoadingPolicy)`
183+
184+
SetExecuteApiDataAttributesLoadingPolicy sets ExecuteApiDataAttributesLoadingPolicy field to given value.
185+
186+
### HasExecuteApiDataAttributesLoadingPolicy
187+
188+
`func (o *WorkflowStateOptions) HasExecuteApiDataAttributesLoadingPolicy() bool`
189+
190+
HasExecuteApiDataAttributesLoadingPolicy returns a boolean if a field has been set.
191+
88192
### GetWaitUntilApiTimeoutSeconds
89193

90194
`func (o *WorkflowStateOptions) GetWaitUntilApiTimeoutSeconds() int32`

gen/iwfidl/model_workflow_config.go

+22-22
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)