File tree 2 files changed +12
-4
lines changed
proto/spaceone/api/cost_analysis
2 files changed +12
-4
lines changed Original file line number Diff line number Diff line change @@ -29,6 +29,8 @@ message GetTasksRequest {
29
29
30
30
message TaskInfo {
31
31
google.protobuf.Struct task_options = 1 ;
32
+ // +optional
33
+ ChangedInfo changed = 2 ;
32
34
}
33
35
34
36
message ChangedInfo {
Original file line number Diff line number Diff line change @@ -8,7 +8,7 @@ option go_package = "github.com/cloudforet-io/api/dist/go/spaceone/api/cost_anal
8
8
import "google/protobuf/struct.proto" ;
9
9
import "google/api/annotations.proto" ;
10
10
import "spaceone/api/core/v2/query.proto" ;
11
-
11
+ import "spaceone/api/cost_analysis/v1/job.proto" ;
12
12
13
13
service JobTask {
14
14
@@ -80,6 +80,11 @@ message JobTaskQuery {
80
80
// "month": "202207",
81
81
// "platform": "gcp"
82
82
// },
83
+ // "changed": {
84
+ // "start": "2024-12",
85
+ // "end": "2025-01",
86
+ // "filter
87
+ // },
83
88
// "created_count": 1,
84
89
// "job_id": "job-85cf2c385252",
85
90
// "data_source_id": "ds-c96609f5afeb",
@@ -109,9 +114,10 @@ message JobTaskInfo {
109
114
string job_task_id = 1 ;
110
115
Status status = 2 ;
111
116
google.protobuf.Struct options = 3 ;
112
- int32 created_count = 4 ;
113
- string error_code = 5 ;
114
- string error_message = 6 ;
117
+ ChangedInfo changed = 4 ;
118
+ int32 created_count = 5 ;
119
+ string error_code = 6 ;
120
+ string error_message = 7 ;
115
121
116
122
ResourceGroup resource_group = 20 ;
117
123
string domain_id = 21 ;
You can’t perform that action at this time.
0 commit comments