Skip to content

Commit

Permalink
feat(tls_custom): add mutual_authentication field to response (#535)
Browse files Browse the repository at this point in the history
  • Loading branch information
Integralist authored Jun 21, 2024
1 parent ee3b824 commit 973da6e
Showing 1 changed file with 6 additions and 5 deletions.
11 changes: 6 additions & 5 deletions fastly/tls_custom_activation.go
Original file line number Diff line number Diff line change
Expand Up @@ -11,11 +11,12 @@ import (

// TLSActivation represents a /tls/activations response.
type TLSActivation struct {
Certificate *CustomTLSCertificate `jsonapi:"relation,tls_certificate"`
Configuration *TLSConfiguration `jsonapi:"relation,tls_configuration"` // TLSConfiguration type shared with BulkCertificate
CreatedAt *time.Time `jsonapi:"attr,created_at,iso8601"`
Domain *TLSDomain `jsonapi:"relation,tls_domain"` // TLSDomain type shared with BulkCertificate
ID string `jsonapi:"primary,tls_activation"`
Certificate *CustomTLSCertificate `jsonapi:"relation,tls_certificate"`
Configuration *TLSConfiguration `jsonapi:"relation,tls_configuration"` // TLSConfiguration type shared with BulkCertificate
CreatedAt *time.Time `jsonapi:"attr,created_at,iso8601"`
Domain *TLSDomain `jsonapi:"relation,tls_domain"` // TLSDomain type shared with BulkCertificate
ID string `jsonapi:"primary,tls_activation"`
MutualAuthentication *TLSMutualAuthentication `jsonapi:"relation,mutual_authentication"`
}

// ListTLSActivationsInput is used as input to the ListTLSActivations function.
Expand Down

0 comments on commit 973da6e

Please sign in to comment.