Skip to content

Commit 81a7417

Browse files
committed
chore: auto update client api apecloud/apecloud@86f22a8
1 parent 2a097c5 commit 81a7417

File tree

5 files changed

+35
-31
lines changed

5 files changed

+35
-31
lines changed

.generator/schemas/adminapi.yaml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -26626,6 +26626,7 @@ components:
2662626626
envID:
2662726627
type: string
2662826628
nodeName:
26629+
description: Node name(s) for inspection. Multiple nodes can be specified as a comma-separated string (e.g. "node1,node2,node3").
2662926630
type: string
2663026631
isAuto:
2663126632
type: boolean

.generator/schemas/openapi.yaml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -24841,6 +24841,7 @@ components:
2484124841
envID:
2484224842
type: string
2484324843
nodeName:
24844+
description: Node name(s) for inspection. Multiple nodes can be specified as a comma-separated string (e.g. "node1,node2,node3").
2484424845
type: string
2484524846
isAuto:
2484624847
type: boolean

apecloud

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
Subproject commit f7de10c0552778709703fa69a66940fb95d45eea
1+
Subproject commit 86f22a88401205a8266346d957ebdf1b784a68a7

api/kbcloud/admin/model_inspection_task.go

Lines changed: 16 additions & 15 deletions
Original file line numberDiff line numberDiff line change
@@ -15,21 +15,22 @@ type InspectionTask struct {
1515
Creator *string `json:"creator,omitempty"`
1616
Status *string `json:"status,omitempty"`
1717
// Specifies the supported engines for the inspection task.
18-
Engine *InspectionSupportedEngines `json:"engine,omitempty"`
19-
OrgName *string `json:"orgName,omitempty"`
20-
ClusterId *string `json:"clusterID,omitempty"`
21-
ClusterName *string `json:"clusterName,omitempty"`
22-
EnvName *string `json:"envName,omitempty"`
23-
EnvId *string `json:"envID,omitempty"`
24-
NodeName *string `json:"nodeName,omitempty"`
25-
IsAuto *bool `json:"isAuto,omitempty"`
26-
Score *int32 `json:"score,omitempty"`
27-
Result *string `json:"result,omitempty"`
28-
Items []InspectionTaskItem `json:"items,omitempty"`
29-
CreatedAt *time.Time `json:"createdAt,omitempty"`
30-
UpdatedAt *time.Time `json:"updatedAt,omitempty"`
31-
TimeRangeStart *time.Time `json:"timeRangeStart,omitempty"`
32-
TimeRangeEnd *time.Time `json:"timeRangeEnd,omitempty"`
18+
Engine *InspectionSupportedEngines `json:"engine,omitempty"`
19+
OrgName *string `json:"orgName,omitempty"`
20+
ClusterId *string `json:"clusterID,omitempty"`
21+
ClusterName *string `json:"clusterName,omitempty"`
22+
EnvName *string `json:"envName,omitempty"`
23+
EnvId *string `json:"envID,omitempty"`
24+
// Node name(s) for inspection. Multiple nodes can be specified as a comma-separated string (e.g. "node1,node2,node3").
25+
NodeName *string `json:"nodeName,omitempty"`
26+
IsAuto *bool `json:"isAuto,omitempty"`
27+
Score *int32 `json:"score,omitempty"`
28+
Result *string `json:"result,omitempty"`
29+
Items []InspectionTaskItem `json:"items,omitempty"`
30+
CreatedAt *time.Time `json:"createdAt,omitempty"`
31+
UpdatedAt *time.Time `json:"updatedAt,omitempty"`
32+
TimeRangeStart *time.Time `json:"timeRangeStart,omitempty"`
33+
TimeRangeEnd *time.Time `json:"timeRangeEnd,omitempty"`
3334
// UnparsedObject contains the raw value of the object if there was an error when deserializing into the struct
3435
UnparsedObject map[string]interface{} `json:"-"`
3536
AdditionalProperties map[string]interface{} `json:"-"`

api/kbcloud/model_inspection_task.go

Lines changed: 16 additions & 15 deletions
Original file line numberDiff line numberDiff line change
@@ -15,21 +15,22 @@ type InspectionTask struct {
1515
Creator *string `json:"creator,omitempty"`
1616
Status *string `json:"status,omitempty"`
1717
// Specifies the supported engines for the inspection task.
18-
Engine *InspectionSupportedEngines `json:"engine,omitempty"`
19-
OrgName *string `json:"orgName,omitempty"`
20-
ClusterId *string `json:"clusterID,omitempty"`
21-
ClusterName *string `json:"clusterName,omitempty"`
22-
EnvName *string `json:"envName,omitempty"`
23-
EnvId *string `json:"envID,omitempty"`
24-
NodeName *string `json:"nodeName,omitempty"`
25-
IsAuto *bool `json:"isAuto,omitempty"`
26-
Score *int32 `json:"score,omitempty"`
27-
Result *string `json:"result,omitempty"`
28-
Items []InspectionTaskItem `json:"items,omitempty"`
29-
CreatedAt *time.Time `json:"createdAt,omitempty"`
30-
UpdatedAt *time.Time `json:"updatedAt,omitempty"`
31-
TimeRangeStart *time.Time `json:"timeRangeStart,omitempty"`
32-
TimeRangeEnd *time.Time `json:"timeRangeEnd,omitempty"`
18+
Engine *InspectionSupportedEngines `json:"engine,omitempty"`
19+
OrgName *string `json:"orgName,omitempty"`
20+
ClusterId *string `json:"clusterID,omitempty"`
21+
ClusterName *string `json:"clusterName,omitempty"`
22+
EnvName *string `json:"envName,omitempty"`
23+
EnvId *string `json:"envID,omitempty"`
24+
// Node name(s) for inspection. Multiple nodes can be specified as a comma-separated string (e.g. "node1,node2,node3").
25+
NodeName *string `json:"nodeName,omitempty"`
26+
IsAuto *bool `json:"isAuto,omitempty"`
27+
Score *int32 `json:"score,omitempty"`
28+
Result *string `json:"result,omitempty"`
29+
Items []InspectionTaskItem `json:"items,omitempty"`
30+
CreatedAt *time.Time `json:"createdAt,omitempty"`
31+
UpdatedAt *time.Time `json:"updatedAt,omitempty"`
32+
TimeRangeStart *time.Time `json:"timeRangeStart,omitempty"`
33+
TimeRangeEnd *time.Time `json:"timeRangeEnd,omitempty"`
3334
// UnparsedObject contains the raw value of the object if there was an error when deserializing into the struct
3435
UnparsedObject map[string]interface{} `json:"-"`
3536
AdditionalProperties map[string]interface{} `json:"-"`

0 commit comments

Comments
 (0)