Documentation ¶
Index ¶
- Variables
- func CacheExpires(r *http.Response) time.Time
- type APIClient
- type APIKey
- type APIResponse
- type BasicAuth
- type Configuration
- type DefaultApiService
- func (a *DefaultApiService) SecurityAdvisoriesAdvisoryAdvisoryIdGet(ctx context.Context, advisoryId string) (*http.Response, error)
- func (a *DefaultApiService) SecurityAdvisoriesAllGet(ctx context.Context) (*http.Response, error)
- func (a *DefaultApiService) SecurityAdvisoriesCveCveIdGet(ctx context.Context, cveId string) (*http.Response, error)
- func (a *DefaultApiService) SecurityAdvisoriesIosGet(ctx context.Context, version string) (*http.Response, error)
- func (a *DefaultApiService) SecurityAdvisoriesIosxeGet(ctx context.Context, version string) (*http.Response, error)
- func (a *DefaultApiService) SecurityAdvisoriesLatestNumberGet(ctx context.Context, number int32) (*http.Response, error)
- func (a *DefaultApiService) SecurityAdvisoriesProductGet(ctx context.Context, product string) (*http.Response, error)
- func (a *DefaultApiService) SecurityAdvisoriesSeveritySeverityFirstpublishedGet(ctx context.Context, severity string, startDate string, endDate string) (*http.Response, error)
- func (a *DefaultApiService) SecurityAdvisoriesSeveritySeverityGet(ctx context.Context, severity string) (*http.Response, error)
- func (a *DefaultApiService) SecurityAdvisoriesSeveritySeverityLastpublishedGet(ctx context.Context, severity string, startDate string, endDate string) (*http.Response, error)
- func (a *DefaultApiService) SecurityAdvisoriesYearYearGet(ctx context.Context, year string) (*http.Response, error)
Constants ¶
This section is empty.
Variables ¶
var ( // ContextOAuth2 takes a oauth2.TokenSource as authentication for the request. ContextOAuth2 = contextKey("token") // ContextBasicAuth takes BasicAuth as authentication for the request. ContextBasicAuth = contextKey("basic") // ContextAccessToken takes a string oauth2 access token as authentication for the request. ContextAccessToken = contextKey("accesstoken") // ContextAPIKey takes an APIKey as authentication for the request ContextAPIKey = contextKey("apikey") )
Functions ¶
Types ¶
type APIClient ¶
type APIClient struct { // API Services DefaultApi *DefaultApiService // contains filtered or unexported fields }
APIClient manages communication with the Cisco PSIRT openVuln API API v0.0.4 In most cases there should be only one, shared, APIClient.
func NewAPIClient ¶
func NewAPIClient(cfg *Configuration) *APIClient
NewAPIClient creates a new API client. Requires a userAgent string describing your application. optionally a custom http.Client to allow for advanced features such as caching.
func (*APIClient) ChangeBasePath ¶
Change base path to allow switching to mocks
type APIKey ¶
APIKey provides API key based authentication to a request passed via context using ContextAPIKey
type APIResponse ¶
type APIResponse struct { *http.Response `json:"-"` Message string `json:"message,omitempty"` // Operation is the name of the swagger operation. Operation string `json:"operation,omitempty"` // RequestURL is the request URL. This value is always available, even if the // embedded *http.Response is nil. RequestURL string `json:"url,omitempty"` // Method is the HTTP method used for the request. This value is always // available, even if the embedded *http.Response is nil. Method string `json:"method,omitempty"` // Payload holds the contents of the response body (which may be nil or empty). // This is provided here as the raw response.Body() reader will have already // been drained. Payload []byte `json:"-"` }
func NewAPIResponse ¶
func NewAPIResponse(r *http.Response) *APIResponse
func NewAPIResponseWithError ¶
func NewAPIResponseWithError(errorMessage string) *APIResponse
type BasicAuth ¶
type BasicAuth struct { UserName string `json:"userName,omitempty"` Password string `json:"password,omitempty"` }
BasicAuth provides basic http authentication to a request passed via context using ContextBasicAuth
type Configuration ¶
type Configuration struct { BasePath string `json:"basePath,omitempty"` Host string `json:"host,omitempty"` Scheme string `json:"scheme,omitempty"` DefaultHeader map[string]string `json:"defaultHeader,omitempty"` UserAgent string `json:"userAgent,omitempty"` HTTPClient *http.Client }
func NewConfiguration ¶
func NewConfiguration() *Configuration
func (*Configuration) AddDefaultHeader ¶
func (c *Configuration) AddDefaultHeader(key string, value string)
type DefaultApiService ¶
type DefaultApiService service
func (*DefaultApiService) SecurityAdvisoriesAdvisoryAdvisoryIdGet ¶
func (a *DefaultApiService) SecurityAdvisoriesAdvisoryAdvisoryIdGet(ctx context.Context, advisoryId string) (*http.Response, error)
DefaultApiService Used to obtain an advisory given its advisory ID `advisory_id` (i.e., cisco-sa-20180221-ucdm) * @param ctx context.Context for authentication, logging, tracing, etc. @param advisoryId advisory ID @return
func (*DefaultApiService) SecurityAdvisoriesAllGet ¶
DefaultApiService Used to obtain information about all published security advisories. By default the output is in JSON. To obtain the output in XML use the .xml extension. For example, /advisories/all.xml * @param ctx context.Context for authentication, logging, tracing, etc. @return
func (*DefaultApiService) SecurityAdvisoriesCveCveIdGet ¶
func (a *DefaultApiService) SecurityAdvisoriesCveCveIdGet(ctx context.Context, cveId string) (*http.Response, error)
DefaultApiService Used to obtain an advisory using a given Common Vulnerability Enumerator (CVE). The `cve_id` format is CVE-YYYY-NNNN. For more information about CVE visit http://cve.mitre.org/ * @param ctx context.Context for authentication, logging, tracing, etc. @param cveId CVE Identifier (i.e., CVE-YYYY-NNNN) @return
func (*DefaultApiService) SecurityAdvisoriesIosGet ¶
func (a *DefaultApiService) SecurityAdvisoriesIosGet(ctx context.Context, version string) (*http.Response, error)
DefaultApiService Used to obtain all advisories that affects the given ios version * @param ctx context.Context for authentication, logging, tracing, etc. @param version IOS version to obtain security advisories @return
func (*DefaultApiService) SecurityAdvisoriesIosxeGet ¶
func (a *DefaultApiService) SecurityAdvisoriesIosxeGet(ctx context.Context, version string) (*http.Response, error)
DefaultApiService Used to obtain all advisories that affects the given ios version * @param ctx context.Context for authentication, logging, tracing, etc. @param version IOS version to obtain security advisories @return
func (*DefaultApiService) SecurityAdvisoriesLatestNumberGet ¶
func (a *DefaultApiService) SecurityAdvisoriesLatestNumberGet(ctx context.Context, number int32) (*http.Response, error)
DefaultApiService Used to obtain all the latest security advisories given an absolute number. For instance, the latest 10 or latest 5. * @param ctx context.Context for authentication, logging, tracing, etc. @param number An absolute number to obtain the latest security advisories. @return
func (*DefaultApiService) SecurityAdvisoriesProductGet ¶
func (a *DefaultApiService) SecurityAdvisoriesProductGet(ctx context.Context, product string) (*http.Response, error)
DefaultApiService Used to obtain all the advisories that affects the given product name. * @param ctx context.Context for authentication, logging, tracing, etc. @param product An product name to obtain security advisories that matches given product name. @return
func (*DefaultApiService) SecurityAdvisoriesSeveritySeverityFirstpublishedGet ¶
func (a *DefaultApiService) SecurityAdvisoriesSeveritySeverityFirstpublishedGet(ctx context.Context, severity string, startDate string, endDate string) (*http.Response, error)
DefaultApiService Used to obtain all security advisories for a given security impact rating (critical, high, medium, or low) and additionally filter based of firstpublished start date and enddate. * @param ctx context.Context for authentication, logging, tracing, etc. @param severity Used to obtain all advisories that have a security impact rating of critical @param startDate @param endDate @return
func (*DefaultApiService) SecurityAdvisoriesSeveritySeverityGet ¶
func (a *DefaultApiService) SecurityAdvisoriesSeveritySeverityGet(ctx context.Context, severity string) (*http.Response, error)
DefaultApiService Used to obtain all security advisories for a given security impact rating (critical, high, medium, or low). * @param ctx context.Context for authentication, logging, tracing, etc. @param severity Critical, High, Medium, Low @return
func (*DefaultApiService) SecurityAdvisoriesSeveritySeverityLastpublishedGet ¶
func (a *DefaultApiService) SecurityAdvisoriesSeveritySeverityLastpublishedGet(ctx context.Context, severity string, startDate string, endDate string) (*http.Response, error)
DefaultApiService Used to obtain all security advisories for a given security impact rating (critical, high, medium, or low). * @param ctx context.Context for authentication, logging, tracing, etc. @param severity Used to obtain all advisories that have a security impact rating of critical @param startDate @param endDate @return
func (*DefaultApiService) SecurityAdvisoriesYearYearGet ¶
func (a *DefaultApiService) SecurityAdvisoriesYearYearGet(ctx context.Context, year string) (*http.Response, error)
DefaultApiService Used to obtain all security advisories that have were orginally published in a specific year `YYYY`. * @param ctx context.Context for authentication, logging, tracing, etc. @param year The four digit year. @return