Skip to content

Commit 7ea7c26

Browse files
author
avijenkins
committed
Updated assets for go models and clients
Signed-off-by: avijenkins <svc.avi-jenkins@broadcom.com>
1 parent 3835557 commit 7ea7c26

2 files changed

Lines changed: 18 additions & 0 deletions

File tree

go/models/capture_packet_filter.go

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,12 @@ package models
88
// swagger:model CapturePacketFilter
99
type CapturePacketFilter struct {
1010

11+
// Capture filter for SE IPC. Not applicable for Debug Virtual Service. Field introduced in 32.2.1. Allowed with any value in Enterprise, Essentials, Basic, Enterprise with Cloud Services edition.
12+
CaptureIpcFilters *CaptureIPC `json:"capture_ipc_filters,omitempty"`
13+
1114
// TCP Params filter. And'ed internally and Or'ed amongst each other. . Field introduced in 30.2.1. Maximum of 20 items allowed. Allowed with any value in Enterprise, Essentials, Basic, Enterprise with Cloud Services edition.
1215
CaptureTCPFilters []*CaptureTCPFilter `json:"capture_tcp_filters,omitempty"`
16+
17+
// Filters all packets of a complete transaction (client and server side), based on client ip. Supported for Virtual Service only. Field introduced in 32.2.1. Allowed with any value in Enterprise, Essentials, Basic, Enterprise with Cloud Services edition.
18+
ClientIP *DebugIPAddr `json:"client_ip,omitempty"`
1319
}

go/models/certificate_authority.go

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,18 @@ type CertificateAuthority struct {
1111
// It is a reference to an object of type SSLKeyAndCertificate. Allowed with any value in Enterprise, Essentials, Basic, Enterprise with Cloud Services edition.
1212
CaRef *string `json:"ca_ref,omitempty"`
1313

14+
// Common name of the CA certificate issuer. Field introduced in 32.2.1. Allowed with any value in Enterprise, Essentials, Basic, Enterprise with Cloud Services edition.
15+
// Read Only: true
16+
Issuer *string `json:"issuer,omitempty"`
17+
1418
// Allowed with any value in Enterprise, Essentials, Basic, Enterprise with Cloud Services edition.
1519
Name *string `json:"name,omitempty"`
20+
21+
// Expiry date of the CA certificate in UTC *string form. Field introduced in 32.2.1. Allowed with any value in Enterprise, Essentials, Basic, Enterprise with Cloud Services edition.
22+
// Read Only: true
23+
NotAfter *string `json:"not_after,omitempty"`
24+
25+
// Common name of the CA certificate subject. Field introduced in 32.2.1. Allowed with any value in Enterprise, Essentials, Basic, Enterprise with Cloud Services edition.
26+
// Read Only: true
27+
Subject *string `json:"subject,omitempty"`
1628
}

0 commit comments

Comments
 (0)