1
- defmodule Google.Cloud.Integrations.V1alpha.ExecutionInfo.PostMethod do
1
+ defmodule Google.Cloud.Integrations.V1alpha.ExecutionType do
2
2
@ moduledoc false
3
3
4
4
use Protobuf , enum: true , protoc_gen_elixir_version: "0.12.0" , syntax: :proto3
5
5
6
- field :POST_METHOD_UNSPECIFIED , 0
6
+ field :EXECUTION_TYPE_UNSPECIFIED , 0
7
+ field :INTEGRATION_VERSION , 1
8
+ field :TEST_CASE , 2
9
+ end
10
+
11
+ defmodule Google.Cloud.Integrations.V1alpha.ExecutionInfo.ExecutionMethod do
12
+ @ moduledoc false
13
+
14
+ use Protobuf , enum: true , protoc_gen_elixir_version: "0.12.0" , syntax: :proto3
15
+
16
+ field :EXECUTION_METHOD_UNSPECIFIED , 0
7
17
field :POST , 1
8
18
field :SCHEDULE , 2
19
+ field :POST_TO_QUEUE , 3
9
20
end
10
21
11
- defmodule Google.Cloud.Integrations.V1alpha.EventExecutionDetails.EventExecutionState do
22
+ defmodule Google.Cloud.Integrations.V1alpha.IntegrationExecutionDetails.IntegrationExecutionState do
12
23
@ moduledoc false
13
24
14
25
use Protobuf , enum: true , protoc_gen_elixir_version: "0.12.0" , syntax: :proto3
15
26
16
- field :EVENT_EXECUTION_STATE_UNSPECIFIED , 0
27
+ field :INTEGRATION_EXECUTION_STATE_UNSPECIFIED , 0
17
28
field :ON_HOLD , 1
18
29
field :IN_PROCESS , 2
19
30
field :SUCCEEDED , 3
@@ -66,9 +77,7 @@ defmodule Google.Cloud.Integrations.V1alpha.ExecutionInfo do
66
77
67
78
use Protobuf , protoc_gen_elixir_version: "0.12.0" , syntax: :proto3
68
79
69
- field :event_execution_info_id , 1 , type: :string , json_name: "eventExecutionInfoId"
70
80
field :integration , 2 , type: :string
71
- field :integration_version , 3 , type: :string , json_name: "integrationVersion"
72
81
field :project_id , 4 , type: :string , json_name: "projectId"
73
82
field :trigger_id , 5 , type: :string , json_name: "triggerId"
74
83
@@ -84,70 +93,95 @@ defmodule Google.Cloud.Integrations.V1alpha.ExecutionInfo do
84
93
json_name: "responseParams" ,
85
94
map: true
86
95
87
- field :post_method , 8 ,
88
- type: Google.Cloud.Integrations.V1alpha.ExecutionInfo.PostMethod ,
89
- json_name: "postMethod" ,
90
- enum: true
91
-
92
- field :event_execution_details , 9 ,
93
- type: Google.Cloud.Integrations.V1alpha.EventExecutionDetails ,
94
- json_name: "eventExecutionDetails"
95
-
96
96
field :errors , 10 , repeated: true , type: Google.Cloud.Integrations.V1alpha.ErrorDetail
97
- field :product , 11 , type: Google.Cloud.Integrations.V1alpha.Product , enum: true
98
- field :request_id , 12 , type: :string , json_name: "requestId"
99
97
100
98
field :task_configs , 13 ,
101
99
repeated: true ,
102
100
type: Google.Cloud.Integrations.V1alpha.TaskConfig ,
103
101
json_name: "taskConfigs"
102
+
103
+ field :integration_version_number , 14 , type: :string , json_name: "integrationVersionNumber"
104
+ field :execution_id , 15 , type: :string , json_name: "executionId"
105
+
106
+ field :integration_version_state , 16 ,
107
+ type: Google.Cloud.Integrations.V1alpha.IntegrationState ,
108
+ json_name: "integrationVersionState" ,
109
+ enum: true ,
110
+ deprecated: false
111
+
112
+ field :enable_database_persistence , 17 , type: :bool , json_name: "enableDatabasePersistence"
113
+
114
+ field :cloud_logging_details , 18 ,
115
+ type: Google.Cloud.Integrations.V1alpha.CloudLoggingDetails ,
116
+ json_name: "cloudLoggingDetails"
117
+
118
+ field :integration_execution_details , 19 ,
119
+ type: Google.Cloud.Integrations.V1alpha.IntegrationExecutionDetails ,
120
+ json_name: "integrationExecutionDetails"
121
+
122
+ field :execution_type , 20 ,
123
+ type: Google.Cloud.Integrations.V1alpha.ExecutionType ,
124
+ json_name: "executionType" ,
125
+ enum: true
126
+
127
+ field :execution_method , 21 ,
128
+ type: Google.Cloud.Integrations.V1alpha.ExecutionInfo.ExecutionMethod ,
129
+ json_name: "executionMethod" ,
130
+ enum: true
131
+
132
+ field :integration_snapshot_number , 22 , type: :int64 , json_name: "integrationSnapshotNumber"
104
133
end
105
134
106
- defmodule Google.Cloud.Integrations.V1alpha.EventExecutionDetails do
135
+ defmodule Google.Cloud.Integrations.V1alpha.IntegrationExecutionDetails do
107
136
@ moduledoc false
108
137
109
138
use Protobuf , protoc_gen_elixir_version: "0.12.0" , syntax: :proto3
110
139
111
- field :event_execution_state , 1 ,
112
- type: Google.Cloud.Integrations.V1alpha.EventExecutionDetails.EventExecutionState ,
113
- json_name: "eventExecutionState" ,
114
- enum: true
140
+ field :integration_execution_state , 1 ,
141
+ type: Google.Cloud.Integrations.V1alpha.IntegrationExecutionDetails.IntegrationExecutionState ,
142
+ json_name: "integrationExecutionState" ,
143
+ enum: true ,
144
+ deprecated: false
115
145
116
- field :event_execution_snapshot , 2 ,
146
+ field :integration_execution_snapshot , 2 ,
117
147
repeated: true ,
118
- type: Google.Cloud.Integrations.V1alpha.EventExecutionSnapshot ,
119
- json_name: "eventExecutionSnapshot "
148
+ type: Google.Cloud.Integrations.V1alpha.IntegrationExecutionSnapshot ,
149
+ json_name: "integrationExecutionSnapshot "
120
150
121
- field :event_attempt_stats , 3 ,
151
+ field :execution_attempt_stats , 3 ,
122
152
repeated: true ,
123
153
type: Google.Cloud.Integrations.V1alpha.AttemptStats ,
124
- json_name: "eventAttemptStats "
154
+ json_name: "executionAttemptStats "
125
155
126
156
field :next_execution_time , 4 , type: Google.Protobuf.Timestamp , json_name: "nextExecutionTime"
127
- field :event_retries_count , 5 , type: :int32 , json_name: "eventRetriesCount "
157
+ field :execution_retries_count , 5 , type: :int32 , json_name: "executionRetriesCount "
128
158
end
129
159
130
- defmodule Google.Cloud.Integrations.V1alpha.EventExecutionSnapshot.EventExecutionSnapshotMetadata do
160
+ defmodule Google.Cloud.Integrations.V1alpha.IntegrationExecutionSnapshot.IntegrationExecutionSnapshotMetadata do
131
161
@ moduledoc false
132
162
133
163
use Protobuf , protoc_gen_elixir_version: "0.12.0" , syntax: :proto3
134
164
135
165
field :task_number , 1 , type: :string , json_name: "taskNumber"
136
166
field :task , 2 , type: :string
137
- field :event_attempt_num , 3 , type: :int32 , json_name: "eventAttemptNum"
138
- field :task_attempt_num , 4 , type: :int32 , json_name: "taskAttemptNum"
139
- end
140
167
141
- defmodule Google.Cloud.Integrations.V1alpha.EventExecutionSnapshot.EventParamsEntry do
142
- @ moduledoc false
168
+ field :integration_execution_attempt_num , 3 ,
169
+ type: :int32 ,
170
+ json_name: "integrationExecutionAttemptNum"
143
171
144
- use Protobuf , map: true , protoc_gen_elixir_version: "0.12.0" , syntax: :proto3
172
+ field :task_attempt_num , 4 , type: :int32 , json_name: "taskAttemptNum"
173
+ field :task_label , 5 , type: :string , json_name: "taskLabel"
174
+ field :ancestor_task_numbers , 6 , repeated: true , type: :string , json_name: "ancestorTaskNumbers"
145
175
146
- field :key , 1 , type: :string
147
- field :value , 2 , type: Google.Cloud.Integrations.V1alpha.EventParameter
176
+ field :ancestor_iteration_numbers , 7 ,
177
+ repeated: true ,
178
+ type: :string ,
179
+ json_name: "ancestorIterationNumbers"
180
+
181
+ field :integration , 8 , type: :string
148
182
end
149
183
150
- defmodule Google.Cloud.Integrations.V1alpha.EventExecutionSnapshot.DiffParamsEntry do
184
+ defmodule Google.Cloud.Integrations.V1alpha.IntegrationExecutionSnapshot.ExecutionParamsEntry do
151
185
@ moduledoc false
152
186
153
187
use Protobuf , map: true , protoc_gen_elixir_version: "0.12.0" , syntax: :proto3
@@ -156,17 +190,18 @@ defmodule Google.Cloud.Integrations.V1alpha.EventExecutionSnapshot.DiffParamsEnt
156
190
field :value , 2 , type: Google.Cloud.Integrations.V1alpha.EventParameter
157
191
end
158
192
159
- defmodule Google.Cloud.Integrations.V1alpha.EventExecutionSnapshot do
193
+ defmodule Google.Cloud.Integrations.V1alpha.IntegrationExecutionSnapshot do
160
194
@ moduledoc false
161
195
162
196
use Protobuf , protoc_gen_elixir_version: "0.12.0" , syntax: :proto3
163
197
164
198
field :checkpoint_task_number , 1 , type: :string , json_name: "checkpointTaskNumber"
165
199
field :snapshot_time , 2 , type: Google.Protobuf.Timestamp , json_name: "snapshotTime"
166
200
167
- field :event_execution_snapshot_metadata , 3 ,
168
- type: Google.Cloud.Integrations.V1alpha.EventExecutionSnapshot.EventExecutionSnapshotMetadata ,
169
- json_name: "eventExecutionSnapshotMetadata"
201
+ field :integration_execution_snapshot_metadata , 3 ,
202
+ type:
203
+ Google.Cloud.Integrations.V1alpha.IntegrationExecutionSnapshot.IntegrationExecutionSnapshotMetadata ,
204
+ json_name: "integrationExecutionSnapshotMetadata"
170
205
171
206
field :task_execution_details , 4 ,
172
207
repeated: true ,
@@ -178,16 +213,10 @@ defmodule Google.Cloud.Integrations.V1alpha.EventExecutionSnapshot do
178
213
type: Google.Cloud.Integrations.V1alpha.ConditionResult ,
179
214
json_name: "conditionResults"
180
215
181
- field :event_params , 6 ,
182
- repeated: true ,
183
- type: Google.Cloud.Integrations.V1alpha.EventExecutionSnapshot.EventParamsEntry ,
184
- json_name: "eventParams" ,
185
- map: true
186
-
187
- field :diff_params , 7 ,
216
+ field :execution_params , 6 ,
188
217
repeated: true ,
189
- type: Google.Cloud.Integrations.V1alpha.EventExecutionSnapshot.DiffParamsEntry ,
190
- json_name: "diffParams " ,
218
+ type: Google.Cloud.Integrations.V1alpha.IntegrationExecutionSnapshot.ExecutionParamsEntry ,
219
+ json_name: "executionParams " ,
191
220
map: true
192
221
end
193
222
0 commit comments