Skip to content

Commit 74742aa

Browse files
committed
fix(models): Adding JobParameters to handle entry parameters for deployments.
1 parent 22f361c commit 74742aa

File tree

2 files changed

+6
-0
lines changed

2 files changed

+6
-0
lines changed

api/store_models.go

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -253,6 +253,9 @@ type CertificateStore struct {
253253

254254
// A Boolean that sets whether to include the private key of the certificate in the certificate store if private keys are optional for the given certificate store (true) or not (false). The default is false.
255255
IncludePrivateKey bool `json:"IncludePrivateKey,omitempty"`
256+
257+
// Job Parameters
258+
JobParameters map[string]string `json:"JobFields,omitempty"`
256259
}
257260

258261
type ListCertificateStoresResponse struct {

v2/api/store_models.go

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -255,6 +255,9 @@ type CertificateStore struct {
255255

256256
// A Boolean that sets whether to include the private key of the certificate in the certificate store if private keys are optional for the given certificate store (true) or not (false). The default is false.
257257
IncludePrivateKey bool `json:"IncludePrivateKey,omitempty"`
258+
259+
// Entry Parameters map
260+
JobParameters map[string]string `json:"JobFields,omitempty"`
258261
}
259262

260263
type ListCertificateStoresResponse struct {

0 commit comments

Comments
 (0)