Skip to content

Commit 44def5a

Browse files
committed
fix(models): cert store properties converted to map[string]interface
1 parent c2e3e60 commit 44def5a

File tree

1 file changed

+8
-8
lines changed

1 file changed

+8
-8
lines changed

v2/api/store_models.go

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -13,14 +13,14 @@ type CreateStoreFctArgs struct {
1313
// automatically populated by the CreateStore method. However, if configured, this field will be used.
1414
PropertiesString string `json:"Properties,omitempty"`
1515
// Mapped name-value pair field used to configure properties.
16-
Properties map[string]string `json:"-"`
17-
AgentId string `json:"AgentId"`
18-
AgentAssigned *bool `json:"AgentAssigned,omitempty"`
19-
ContainerName *string `json:"ContainerName,omitempty"`
20-
InventorySchedule *InventorySchedule `json:"InventorySchedule,omitempty"`
21-
ReEnrollmentStatus *ReEnrollmnentConfig `json:"ReEnrollmentStatus,omitempty"`
22-
SetNewPasswordAllowed *bool `json:"SetNewPasswordAllowed,omitempty"`
23-
Password *StorePasswordConfig `json:"Password"`
16+
Properties map[string]interface{} `json:"-"`
17+
AgentId string `json:"AgentId"`
18+
AgentAssigned *bool `json:"AgentAssigned,omitempty"`
19+
ContainerName *string `json:"ContainerName,omitempty"`
20+
InventorySchedule *InventorySchedule `json:"InventorySchedule,omitempty"`
21+
ReEnrollmentStatus *ReEnrollmnentConfig `json:"ReEnrollmentStatus,omitempty"`
22+
SetNewPasswordAllowed *bool `json:"SetNewPasswordAllowed,omitempty"`
23+
Password *StorePasswordConfig `json:"Password"`
2424
}
2525

2626
// UpdateStoreFctArgs holds the function arguments used for calling the UpdateStore method.

0 commit comments

Comments
 (0)