Skip to content

Commit dcf027e

Browse files
authored
Merge pull request #5 from jianxiaoguo/master
feat(controller-sdk-go):add drycc resource cmd improvement
2 parents 0b84631 + eb0852b commit dcf027e

1 file changed

Lines changed: 5 additions & 5 deletions

File tree

api/resource.go

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -8,16 +8,16 @@ type Binding struct {
88
// Resource is the structure of an app's resource.
99
type Resource struct {
1010
// Owner is the app owner.
11-
Owner string `json:"owner,omitempty,-"`
11+
Owner string `json:"owner,omitempty"`
1212
// App is the app the tls settings apply to and cannot be updated.
13-
App string `json:"app,omitempty,-"`
13+
App string `json:"app,omitempty"`
1414
// Created is the time that the resource was created and cannot be updated.
15-
Created string `json:"created,omitempty,-"`
15+
Created string `json:"created,omitempty"`
1616
// Updated is the last time the TLS settings was changed and cannot be updated.
17-
Updated string `json:"updated,omitempty,-"`
17+
Updated string `json:"updated,omitempty"`
1818
// UUID is a unique string reflecting the resource in its current state.
1919
// It changes every time the resource is changed and cannot be updated.
20-
UUID string `json:"uuid,omitempty,-"`
20+
UUID string `json:"uuid,omitempty"`
2121
// Resource's name
2222
Name string `json:"name,omitempty"`
2323
// Resource's Plan

0 commit comments

Comments
 (0)