@@ -51,9 +51,6 @@ CreateClusterV1M0::CreateClusterV1M0() : Blossom("Create new cluster.")
5151 // output
5252 // ----------------------------------------------------------------------------------------------
5353
54- registerOutputField (" created_at" , SAKURA_STRING_TYPE)
55- .setComment (" Timestamp, when cluster was created." );
56-
5754 registerOutputField (" uuid" , SAKURA_STRING_TYPE).setComment (" UUID of the new created cluster." );
5855
5956 registerOutputField (" name" , SAKURA_STRING_TYPE).setComment (" Name of the new created cluster." );
@@ -67,6 +64,18 @@ CreateClusterV1M0::CreateClusterV1M0() : Blossom("Create new cluster.")
6764 registerOutputField (" visibility" , SAKURA_STRING_TYPE)
6865 .setComment (" Visibility of the new created cluster (private, shared, public)." );
6966
67+ registerOutputField (" created_at" , SAKURA_STRING_TYPE)
68+ .setComment (" Timestamp, when resource was created." );
69+
70+ registerOutputField (" created_by" , SAKURA_STRING_TYPE)
71+ .setComment (" ID of the user, who created the resource." );
72+
73+ registerOutputField (" updated_at" , SAKURA_STRING_TYPE)
74+ .setComment (" Timestamp, when resource was updated." );
75+
76+ registerOutputField (" updated_by" , SAKURA_STRING_TYPE)
77+ .setComment (" ID of the user, who updated the resource." );
78+
7079 // ----------------------------------------------------------------------------------------------
7180 //
7281 // ----------------------------------------------------------------------------------------------
0 commit comments