File tree 5 files changed +12
-5
lines changed
5 files changed +12
-5
lines changed Original file line number Diff line number Diff line change @@ -13,6 +13,9 @@ type AppUsageClient commonClient
13
13
// AppUsageListOptions list filters
14
14
type AppUsageListOptions struct {
15
15
* ListOptions
16
+
17
+ AfterGUID string `qs:"after_guid"`
18
+ GUIDs Filter `qs:"guids"`
16
19
}
17
20
18
21
// NewAppUsageOptions creates new options to pass to list
Original file line number Diff line number Diff line change @@ -15,9 +15,12 @@ type PackageClient commonClient
15
15
type PackageListOptions struct {
16
16
* ListOptions
17
17
18
- GUIDs Filter `qs:"guids"` // list of package guids to filter by
19
- States Filter `qs:"states"` // list of package states to filter by
20
- Types Filter `qs:"types"` // list of package types to filter by, docker or bits
18
+ GUIDs Filter `qs:"guids"` // list of package guids to filter by
19
+ States Filter `qs:"states"` // list of package states to filter by
20
+ Types Filter `qs:"types"` // list of package types to filter by, docker or bits
21
+ AppGUIDs Filter `qs:"app_guids"` // list of app guids to filter by
22
+ SpaceGUIDs Filter `qs:"space_guids"` // list of space guids to filter by
23
+ OrganizationGUIDs Filter `qs:"organization_guids"` // list of organization guids to filter by
21
24
}
22
25
23
26
// NewPackageListOptions creates new options to pass to list
Original file line number Diff line number Diff line change @@ -16,7 +16,6 @@ type ProcessListOptions struct {
16
16
17
17
GUIDs Filter `qs:"guids"`
18
18
Types Filter `qs:"types"`
19
- Names Filter `qs:"names"`
20
19
AppGUIDs Filter `qs:"app_guids"`
21
20
SpaceGUIDs Filter `qs:"space_guids"`
22
21
OrganizationGUIDs Filter `qs:"organization_guids"`
Original file line number Diff line number Diff line change @@ -14,7 +14,8 @@ type StackClient commonClient
14
14
type StackListOptions struct {
15
15
* ListOptions
16
16
17
- Names Filter `qs:"names"` // list of stack names to filter by
17
+ Names Filter `qs:"names"` // list of stack names to filter by
18
+ Default * bool `qs:"default"`
18
19
}
19
20
20
21
// NewStackListOptions creates new options to pass to list
Original file line number Diff line number Diff line change @@ -17,6 +17,7 @@ type TaskListOptions struct {
17
17
GUIDs Filter `qs:"guids"`
18
18
Names Filter `qs:"names"`
19
19
States Filter `qs:"states"`
20
+ AppGUIDs Filter `qs:"app_guids"`
20
21
SpaceGUIDs Filter `qs:"space_guids"`
21
22
OrganizationGUIDs Filter `qs:"organization_guids"`
22
23
}
You can’t perform that action at this time.
0 commit comments