We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent fb22fe3 commit 157fa61Copy full SHA for 157fa61
api/v1beta1/cloudstackcluster_types.go
@@ -41,6 +41,7 @@ type CloudStackIdentityReference struct {
41
42
type Network struct {
43
// Cloudstack Network ID the cluster is built in.
44
+ // +optional
45
Id string `json:"id,omitempty"`
46
47
// Cloudstack Network Type the cluster is built in.
@@ -55,11 +56,11 @@ type Network struct {
55
56
type Zone struct {
57
// The Zone name.
58
// + optional
- Name string `json:"name"`
59
+ Name string `json:"name,omitempty"`
60
61
// The CS zone ID the cluster is built in.
62
- Id string `json:"iD"`
63
+ Id string `json:"id,omitempty"`
64
65
// The network within the Zone to use.
66
Network Network `json:"network"`
0 commit comments