defectDojoAPIV2

package module
v0.2.0 Latest Latest
Warning

This package is not in the latest version of its module.

Go to latest
Published: Jul 27, 2023 License: Apache-2.0 Imports: 17 Imported by: 0

README

defect-dojo-client-go

DefectDojo API client in Go

This client is generated automatically from the DefectDojo OpenAPI 3.0 spec, using github.com/deepmap/oapi-codegen. So it has some quirks.

API Documentation: https://pkg.go.dev/github.com/doximity/defect-dojo-client-go

Usage

Import the module:

import (
	dd "github.com/doximity/defect-dojo-client-go"
	"github.com/deepmap/oapi-codegen/pkg/securityprovider"
)

Create a client:

url := "https://demo.defectdojo.org"
token := os.Getenv("DOJO_APIKEY")

tokenProvider, err := securityprovider.NewSecurityProviderApiKey("header", "Authorization", fmt.Sprintf("Token %s", token))
if err != nil {
	panic(err)
}

client, err := dd.NewClientWithResponses(url, dd.WithRequestEditorFn(tokenProvider.Intercept))

Make a request (in this case create a product, i.e. POST /products/):

apiResp, err := client.ProductsCreateWithResponse(ctx, dd.ProductsCreateJSONRequestBody{
	Name:        "My Product",
	Description: "A description",
	ProdType:    1,
})

Access fields from the response:

if apiResp.StatusCode() == 201 {
	createdProductId := apiResp.JSON201.Id
	//...
}

Development

To build the client, run:

$ oapi-codegen Defect-Dojo-API-v2.x.x.json > defectdojo.gen.go

Contributing

Pull requests are welcome. By contributing to this repository you are agreeing to the Contributor License Agreement (CONTRIBUTING.md)

Licencse

Licensed under the Apache v2 license. See LICENSE.txt

Documentation

Overview

Package defectDojoAPIV2 provides primitives to interact with the openapi HTTP API.

Code generated by github.com/deepmap/oapi-codegen version v1.13.0 DO NOT EDIT.

Index

Constants

View Source
const (
	BasicAuthScopes  = "basicAuth.Scopes"
	CookieAuthScopes = "cookieAuth.Scopes"
	TokenAuthScopes  = "tokenAuth.Scopes"
)

Variables

This section is empty.

Functions

func GetSwagger

func GetSwagger() (swagger *openapi3.T, err error)

GetSwagger returns the Swagger specification corresponding to the generated code in this file. The external references of Swagger specification are resolved. The logic of resolving external references is tightly connected to "import-mapping" feature. Externally referenced files must be embedded in the corresponding golang packages. Urls can be supported but this task was out of the scope.

func NewApiTokenAuthCreateRequest

func NewApiTokenAuthCreateRequest(server string, body ApiTokenAuthCreateJSONRequestBody) (*http.Request, error)

NewApiTokenAuthCreateRequest calls the generic ApiTokenAuthCreate builder with application/json body

func NewApiTokenAuthCreateRequestWithBody

func NewApiTokenAuthCreateRequestWithBody(server string, contentType string, body io.Reader) (*http.Request, error)

NewApiTokenAuthCreateRequestWithBody generates requests for ApiTokenAuthCreate with any type of body

func NewApiTokenAuthCreateRequestWithFormdataBody added in v0.2.0

func NewApiTokenAuthCreateRequestWithFormdataBody(server string, body ApiTokenAuthCreateFormdataRequestBody) (*http.Request, error)

NewApiTokenAuthCreateRequestWithFormdataBody calls the generic ApiTokenAuthCreate builder with application/x-www-form-urlencoded body

func NewConfigurationPermissionsListRequest added in v0.2.0

func NewConfigurationPermissionsListRequest(server string, params *ConfigurationPermissionsListParams) (*http.Request, error)

NewConfigurationPermissionsListRequest generates requests for ConfigurationPermissionsList

func NewConfigurationPermissionsRetrieveRequest added in v0.2.0

func NewConfigurationPermissionsRetrieveRequest(server string, id int) (*http.Request, error)

NewConfigurationPermissionsRetrieveRequest generates requests for ConfigurationPermissionsRetrieve

func NewCredentialMappingsCreateRequest added in v0.2.0

func NewCredentialMappingsCreateRequest(server string, body CredentialMappingsCreateJSONRequestBody) (*http.Request, error)

NewCredentialMappingsCreateRequest calls the generic CredentialMappingsCreate builder with application/json body

func NewCredentialMappingsCreateRequestWithBody added in v0.2.0

func NewCredentialMappingsCreateRequestWithBody(server string, contentType string, body io.Reader) (*http.Request, error)

NewCredentialMappingsCreateRequestWithBody generates requests for CredentialMappingsCreate with any type of body

func NewCredentialMappingsCreateRequestWithFormdataBody added in v0.2.0

func NewCredentialMappingsCreateRequestWithFormdataBody(server string, body CredentialMappingsCreateFormdataRequestBody) (*http.Request, error)

NewCredentialMappingsCreateRequestWithFormdataBody calls the generic CredentialMappingsCreate builder with application/x-www-form-urlencoded body

func NewCredentialMappingsDeletePreviewListRequest added in v0.2.0

func NewCredentialMappingsDeletePreviewListRequest(server string, id int, params *CredentialMappingsDeletePreviewListParams) (*http.Request, error)

NewCredentialMappingsDeletePreviewListRequest generates requests for CredentialMappingsDeletePreviewList

func NewCredentialMappingsDestroyRequest added in v0.2.0

func NewCredentialMappingsDestroyRequest(server string, id int) (*http.Request, error)

NewCredentialMappingsDestroyRequest generates requests for CredentialMappingsDestroy

func NewCredentialMappingsListRequest added in v0.2.0

func NewCredentialMappingsListRequest(server string, params *CredentialMappingsListParams) (*http.Request, error)

NewCredentialMappingsListRequest generates requests for CredentialMappingsList

func NewCredentialMappingsPartialUpdateRequest added in v0.2.0

func NewCredentialMappingsPartialUpdateRequest(server string, id int, body CredentialMappingsPartialUpdateJSONRequestBody) (*http.Request, error)

NewCredentialMappingsPartialUpdateRequest calls the generic CredentialMappingsPartialUpdate builder with application/json body

func NewCredentialMappingsPartialUpdateRequestWithBody added in v0.2.0

func NewCredentialMappingsPartialUpdateRequestWithBody(server string, id int, contentType string, body io.Reader) (*http.Request, error)

NewCredentialMappingsPartialUpdateRequestWithBody generates requests for CredentialMappingsPartialUpdate with any type of body

func NewCredentialMappingsPartialUpdateRequestWithFormdataBody added in v0.2.0

func NewCredentialMappingsPartialUpdateRequestWithFormdataBody(server string, id int, body CredentialMappingsPartialUpdateFormdataRequestBody) (*http.Request, error)

NewCredentialMappingsPartialUpdateRequestWithFormdataBody calls the generic CredentialMappingsPartialUpdate builder with application/x-www-form-urlencoded body

func NewCredentialMappingsRetrieveRequest added in v0.2.0

func NewCredentialMappingsRetrieveRequest(server string, id int) (*http.Request, error)

NewCredentialMappingsRetrieveRequest generates requests for CredentialMappingsRetrieve

func NewCredentialMappingsUpdateRequest added in v0.2.0

func NewCredentialMappingsUpdateRequest(server string, id int, body CredentialMappingsUpdateJSONRequestBody) (*http.Request, error)

NewCredentialMappingsUpdateRequest calls the generic CredentialMappingsUpdate builder with application/json body

func NewCredentialMappingsUpdateRequestWithBody added in v0.2.0

func NewCredentialMappingsUpdateRequestWithBody(server string, id int, contentType string, body io.Reader) (*http.Request, error)

NewCredentialMappingsUpdateRequestWithBody generates requests for CredentialMappingsUpdate with any type of body

func NewCredentialMappingsUpdateRequestWithFormdataBody added in v0.2.0

func NewCredentialMappingsUpdateRequestWithFormdataBody(server string, id int, body CredentialMappingsUpdateFormdataRequestBody) (*http.Request, error)

NewCredentialMappingsUpdateRequestWithFormdataBody calls the generic CredentialMappingsUpdate builder with application/x-www-form-urlencoded body

func NewCredentialsCreateRequest added in v0.2.0

func NewCredentialsCreateRequest(server string, body CredentialsCreateJSONRequestBody) (*http.Request, error)

NewCredentialsCreateRequest calls the generic CredentialsCreate builder with application/json body

func NewCredentialsCreateRequestWithBody added in v0.2.0

func NewCredentialsCreateRequestWithBody(server string, contentType string, body io.Reader) (*http.Request, error)

NewCredentialsCreateRequestWithBody generates requests for CredentialsCreate with any type of body

func NewCredentialsCreateRequestWithFormdataBody added in v0.2.0

func NewCredentialsCreateRequestWithFormdataBody(server string, body CredentialsCreateFormdataRequestBody) (*http.Request, error)

NewCredentialsCreateRequestWithFormdataBody calls the generic CredentialsCreate builder with application/x-www-form-urlencoded body

func NewCredentialsDeletePreviewListRequest added in v0.2.0

func NewCredentialsDeletePreviewListRequest(server string, id int, params *CredentialsDeletePreviewListParams) (*http.Request, error)

NewCredentialsDeletePreviewListRequest generates requests for CredentialsDeletePreviewList

func NewCredentialsDestroyRequest added in v0.2.0

func NewCredentialsDestroyRequest(server string, id int) (*http.Request, error)

NewCredentialsDestroyRequest generates requests for CredentialsDestroy

func NewCredentialsListRequest added in v0.2.0

func NewCredentialsListRequest(server string, params *CredentialsListParams) (*http.Request, error)

NewCredentialsListRequest generates requests for CredentialsList

func NewCredentialsPartialUpdateRequest added in v0.2.0

func NewCredentialsPartialUpdateRequest(server string, id int, body CredentialsPartialUpdateJSONRequestBody) (*http.Request, error)

NewCredentialsPartialUpdateRequest calls the generic CredentialsPartialUpdate builder with application/json body

func NewCredentialsPartialUpdateRequestWithBody added in v0.2.0

func NewCredentialsPartialUpdateRequestWithBody(server string, id int, contentType string, body io.Reader) (*http.Request, error)

NewCredentialsPartialUpdateRequestWithBody generates requests for CredentialsPartialUpdate with any type of body

func NewCredentialsPartialUpdateRequestWithFormdataBody added in v0.2.0

func NewCredentialsPartialUpdateRequestWithFormdataBody(server string, id int, body CredentialsPartialUpdateFormdataRequestBody) (*http.Request, error)

NewCredentialsPartialUpdateRequestWithFormdataBody calls the generic CredentialsPartialUpdate builder with application/x-www-form-urlencoded body

func NewCredentialsRetrieveRequest added in v0.2.0

func NewCredentialsRetrieveRequest(server string, id int) (*http.Request, error)

NewCredentialsRetrieveRequest generates requests for CredentialsRetrieve

func NewCredentialsUpdateRequest added in v0.2.0

func NewCredentialsUpdateRequest(server string, id int, body CredentialsUpdateJSONRequestBody) (*http.Request, error)

NewCredentialsUpdateRequest calls the generic CredentialsUpdate builder with application/json body

func NewCredentialsUpdateRequestWithBody added in v0.2.0

func NewCredentialsUpdateRequestWithBody(server string, id int, contentType string, body io.Reader) (*http.Request, error)

NewCredentialsUpdateRequestWithBody generates requests for CredentialsUpdate with any type of body

func NewCredentialsUpdateRequestWithFormdataBody added in v0.2.0

func NewCredentialsUpdateRequestWithFormdataBody(server string, id int, body CredentialsUpdateFormdataRequestBody) (*http.Request, error)

NewCredentialsUpdateRequestWithFormdataBody calls the generic CredentialsUpdate builder with application/x-www-form-urlencoded body

func NewDevelopmentEnvironmentsCreateRequest

func NewDevelopmentEnvironmentsCreateRequest(server string, body DevelopmentEnvironmentsCreateJSONRequestBody) (*http.Request, error)

NewDevelopmentEnvironmentsCreateRequest calls the generic DevelopmentEnvironmentsCreate builder with application/json body

func NewDevelopmentEnvironmentsCreateRequestWithBody

func NewDevelopmentEnvironmentsCreateRequestWithBody(server string, contentType string, body io.Reader) (*http.Request, error)

NewDevelopmentEnvironmentsCreateRequestWithBody generates requests for DevelopmentEnvironmentsCreate with any type of body

func NewDevelopmentEnvironmentsCreateRequestWithFormdataBody added in v0.2.0

func NewDevelopmentEnvironmentsCreateRequestWithFormdataBody(server string, body DevelopmentEnvironmentsCreateFormdataRequestBody) (*http.Request, error)

NewDevelopmentEnvironmentsCreateRequestWithFormdataBody calls the generic DevelopmentEnvironmentsCreate builder with application/x-www-form-urlencoded body

func NewDevelopmentEnvironmentsDeletePreviewListRequest added in v0.2.0

func NewDevelopmentEnvironmentsDeletePreviewListRequest(server string, id int, params *DevelopmentEnvironmentsDeletePreviewListParams) (*http.Request, error)

NewDevelopmentEnvironmentsDeletePreviewListRequest generates requests for DevelopmentEnvironmentsDeletePreviewList

func NewDevelopmentEnvironmentsDestroyRequest

func NewDevelopmentEnvironmentsDestroyRequest(server string, id int) (*http.Request, error)

NewDevelopmentEnvironmentsDestroyRequest generates requests for DevelopmentEnvironmentsDestroy

func NewDevelopmentEnvironmentsListRequest

func NewDevelopmentEnvironmentsListRequest(server string, params *DevelopmentEnvironmentsListParams) (*http.Request, error)

NewDevelopmentEnvironmentsListRequest generates requests for DevelopmentEnvironmentsList

func NewDevelopmentEnvironmentsPartialUpdateRequest

func NewDevelopmentEnvironmentsPartialUpdateRequest(server string, id int, body DevelopmentEnvironmentsPartialUpdateJSONRequestBody) (*http.Request, error)

NewDevelopmentEnvironmentsPartialUpdateRequest calls the generic DevelopmentEnvironmentsPartialUpdate builder with application/json body

func NewDevelopmentEnvironmentsPartialUpdateRequestWithBody

func NewDevelopmentEnvironmentsPartialUpdateRequestWithBody(server string, id int, contentType string, body io.Reader) (*http.Request, error)

NewDevelopmentEnvironmentsPartialUpdateRequestWithBody generates requests for DevelopmentEnvironmentsPartialUpdate with any type of body

func NewDevelopmentEnvironmentsPartialUpdateRequestWithFormdataBody added in v0.2.0

func NewDevelopmentEnvironmentsPartialUpdateRequestWithFormdataBody(server string, id int, body DevelopmentEnvironmentsPartialUpdateFormdataRequestBody) (*http.Request, error)

NewDevelopmentEnvironmentsPartialUpdateRequestWithFormdataBody calls the generic DevelopmentEnvironmentsPartialUpdate builder with application/x-www-form-urlencoded body

func NewDevelopmentEnvironmentsRetrieveRequest

func NewDevelopmentEnvironmentsRetrieveRequest(server string, id int) (*http.Request, error)

NewDevelopmentEnvironmentsRetrieveRequest generates requests for DevelopmentEnvironmentsRetrieve

func NewDevelopmentEnvironmentsUpdateRequest

func NewDevelopmentEnvironmentsUpdateRequest(server string, id int, body DevelopmentEnvironmentsUpdateJSONRequestBody) (*http.Request, error)

NewDevelopmentEnvironmentsUpdateRequest calls the generic DevelopmentEnvironmentsUpdate builder with application/json body

func NewDevelopmentEnvironmentsUpdateRequestWithBody

func NewDevelopmentEnvironmentsUpdateRequestWithBody(server string, id int, contentType string, body io.Reader) (*http.Request, error)

NewDevelopmentEnvironmentsUpdateRequestWithBody generates requests for DevelopmentEnvironmentsUpdate with any type of body

func NewDevelopmentEnvironmentsUpdateRequestWithFormdataBody added in v0.2.0

func NewDevelopmentEnvironmentsUpdateRequestWithFormdataBody(server string, id int, body DevelopmentEnvironmentsUpdateFormdataRequestBody) (*http.Request, error)

NewDevelopmentEnvironmentsUpdateRequestWithFormdataBody calls the generic DevelopmentEnvironmentsUpdate builder with application/x-www-form-urlencoded body

func NewDojoGroupMembersCreateRequest

func NewDojoGroupMembersCreateRequest(server string, body DojoGroupMembersCreateJSONRequestBody) (*http.Request, error)

NewDojoGroupMembersCreateRequest calls the generic DojoGroupMembersCreate builder with application/json body

func NewDojoGroupMembersCreateRequestWithBody

func NewDojoGroupMembersCreateRequestWithBody(server string, contentType string, body io.Reader) (*http.Request, error)

NewDojoGroupMembersCreateRequestWithBody generates requests for DojoGroupMembersCreate with any type of body

func NewDojoGroupMembersCreateRequestWithFormdataBody added in v0.2.0

func NewDojoGroupMembersCreateRequestWithFormdataBody(server string, body DojoGroupMembersCreateFormdataRequestBody) (*http.Request, error)

NewDojoGroupMembersCreateRequestWithFormdataBody calls the generic DojoGroupMembersCreate builder with application/x-www-form-urlencoded body

func NewDojoGroupMembersDeletePreviewListRequest added in v0.2.0

func NewDojoGroupMembersDeletePreviewListRequest(server string, id int, params *DojoGroupMembersDeletePreviewListParams) (*http.Request, error)

NewDojoGroupMembersDeletePreviewListRequest generates requests for DojoGroupMembersDeletePreviewList

func NewDojoGroupMembersDestroyRequest

func NewDojoGroupMembersDestroyRequest(server string, id int) (*http.Request, error)

NewDojoGroupMembersDestroyRequest generates requests for DojoGroupMembersDestroy

func NewDojoGroupMembersListRequest

func NewDojoGroupMembersListRequest(server string, params *DojoGroupMembersListParams) (*http.Request, error)

NewDojoGroupMembersListRequest generates requests for DojoGroupMembersList

func NewDojoGroupMembersPartialUpdateRequest

func NewDojoGroupMembersPartialUpdateRequest(server string, id int, body DojoGroupMembersPartialUpdateJSONRequestBody) (*http.Request, error)

NewDojoGroupMembersPartialUpdateRequest calls the generic DojoGroupMembersPartialUpdate builder with application/json body

func NewDojoGroupMembersPartialUpdateRequestWithBody

func NewDojoGroupMembersPartialUpdateRequestWithBody(server string, id int, contentType string, body io.Reader) (*http.Request, error)

NewDojoGroupMembersPartialUpdateRequestWithBody generates requests for DojoGroupMembersPartialUpdate with any type of body

func NewDojoGroupMembersPartialUpdateRequestWithFormdataBody added in v0.2.0

func NewDojoGroupMembersPartialUpdateRequestWithFormdataBody(server string, id int, body DojoGroupMembersPartialUpdateFormdataRequestBody) (*http.Request, error)

NewDojoGroupMembersPartialUpdateRequestWithFormdataBody calls the generic DojoGroupMembersPartialUpdate builder with application/x-www-form-urlencoded body

func NewDojoGroupMembersRetrieveRequest

func NewDojoGroupMembersRetrieveRequest(server string, id int, params *DojoGroupMembersRetrieveParams) (*http.Request, error)

NewDojoGroupMembersRetrieveRequest generates requests for DojoGroupMembersRetrieve

func NewDojoGroupMembersUpdateRequest

func NewDojoGroupMembersUpdateRequest(server string, id int, body DojoGroupMembersUpdateJSONRequestBody) (*http.Request, error)

NewDojoGroupMembersUpdateRequest calls the generic DojoGroupMembersUpdate builder with application/json body

func NewDojoGroupMembersUpdateRequestWithBody

func NewDojoGroupMembersUpdateRequestWithBody(server string, id int, contentType string, body io.Reader) (*http.Request, error)

NewDojoGroupMembersUpdateRequestWithBody generates requests for DojoGroupMembersUpdate with any type of body

func NewDojoGroupMembersUpdateRequestWithFormdataBody added in v0.2.0

func NewDojoGroupMembersUpdateRequestWithFormdataBody(server string, id int, body DojoGroupMembersUpdateFormdataRequestBody) (*http.Request, error)

NewDojoGroupMembersUpdateRequestWithFormdataBody calls the generic DojoGroupMembersUpdate builder with application/x-www-form-urlencoded body

func NewDojoGroupsCreateRequest

func NewDojoGroupsCreateRequest(server string, body DojoGroupsCreateJSONRequestBody) (*http.Request, error)

NewDojoGroupsCreateRequest calls the generic DojoGroupsCreate builder with application/json body

func NewDojoGroupsCreateRequestWithBody

func NewDojoGroupsCreateRequestWithBody(server string, contentType string, body io.Reader) (*http.Request, error)

NewDojoGroupsCreateRequestWithBody generates requests for DojoGroupsCreate with any type of body

func NewDojoGroupsCreateRequestWithFormdataBody added in v0.2.0

func NewDojoGroupsCreateRequestWithFormdataBody(server string, body DojoGroupsCreateFormdataRequestBody) (*http.Request, error)

NewDojoGroupsCreateRequestWithFormdataBody calls the generic DojoGroupsCreate builder with application/x-www-form-urlencoded body

func NewDojoGroupsDeletePreviewListRequest added in v0.2.0

func NewDojoGroupsDeletePreviewListRequest(server string, id int, params *DojoGroupsDeletePreviewListParams) (*http.Request, error)

NewDojoGroupsDeletePreviewListRequest generates requests for DojoGroupsDeletePreviewList

func NewDojoGroupsDestroyRequest

func NewDojoGroupsDestroyRequest(server string, id int) (*http.Request, error)

NewDojoGroupsDestroyRequest generates requests for DojoGroupsDestroy

func NewDojoGroupsListRequest

func NewDojoGroupsListRequest(server string, params *DojoGroupsListParams) (*http.Request, error)

NewDojoGroupsListRequest generates requests for DojoGroupsList

func NewDojoGroupsPartialUpdateRequest

func NewDojoGroupsPartialUpdateRequest(server string, id int, body DojoGroupsPartialUpdateJSONRequestBody) (*http.Request, error)

NewDojoGroupsPartialUpdateRequest calls the generic DojoGroupsPartialUpdate builder with application/json body

func NewDojoGroupsPartialUpdateRequestWithBody

func NewDojoGroupsPartialUpdateRequestWithBody(server string, id int, contentType string, body io.Reader) (*http.Request, error)

NewDojoGroupsPartialUpdateRequestWithBody generates requests for DojoGroupsPartialUpdate with any type of body

func NewDojoGroupsPartialUpdateRequestWithFormdataBody added in v0.2.0

func NewDojoGroupsPartialUpdateRequestWithFormdataBody(server string, id int, body DojoGroupsPartialUpdateFormdataRequestBody) (*http.Request, error)

NewDojoGroupsPartialUpdateRequestWithFormdataBody calls the generic DojoGroupsPartialUpdate builder with application/x-www-form-urlencoded body

func NewDojoGroupsRetrieveRequest

func NewDojoGroupsRetrieveRequest(server string, id int, params *DojoGroupsRetrieveParams) (*http.Request, error)

NewDojoGroupsRetrieveRequest generates requests for DojoGroupsRetrieve

func NewDojoGroupsUpdateRequest

func NewDojoGroupsUpdateRequest(server string, id int, body DojoGroupsUpdateJSONRequestBody) (*http.Request, error)

NewDojoGroupsUpdateRequest calls the generic DojoGroupsUpdate builder with application/json body

func NewDojoGroupsUpdateRequestWithBody

func NewDojoGroupsUpdateRequestWithBody(server string, id int, contentType string, body io.Reader) (*http.Request, error)

NewDojoGroupsUpdateRequestWithBody generates requests for DojoGroupsUpdate with any type of body

func NewDojoGroupsUpdateRequestWithFormdataBody added in v0.2.0

func NewDojoGroupsUpdateRequestWithFormdataBody(server string, id int, body DojoGroupsUpdateFormdataRequestBody) (*http.Request, error)

NewDojoGroupsUpdateRequestWithFormdataBody calls the generic DojoGroupsUpdate builder with application/x-www-form-urlencoded body

func NewEndpointMetaImportCreateRequestWithBody

func NewEndpointMetaImportCreateRequestWithBody(server string, contentType string, body io.Reader) (*http.Request, error)

NewEndpointMetaImportCreateRequestWithBody generates requests for EndpointMetaImportCreate with any type of body

func NewEndpointStatusCreateRequest

func NewEndpointStatusCreateRequest(server string, body EndpointStatusCreateJSONRequestBody) (*http.Request, error)

NewEndpointStatusCreateRequest calls the generic EndpointStatusCreate builder with application/json body

func NewEndpointStatusCreateRequestWithBody

func NewEndpointStatusCreateRequestWithBody(server string, contentType string, body io.Reader) (*http.Request, error)

NewEndpointStatusCreateRequestWithBody generates requests for EndpointStatusCreate with any type of body

func NewEndpointStatusCreateRequestWithFormdataBody added in v0.2.0

func NewEndpointStatusCreateRequestWithFormdataBody(server string, body EndpointStatusCreateFormdataRequestBody) (*http.Request, error)

NewEndpointStatusCreateRequestWithFormdataBody calls the generic EndpointStatusCreate builder with application/x-www-form-urlencoded body

func NewEndpointStatusDeletePreviewListRequest added in v0.2.0

func NewEndpointStatusDeletePreviewListRequest(server string, id int, params *EndpointStatusDeletePreviewListParams) (*http.Request, error)

NewEndpointStatusDeletePreviewListRequest generates requests for EndpointStatusDeletePreviewList

func NewEndpointStatusDestroyRequest

func NewEndpointStatusDestroyRequest(server string, id int) (*http.Request, error)

NewEndpointStatusDestroyRequest generates requests for EndpointStatusDestroy

func NewEndpointStatusListRequest

func NewEndpointStatusListRequest(server string, params *EndpointStatusListParams) (*http.Request, error)

NewEndpointStatusListRequest generates requests for EndpointStatusList

func NewEndpointStatusPartialUpdateRequest

func NewEndpointStatusPartialUpdateRequest(server string, id int, body EndpointStatusPartialUpdateJSONRequestBody) (*http.Request, error)

NewEndpointStatusPartialUpdateRequest calls the generic EndpointStatusPartialUpdate builder with application/json body

func NewEndpointStatusPartialUpdateRequestWithBody

func NewEndpointStatusPartialUpdateRequestWithBody(server string, id int, contentType string, body io.Reader) (*http.Request, error)

NewEndpointStatusPartialUpdateRequestWithBody generates requests for EndpointStatusPartialUpdate with any type of body

func NewEndpointStatusPartialUpdateRequestWithFormdataBody added in v0.2.0

func NewEndpointStatusPartialUpdateRequestWithFormdataBody(server string, id int, body EndpointStatusPartialUpdateFormdataRequestBody) (*http.Request, error)

NewEndpointStatusPartialUpdateRequestWithFormdataBody calls the generic EndpointStatusPartialUpdate builder with application/x-www-form-urlencoded body

func NewEndpointStatusRetrieveRequest

func NewEndpointStatusRetrieveRequest(server string, id int) (*http.Request, error)

NewEndpointStatusRetrieveRequest generates requests for EndpointStatusRetrieve

func NewEndpointStatusUpdateRequest

func NewEndpointStatusUpdateRequest(server string, id int, body EndpointStatusUpdateJSONRequestBody) (*http.Request, error)

NewEndpointStatusUpdateRequest calls the generic EndpointStatusUpdate builder with application/json body

func NewEndpointStatusUpdateRequestWithBody

func NewEndpointStatusUpdateRequestWithBody(server string, id int, contentType string, body io.Reader) (*http.Request, error)

NewEndpointStatusUpdateRequestWithBody generates requests for EndpointStatusUpdate with any type of body

func NewEndpointStatusUpdateRequestWithFormdataBody added in v0.2.0

func NewEndpointStatusUpdateRequestWithFormdataBody(server string, id int, body EndpointStatusUpdateFormdataRequestBody) (*http.Request, error)

NewEndpointStatusUpdateRequestWithFormdataBody calls the generic EndpointStatusUpdate builder with application/x-www-form-urlencoded body

func NewEndpointsCreateRequest

func NewEndpointsCreateRequest(server string, body EndpointsCreateJSONRequestBody) (*http.Request, error)

NewEndpointsCreateRequest calls the generic EndpointsCreate builder with application/json body

func NewEndpointsCreateRequestWithBody

func NewEndpointsCreateRequestWithBody(server string, contentType string, body io.Reader) (*http.Request, error)

NewEndpointsCreateRequestWithBody generates requests for EndpointsCreate with any type of body

func NewEndpointsCreateRequestWithFormdataBody added in v0.2.0

func NewEndpointsCreateRequestWithFormdataBody(server string, body EndpointsCreateFormdataRequestBody) (*http.Request, error)

NewEndpointsCreateRequestWithFormdataBody calls the generic EndpointsCreate builder with application/x-www-form-urlencoded body

func NewEndpointsDeletePreviewListRequest added in v0.2.0

func NewEndpointsDeletePreviewListRequest(server string, id int, params *EndpointsDeletePreviewListParams) (*http.Request, error)

NewEndpointsDeletePreviewListRequest generates requests for EndpointsDeletePreviewList

func NewEndpointsDestroyRequest

func NewEndpointsDestroyRequest(server string, id int) (*http.Request, error)

NewEndpointsDestroyRequest generates requests for EndpointsDestroy

func NewEndpointsGenerateReportCreateRequest

func NewEndpointsGenerateReportCreateRequest(server string, id int, body EndpointsGenerateReportCreateJSONRequestBody) (*http.Request, error)

NewEndpointsGenerateReportCreateRequest calls the generic EndpointsGenerateReportCreate builder with application/json body

func NewEndpointsGenerateReportCreateRequestWithBody

func NewEndpointsGenerateReportCreateRequestWithBody(server string, id int, contentType string, body io.Reader) (*http.Request, error)

NewEndpointsGenerateReportCreateRequestWithBody generates requests for EndpointsGenerateReportCreate with any type of body

func NewEndpointsGenerateReportCreateRequestWithFormdataBody added in v0.2.0

func NewEndpointsGenerateReportCreateRequestWithFormdataBody(server string, id int, body EndpointsGenerateReportCreateFormdataRequestBody) (*http.Request, error)

NewEndpointsGenerateReportCreateRequestWithFormdataBody calls the generic EndpointsGenerateReportCreate builder with application/x-www-form-urlencoded body

func NewEndpointsListRequest

func NewEndpointsListRequest(server string, params *EndpointsListParams) (*http.Request, error)

NewEndpointsListRequest generates requests for EndpointsList

func NewEndpointsPartialUpdateRequest

func NewEndpointsPartialUpdateRequest(server string, id int, body EndpointsPartialUpdateJSONRequestBody) (*http.Request, error)

NewEndpointsPartialUpdateRequest calls the generic EndpointsPartialUpdate builder with application/json body

func NewEndpointsPartialUpdateRequestWithBody

func NewEndpointsPartialUpdateRequestWithBody(server string, id int, contentType string, body io.Reader) (*http.Request, error)

NewEndpointsPartialUpdateRequestWithBody generates requests for EndpointsPartialUpdate with any type of body

func NewEndpointsPartialUpdateRequestWithFormdataBody added in v0.2.0

func NewEndpointsPartialUpdateRequestWithFormdataBody(server string, id int, body EndpointsPartialUpdateFormdataRequestBody) (*http.Request, error)

NewEndpointsPartialUpdateRequestWithFormdataBody calls the generic EndpointsPartialUpdate builder with application/x-www-form-urlencoded body

func NewEndpointsRetrieveRequest

func NewEndpointsRetrieveRequest(server string, id int) (*http.Request, error)

NewEndpointsRetrieveRequest generates requests for EndpointsRetrieve

func NewEndpointsUpdateRequest

func NewEndpointsUpdateRequest(server string, id int, body EndpointsUpdateJSONRequestBody) (*http.Request, error)

NewEndpointsUpdateRequest calls the generic EndpointsUpdate builder with application/json body

func NewEndpointsUpdateRequestWithBody

func NewEndpointsUpdateRequestWithBody(server string, id int, contentType string, body io.Reader) (*http.Request, error)

NewEndpointsUpdateRequestWithBody generates requests for EndpointsUpdate with any type of body

func NewEndpointsUpdateRequestWithFormdataBody added in v0.2.0

func NewEndpointsUpdateRequestWithFormdataBody(server string, id int, body EndpointsUpdateFormdataRequestBody) (*http.Request, error)

NewEndpointsUpdateRequestWithFormdataBody calls the generic EndpointsUpdate builder with application/x-www-form-urlencoded body

func NewEngagementPresetsCreateRequest

func NewEngagementPresetsCreateRequest(server string, body EngagementPresetsCreateJSONRequestBody) (*http.Request, error)

NewEngagementPresetsCreateRequest calls the generic EngagementPresetsCreate builder with application/json body

func NewEngagementPresetsCreateRequestWithBody

func NewEngagementPresetsCreateRequestWithBody(server string, contentType string, body io.Reader) (*http.Request, error)

NewEngagementPresetsCreateRequestWithBody generates requests for EngagementPresetsCreate with any type of body

func NewEngagementPresetsCreateRequestWithFormdataBody added in v0.2.0

func NewEngagementPresetsCreateRequestWithFormdataBody(server string, body EngagementPresetsCreateFormdataRequestBody) (*http.Request, error)

NewEngagementPresetsCreateRequestWithFormdataBody calls the generic EngagementPresetsCreate builder with application/x-www-form-urlencoded body

func NewEngagementPresetsDeletePreviewListRequest added in v0.2.0

func NewEngagementPresetsDeletePreviewListRequest(server string, id int, params *EngagementPresetsDeletePreviewListParams) (*http.Request, error)

NewEngagementPresetsDeletePreviewListRequest generates requests for EngagementPresetsDeletePreviewList

func NewEngagementPresetsDestroyRequest

func NewEngagementPresetsDestroyRequest(server string, id int) (*http.Request, error)

NewEngagementPresetsDestroyRequest generates requests for EngagementPresetsDestroy

func NewEngagementPresetsListRequest

func NewEngagementPresetsListRequest(server string, params *EngagementPresetsListParams) (*http.Request, error)

NewEngagementPresetsListRequest generates requests for EngagementPresetsList

func NewEngagementPresetsPartialUpdateRequest

func NewEngagementPresetsPartialUpdateRequest(server string, id int, body EngagementPresetsPartialUpdateJSONRequestBody) (*http.Request, error)

NewEngagementPresetsPartialUpdateRequest calls the generic EngagementPresetsPartialUpdate builder with application/json body

func NewEngagementPresetsPartialUpdateRequestWithBody

func NewEngagementPresetsPartialUpdateRequestWithBody(server string, id int, contentType string, body io.Reader) (*http.Request, error)

NewEngagementPresetsPartialUpdateRequestWithBody generates requests for EngagementPresetsPartialUpdate with any type of body

func NewEngagementPresetsPartialUpdateRequestWithFormdataBody added in v0.2.0

func NewEngagementPresetsPartialUpdateRequestWithFormdataBody(server string, id int, body EngagementPresetsPartialUpdateFormdataRequestBody) (*http.Request, error)

NewEngagementPresetsPartialUpdateRequestWithFormdataBody calls the generic EngagementPresetsPartialUpdate builder with application/x-www-form-urlencoded body

func NewEngagementPresetsRetrieveRequest

func NewEngagementPresetsRetrieveRequest(server string, id int) (*http.Request, error)

NewEngagementPresetsRetrieveRequest generates requests for EngagementPresetsRetrieve

func NewEngagementPresetsUpdateRequest

func NewEngagementPresetsUpdateRequest(server string, id int, body EngagementPresetsUpdateJSONRequestBody) (*http.Request, error)

NewEngagementPresetsUpdateRequest calls the generic EngagementPresetsUpdate builder with application/json body

func NewEngagementPresetsUpdateRequestWithBody

func NewEngagementPresetsUpdateRequestWithBody(server string, id int, contentType string, body io.Reader) (*http.Request, error)

NewEngagementPresetsUpdateRequestWithBody generates requests for EngagementPresetsUpdate with any type of body

func NewEngagementPresetsUpdateRequestWithFormdataBody added in v0.2.0

func NewEngagementPresetsUpdateRequestWithFormdataBody(server string, id int, body EngagementPresetsUpdateFormdataRequestBody) (*http.Request, error)

NewEngagementPresetsUpdateRequestWithFormdataBody calls the generic EngagementPresetsUpdate builder with application/x-www-form-urlencoded body

func NewEngagementsAcceptRisksCreateRequest

func NewEngagementsAcceptRisksCreateRequest(server string, id int, body EngagementsAcceptRisksCreateJSONRequestBody) (*http.Request, error)

NewEngagementsAcceptRisksCreateRequest calls the generic EngagementsAcceptRisksCreate builder with application/json body

func NewEngagementsAcceptRisksCreateRequestWithBody

func NewEngagementsAcceptRisksCreateRequestWithBody(server string, id int, contentType string, body io.Reader) (*http.Request, error)

NewEngagementsAcceptRisksCreateRequestWithBody generates requests for EngagementsAcceptRisksCreate with any type of body

func NewEngagementsAcceptRisksCreateRequestWithFormdataBody added in v0.2.0

func NewEngagementsAcceptRisksCreateRequestWithFormdataBody(server string, id int, body EngagementsAcceptRisksCreateFormdataRequestBody) (*http.Request, error)

NewEngagementsAcceptRisksCreateRequestWithFormdataBody calls the generic EngagementsAcceptRisksCreate builder with application/x-www-form-urlencoded body

func NewEngagementsCloseCreateRequest

func NewEngagementsCloseCreateRequest(server string, id int) (*http.Request, error)

NewEngagementsCloseCreateRequest generates requests for EngagementsCloseCreate

func NewEngagementsCompleteChecklistCreateRequest added in v0.2.0

func NewEngagementsCompleteChecklistCreateRequest(server string, id int, body EngagementsCompleteChecklistCreateJSONRequestBody) (*http.Request, error)

NewEngagementsCompleteChecklistCreateRequest calls the generic EngagementsCompleteChecklistCreate builder with application/json body

func NewEngagementsCompleteChecklistCreateRequestWithBody added in v0.2.0

func NewEngagementsCompleteChecklistCreateRequestWithBody(server string, id int, contentType string, body io.Reader) (*http.Request, error)

NewEngagementsCompleteChecklistCreateRequestWithBody generates requests for EngagementsCompleteChecklistCreate with any type of body

func NewEngagementsCompleteChecklistCreateRequestWithFormdataBody added in v0.2.0

func NewEngagementsCompleteChecklistCreateRequestWithFormdataBody(server string, id int, body EngagementsCompleteChecklistCreateFormdataRequestBody) (*http.Request, error)

NewEngagementsCompleteChecklistCreateRequestWithFormdataBody calls the generic EngagementsCompleteChecklistCreate builder with application/x-www-form-urlencoded body

func NewEngagementsCompleteChecklistRetrieveRequest added in v0.2.0

func NewEngagementsCompleteChecklistRetrieveRequest(server string, id int) (*http.Request, error)

NewEngagementsCompleteChecklistRetrieveRequest generates requests for EngagementsCompleteChecklistRetrieve

func NewEngagementsCreateRequest

func NewEngagementsCreateRequest(server string, body EngagementsCreateJSONRequestBody) (*http.Request, error)

NewEngagementsCreateRequest calls the generic EngagementsCreate builder with application/json body

func NewEngagementsCreateRequestWithBody

func NewEngagementsCreateRequestWithBody(server string, contentType string, body io.Reader) (*http.Request, error)

NewEngagementsCreateRequestWithBody generates requests for EngagementsCreate with any type of body

func NewEngagementsCreateRequestWithFormdataBody added in v0.2.0

func NewEngagementsCreateRequestWithFormdataBody(server string, body EngagementsCreateFormdataRequestBody) (*http.Request, error)

NewEngagementsCreateRequestWithFormdataBody calls the generic EngagementsCreate builder with application/x-www-form-urlencoded body

func NewEngagementsDeletePreviewListRequest added in v0.2.0

func NewEngagementsDeletePreviewListRequest(server string, id int, params *EngagementsDeletePreviewListParams) (*http.Request, error)

NewEngagementsDeletePreviewListRequest generates requests for EngagementsDeletePreviewList

func NewEngagementsDestroyRequest

func NewEngagementsDestroyRequest(server string, id int) (*http.Request, error)

NewEngagementsDestroyRequest generates requests for EngagementsDestroy

func NewEngagementsFilesCreateRequestWithBody

func NewEngagementsFilesCreateRequestWithBody(server string, id int, contentType string, body io.Reader) (*http.Request, error)

NewEngagementsFilesCreateRequestWithBody generates requests for EngagementsFilesCreate with any type of body

func NewEngagementsFilesDownloadRetrieveRequest added in v0.2.0

func NewEngagementsFilesDownloadRetrieveRequest(server string, id int, fileId string) (*http.Request, error)

NewEngagementsFilesDownloadRetrieveRequest generates requests for EngagementsFilesDownloadRetrieve

func NewEngagementsFilesRetrieveRequest

func NewEngagementsFilesRetrieveRequest(server string, id int) (*http.Request, error)

NewEngagementsFilesRetrieveRequest generates requests for EngagementsFilesRetrieve

func NewEngagementsGenerateReportCreateRequest

func NewEngagementsGenerateReportCreateRequest(server string, id int, body EngagementsGenerateReportCreateJSONRequestBody) (*http.Request, error)

NewEngagementsGenerateReportCreateRequest calls the generic EngagementsGenerateReportCreate builder with application/json body

func NewEngagementsGenerateReportCreateRequestWithBody

func NewEngagementsGenerateReportCreateRequestWithBody(server string, id int, contentType string, body io.Reader) (*http.Request, error)

NewEngagementsGenerateReportCreateRequestWithBody generates requests for EngagementsGenerateReportCreate with any type of body

func NewEngagementsGenerateReportCreateRequestWithFormdataBody added in v0.2.0

func NewEngagementsGenerateReportCreateRequestWithFormdataBody(server string, id int, body EngagementsGenerateReportCreateFormdataRequestBody) (*http.Request, error)

NewEngagementsGenerateReportCreateRequestWithFormdataBody calls the generic EngagementsGenerateReportCreate builder with application/x-www-form-urlencoded body

func NewEngagementsListRequest

func NewEngagementsListRequest(server string, params *EngagementsListParams) (*http.Request, error)

NewEngagementsListRequest generates requests for EngagementsList

func NewEngagementsNotesCreateRequest

func NewEngagementsNotesCreateRequest(server string, id int, body EngagementsNotesCreateJSONRequestBody) (*http.Request, error)

NewEngagementsNotesCreateRequest calls the generic EngagementsNotesCreate builder with application/json body

func NewEngagementsNotesCreateRequestWithBody

func NewEngagementsNotesCreateRequestWithBody(server string, id int, contentType string, body io.Reader) (*http.Request, error)

NewEngagementsNotesCreateRequestWithBody generates requests for EngagementsNotesCreate with any type of body

func NewEngagementsNotesCreateRequestWithFormdataBody added in v0.2.0

func NewEngagementsNotesCreateRequestWithFormdataBody(server string, id int, body EngagementsNotesCreateFormdataRequestBody) (*http.Request, error)

NewEngagementsNotesCreateRequestWithFormdataBody calls the generic EngagementsNotesCreate builder with application/x-www-form-urlencoded body

func NewEngagementsNotesRetrieveRequest

func NewEngagementsNotesRetrieveRequest(server string, id int) (*http.Request, error)

NewEngagementsNotesRetrieveRequest generates requests for EngagementsNotesRetrieve

func NewEngagementsPartialUpdateRequest

func NewEngagementsPartialUpdateRequest(server string, id int, body EngagementsPartialUpdateJSONRequestBody) (*http.Request, error)

NewEngagementsPartialUpdateRequest calls the generic EngagementsPartialUpdate builder with application/json body

func NewEngagementsPartialUpdateRequestWithBody

func NewEngagementsPartialUpdateRequestWithBody(server string, id int, contentType string, body io.Reader) (*http.Request, error)

NewEngagementsPartialUpdateRequestWithBody generates requests for EngagementsPartialUpdate with any type of body

func NewEngagementsPartialUpdateRequestWithFormdataBody added in v0.2.0

func NewEngagementsPartialUpdateRequestWithFormdataBody(server string, id int, body EngagementsPartialUpdateFormdataRequestBody) (*http.Request, error)

NewEngagementsPartialUpdateRequestWithFormdataBody calls the generic EngagementsPartialUpdate builder with application/x-www-form-urlencoded body

func NewEngagementsReopenCreateRequest

func NewEngagementsReopenCreateRequest(server string, id int) (*http.Request, error)

NewEngagementsReopenCreateRequest generates requests for EngagementsReopenCreate

func NewEngagementsRetrieveRequest

func NewEngagementsRetrieveRequest(server string, id int) (*http.Request, error)

NewEngagementsRetrieveRequest generates requests for EngagementsRetrieve

func NewEngagementsUpdateRequest

func NewEngagementsUpdateRequest(server string, id int, body EngagementsUpdateJSONRequestBody) (*http.Request, error)

NewEngagementsUpdateRequest calls the generic EngagementsUpdate builder with application/json body

func NewEngagementsUpdateRequestWithBody

func NewEngagementsUpdateRequestWithBody(server string, id int, contentType string, body io.Reader) (*http.Request, error)

NewEngagementsUpdateRequestWithBody generates requests for EngagementsUpdate with any type of body

func NewEngagementsUpdateRequestWithFormdataBody added in v0.2.0

func NewEngagementsUpdateRequestWithFormdataBody(server string, id int, body EngagementsUpdateFormdataRequestBody) (*http.Request, error)

NewEngagementsUpdateRequestWithFormdataBody calls the generic EngagementsUpdate builder with application/x-www-form-urlencoded body

func NewFindingTemplatesCreateRequest

func NewFindingTemplatesCreateRequest(server string, body FindingTemplatesCreateJSONRequestBody) (*http.Request, error)

NewFindingTemplatesCreateRequest calls the generic FindingTemplatesCreate builder with application/json body

func NewFindingTemplatesCreateRequestWithBody

func NewFindingTemplatesCreateRequestWithBody(server string, contentType string, body io.Reader) (*http.Request, error)

NewFindingTemplatesCreateRequestWithBody generates requests for FindingTemplatesCreate with any type of body

func NewFindingTemplatesCreateRequestWithFormdataBody added in v0.2.0

func NewFindingTemplatesCreateRequestWithFormdataBody(server string, body FindingTemplatesCreateFormdataRequestBody) (*http.Request, error)

NewFindingTemplatesCreateRequestWithFormdataBody calls the generic FindingTemplatesCreate builder with application/x-www-form-urlencoded body

func NewFindingTemplatesDeletePreviewListRequest added in v0.2.0

func NewFindingTemplatesDeletePreviewListRequest(server string, id int, params *FindingTemplatesDeletePreviewListParams) (*http.Request, error)

NewFindingTemplatesDeletePreviewListRequest generates requests for FindingTemplatesDeletePreviewList

func NewFindingTemplatesDestroyRequest

func NewFindingTemplatesDestroyRequest(server string, id int) (*http.Request, error)

NewFindingTemplatesDestroyRequest generates requests for FindingTemplatesDestroy

func NewFindingTemplatesListRequest

func NewFindingTemplatesListRequest(server string, params *FindingTemplatesListParams) (*http.Request, error)

NewFindingTemplatesListRequest generates requests for FindingTemplatesList

func NewFindingTemplatesPartialUpdateRequest

func NewFindingTemplatesPartialUpdateRequest(server string, id int, body FindingTemplatesPartialUpdateJSONRequestBody) (*http.Request, error)

NewFindingTemplatesPartialUpdateRequest calls the generic FindingTemplatesPartialUpdate builder with application/json body

func NewFindingTemplatesPartialUpdateRequestWithBody

func NewFindingTemplatesPartialUpdateRequestWithBody(server string, id int, contentType string, body io.Reader) (*http.Request, error)

NewFindingTemplatesPartialUpdateRequestWithBody generates requests for FindingTemplatesPartialUpdate with any type of body

func NewFindingTemplatesPartialUpdateRequestWithFormdataBody added in v0.2.0

func NewFindingTemplatesPartialUpdateRequestWithFormdataBody(server string, id int, body FindingTemplatesPartialUpdateFormdataRequestBody) (*http.Request, error)

NewFindingTemplatesPartialUpdateRequestWithFormdataBody calls the generic FindingTemplatesPartialUpdate builder with application/x-www-form-urlencoded body

func NewFindingTemplatesRetrieveRequest

func NewFindingTemplatesRetrieveRequest(server string, id int) (*http.Request, error)

NewFindingTemplatesRetrieveRequest generates requests for FindingTemplatesRetrieve

func NewFindingTemplatesUpdateRequest

func NewFindingTemplatesUpdateRequest(server string, id int, body FindingTemplatesUpdateJSONRequestBody) (*http.Request, error)

NewFindingTemplatesUpdateRequest calls the generic FindingTemplatesUpdate builder with application/json body

func NewFindingTemplatesUpdateRequestWithBody

func NewFindingTemplatesUpdateRequestWithBody(server string, id int, contentType string, body io.Reader) (*http.Request, error)

NewFindingTemplatesUpdateRequestWithBody generates requests for FindingTemplatesUpdate with any type of body

func NewFindingTemplatesUpdateRequestWithFormdataBody added in v0.2.0

func NewFindingTemplatesUpdateRequestWithFormdataBody(server string, id int, body FindingTemplatesUpdateFormdataRequestBody) (*http.Request, error)

NewFindingTemplatesUpdateRequestWithFormdataBody calls the generic FindingTemplatesUpdate builder with application/x-www-form-urlencoded body

func NewFindingsAcceptRisksCreateRequest

func NewFindingsAcceptRisksCreateRequest(server string, params *FindingsAcceptRisksCreateParams, body FindingsAcceptRisksCreateJSONRequestBody) (*http.Request, error)

NewFindingsAcceptRisksCreateRequest calls the generic FindingsAcceptRisksCreate builder with application/json body

func NewFindingsAcceptRisksCreateRequestWithBody

func NewFindingsAcceptRisksCreateRequestWithBody(server string, params *FindingsAcceptRisksCreateParams, contentType string, body io.Reader) (*http.Request, error)

NewFindingsAcceptRisksCreateRequestWithBody generates requests for FindingsAcceptRisksCreate with any type of body

func NewFindingsAcceptRisksCreateRequestWithFormdataBody added in v0.2.0

func NewFindingsAcceptRisksCreateRequestWithFormdataBody(server string, params *FindingsAcceptRisksCreateParams, body FindingsAcceptRisksCreateFormdataRequestBody) (*http.Request, error)

NewFindingsAcceptRisksCreateRequestWithFormdataBody calls the generic FindingsAcceptRisksCreate builder with application/x-www-form-urlencoded body

func NewFindingsCloseCreateRequest added in v0.2.0

func NewFindingsCloseCreateRequest(server string, id int, body FindingsCloseCreateJSONRequestBody) (*http.Request, error)

NewFindingsCloseCreateRequest calls the generic FindingsCloseCreate builder with application/json body

func NewFindingsCloseCreateRequestWithBody added in v0.2.0

func NewFindingsCloseCreateRequestWithBody(server string, id int, contentType string, body io.Reader) (*http.Request, error)

NewFindingsCloseCreateRequestWithBody generates requests for FindingsCloseCreate with any type of body

func NewFindingsCloseCreateRequestWithFormdataBody added in v0.2.0

func NewFindingsCloseCreateRequestWithFormdataBody(server string, id int, body FindingsCloseCreateFormdataRequestBody) (*http.Request, error)

NewFindingsCloseCreateRequestWithFormdataBody calls the generic FindingsCloseCreate builder with application/x-www-form-urlencoded body

func NewFindingsCreateRequest

func NewFindingsCreateRequest(server string, body FindingsCreateJSONRequestBody) (*http.Request, error)

NewFindingsCreateRequest calls the generic FindingsCreate builder with application/json body

func NewFindingsCreateRequestWithBody

func NewFindingsCreateRequestWithBody(server string, contentType string, body io.Reader) (*http.Request, error)

NewFindingsCreateRequestWithBody generates requests for FindingsCreate with any type of body

func NewFindingsCreateRequestWithFormdataBody added in v0.2.0

func NewFindingsCreateRequestWithFormdataBody(server string, body FindingsCreateFormdataRequestBody) (*http.Request, error)

NewFindingsCreateRequestWithFormdataBody calls the generic FindingsCreate builder with application/x-www-form-urlencoded body

func NewFindingsDeletePreviewListRequest added in v0.2.0

func NewFindingsDeletePreviewListRequest(server string, id int, params *FindingsDeletePreviewListParams) (*http.Request, error)

NewFindingsDeletePreviewListRequest generates requests for FindingsDeletePreviewList

func NewFindingsDestroyRequest

func NewFindingsDestroyRequest(server string, id int) (*http.Request, error)

NewFindingsDestroyRequest generates requests for FindingsDestroy

func NewFindingsDuplicateListRequest

func NewFindingsDuplicateListRequest(server string, id int) (*http.Request, error)

NewFindingsDuplicateListRequest generates requests for FindingsDuplicateList

func NewFindingsDuplicateResetCreateRequest

func NewFindingsDuplicateResetCreateRequest(server string, id int) (*http.Request, error)

NewFindingsDuplicateResetCreateRequest generates requests for FindingsDuplicateResetCreate

func NewFindingsFilesCreateRequestWithBody

func NewFindingsFilesCreateRequestWithBody(server string, id int, contentType string, body io.Reader) (*http.Request, error)

NewFindingsFilesCreateRequestWithBody generates requests for FindingsFilesCreate with any type of body

func NewFindingsFilesDownloadRetrieveRequest added in v0.2.0

func NewFindingsFilesDownloadRetrieveRequest(server string, id int, fileId string) (*http.Request, error)

NewFindingsFilesDownloadRetrieveRequest generates requests for FindingsFilesDownloadRetrieve

func NewFindingsFilesRetrieveRequest

func NewFindingsFilesRetrieveRequest(server string, id int) (*http.Request, error)

NewFindingsFilesRetrieveRequest generates requests for FindingsFilesRetrieve

func NewFindingsGenerateReportCreateRequest

func NewFindingsGenerateReportCreateRequest(server string, body FindingsGenerateReportCreateJSONRequestBody) (*http.Request, error)

NewFindingsGenerateReportCreateRequest calls the generic FindingsGenerateReportCreate builder with application/json body

func NewFindingsGenerateReportCreateRequestWithBody

func NewFindingsGenerateReportCreateRequestWithBody(server string, contentType string, body io.Reader) (*http.Request, error)

NewFindingsGenerateReportCreateRequestWithBody generates requests for FindingsGenerateReportCreate with any type of body

func NewFindingsGenerateReportCreateRequestWithFormdataBody added in v0.2.0

func NewFindingsGenerateReportCreateRequestWithFormdataBody(server string, body FindingsGenerateReportCreateFormdataRequestBody) (*http.Request, error)

NewFindingsGenerateReportCreateRequestWithFormdataBody calls the generic FindingsGenerateReportCreate builder with application/x-www-form-urlencoded body

func NewFindingsListRequest

func NewFindingsListRequest(server string, params *FindingsListParams) (*http.Request, error)

NewFindingsListRequest generates requests for FindingsList

func NewFindingsMetadataCreateRequest

func NewFindingsMetadataCreateRequest(server string, id int, body FindingsMetadataCreateJSONRequestBody) (*http.Request, error)

NewFindingsMetadataCreateRequest calls the generic FindingsMetadataCreate builder with application/json body

func NewFindingsMetadataCreateRequestWithBody

func NewFindingsMetadataCreateRequestWithBody(server string, id int, contentType string, body io.Reader) (*http.Request, error)

NewFindingsMetadataCreateRequestWithBody generates requests for FindingsMetadataCreate with any type of body

func NewFindingsMetadataCreateRequestWithFormdataBody added in v0.2.0

func NewFindingsMetadataCreateRequestWithFormdataBody(server string, id int, body FindingsMetadataCreateFormdataRequestBody) (*http.Request, error)

NewFindingsMetadataCreateRequestWithFormdataBody calls the generic FindingsMetadataCreate builder with application/x-www-form-urlencoded body

func NewFindingsMetadataDestroyRequest

func NewFindingsMetadataDestroyRequest(server string, id int, params *FindingsMetadataDestroyParams) (*http.Request, error)

NewFindingsMetadataDestroyRequest generates requests for FindingsMetadataDestroy

func NewFindingsMetadataListRequest

func NewFindingsMetadataListRequest(server string, id int) (*http.Request, error)

NewFindingsMetadataListRequest generates requests for FindingsMetadataList

func NewFindingsMetadataUpdateRequest

func NewFindingsMetadataUpdateRequest(server string, id int, body FindingsMetadataUpdateJSONRequestBody) (*http.Request, error)

NewFindingsMetadataUpdateRequest calls the generic FindingsMetadataUpdate builder with application/json body

func NewFindingsMetadataUpdateRequestWithBody

func NewFindingsMetadataUpdateRequestWithBody(server string, id int, contentType string, body io.Reader) (*http.Request, error)

NewFindingsMetadataUpdateRequestWithBody generates requests for FindingsMetadataUpdate with any type of body

func NewFindingsMetadataUpdateRequestWithFormdataBody added in v0.2.0

func NewFindingsMetadataUpdateRequestWithFormdataBody(server string, id int, body FindingsMetadataUpdateFormdataRequestBody) (*http.Request, error)

NewFindingsMetadataUpdateRequestWithFormdataBody calls the generic FindingsMetadataUpdate builder with application/x-www-form-urlencoded body

func NewFindingsNotesCreateRequest

func NewFindingsNotesCreateRequest(server string, id int, body FindingsNotesCreateJSONRequestBody) (*http.Request, error)

NewFindingsNotesCreateRequest calls the generic FindingsNotesCreate builder with application/json body

func NewFindingsNotesCreateRequestWithBody

func NewFindingsNotesCreateRequestWithBody(server string, id int, contentType string, body io.Reader) (*http.Request, error)

NewFindingsNotesCreateRequestWithBody generates requests for FindingsNotesCreate with any type of body

func NewFindingsNotesCreateRequestWithFormdataBody added in v0.2.0

func NewFindingsNotesCreateRequestWithFormdataBody(server string, id int, body FindingsNotesCreateFormdataRequestBody) (*http.Request, error)

NewFindingsNotesCreateRequestWithFormdataBody calls the generic FindingsNotesCreate builder with application/x-www-form-urlencoded body

func NewFindingsNotesRetrieveRequest

func NewFindingsNotesRetrieveRequest(server string, id int) (*http.Request, error)

NewFindingsNotesRetrieveRequest generates requests for FindingsNotesRetrieve

func NewFindingsOriginalCreateRequest

func NewFindingsOriginalCreateRequest(server string, id int, newFid int) (*http.Request, error)

NewFindingsOriginalCreateRequest generates requests for FindingsOriginalCreate

func NewFindingsPartialUpdateRequest

func NewFindingsPartialUpdateRequest(server string, id int, body FindingsPartialUpdateJSONRequestBody) (*http.Request, error)

NewFindingsPartialUpdateRequest calls the generic FindingsPartialUpdate builder with application/json body

func NewFindingsPartialUpdateRequestWithBody

func NewFindingsPartialUpdateRequestWithBody(server string, id int, contentType string, body io.Reader) (*http.Request, error)

NewFindingsPartialUpdateRequestWithBody generates requests for FindingsPartialUpdate with any type of body

func NewFindingsPartialUpdateRequestWithFormdataBody added in v0.2.0

func NewFindingsPartialUpdateRequestWithFormdataBody(server string, id int, body FindingsPartialUpdateFormdataRequestBody) (*http.Request, error)

NewFindingsPartialUpdateRequestWithFormdataBody calls the generic FindingsPartialUpdate builder with application/x-www-form-urlencoded body

func NewFindingsRemoveNotePartialUpdateRequest

func NewFindingsRemoveNotePartialUpdateRequest(server string, id int, body FindingsRemoveNotePartialUpdateJSONRequestBody) (*http.Request, error)

NewFindingsRemoveNotePartialUpdateRequest calls the generic FindingsRemoveNotePartialUpdate builder with application/json body

func NewFindingsRemoveNotePartialUpdateRequestWithBody

func NewFindingsRemoveNotePartialUpdateRequestWithBody(server string, id int, contentType string, body io.Reader) (*http.Request, error)

NewFindingsRemoveNotePartialUpdateRequestWithBody generates requests for FindingsRemoveNotePartialUpdate with any type of body

func NewFindingsRemoveNotePartialUpdateRequestWithFormdataBody added in v0.2.0

func NewFindingsRemoveNotePartialUpdateRequestWithFormdataBody(server string, id int, body FindingsRemoveNotePartialUpdateFormdataRequestBody) (*http.Request, error)

NewFindingsRemoveNotePartialUpdateRequestWithFormdataBody calls the generic FindingsRemoveNotePartialUpdate builder with application/x-www-form-urlencoded body

func NewFindingsRemoveTagsPartialUpdateRequest

func NewFindingsRemoveTagsPartialUpdateRequest(server string, id int, body FindingsRemoveTagsPartialUpdateJSONRequestBody) (*http.Request, error)

NewFindingsRemoveTagsPartialUpdateRequest calls the generic FindingsRemoveTagsPartialUpdate builder with application/json body

func NewFindingsRemoveTagsPartialUpdateRequestWithBody

func NewFindingsRemoveTagsPartialUpdateRequestWithBody(server string, id int, contentType string, body io.Reader) (*http.Request, error)

NewFindingsRemoveTagsPartialUpdateRequestWithBody generates requests for FindingsRemoveTagsPartialUpdate with any type of body

func NewFindingsRemoveTagsPartialUpdateRequestWithFormdataBody added in v0.2.0

func NewFindingsRemoveTagsPartialUpdateRequestWithFormdataBody(server string, id int, body FindingsRemoveTagsPartialUpdateFormdataRequestBody) (*http.Request, error)

NewFindingsRemoveTagsPartialUpdateRequestWithFormdataBody calls the generic FindingsRemoveTagsPartialUpdate builder with application/x-www-form-urlencoded body

func NewFindingsRemoveTagsUpdateRequest

func NewFindingsRemoveTagsUpdateRequest(server string, id int, body FindingsRemoveTagsUpdateJSONRequestBody) (*http.Request, error)

NewFindingsRemoveTagsUpdateRequest calls the generic FindingsRemoveTagsUpdate builder with application/json body

func NewFindingsRemoveTagsUpdateRequestWithBody

func NewFindingsRemoveTagsUpdateRequestWithBody(server string, id int, contentType string, body io.Reader) (*http.Request, error)

NewFindingsRemoveTagsUpdateRequestWithBody generates requests for FindingsRemoveTagsUpdate with any type of body

func NewFindingsRemoveTagsUpdateRequestWithFormdataBody added in v0.2.0

func NewFindingsRemoveTagsUpdateRequestWithFormdataBody(server string, id int, body FindingsRemoveTagsUpdateFormdataRequestBody) (*http.Request, error)

NewFindingsRemoveTagsUpdateRequestWithFormdataBody calls the generic FindingsRemoveTagsUpdate builder with application/x-www-form-urlencoded body

func NewFindingsRequestResponseCreateRequest

func NewFindingsRequestResponseCreateRequest(server string, id int, body FindingsRequestResponseCreateJSONRequestBody) (*http.Request, error)

NewFindingsRequestResponseCreateRequest calls the generic FindingsRequestResponseCreate builder with application/json body

func NewFindingsRequestResponseCreateRequestWithBody

func NewFindingsRequestResponseCreateRequestWithBody(server string, id int, contentType string, body io.Reader) (*http.Request, error)

NewFindingsRequestResponseCreateRequestWithBody generates requests for FindingsRequestResponseCreate with any type of body

func NewFindingsRequestResponseCreateRequestWithFormdataBody added in v0.2.0

func NewFindingsRequestResponseCreateRequestWithFormdataBody(server string, id int, body FindingsRequestResponseCreateFormdataRequestBody) (*http.Request, error)

NewFindingsRequestResponseCreateRequestWithFormdataBody calls the generic FindingsRequestResponseCreate builder with application/x-www-form-urlencoded body

func NewFindingsRequestResponseRetrieveRequest

func NewFindingsRequestResponseRetrieveRequest(server string, id int) (*http.Request, error)

NewFindingsRequestResponseRetrieveRequest generates requests for FindingsRequestResponseRetrieve

func NewFindingsRetrieveRequest

func NewFindingsRetrieveRequest(server string, id int, params *FindingsRetrieveParams) (*http.Request, error)

NewFindingsRetrieveRequest generates requests for FindingsRetrieve

func NewFindingsTagsCreateRequest

func NewFindingsTagsCreateRequest(server string, id int, body FindingsTagsCreateJSONRequestBody) (*http.Request, error)

NewFindingsTagsCreateRequest calls the generic FindingsTagsCreate builder with application/json body

func NewFindingsTagsCreateRequestWithBody

func NewFindingsTagsCreateRequestWithBody(server string, id int, contentType string, body io.Reader) (*http.Request, error)

NewFindingsTagsCreateRequestWithBody generates requests for FindingsTagsCreate with any type of body

func NewFindingsTagsCreateRequestWithFormdataBody added in v0.2.0

func NewFindingsTagsCreateRequestWithFormdataBody(server string, id int, body FindingsTagsCreateFormdataRequestBody) (*http.Request, error)

NewFindingsTagsCreateRequestWithFormdataBody calls the generic FindingsTagsCreate builder with application/x-www-form-urlencoded body

func NewFindingsTagsRetrieveRequest

func NewFindingsTagsRetrieveRequest(server string, id int) (*http.Request, error)

NewFindingsTagsRetrieveRequest generates requests for FindingsTagsRetrieve

func NewFindingsUpdateRequest

func NewFindingsUpdateRequest(server string, id int, body FindingsUpdateJSONRequestBody) (*http.Request, error)

NewFindingsUpdateRequest calls the generic FindingsUpdate builder with application/json body

func NewFindingsUpdateRequestWithBody

func NewFindingsUpdateRequestWithBody(server string, id int, contentType string, body io.Reader) (*http.Request, error)

NewFindingsUpdateRequestWithBody generates requests for FindingsUpdate with any type of body

func NewFindingsUpdateRequestWithFormdataBody added in v0.2.0

func NewFindingsUpdateRequestWithFormdataBody(server string, id int, body FindingsUpdateFormdataRequestBody) (*http.Request, error)

NewFindingsUpdateRequestWithFormdataBody calls the generic FindingsUpdate builder with application/x-www-form-urlencoded body

func NewGlobalRolesCreateRequest

func NewGlobalRolesCreateRequest(server string, body GlobalRolesCreateJSONRequestBody) (*http.Request, error)

NewGlobalRolesCreateRequest calls the generic GlobalRolesCreate builder with application/json body

func NewGlobalRolesCreateRequestWithBody

func NewGlobalRolesCreateRequestWithBody(server string, contentType string, body io.Reader) (*http.Request, error)

NewGlobalRolesCreateRequestWithBody generates requests for GlobalRolesCreate with any type of body

func NewGlobalRolesCreateRequestWithFormdataBody added in v0.2.0

func NewGlobalRolesCreateRequestWithFormdataBody(server string, body GlobalRolesCreateFormdataRequestBody) (*http.Request, error)

NewGlobalRolesCreateRequestWithFormdataBody calls the generic GlobalRolesCreate builder with application/x-www-form-urlencoded body

func NewGlobalRolesDeletePreviewListRequest added in v0.2.0

func NewGlobalRolesDeletePreviewListRequest(server string, id int, params *GlobalRolesDeletePreviewListParams) (*http.Request, error)

NewGlobalRolesDeletePreviewListRequest generates requests for GlobalRolesDeletePreviewList

func NewGlobalRolesDestroyRequest

func NewGlobalRolesDestroyRequest(server string, id int) (*http.Request, error)

NewGlobalRolesDestroyRequest generates requests for GlobalRolesDestroy

func NewGlobalRolesListRequest

func NewGlobalRolesListRequest(server string, params *GlobalRolesListParams) (*http.Request, error)

NewGlobalRolesListRequest generates requests for GlobalRolesList

func NewGlobalRolesPartialUpdateRequest

func NewGlobalRolesPartialUpdateRequest(server string, id int, body GlobalRolesPartialUpdateJSONRequestBody) (*http.Request, error)

NewGlobalRolesPartialUpdateRequest calls the generic GlobalRolesPartialUpdate builder with application/json body

func NewGlobalRolesPartialUpdateRequestWithBody

func NewGlobalRolesPartialUpdateRequestWithBody(server string, id int, contentType string, body io.Reader) (*http.Request, error)

NewGlobalRolesPartialUpdateRequestWithBody generates requests for GlobalRolesPartialUpdate with any type of body

func NewGlobalRolesPartialUpdateRequestWithFormdataBody added in v0.2.0

func NewGlobalRolesPartialUpdateRequestWithFormdataBody(server string, id int, body GlobalRolesPartialUpdateFormdataRequestBody) (*http.Request, error)

NewGlobalRolesPartialUpdateRequestWithFormdataBody calls the generic GlobalRolesPartialUpdate builder with application/x-www-form-urlencoded body

func NewGlobalRolesRetrieveRequest

func NewGlobalRolesRetrieveRequest(server string, id int) (*http.Request, error)

NewGlobalRolesRetrieveRequest generates requests for GlobalRolesRetrieve

func NewGlobalRolesUpdateRequest

func NewGlobalRolesUpdateRequest(server string, id int, body GlobalRolesUpdateJSONRequestBody) (*http.Request, error)

NewGlobalRolesUpdateRequest calls the generic GlobalRolesUpdate builder with application/json body

func NewGlobalRolesUpdateRequestWithBody

func NewGlobalRolesUpdateRequestWithBody(server string, id int, contentType string, body io.Reader) (*http.Request, error)

NewGlobalRolesUpdateRequestWithBody generates requests for GlobalRolesUpdate with any type of body

func NewGlobalRolesUpdateRequestWithFormdataBody added in v0.2.0

func NewGlobalRolesUpdateRequestWithFormdataBody(server string, id int, body GlobalRolesUpdateFormdataRequestBody) (*http.Request, error)

NewGlobalRolesUpdateRequestWithFormdataBody calls the generic GlobalRolesUpdate builder with application/x-www-form-urlencoded body

func NewImportLanguagesCreateRequestWithBody

func NewImportLanguagesCreateRequestWithBody(server string, contentType string, body io.Reader) (*http.Request, error)

NewImportLanguagesCreateRequestWithBody generates requests for ImportLanguagesCreate with any type of body

func NewImportScanCreateRequestWithBody

func NewImportScanCreateRequestWithBody(server string, contentType string, body io.Reader) (*http.Request, error)

NewImportScanCreateRequestWithBody generates requests for ImportScanCreate with any type of body

func NewJiraConfigurationsCreateRequest

func NewJiraConfigurationsCreateRequest(server string, body JiraConfigurationsCreateJSONRequestBody) (*http.Request, error)

NewJiraConfigurationsCreateRequest calls the generic JiraConfigurationsCreate builder with application/json body

func NewJiraConfigurationsCreateRequestWithBody

func NewJiraConfigurationsCreateRequestWithBody(server string, contentType string, body io.Reader) (*http.Request, error)

NewJiraConfigurationsCreateRequestWithBody generates requests for JiraConfigurationsCreate with any type of body

func NewJiraConfigurationsCreateRequestWithFormdataBody added in v0.2.0

func NewJiraConfigurationsCreateRequestWithFormdataBody(server string, body JiraConfigurationsCreateFormdataRequestBody) (*http.Request, error)

NewJiraConfigurationsCreateRequestWithFormdataBody calls the generic JiraConfigurationsCreate builder with application/x-www-form-urlencoded body

func NewJiraConfigurationsDeletePreviewListRequest added in v0.2.0

func NewJiraConfigurationsDeletePreviewListRequest(server string, id int, params *JiraConfigurationsDeletePreviewListParams) (*http.Request, error)

NewJiraConfigurationsDeletePreviewListRequest generates requests for JiraConfigurationsDeletePreviewList

func NewJiraConfigurationsDestroyRequest

func NewJiraConfigurationsDestroyRequest(server string, id int) (*http.Request, error)

NewJiraConfigurationsDestroyRequest generates requests for JiraConfigurationsDestroy

func NewJiraConfigurationsListRequest

func NewJiraConfigurationsListRequest(server string, params *JiraConfigurationsListParams) (*http.Request, error)

NewJiraConfigurationsListRequest generates requests for JiraConfigurationsList

func NewJiraConfigurationsPartialUpdateRequest

func NewJiraConfigurationsPartialUpdateRequest(server string, id int, body JiraConfigurationsPartialUpdateJSONRequestBody) (*http.Request, error)

NewJiraConfigurationsPartialUpdateRequest calls the generic JiraConfigurationsPartialUpdate builder with application/json body

func NewJiraConfigurationsPartialUpdateRequestWithBody

func NewJiraConfigurationsPartialUpdateRequestWithBody(server string, id int, contentType string, body io.Reader) (*http.Request, error)

NewJiraConfigurationsPartialUpdateRequestWithBody generates requests for JiraConfigurationsPartialUpdate with any type of body

func NewJiraConfigurationsPartialUpdateRequestWithFormdataBody added in v0.2.0

func NewJiraConfigurationsPartialUpdateRequestWithFormdataBody(server string, id int, body JiraConfigurationsPartialUpdateFormdataRequestBody) (*http.Request, error)

NewJiraConfigurationsPartialUpdateRequestWithFormdataBody calls the generic JiraConfigurationsPartialUpdate builder with application/x-www-form-urlencoded body

func NewJiraConfigurationsRetrieveRequest

func NewJiraConfigurationsRetrieveRequest(server string, id int) (*http.Request, error)

NewJiraConfigurationsRetrieveRequest generates requests for JiraConfigurationsRetrieve

func NewJiraConfigurationsUpdateRequest

func NewJiraConfigurationsUpdateRequest(server string, id int, body JiraConfigurationsUpdateJSONRequestBody) (*http.Request, error)

NewJiraConfigurationsUpdateRequest calls the generic JiraConfigurationsUpdate builder with application/json body

func NewJiraConfigurationsUpdateRequestWithBody

func NewJiraConfigurationsUpdateRequestWithBody(server string, id int, contentType string, body io.Reader) (*http.Request, error)

NewJiraConfigurationsUpdateRequestWithBody generates requests for JiraConfigurationsUpdate with any type of body

func NewJiraConfigurationsUpdateRequestWithFormdataBody added in v0.2.0

func NewJiraConfigurationsUpdateRequestWithFormdataBody(server string, id int, body JiraConfigurationsUpdateFormdataRequestBody) (*http.Request, error)

NewJiraConfigurationsUpdateRequestWithFormdataBody calls the generic JiraConfigurationsUpdate builder with application/x-www-form-urlencoded body

func NewJiraFindingMappingsCreateRequest

func NewJiraFindingMappingsCreateRequest(server string, body JiraFindingMappingsCreateJSONRequestBody) (*http.Request, error)

NewJiraFindingMappingsCreateRequest calls the generic JiraFindingMappingsCreate builder with application/json body

func NewJiraFindingMappingsCreateRequestWithBody

func NewJiraFindingMappingsCreateRequestWithBody(server string, contentType string, body io.Reader) (*http.Request, error)

NewJiraFindingMappingsCreateRequestWithBody generates requests for JiraFindingMappingsCreate with any type of body

func NewJiraFindingMappingsCreateRequestWithFormdataBody added in v0.2.0

func NewJiraFindingMappingsCreateRequestWithFormdataBody(server string, body JiraFindingMappingsCreateFormdataRequestBody) (*http.Request, error)

NewJiraFindingMappingsCreateRequestWithFormdataBody calls the generic JiraFindingMappingsCreate builder with application/x-www-form-urlencoded body

func NewJiraFindingMappingsDeletePreviewListRequest added in v0.2.0

func NewJiraFindingMappingsDeletePreviewListRequest(server string, id int, params *JiraFindingMappingsDeletePreviewListParams) (*http.Request, error)

NewJiraFindingMappingsDeletePreviewListRequest generates requests for JiraFindingMappingsDeletePreviewList

func NewJiraFindingMappingsDestroyRequest

func NewJiraFindingMappingsDestroyRequest(server string, id int) (*http.Request, error)

NewJiraFindingMappingsDestroyRequest generates requests for JiraFindingMappingsDestroy

func NewJiraFindingMappingsListRequest

func NewJiraFindingMappingsListRequest(server string, params *JiraFindingMappingsListParams) (*http.Request, error)

NewJiraFindingMappingsListRequest generates requests for JiraFindingMappingsList

func NewJiraFindingMappingsPartialUpdateRequest

func NewJiraFindingMappingsPartialUpdateRequest(server string, id int, body JiraFindingMappingsPartialUpdateJSONRequestBody) (*http.Request, error)

NewJiraFindingMappingsPartialUpdateRequest calls the generic JiraFindingMappingsPartialUpdate builder with application/json body

func NewJiraFindingMappingsPartialUpdateRequestWithBody

func NewJiraFindingMappingsPartialUpdateRequestWithBody(server string, id int, contentType string, body io.Reader) (*http.Request, error)

NewJiraFindingMappingsPartialUpdateRequestWithBody generates requests for JiraFindingMappingsPartialUpdate with any type of body

func NewJiraFindingMappingsPartialUpdateRequestWithFormdataBody added in v0.2.0

func NewJiraFindingMappingsPartialUpdateRequestWithFormdataBody(server string, id int, body JiraFindingMappingsPartialUpdateFormdataRequestBody) (*http.Request, error)

NewJiraFindingMappingsPartialUpdateRequestWithFormdataBody calls the generic JiraFindingMappingsPartialUpdate builder with application/x-www-form-urlencoded body

func NewJiraFindingMappingsRetrieveRequest

func NewJiraFindingMappingsRetrieveRequest(server string, id int) (*http.Request, error)

NewJiraFindingMappingsRetrieveRequest generates requests for JiraFindingMappingsRetrieve

func NewJiraFindingMappingsUpdateRequest

func NewJiraFindingMappingsUpdateRequest(server string, id int, body JiraFindingMappingsUpdateJSONRequestBody) (*http.Request, error)

NewJiraFindingMappingsUpdateRequest calls the generic JiraFindingMappingsUpdate builder with application/json body

func NewJiraFindingMappingsUpdateRequestWithBody

func NewJiraFindingMappingsUpdateRequestWithBody(server string, id int, contentType string, body io.Reader) (*http.Request, error)

NewJiraFindingMappingsUpdateRequestWithBody generates requests for JiraFindingMappingsUpdate with any type of body

func NewJiraFindingMappingsUpdateRequestWithFormdataBody added in v0.2.0

func NewJiraFindingMappingsUpdateRequestWithFormdataBody(server string, id int, body JiraFindingMappingsUpdateFormdataRequestBody) (*http.Request, error)

NewJiraFindingMappingsUpdateRequestWithFormdataBody calls the generic JiraFindingMappingsUpdate builder with application/x-www-form-urlencoded body

func NewJiraInstancesCreateRequest

func NewJiraInstancesCreateRequest(server string, body JiraInstancesCreateJSONRequestBody) (*http.Request, error)

NewJiraInstancesCreateRequest calls the generic JiraInstancesCreate builder with application/json body

func NewJiraInstancesCreateRequestWithBody

func NewJiraInstancesCreateRequestWithBody(server string, contentType string, body io.Reader) (*http.Request, error)

NewJiraInstancesCreateRequestWithBody generates requests for JiraInstancesCreate with any type of body

func NewJiraInstancesCreateRequestWithFormdataBody added in v0.2.0

func NewJiraInstancesCreateRequestWithFormdataBody(server string, body JiraInstancesCreateFormdataRequestBody) (*http.Request, error)

NewJiraInstancesCreateRequestWithFormdataBody calls the generic JiraInstancesCreate builder with application/x-www-form-urlencoded body

func NewJiraInstancesDeletePreviewListRequest added in v0.2.0

func NewJiraInstancesDeletePreviewListRequest(server string, id int, params *JiraInstancesDeletePreviewListParams) (*http.Request, error)

NewJiraInstancesDeletePreviewListRequest generates requests for JiraInstancesDeletePreviewList

func NewJiraInstancesDestroyRequest

func NewJiraInstancesDestroyRequest(server string, id int) (*http.Request, error)

NewJiraInstancesDestroyRequest generates requests for JiraInstancesDestroy

func NewJiraInstancesListRequest

func NewJiraInstancesListRequest(server string, params *JiraInstancesListParams) (*http.Request, error)

NewJiraInstancesListRequest generates requests for JiraInstancesList

func NewJiraInstancesPartialUpdateRequest

func NewJiraInstancesPartialUpdateRequest(server string, id int, body JiraInstancesPartialUpdateJSONRequestBody) (*http.Request, error)

NewJiraInstancesPartialUpdateRequest calls the generic JiraInstancesPartialUpdate builder with application/json body

func NewJiraInstancesPartialUpdateRequestWithBody

func NewJiraInstancesPartialUpdateRequestWithBody(server string, id int, contentType string, body io.Reader) (*http.Request, error)

NewJiraInstancesPartialUpdateRequestWithBody generates requests for JiraInstancesPartialUpdate with any type of body

func NewJiraInstancesPartialUpdateRequestWithFormdataBody added in v0.2.0

func NewJiraInstancesPartialUpdateRequestWithFormdataBody(server string, id int, body JiraInstancesPartialUpdateFormdataRequestBody) (*http.Request, error)

NewJiraInstancesPartialUpdateRequestWithFormdataBody calls the generic JiraInstancesPartialUpdate builder with application/x-www-form-urlencoded body

func NewJiraInstancesRetrieveRequest

func NewJiraInstancesRetrieveRequest(server string, id int) (*http.Request, error)

NewJiraInstancesRetrieveRequest generates requests for JiraInstancesRetrieve

func NewJiraInstancesUpdateRequest

func NewJiraInstancesUpdateRequest(server string, id int, body JiraInstancesUpdateJSONRequestBody) (*http.Request, error)

NewJiraInstancesUpdateRequest calls the generic JiraInstancesUpdate builder with application/json body

func NewJiraInstancesUpdateRequestWithBody

func NewJiraInstancesUpdateRequestWithBody(server string, id int, contentType string, body io.Reader) (*http.Request, error)

NewJiraInstancesUpdateRequestWithBody generates requests for JiraInstancesUpdate with any type of body

func NewJiraInstancesUpdateRequestWithFormdataBody added in v0.2.0

func NewJiraInstancesUpdateRequestWithFormdataBody(server string, id int, body JiraInstancesUpdateFormdataRequestBody) (*http.Request, error)

NewJiraInstancesUpdateRequestWithFormdataBody calls the generic JiraInstancesUpdate builder with application/x-www-form-urlencoded body

func NewJiraProductConfigurationsCreateRequest

func NewJiraProductConfigurationsCreateRequest(server string, body JiraProductConfigurationsCreateJSONRequestBody) (*http.Request, error)

NewJiraProductConfigurationsCreateRequest calls the generic JiraProductConfigurationsCreate builder with application/json body

func NewJiraProductConfigurationsCreateRequestWithBody

func NewJiraProductConfigurationsCreateRequestWithBody(server string, contentType string, body io.Reader) (*http.Request, error)

NewJiraProductConfigurationsCreateRequestWithBody generates requests for JiraProductConfigurationsCreate with any type of body

func NewJiraProductConfigurationsCreateRequestWithFormdataBody added in v0.2.0

func NewJiraProductConfigurationsCreateRequestWithFormdataBody(server string, body JiraProductConfigurationsCreateFormdataRequestBody) (*http.Request, error)

NewJiraProductConfigurationsCreateRequestWithFormdataBody calls the generic JiraProductConfigurationsCreate builder with application/x-www-form-urlencoded body

func NewJiraProductConfigurationsDeletePreviewListRequest added in v0.2.0

func NewJiraProductConfigurationsDeletePreviewListRequest(server string, id int, params *JiraProductConfigurationsDeletePreviewListParams) (*http.Request, error)

NewJiraProductConfigurationsDeletePreviewListRequest generates requests for JiraProductConfigurationsDeletePreviewList

func NewJiraProductConfigurationsDestroyRequest

func NewJiraProductConfigurationsDestroyRequest(server string, id int) (*http.Request, error)

NewJiraProductConfigurationsDestroyRequest generates requests for JiraProductConfigurationsDestroy

func NewJiraProductConfigurationsListRequest

func NewJiraProductConfigurationsListRequest(server string, params *JiraProductConfigurationsListParams) (*http.Request, error)

NewJiraProductConfigurationsListRequest generates requests for JiraProductConfigurationsList

func NewJiraProductConfigurationsPartialUpdateRequest

func NewJiraProductConfigurationsPartialUpdateRequest(server string, id int, body JiraProductConfigurationsPartialUpdateJSONRequestBody) (*http.Request, error)

NewJiraProductConfigurationsPartialUpdateRequest calls the generic JiraProductConfigurationsPartialUpdate builder with application/json body

func NewJiraProductConfigurationsPartialUpdateRequestWithBody

func NewJiraProductConfigurationsPartialUpdateRequestWithBody(server string, id int, contentType string, body io.Reader) (*http.Request, error)

NewJiraProductConfigurationsPartialUpdateRequestWithBody generates requests for JiraProductConfigurationsPartialUpdate with any type of body

func NewJiraProductConfigurationsPartialUpdateRequestWithFormdataBody added in v0.2.0

func NewJiraProductConfigurationsPartialUpdateRequestWithFormdataBody(server string, id int, body JiraProductConfigurationsPartialUpdateFormdataRequestBody) (*http.Request, error)

NewJiraProductConfigurationsPartialUpdateRequestWithFormdataBody calls the generic JiraProductConfigurationsPartialUpdate builder with application/x-www-form-urlencoded body

func NewJiraProductConfigurationsRetrieveRequest

func NewJiraProductConfigurationsRetrieveRequest(server string, id int) (*http.Request, error)

NewJiraProductConfigurationsRetrieveRequest generates requests for JiraProductConfigurationsRetrieve

func NewJiraProductConfigurationsUpdateRequest

func NewJiraProductConfigurationsUpdateRequest(server string, id int, body JiraProductConfigurationsUpdateJSONRequestBody) (*http.Request, error)

NewJiraProductConfigurationsUpdateRequest calls the generic JiraProductConfigurationsUpdate builder with application/json body

func NewJiraProductConfigurationsUpdateRequestWithBody

func NewJiraProductConfigurationsUpdateRequestWithBody(server string, id int, contentType string, body io.Reader) (*http.Request, error)

NewJiraProductConfigurationsUpdateRequestWithBody generates requests for JiraProductConfigurationsUpdate with any type of body

func NewJiraProductConfigurationsUpdateRequestWithFormdataBody added in v0.2.0

func NewJiraProductConfigurationsUpdateRequestWithFormdataBody(server string, id int, body JiraProductConfigurationsUpdateFormdataRequestBody) (*http.Request, error)

NewJiraProductConfigurationsUpdateRequestWithFormdataBody calls the generic JiraProductConfigurationsUpdate builder with application/x-www-form-urlencoded body

func NewJiraProjectsCreateRequest

func NewJiraProjectsCreateRequest(server string, body JiraProjectsCreateJSONRequestBody) (*http.Request, error)

NewJiraProjectsCreateRequest calls the generic JiraProjectsCreate builder with application/json body

func NewJiraProjectsCreateRequestWithBody

func NewJiraProjectsCreateRequestWithBody(server string, contentType string, body io.Reader) (*http.Request, error)

NewJiraProjectsCreateRequestWithBody generates requests for JiraProjectsCreate with any type of body

func NewJiraProjectsCreateRequestWithFormdataBody added in v0.2.0

func NewJiraProjectsCreateRequestWithFormdataBody(server string, body JiraProjectsCreateFormdataRequestBody) (*http.Request, error)

NewJiraProjectsCreateRequestWithFormdataBody calls the generic JiraProjectsCreate builder with application/x-www-form-urlencoded body

func NewJiraProjectsDeletePreviewListRequest added in v0.2.0

func NewJiraProjectsDeletePreviewListRequest(server string, id int, params *JiraProjectsDeletePreviewListParams) (*http.Request, error)

NewJiraProjectsDeletePreviewListRequest generates requests for JiraProjectsDeletePreviewList

func NewJiraProjectsDestroyRequest

func NewJiraProjectsDestroyRequest(server string, id int) (*http.Request, error)

NewJiraProjectsDestroyRequest generates requests for JiraProjectsDestroy

func NewJiraProjectsListRequest

func NewJiraProjectsListRequest(server string, params *JiraProjectsListParams) (*http.Request, error)

NewJiraProjectsListRequest generates requests for JiraProjectsList

func NewJiraProjectsPartialUpdateRequest

func NewJiraProjectsPartialUpdateRequest(server string, id int, body JiraProjectsPartialUpdateJSONRequestBody) (*http.Request, error)

NewJiraProjectsPartialUpdateRequest calls the generic JiraProjectsPartialUpdate builder with application/json body

func NewJiraProjectsPartialUpdateRequestWithBody

func NewJiraProjectsPartialUpdateRequestWithBody(server string, id int, contentType string, body io.Reader) (*http.Request, error)

NewJiraProjectsPartialUpdateRequestWithBody generates requests for JiraProjectsPartialUpdate with any type of body

func NewJiraProjectsPartialUpdateRequestWithFormdataBody added in v0.2.0

func NewJiraProjectsPartialUpdateRequestWithFormdataBody(server string, id int, body JiraProjectsPartialUpdateFormdataRequestBody) (*http.Request, error)

NewJiraProjectsPartialUpdateRequestWithFormdataBody calls the generic JiraProjectsPartialUpdate builder with application/x-www-form-urlencoded body

func NewJiraProjectsRetrieveRequest

func NewJiraProjectsRetrieveRequest(server string, id int) (*http.Request, error)

NewJiraProjectsRetrieveRequest generates requests for JiraProjectsRetrieve

func NewJiraProjectsUpdateRequest

func NewJiraProjectsUpdateRequest(server string, id int, body JiraProjectsUpdateJSONRequestBody) (*http.Request, error)

NewJiraProjectsUpdateRequest calls the generic JiraProjectsUpdate builder with application/json body

func NewJiraProjectsUpdateRequestWithBody

func NewJiraProjectsUpdateRequestWithBody(server string, id int, contentType string, body io.Reader) (*http.Request, error)

NewJiraProjectsUpdateRequestWithBody generates requests for JiraProjectsUpdate with any type of body

func NewJiraProjectsUpdateRequestWithFormdataBody added in v0.2.0

func NewJiraProjectsUpdateRequestWithFormdataBody(server string, id int, body JiraProjectsUpdateFormdataRequestBody) (*http.Request, error)

NewJiraProjectsUpdateRequestWithFormdataBody calls the generic JiraProjectsUpdate builder with application/x-www-form-urlencoded body

func NewLanguageTypesCreateRequest

func NewLanguageTypesCreateRequest(server string, body LanguageTypesCreateJSONRequestBody) (*http.Request, error)

NewLanguageTypesCreateRequest calls the generic LanguageTypesCreate builder with application/json body

func NewLanguageTypesCreateRequestWithBody

func NewLanguageTypesCreateRequestWithBody(server string, contentType string, body io.Reader) (*http.Request, error)

NewLanguageTypesCreateRequestWithBody generates requests for LanguageTypesCreate with any type of body

func NewLanguageTypesCreateRequestWithFormdataBody added in v0.2.0

func NewLanguageTypesCreateRequestWithFormdataBody(server string, body LanguageTypesCreateFormdataRequestBody) (*http.Request, error)

NewLanguageTypesCreateRequestWithFormdataBody calls the generic LanguageTypesCreate builder with application/x-www-form-urlencoded body

func NewLanguageTypesDeletePreviewListRequest added in v0.2.0

func NewLanguageTypesDeletePreviewListRequest(server string, id int, params *LanguageTypesDeletePreviewListParams) (*http.Request, error)

NewLanguageTypesDeletePreviewListRequest generates requests for LanguageTypesDeletePreviewList

func NewLanguageTypesDestroyRequest

func NewLanguageTypesDestroyRequest(server string, id int) (*http.Request, error)

NewLanguageTypesDestroyRequest generates requests for LanguageTypesDestroy

func NewLanguageTypesListRequest

func NewLanguageTypesListRequest(server string, params *LanguageTypesListParams) (*http.Request, error)

NewLanguageTypesListRequest generates requests for LanguageTypesList

func NewLanguageTypesPartialUpdateRequest

func NewLanguageTypesPartialUpdateRequest(server string, id int, body LanguageTypesPartialUpdateJSONRequestBody) (*http.Request, error)

NewLanguageTypesPartialUpdateRequest calls the generic LanguageTypesPartialUpdate builder with application/json body

func NewLanguageTypesPartialUpdateRequestWithBody

func NewLanguageTypesPartialUpdateRequestWithBody(server string, id int, contentType string, body io.Reader) (*http.Request, error)

NewLanguageTypesPartialUpdateRequestWithBody generates requests for LanguageTypesPartialUpdate with any type of body

func NewLanguageTypesPartialUpdateRequestWithFormdataBody added in v0.2.0

func NewLanguageTypesPartialUpdateRequestWithFormdataBody(server string, id int, body LanguageTypesPartialUpdateFormdataRequestBody) (*http.Request, error)

NewLanguageTypesPartialUpdateRequestWithFormdataBody calls the generic LanguageTypesPartialUpdate builder with application/x-www-form-urlencoded body

func NewLanguageTypesRetrieveRequest

func NewLanguageTypesRetrieveRequest(server string, id int) (*http.Request, error)

NewLanguageTypesRetrieveRequest generates requests for LanguageTypesRetrieve

func NewLanguageTypesUpdateRequest

func NewLanguageTypesUpdateRequest(server string, id int, body LanguageTypesUpdateJSONRequestBody) (*http.Request, error)

NewLanguageTypesUpdateRequest calls the generic LanguageTypesUpdate builder with application/json body

func NewLanguageTypesUpdateRequestWithBody

func NewLanguageTypesUpdateRequestWithBody(server string, id int, contentType string, body io.Reader) (*http.Request, error)

NewLanguageTypesUpdateRequestWithBody generates requests for LanguageTypesUpdate with any type of body

func NewLanguageTypesUpdateRequestWithFormdataBody added in v0.2.0

func NewLanguageTypesUpdateRequestWithFormdataBody(server string, id int, body LanguageTypesUpdateFormdataRequestBody) (*http.Request, error)

NewLanguageTypesUpdateRequestWithFormdataBody calls the generic LanguageTypesUpdate builder with application/x-www-form-urlencoded body

func NewLanguagesCreateRequest

func NewLanguagesCreateRequest(server string, body LanguagesCreateJSONRequestBody) (*http.Request, error)

NewLanguagesCreateRequest calls the generic LanguagesCreate builder with application/json body

func NewLanguagesCreateRequestWithBody

func NewLanguagesCreateRequestWithBody(server string, contentType string, body io.Reader) (*http.Request, error)

NewLanguagesCreateRequestWithBody generates requests for LanguagesCreate with any type of body

func NewLanguagesCreateRequestWithFormdataBody added in v0.2.0

func NewLanguagesCreateRequestWithFormdataBody(server string, body LanguagesCreateFormdataRequestBody) (*http.Request, error)

NewLanguagesCreateRequestWithFormdataBody calls the generic LanguagesCreate builder with application/x-www-form-urlencoded body

func NewLanguagesDeletePreviewListRequest added in v0.2.0

func NewLanguagesDeletePreviewListRequest(server string, id int, params *LanguagesDeletePreviewListParams) (*http.Request, error)

NewLanguagesDeletePreviewListRequest generates requests for LanguagesDeletePreviewList

func NewLanguagesDestroyRequest

func NewLanguagesDestroyRequest(server string, id int) (*http.Request, error)

NewLanguagesDestroyRequest generates requests for LanguagesDestroy

func NewLanguagesListRequest

func NewLanguagesListRequest(server string, params *LanguagesListParams) (*http.Request, error)

NewLanguagesListRequest generates requests for LanguagesList

func NewLanguagesPartialUpdateRequest

func NewLanguagesPartialUpdateRequest(server string, id int, body LanguagesPartialUpdateJSONRequestBody) (*http.Request, error)

NewLanguagesPartialUpdateRequest calls the generic LanguagesPartialUpdate builder with application/json body

func NewLanguagesPartialUpdateRequestWithBody

func NewLanguagesPartialUpdateRequestWithBody(server string, id int, contentType string, body io.Reader) (*http.Request, error)

NewLanguagesPartialUpdateRequestWithBody generates requests for LanguagesPartialUpdate with any type of body

func NewLanguagesPartialUpdateRequestWithFormdataBody added in v0.2.0

func NewLanguagesPartialUpdateRequestWithFormdataBody(server string, id int, body LanguagesPartialUpdateFormdataRequestBody) (*http.Request, error)

NewLanguagesPartialUpdateRequestWithFormdataBody calls the generic LanguagesPartialUpdate builder with application/x-www-form-urlencoded body

func NewLanguagesRetrieveRequest

func NewLanguagesRetrieveRequest(server string, id int, params *LanguagesRetrieveParams) (*http.Request, error)

NewLanguagesRetrieveRequest generates requests for LanguagesRetrieve

func NewLanguagesUpdateRequest

func NewLanguagesUpdateRequest(server string, id int, body LanguagesUpdateJSONRequestBody) (*http.Request, error)

NewLanguagesUpdateRequest calls the generic LanguagesUpdate builder with application/json body

func NewLanguagesUpdateRequestWithBody

func NewLanguagesUpdateRequestWithBody(server string, id int, contentType string, body io.Reader) (*http.Request, error)

NewLanguagesUpdateRequestWithBody generates requests for LanguagesUpdate with any type of body

func NewLanguagesUpdateRequestWithFormdataBody added in v0.2.0

func NewLanguagesUpdateRequestWithFormdataBody(server string, id int, body LanguagesUpdateFormdataRequestBody) (*http.Request, error)

NewLanguagesUpdateRequestWithFormdataBody calls the generic LanguagesUpdate builder with application/x-www-form-urlencoded body

func NewMetadataCreateRequest

func NewMetadataCreateRequest(server string, body MetadataCreateJSONRequestBody) (*http.Request, error)

NewMetadataCreateRequest calls the generic MetadataCreate builder with application/json body

func NewMetadataCreateRequestWithBody

func NewMetadataCreateRequestWithBody(server string, contentType string, body io.Reader) (*http.Request, error)

NewMetadataCreateRequestWithBody generates requests for MetadataCreate with any type of body

func NewMetadataCreateRequestWithFormdataBody added in v0.2.0

func NewMetadataCreateRequestWithFormdataBody(server string, body MetadataCreateFormdataRequestBody) (*http.Request, error)

NewMetadataCreateRequestWithFormdataBody calls the generic MetadataCreate builder with application/x-www-form-urlencoded body

func NewMetadataDeletePreviewListRequest added in v0.2.0

func NewMetadataDeletePreviewListRequest(server string, id int, params *MetadataDeletePreviewListParams) (*http.Request, error)

NewMetadataDeletePreviewListRequest generates requests for MetadataDeletePreviewList

func NewMetadataDestroyRequest

func NewMetadataDestroyRequest(server string, id int) (*http.Request, error)

NewMetadataDestroyRequest generates requests for MetadataDestroy

func NewMetadataListRequest

func NewMetadataListRequest(server string, params *MetadataListParams) (*http.Request, error)

NewMetadataListRequest generates requests for MetadataList

func NewMetadataPartialUpdateRequest

func NewMetadataPartialUpdateRequest(server string, id int, body MetadataPartialUpdateJSONRequestBody) (*http.Request, error)

NewMetadataPartialUpdateRequest calls the generic MetadataPartialUpdate builder with application/json body

func NewMetadataPartialUpdateRequestWithBody

func NewMetadataPartialUpdateRequestWithBody(server string, id int, contentType string, body io.Reader) (*http.Request, error)

NewMetadataPartialUpdateRequestWithBody generates requests for MetadataPartialUpdate with any type of body

func NewMetadataPartialUpdateRequestWithFormdataBody added in v0.2.0

func NewMetadataPartialUpdateRequestWithFormdataBody(server string, id int, body MetadataPartialUpdateFormdataRequestBody) (*http.Request, error)

NewMetadataPartialUpdateRequestWithFormdataBody calls the generic MetadataPartialUpdate builder with application/x-www-form-urlencoded body

func NewMetadataRetrieveRequest

func NewMetadataRetrieveRequest(server string, id int, params *MetadataRetrieveParams) (*http.Request, error)

NewMetadataRetrieveRequest generates requests for MetadataRetrieve

func NewMetadataUpdateRequest

func NewMetadataUpdateRequest(server string, id int, body MetadataUpdateJSONRequestBody) (*http.Request, error)

NewMetadataUpdateRequest calls the generic MetadataUpdate builder with application/json body

func NewMetadataUpdateRequestWithBody

func NewMetadataUpdateRequestWithBody(server string, id int, contentType string, body io.Reader) (*http.Request, error)

NewMetadataUpdateRequestWithBody generates requests for MetadataUpdate with any type of body

func NewMetadataUpdateRequestWithFormdataBody added in v0.2.0

func NewMetadataUpdateRequestWithFormdataBody(server string, id int, body MetadataUpdateFormdataRequestBody) (*http.Request, error)

NewMetadataUpdateRequestWithFormdataBody calls the generic MetadataUpdate builder with application/x-www-form-urlencoded body

func NewNetworkLocationsCreateRequest

func NewNetworkLocationsCreateRequest(server string, body NetworkLocationsCreateJSONRequestBody) (*http.Request, error)

NewNetworkLocationsCreateRequest calls the generic NetworkLocationsCreate builder with application/json body

func NewNetworkLocationsCreateRequestWithBody

func NewNetworkLocationsCreateRequestWithBody(server string, contentType string, body io.Reader) (*http.Request, error)

NewNetworkLocationsCreateRequestWithBody generates requests for NetworkLocationsCreate with any type of body

func NewNetworkLocationsCreateRequestWithFormdataBody added in v0.2.0

func NewNetworkLocationsCreateRequestWithFormdataBody(server string, body NetworkLocationsCreateFormdataRequestBody) (*http.Request, error)

NewNetworkLocationsCreateRequestWithFormdataBody calls the generic NetworkLocationsCreate builder with application/x-www-form-urlencoded body

func NewNetworkLocationsDeletePreviewListRequest added in v0.2.0

func NewNetworkLocationsDeletePreviewListRequest(server string, id int, params *NetworkLocationsDeletePreviewListParams) (*http.Request, error)

NewNetworkLocationsDeletePreviewListRequest generates requests for NetworkLocationsDeletePreviewList

func NewNetworkLocationsDestroyRequest

func NewNetworkLocationsDestroyRequest(server string, id int) (*http.Request, error)

NewNetworkLocationsDestroyRequest generates requests for NetworkLocationsDestroy

func NewNetworkLocationsListRequest

func NewNetworkLocationsListRequest(server string, params *NetworkLocationsListParams) (*http.Request, error)

NewNetworkLocationsListRequest generates requests for NetworkLocationsList

func NewNetworkLocationsPartialUpdateRequest

func NewNetworkLocationsPartialUpdateRequest(server string, id int, body NetworkLocationsPartialUpdateJSONRequestBody) (*http.Request, error)

NewNetworkLocationsPartialUpdateRequest calls the generic NetworkLocationsPartialUpdate builder with application/json body

func NewNetworkLocationsPartialUpdateRequestWithBody

func NewNetworkLocationsPartialUpdateRequestWithBody(server string, id int, contentType string, body io.Reader) (*http.Request, error)

NewNetworkLocationsPartialUpdateRequestWithBody generates requests for NetworkLocationsPartialUpdate with any type of body

func NewNetworkLocationsPartialUpdateRequestWithFormdataBody added in v0.2.0

func NewNetworkLocationsPartialUpdateRequestWithFormdataBody(server string, id int, body NetworkLocationsPartialUpdateFormdataRequestBody) (*http.Request, error)

NewNetworkLocationsPartialUpdateRequestWithFormdataBody calls the generic NetworkLocationsPartialUpdate builder with application/x-www-form-urlencoded body

func NewNetworkLocationsRetrieveRequest

func NewNetworkLocationsRetrieveRequest(server string, id int) (*http.Request, error)

NewNetworkLocationsRetrieveRequest generates requests for NetworkLocationsRetrieve

func NewNetworkLocationsUpdateRequest

func NewNetworkLocationsUpdateRequest(server string, id int, body NetworkLocationsUpdateJSONRequestBody) (*http.Request, error)

NewNetworkLocationsUpdateRequest calls the generic NetworkLocationsUpdate builder with application/json body

func NewNetworkLocationsUpdateRequestWithBody

func NewNetworkLocationsUpdateRequestWithBody(server string, id int, contentType string, body io.Reader) (*http.Request, error)

NewNetworkLocationsUpdateRequestWithBody generates requests for NetworkLocationsUpdate with any type of body

func NewNetworkLocationsUpdateRequestWithFormdataBody added in v0.2.0

func NewNetworkLocationsUpdateRequestWithFormdataBody(server string, id int, body NetworkLocationsUpdateFormdataRequestBody) (*http.Request, error)

NewNetworkLocationsUpdateRequestWithFormdataBody calls the generic NetworkLocationsUpdate builder with application/x-www-form-urlencoded body

func NewNoteTypeCreateRequest

func NewNoteTypeCreateRequest(server string, body NoteTypeCreateJSONRequestBody) (*http.Request, error)

NewNoteTypeCreateRequest calls the generic NoteTypeCreate builder with application/json body

func NewNoteTypeCreateRequestWithBody

func NewNoteTypeCreateRequestWithBody(server string, contentType string, body io.Reader) (*http.Request, error)

NewNoteTypeCreateRequestWithBody generates requests for NoteTypeCreate with any type of body

func NewNoteTypeCreateRequestWithFormdataBody added in v0.2.0

func NewNoteTypeCreateRequestWithFormdataBody(server string, body NoteTypeCreateFormdataRequestBody) (*http.Request, error)

NewNoteTypeCreateRequestWithFormdataBody calls the generic NoteTypeCreate builder with application/x-www-form-urlencoded body

func NewNoteTypeDeletePreviewListRequest added in v0.2.0

func NewNoteTypeDeletePreviewListRequest(server string, id int, params *NoteTypeDeletePreviewListParams) (*http.Request, error)

NewNoteTypeDeletePreviewListRequest generates requests for NoteTypeDeletePreviewList

func NewNoteTypeDestroyRequest

func NewNoteTypeDestroyRequest(server string, id int) (*http.Request, error)

NewNoteTypeDestroyRequest generates requests for NoteTypeDestroy

func NewNoteTypeListRequest

func NewNoteTypeListRequest(server string, params *NoteTypeListParams) (*http.Request, error)

NewNoteTypeListRequest generates requests for NoteTypeList

func NewNoteTypePartialUpdateRequest

func NewNoteTypePartialUpdateRequest(server string, id int, body NoteTypePartialUpdateJSONRequestBody) (*http.Request, error)

NewNoteTypePartialUpdateRequest calls the generic NoteTypePartialUpdate builder with application/json body

func NewNoteTypePartialUpdateRequestWithBody

func NewNoteTypePartialUpdateRequestWithBody(server string, id int, contentType string, body io.Reader) (*http.Request, error)

NewNoteTypePartialUpdateRequestWithBody generates requests for NoteTypePartialUpdate with any type of body

func NewNoteTypePartialUpdateRequestWithFormdataBody added in v0.2.0

func NewNoteTypePartialUpdateRequestWithFormdataBody(server string, id int, body NoteTypePartialUpdateFormdataRequestBody) (*http.Request, error)

NewNoteTypePartialUpdateRequestWithFormdataBody calls the generic NoteTypePartialUpdate builder with application/x-www-form-urlencoded body

func NewNoteTypeRetrieveRequest

func NewNoteTypeRetrieveRequest(server string, id int) (*http.Request, error)

NewNoteTypeRetrieveRequest generates requests for NoteTypeRetrieve

func NewNoteTypeUpdateRequest

func NewNoteTypeUpdateRequest(server string, id int, body NoteTypeUpdateJSONRequestBody) (*http.Request, error)

NewNoteTypeUpdateRequest calls the generic NoteTypeUpdate builder with application/json body

func NewNoteTypeUpdateRequestWithBody

func NewNoteTypeUpdateRequestWithBody(server string, id int, contentType string, body io.Reader) (*http.Request, error)

NewNoteTypeUpdateRequestWithBody generates requests for NoteTypeUpdate with any type of body

func NewNoteTypeUpdateRequestWithFormdataBody added in v0.2.0

func NewNoteTypeUpdateRequestWithFormdataBody(server string, id int, body NoteTypeUpdateFormdataRequestBody) (*http.Request, error)

NewNoteTypeUpdateRequestWithFormdataBody calls the generic NoteTypeUpdate builder with application/x-www-form-urlencoded body

func NewNotesListRequest

func NewNotesListRequest(server string, params *NotesListParams) (*http.Request, error)

NewNotesListRequest generates requests for NotesList

func NewNotesPartialUpdateRequest

func NewNotesPartialUpdateRequest(server string, id int, body NotesPartialUpdateJSONRequestBody) (*http.Request, error)

NewNotesPartialUpdateRequest calls the generic NotesPartialUpdate builder with application/json body

func NewNotesPartialUpdateRequestWithBody

func NewNotesPartialUpdateRequestWithBody(server string, id int, contentType string, body io.Reader) (*http.Request, error)

NewNotesPartialUpdateRequestWithBody generates requests for NotesPartialUpdate with any type of body

func NewNotesPartialUpdateRequestWithFormdataBody added in v0.2.0

func NewNotesPartialUpdateRequestWithFormdataBody(server string, id int, body NotesPartialUpdateFormdataRequestBody) (*http.Request, error)

NewNotesPartialUpdateRequestWithFormdataBody calls the generic NotesPartialUpdate builder with application/x-www-form-urlencoded body

func NewNotesRetrieveRequest

func NewNotesRetrieveRequest(server string, id int) (*http.Request, error)

NewNotesRetrieveRequest generates requests for NotesRetrieve

func NewNotesUpdateRequest

func NewNotesUpdateRequest(server string, id int, body NotesUpdateJSONRequestBody) (*http.Request, error)

NewNotesUpdateRequest calls the generic NotesUpdate builder with application/json body

func NewNotesUpdateRequestWithBody

func NewNotesUpdateRequestWithBody(server string, id int, contentType string, body io.Reader) (*http.Request, error)

NewNotesUpdateRequestWithBody generates requests for NotesUpdate with any type of body

func NewNotesUpdateRequestWithFormdataBody added in v0.2.0

func NewNotesUpdateRequestWithFormdataBody(server string, id int, body NotesUpdateFormdataRequestBody) (*http.Request, error)

NewNotesUpdateRequestWithFormdataBody calls the generic NotesUpdate builder with application/x-www-form-urlencoded body

func NewNotificationsCreateRequest

func NewNotificationsCreateRequest(server string, body NotificationsCreateJSONRequestBody) (*http.Request, error)

NewNotificationsCreateRequest calls the generic NotificationsCreate builder with application/json body

func NewNotificationsCreateRequestWithBody

func NewNotificationsCreateRequestWithBody(server string, contentType string, body io.Reader) (*http.Request, error)

NewNotificationsCreateRequestWithBody generates requests for NotificationsCreate with any type of body

func NewNotificationsCreateRequestWithFormdataBody added in v0.2.0

func NewNotificationsCreateRequestWithFormdataBody(server string, body NotificationsCreateFormdataRequestBody) (*http.Request, error)

NewNotificationsCreateRequestWithFormdataBody calls the generic NotificationsCreate builder with application/x-www-form-urlencoded body

func NewNotificationsDeletePreviewListRequest added in v0.2.0

func NewNotificationsDeletePreviewListRequest(server string, id int, params *NotificationsDeletePreviewListParams) (*http.Request, error)

NewNotificationsDeletePreviewListRequest generates requests for NotificationsDeletePreviewList

func NewNotificationsDestroyRequest

func NewNotificationsDestroyRequest(server string, id int) (*http.Request, error)

NewNotificationsDestroyRequest generates requests for NotificationsDestroy

func NewNotificationsListRequest

func NewNotificationsListRequest(server string, params *NotificationsListParams) (*http.Request, error)

NewNotificationsListRequest generates requests for NotificationsList

func NewNotificationsPartialUpdateRequest

func NewNotificationsPartialUpdateRequest(server string, id int, body NotificationsPartialUpdateJSONRequestBody) (*http.Request, error)

NewNotificationsPartialUpdateRequest calls the generic NotificationsPartialUpdate builder with application/json body

func NewNotificationsPartialUpdateRequestWithBody

func NewNotificationsPartialUpdateRequestWithBody(server string, id int, contentType string, body io.Reader) (*http.Request, error)

NewNotificationsPartialUpdateRequestWithBody generates requests for NotificationsPartialUpdate with any type of body

func NewNotificationsPartialUpdateRequestWithFormdataBody added in v0.2.0

func NewNotificationsPartialUpdateRequestWithFormdataBody(server string, id int, body NotificationsPartialUpdateFormdataRequestBody) (*http.Request, error)

NewNotificationsPartialUpdateRequestWithFormdataBody calls the generic NotificationsPartialUpdate builder with application/x-www-form-urlencoded body

func NewNotificationsRetrieveRequest

func NewNotificationsRetrieveRequest(server string, id int, params *NotificationsRetrieveParams) (*http.Request, error)

NewNotificationsRetrieveRequest generates requests for NotificationsRetrieve

func NewNotificationsUpdateRequest

func NewNotificationsUpdateRequest(server string, id int, body NotificationsUpdateJSONRequestBody) (*http.Request, error)

NewNotificationsUpdateRequest calls the generic NotificationsUpdate builder with application/json body

func NewNotificationsUpdateRequestWithBody

func NewNotificationsUpdateRequestWithBody(server string, id int, contentType string, body io.Reader) (*http.Request, error)

NewNotificationsUpdateRequestWithBody generates requests for NotificationsUpdate with any type of body

func NewNotificationsUpdateRequestWithFormdataBody added in v0.2.0

func NewNotificationsUpdateRequestWithFormdataBody(server string, id int, body NotificationsUpdateFormdataRequestBody) (*http.Request, error)

NewNotificationsUpdateRequestWithFormdataBody calls the generic NotificationsUpdate builder with application/x-www-form-urlencoded body

func NewOa3SchemaRetrieveRequest

func NewOa3SchemaRetrieveRequest(server string, params *Oa3SchemaRetrieveParams) (*http.Request, error)

NewOa3SchemaRetrieveRequest generates requests for Oa3SchemaRetrieve

func NewProductApiScanConfigurationsCreateRequest

func NewProductApiScanConfigurationsCreateRequest(server string, body ProductApiScanConfigurationsCreateJSONRequestBody) (*http.Request, error)

NewProductApiScanConfigurationsCreateRequest calls the generic ProductApiScanConfigurationsCreate builder with application/json body

func NewProductApiScanConfigurationsCreateRequestWithBody

func NewProductApiScanConfigurationsCreateRequestWithBody(server string, contentType string, body io.Reader) (*http.Request, error)

NewProductApiScanConfigurationsCreateRequestWithBody generates requests for ProductApiScanConfigurationsCreate with any type of body

func NewProductApiScanConfigurationsCreateRequestWithFormdataBody added in v0.2.0

func NewProductApiScanConfigurationsCreateRequestWithFormdataBody(server string, body ProductApiScanConfigurationsCreateFormdataRequestBody) (*http.Request, error)

NewProductApiScanConfigurationsCreateRequestWithFormdataBody calls the generic ProductApiScanConfigurationsCreate builder with application/x-www-form-urlencoded body

func NewProductApiScanConfigurationsDeletePreviewListRequest added in v0.2.0

func NewProductApiScanConfigurationsDeletePreviewListRequest(server string, id int, params *ProductApiScanConfigurationsDeletePreviewListParams) (*http.Request, error)

NewProductApiScanConfigurationsDeletePreviewListRequest generates requests for ProductApiScanConfigurationsDeletePreviewList

func NewProductApiScanConfigurationsDestroyRequest

func NewProductApiScanConfigurationsDestroyRequest(server string, id int) (*http.Request, error)

NewProductApiScanConfigurationsDestroyRequest generates requests for ProductApiScanConfigurationsDestroy

func NewProductApiScanConfigurationsListRequest

func NewProductApiScanConfigurationsListRequest(server string, params *ProductApiScanConfigurationsListParams) (*http.Request, error)

NewProductApiScanConfigurationsListRequest generates requests for ProductApiScanConfigurationsList

func NewProductApiScanConfigurationsPartialUpdateRequest

func NewProductApiScanConfigurationsPartialUpdateRequest(server string, id int, body ProductApiScanConfigurationsPartialUpdateJSONRequestBody) (*http.Request, error)

NewProductApiScanConfigurationsPartialUpdateRequest calls the generic ProductApiScanConfigurationsPartialUpdate builder with application/json body

func NewProductApiScanConfigurationsPartialUpdateRequestWithBody

func NewProductApiScanConfigurationsPartialUpdateRequestWithBody(server string, id int, contentType string, body io.Reader) (*http.Request, error)

NewProductApiScanConfigurationsPartialUpdateRequestWithBody generates requests for ProductApiScanConfigurationsPartialUpdate with any type of body

func NewProductApiScanConfigurationsPartialUpdateRequestWithFormdataBody added in v0.2.0

func NewProductApiScanConfigurationsPartialUpdateRequestWithFormdataBody(server string, id int, body ProductApiScanConfigurationsPartialUpdateFormdataRequestBody) (*http.Request, error)

NewProductApiScanConfigurationsPartialUpdateRequestWithFormdataBody calls the generic ProductApiScanConfigurationsPartialUpdate builder with application/x-www-form-urlencoded body

func NewProductApiScanConfigurationsRetrieveRequest

func NewProductApiScanConfigurationsRetrieveRequest(server string, id int) (*http.Request, error)

NewProductApiScanConfigurationsRetrieveRequest generates requests for ProductApiScanConfigurationsRetrieve

func NewProductApiScanConfigurationsUpdateRequest

func NewProductApiScanConfigurationsUpdateRequest(server string, id int, body ProductApiScanConfigurationsUpdateJSONRequestBody) (*http.Request, error)

NewProductApiScanConfigurationsUpdateRequest calls the generic ProductApiScanConfigurationsUpdate builder with application/json body

func NewProductApiScanConfigurationsUpdateRequestWithBody

func NewProductApiScanConfigurationsUpdateRequestWithBody(server string, id int, contentType string, body io.Reader) (*http.Request, error)

NewProductApiScanConfigurationsUpdateRequestWithBody generates requests for ProductApiScanConfigurationsUpdate with any type of body

func NewProductApiScanConfigurationsUpdateRequestWithFormdataBody added in v0.2.0

func NewProductApiScanConfigurationsUpdateRequestWithFormdataBody(server string, id int, body ProductApiScanConfigurationsUpdateFormdataRequestBody) (*http.Request, error)

NewProductApiScanConfigurationsUpdateRequestWithFormdataBody calls the generic ProductApiScanConfigurationsUpdate builder with application/x-www-form-urlencoded body

func NewProductGroupsCreateRequest

func NewProductGroupsCreateRequest(server string, body ProductGroupsCreateJSONRequestBody) (*http.Request, error)

NewProductGroupsCreateRequest calls the generic ProductGroupsCreate builder with application/json body

func NewProductGroupsCreateRequestWithBody

func NewProductGroupsCreateRequestWithBody(server string, contentType string, body io.Reader) (*http.Request, error)

NewProductGroupsCreateRequestWithBody generates requests for ProductGroupsCreate with any type of body

func NewProductGroupsCreateRequestWithFormdataBody added in v0.2.0

func NewProductGroupsCreateRequestWithFormdataBody(server string, body ProductGroupsCreateFormdataRequestBody) (*http.Request, error)

NewProductGroupsCreateRequestWithFormdataBody calls the generic ProductGroupsCreate builder with application/x-www-form-urlencoded body

func NewProductGroupsDeletePreviewListRequest added in v0.2.0

func NewProductGroupsDeletePreviewListRequest(server string, id int, params *ProductGroupsDeletePreviewListParams) (*http.Request, error)

NewProductGroupsDeletePreviewListRequest generates requests for ProductGroupsDeletePreviewList

func NewProductGroupsDestroyRequest

func NewProductGroupsDestroyRequest(server string, id int) (*http.Request, error)

NewProductGroupsDestroyRequest generates requests for ProductGroupsDestroy

func NewProductGroupsListRequest

func NewProductGroupsListRequest(server string, params *ProductGroupsListParams) (*http.Request, error)

NewProductGroupsListRequest generates requests for ProductGroupsList

func NewProductGroupsPartialUpdateRequest

func NewProductGroupsPartialUpdateRequest(server string, id int) (*http.Request, error)

NewProductGroupsPartialUpdateRequest generates requests for ProductGroupsPartialUpdate

func NewProductGroupsRetrieveRequest

func NewProductGroupsRetrieveRequest(server string, id int, params *ProductGroupsRetrieveParams) (*http.Request, error)

NewProductGroupsRetrieveRequest generates requests for ProductGroupsRetrieve

func NewProductGroupsUpdateRequest

func NewProductGroupsUpdateRequest(server string, id int, body ProductGroupsUpdateJSONRequestBody) (*http.Request, error)

NewProductGroupsUpdateRequest calls the generic ProductGroupsUpdate builder with application/json body

func NewProductGroupsUpdateRequestWithBody

func NewProductGroupsUpdateRequestWithBody(server string, id int, contentType string, body io.Reader) (*http.Request, error)

NewProductGroupsUpdateRequestWithBody generates requests for ProductGroupsUpdate with any type of body

func NewProductGroupsUpdateRequestWithFormdataBody added in v0.2.0

func NewProductGroupsUpdateRequestWithFormdataBody(server string, id int, body ProductGroupsUpdateFormdataRequestBody) (*http.Request, error)

NewProductGroupsUpdateRequestWithFormdataBody calls the generic ProductGroupsUpdate builder with application/x-www-form-urlencoded body

func NewProductMembersCreateRequest

func NewProductMembersCreateRequest(server string, body ProductMembersCreateJSONRequestBody) (*http.Request, error)

NewProductMembersCreateRequest calls the generic ProductMembersCreate builder with application/json body

func NewProductMembersCreateRequestWithBody

func NewProductMembersCreateRequestWithBody(server string, contentType string, body io.Reader) (*http.Request, error)

NewProductMembersCreateRequestWithBody generates requests for ProductMembersCreate with any type of body

func NewProductMembersCreateRequestWithFormdataBody added in v0.2.0

func NewProductMembersCreateRequestWithFormdataBody(server string, body ProductMembersCreateFormdataRequestBody) (*http.Request, error)

NewProductMembersCreateRequestWithFormdataBody calls the generic ProductMembersCreate builder with application/x-www-form-urlencoded body

func NewProductMembersDeletePreviewListRequest added in v0.2.0

func NewProductMembersDeletePreviewListRequest(server string, id int, params *ProductMembersDeletePreviewListParams) (*http.Request, error)

NewProductMembersDeletePreviewListRequest generates requests for ProductMembersDeletePreviewList

func NewProductMembersDestroyRequest

func NewProductMembersDestroyRequest(server string, id int) (*http.Request, error)

NewProductMembersDestroyRequest generates requests for ProductMembersDestroy

func NewProductMembersListRequest

func NewProductMembersListRequest(server string, params *ProductMembersListParams) (*http.Request, error)

NewProductMembersListRequest generates requests for ProductMembersList

func NewProductMembersPartialUpdateRequest

func NewProductMembersPartialUpdateRequest(server string, id int) (*http.Request, error)

NewProductMembersPartialUpdateRequest generates requests for ProductMembersPartialUpdate

func NewProductMembersRetrieveRequest

func NewProductMembersRetrieveRequest(server string, id int, params *ProductMembersRetrieveParams) (*http.Request, error)

NewProductMembersRetrieveRequest generates requests for ProductMembersRetrieve

func NewProductMembersUpdateRequest

func NewProductMembersUpdateRequest(server string, id int, body ProductMembersUpdateJSONRequestBody) (*http.Request, error)

NewProductMembersUpdateRequest calls the generic ProductMembersUpdate builder with application/json body

func NewProductMembersUpdateRequestWithBody

func NewProductMembersUpdateRequestWithBody(server string, id int, contentType string, body io.Reader) (*http.Request, error)

NewProductMembersUpdateRequestWithBody generates requests for ProductMembersUpdate with any type of body

func NewProductMembersUpdateRequestWithFormdataBody added in v0.2.0

func NewProductMembersUpdateRequestWithFormdataBody(server string, id int, body ProductMembersUpdateFormdataRequestBody) (*http.Request, error)

NewProductMembersUpdateRequestWithFormdataBody calls the generic ProductMembersUpdate builder with application/x-www-form-urlencoded body

func NewProductTypeGroupsCreateRequest

func NewProductTypeGroupsCreateRequest(server string, body ProductTypeGroupsCreateJSONRequestBody) (*http.Request, error)

NewProductTypeGroupsCreateRequest calls the generic ProductTypeGroupsCreate builder with application/json body

func NewProductTypeGroupsCreateRequestWithBody

func NewProductTypeGroupsCreateRequestWithBody(server string, contentType string, body io.Reader) (*http.Request, error)

NewProductTypeGroupsCreateRequestWithBody generates requests for ProductTypeGroupsCreate with any type of body

func NewProductTypeGroupsCreateRequestWithFormdataBody added in v0.2.0

func NewProductTypeGroupsCreateRequestWithFormdataBody(server string, body ProductTypeGroupsCreateFormdataRequestBody) (*http.Request, error)

NewProductTypeGroupsCreateRequestWithFormdataBody calls the generic ProductTypeGroupsCreate builder with application/x-www-form-urlencoded body

func NewProductTypeGroupsDeletePreviewListRequest added in v0.2.0

func NewProductTypeGroupsDeletePreviewListRequest(server string, id int, params *ProductTypeGroupsDeletePreviewListParams) (*http.Request, error)

NewProductTypeGroupsDeletePreviewListRequest generates requests for ProductTypeGroupsDeletePreviewList

func NewProductTypeGroupsDestroyRequest

func NewProductTypeGroupsDestroyRequest(server string, id int) (*http.Request, error)

NewProductTypeGroupsDestroyRequest generates requests for ProductTypeGroupsDestroy

func NewProductTypeGroupsListRequest

func NewProductTypeGroupsListRequest(server string, params *ProductTypeGroupsListParams) (*http.Request, error)

NewProductTypeGroupsListRequest generates requests for ProductTypeGroupsList

func NewProductTypeGroupsPartialUpdateRequest

func NewProductTypeGroupsPartialUpdateRequest(server string, id int) (*http.Request, error)

NewProductTypeGroupsPartialUpdateRequest generates requests for ProductTypeGroupsPartialUpdate

func NewProductTypeGroupsRetrieveRequest

func NewProductTypeGroupsRetrieveRequest(server string, id int, params *ProductTypeGroupsRetrieveParams) (*http.Request, error)

NewProductTypeGroupsRetrieveRequest generates requests for ProductTypeGroupsRetrieve

func NewProductTypeGroupsUpdateRequest

func NewProductTypeGroupsUpdateRequest(server string, id int, body ProductTypeGroupsUpdateJSONRequestBody) (*http.Request, error)

NewProductTypeGroupsUpdateRequest calls the generic ProductTypeGroupsUpdate builder with application/json body

func NewProductTypeGroupsUpdateRequestWithBody

func NewProductTypeGroupsUpdateRequestWithBody(server string, id int, contentType string, body io.Reader) (*http.Request, error)

NewProductTypeGroupsUpdateRequestWithBody generates requests for ProductTypeGroupsUpdate with any type of body

func NewProductTypeGroupsUpdateRequestWithFormdataBody added in v0.2.0

func NewProductTypeGroupsUpdateRequestWithFormdataBody(server string, id int, body ProductTypeGroupsUpdateFormdataRequestBody) (*http.Request, error)

NewProductTypeGroupsUpdateRequestWithFormdataBody calls the generic ProductTypeGroupsUpdate builder with application/x-www-form-urlencoded body

func NewProductTypeMembersCreateRequest

func NewProductTypeMembersCreateRequest(server string, body ProductTypeMembersCreateJSONRequestBody) (*http.Request, error)

NewProductTypeMembersCreateRequest calls the generic ProductTypeMembersCreate builder with application/json body

func NewProductTypeMembersCreateRequestWithBody

func NewProductTypeMembersCreateRequestWithBody(server string, contentType string, body io.Reader) (*http.Request, error)

NewProductTypeMembersCreateRequestWithBody generates requests for ProductTypeMembersCreate with any type of body

func NewProductTypeMembersCreateRequestWithFormdataBody added in v0.2.0

func NewProductTypeMembersCreateRequestWithFormdataBody(server string, body ProductTypeMembersCreateFormdataRequestBody) (*http.Request, error)

NewProductTypeMembersCreateRequestWithFormdataBody calls the generic ProductTypeMembersCreate builder with application/x-www-form-urlencoded body

func NewProductTypeMembersDeletePreviewListRequest added in v0.2.0

func NewProductTypeMembersDeletePreviewListRequest(server string, id int, params *ProductTypeMembersDeletePreviewListParams) (*http.Request, error)

NewProductTypeMembersDeletePreviewListRequest generates requests for ProductTypeMembersDeletePreviewList

func NewProductTypeMembersDestroyRequest

func NewProductTypeMembersDestroyRequest(server string, id int) (*http.Request, error)

NewProductTypeMembersDestroyRequest generates requests for ProductTypeMembersDestroy

func NewProductTypeMembersListRequest

func NewProductTypeMembersListRequest(server string, params *ProductTypeMembersListParams) (*http.Request, error)

NewProductTypeMembersListRequest generates requests for ProductTypeMembersList

func NewProductTypeMembersPartialUpdateRequest

func NewProductTypeMembersPartialUpdateRequest(server string, id int) (*http.Request, error)

NewProductTypeMembersPartialUpdateRequest generates requests for ProductTypeMembersPartialUpdate

func NewProductTypeMembersRetrieveRequest

func NewProductTypeMembersRetrieveRequest(server string, id int, params *ProductTypeMembersRetrieveParams) (*http.Request, error)

NewProductTypeMembersRetrieveRequest generates requests for ProductTypeMembersRetrieve

func NewProductTypeMembersUpdateRequest

func NewProductTypeMembersUpdateRequest(server string, id int, body ProductTypeMembersUpdateJSONRequestBody) (*http.Request, error)

NewProductTypeMembersUpdateRequest calls the generic ProductTypeMembersUpdate builder with application/json body

func NewProductTypeMembersUpdateRequestWithBody

func NewProductTypeMembersUpdateRequestWithBody(server string, id int, contentType string, body io.Reader) (*http.Request, error)

NewProductTypeMembersUpdateRequestWithBody generates requests for ProductTypeMembersUpdate with any type of body

func NewProductTypeMembersUpdateRequestWithFormdataBody added in v0.2.0

func NewProductTypeMembersUpdateRequestWithFormdataBody(server string, id int, body ProductTypeMembersUpdateFormdataRequestBody) (*http.Request, error)

NewProductTypeMembersUpdateRequestWithFormdataBody calls the generic ProductTypeMembersUpdate builder with application/x-www-form-urlencoded body

func NewProductTypesCreateRequest

func NewProductTypesCreateRequest(server string, body ProductTypesCreateJSONRequestBody) (*http.Request, error)

NewProductTypesCreateRequest calls the generic ProductTypesCreate builder with application/json body

func NewProductTypesCreateRequestWithBody

func NewProductTypesCreateRequestWithBody(server string, contentType string, body io.Reader) (*http.Request, error)

NewProductTypesCreateRequestWithBody generates requests for ProductTypesCreate with any type of body

func NewProductTypesCreateRequestWithFormdataBody added in v0.2.0

func NewProductTypesCreateRequestWithFormdataBody(server string, body ProductTypesCreateFormdataRequestBody) (*http.Request, error)

NewProductTypesCreateRequestWithFormdataBody calls the generic ProductTypesCreate builder with application/x-www-form-urlencoded body

func NewProductTypesDeletePreviewListRequest added in v0.2.0

func NewProductTypesDeletePreviewListRequest(server string, id int, params *ProductTypesDeletePreviewListParams) (*http.Request, error)

NewProductTypesDeletePreviewListRequest generates requests for ProductTypesDeletePreviewList

func NewProductTypesDestroyRequest

func NewProductTypesDestroyRequest(server string, id int) (*http.Request, error)

NewProductTypesDestroyRequest generates requests for ProductTypesDestroy

func NewProductTypesGenerateReportCreateRequest

func NewProductTypesGenerateReportCreateRequest(server string, id int, body ProductTypesGenerateReportCreateJSONRequestBody) (*http.Request, error)

NewProductTypesGenerateReportCreateRequest calls the generic ProductTypesGenerateReportCreate builder with application/json body

func NewProductTypesGenerateReportCreateRequestWithBody

func NewProductTypesGenerateReportCreateRequestWithBody(server string, id int, contentType string, body io.Reader) (*http.Request, error)

NewProductTypesGenerateReportCreateRequestWithBody generates requests for ProductTypesGenerateReportCreate with any type of body

func NewProductTypesGenerateReportCreateRequestWithFormdataBody added in v0.2.0

func NewProductTypesGenerateReportCreateRequestWithFormdataBody(server string, id int, body ProductTypesGenerateReportCreateFormdataRequestBody) (*http.Request, error)

NewProductTypesGenerateReportCreateRequestWithFormdataBody calls the generic ProductTypesGenerateReportCreate builder with application/x-www-form-urlencoded body

func NewProductTypesListRequest

func NewProductTypesListRequest(server string, params *ProductTypesListParams) (*http.Request, error)

NewProductTypesListRequest generates requests for ProductTypesList

func NewProductTypesPartialUpdateRequest

func NewProductTypesPartialUpdateRequest(server string, id int, body ProductTypesPartialUpdateJSONRequestBody) (*http.Request, error)

NewProductTypesPartialUpdateRequest calls the generic ProductTypesPartialUpdate builder with application/json body

func NewProductTypesPartialUpdateRequestWithBody

func NewProductTypesPartialUpdateRequestWithBody(server string, id int, contentType string, body io.Reader) (*http.Request, error)

NewProductTypesPartialUpdateRequestWithBody generates requests for ProductTypesPartialUpdate with any type of body

func NewProductTypesPartialUpdateRequestWithFormdataBody added in v0.2.0

func NewProductTypesPartialUpdateRequestWithFormdataBody(server string, id int, body ProductTypesPartialUpdateFormdataRequestBody) (*http.Request, error)

NewProductTypesPartialUpdateRequestWithFormdataBody calls the generic ProductTypesPartialUpdate builder with application/x-www-form-urlencoded body

func NewProductTypesRetrieveRequest

func NewProductTypesRetrieveRequest(server string, id int, params *ProductTypesRetrieveParams) (*http.Request, error)

NewProductTypesRetrieveRequest generates requests for ProductTypesRetrieve

func NewProductTypesUpdateRequest

func NewProductTypesUpdateRequest(server string, id int, body ProductTypesUpdateJSONRequestBody) (*http.Request, error)

NewProductTypesUpdateRequest calls the generic ProductTypesUpdate builder with application/json body

func NewProductTypesUpdateRequestWithBody

func NewProductTypesUpdateRequestWithBody(server string, id int, contentType string, body io.Reader) (*http.Request, error)

NewProductTypesUpdateRequestWithBody generates requests for ProductTypesUpdate with any type of body

func NewProductTypesUpdateRequestWithFormdataBody added in v0.2.0

func NewProductTypesUpdateRequestWithFormdataBody(server string, id int, body ProductTypesUpdateFormdataRequestBody) (*http.Request, error)

NewProductTypesUpdateRequestWithFormdataBody calls the generic ProductTypesUpdate builder with application/x-www-form-urlencoded body

func NewProductsCreateRequest

func NewProductsCreateRequest(server string, body ProductsCreateJSONRequestBody) (*http.Request, error)

NewProductsCreateRequest calls the generic ProductsCreate builder with application/json body

func NewProductsCreateRequestWithBody

func NewProductsCreateRequestWithBody(server string, contentType string, body io.Reader) (*http.Request, error)

NewProductsCreateRequestWithBody generates requests for ProductsCreate with any type of body

func NewProductsCreateRequestWithFormdataBody added in v0.2.0

func NewProductsCreateRequestWithFormdataBody(server string, body ProductsCreateFormdataRequestBody) (*http.Request, error)

NewProductsCreateRequestWithFormdataBody calls the generic ProductsCreate builder with application/x-www-form-urlencoded body

func NewProductsDeletePreviewListRequest added in v0.2.0

func NewProductsDeletePreviewListRequest(server string, id int, params *ProductsDeletePreviewListParams) (*http.Request, error)

NewProductsDeletePreviewListRequest generates requests for ProductsDeletePreviewList

func NewProductsDestroyRequest

func NewProductsDestroyRequest(server string, id int) (*http.Request, error)

NewProductsDestroyRequest generates requests for ProductsDestroy

func NewProductsGenerateReportCreateRequest

func NewProductsGenerateReportCreateRequest(server string, id int, body ProductsGenerateReportCreateJSONRequestBody) (*http.Request, error)

NewProductsGenerateReportCreateRequest calls the generic ProductsGenerateReportCreate builder with application/json body

func NewProductsGenerateReportCreateRequestWithBody

func NewProductsGenerateReportCreateRequestWithBody(server string, id int, contentType string, body io.Reader) (*http.Request, error)

NewProductsGenerateReportCreateRequestWithBody generates requests for ProductsGenerateReportCreate with any type of body

func NewProductsGenerateReportCreateRequestWithFormdataBody added in v0.2.0

func NewProductsGenerateReportCreateRequestWithFormdataBody(server string, id int, body ProductsGenerateReportCreateFormdataRequestBody) (*http.Request, error)

NewProductsGenerateReportCreateRequestWithFormdataBody calls the generic ProductsGenerateReportCreate builder with application/x-www-form-urlencoded body

func NewProductsListRequest

func NewProductsListRequest(server string, params *ProductsListParams) (*http.Request, error)

NewProductsListRequest generates requests for ProductsList

func NewProductsPartialUpdateRequest

func NewProductsPartialUpdateRequest(server string, id int, body ProductsPartialUpdateJSONRequestBody) (*http.Request, error)

NewProductsPartialUpdateRequest calls the generic ProductsPartialUpdate builder with application/json body

func NewProductsPartialUpdateRequestWithBody

func NewProductsPartialUpdateRequestWithBody(server string, id int, contentType string, body io.Reader) (*http.Request, error)

NewProductsPartialUpdateRequestWithBody generates requests for ProductsPartialUpdate with any type of body

func NewProductsPartialUpdateRequestWithFormdataBody added in v0.2.0

func NewProductsPartialUpdateRequestWithFormdataBody(server string, id int, body ProductsPartialUpdateFormdataRequestBody) (*http.Request, error)

NewProductsPartialUpdateRequestWithFormdataBody calls the generic ProductsPartialUpdate builder with application/x-www-form-urlencoded body

func NewProductsRetrieveRequest

func NewProductsRetrieveRequest(server string, id int, params *ProductsRetrieveParams) (*http.Request, error)

NewProductsRetrieveRequest generates requests for ProductsRetrieve

func NewProductsUpdateRequest

func NewProductsUpdateRequest(server string, id int, body ProductsUpdateJSONRequestBody) (*http.Request, error)

NewProductsUpdateRequest calls the generic ProductsUpdate builder with application/json body

func NewProductsUpdateRequestWithBody

func NewProductsUpdateRequestWithBody(server string, id int, contentType string, body io.Reader) (*http.Request, error)

NewProductsUpdateRequestWithBody generates requests for ProductsUpdate with any type of body

func NewProductsUpdateRequestWithFormdataBody added in v0.2.0

func NewProductsUpdateRequestWithFormdataBody(server string, id int, body ProductsUpdateFormdataRequestBody) (*http.Request, error)

NewProductsUpdateRequestWithFormdataBody calls the generic ProductsUpdate builder with application/x-www-form-urlencoded body

func NewQuestionnaireAnsweredQuestionnairesListRequest added in v0.2.0

func NewQuestionnaireAnsweredQuestionnairesListRequest(server string, params *QuestionnaireAnsweredQuestionnairesListParams) (*http.Request, error)

NewQuestionnaireAnsweredQuestionnairesListRequest generates requests for QuestionnaireAnsweredQuestionnairesList

func NewQuestionnaireAnsweredQuestionnairesRetrieveRequest added in v0.2.0

func NewQuestionnaireAnsweredQuestionnairesRetrieveRequest(server string, id int) (*http.Request, error)

NewQuestionnaireAnsweredQuestionnairesRetrieveRequest generates requests for QuestionnaireAnsweredQuestionnairesRetrieve

func NewQuestionnaireAnswersListRequest added in v0.2.0

func NewQuestionnaireAnswersListRequest(server string, params *QuestionnaireAnswersListParams) (*http.Request, error)

NewQuestionnaireAnswersListRequest generates requests for QuestionnaireAnswersList

func NewQuestionnaireAnswersRetrieveRequest added in v0.2.0

func NewQuestionnaireAnswersRetrieveRequest(server string, id int) (*http.Request, error)

NewQuestionnaireAnswersRetrieveRequest generates requests for QuestionnaireAnswersRetrieve

func NewQuestionnaireEngagementQuestionnairesListRequest added in v0.2.0

func NewQuestionnaireEngagementQuestionnairesListRequest(server string, params *QuestionnaireEngagementQuestionnairesListParams) (*http.Request, error)

NewQuestionnaireEngagementQuestionnairesListRequest generates requests for QuestionnaireEngagementQuestionnairesList

func NewQuestionnaireEngagementQuestionnairesRetrieveRequest added in v0.2.0

func NewQuestionnaireEngagementQuestionnairesRetrieveRequest(server string, id int) (*http.Request, error)

NewQuestionnaireEngagementQuestionnairesRetrieveRequest generates requests for QuestionnaireEngagementQuestionnairesRetrieve

func NewQuestionnaireGeneralQuestionnairesListRequest added in v0.2.0

func NewQuestionnaireGeneralQuestionnairesListRequest(server string, params *QuestionnaireGeneralQuestionnairesListParams) (*http.Request, error)

NewQuestionnaireGeneralQuestionnairesListRequest generates requests for QuestionnaireGeneralQuestionnairesList

func NewQuestionnaireGeneralQuestionnairesRetrieveRequest added in v0.2.0

func NewQuestionnaireGeneralQuestionnairesRetrieveRequest(server string, id int) (*http.Request, error)

NewQuestionnaireGeneralQuestionnairesRetrieveRequest generates requests for QuestionnaireGeneralQuestionnairesRetrieve

func NewQuestionnaireQuestionsListRequest added in v0.2.0

func NewQuestionnaireQuestionsListRequest(server string, params *QuestionnaireQuestionsListParams) (*http.Request, error)

NewQuestionnaireQuestionsListRequest generates requests for QuestionnaireQuestionsList

func NewQuestionnaireQuestionsRetrieveRequest added in v0.2.0

func NewQuestionnaireQuestionsRetrieveRequest(server string, id int) (*http.Request, error)

NewQuestionnaireQuestionsRetrieveRequest generates requests for QuestionnaireQuestionsRetrieve

func NewRegulationsCreateRequest

func NewRegulationsCreateRequest(server string, body RegulationsCreateJSONRequestBody) (*http.Request, error)

NewRegulationsCreateRequest calls the generic RegulationsCreate builder with application/json body

func NewRegulationsCreateRequestWithBody

func NewRegulationsCreateRequestWithBody(server string, contentType string, body io.Reader) (*http.Request, error)

NewRegulationsCreateRequestWithBody generates requests for RegulationsCreate with any type of body

func NewRegulationsCreateRequestWithFormdataBody added in v0.2.0

func NewRegulationsCreateRequestWithFormdataBody(server string, body RegulationsCreateFormdataRequestBody) (*http.Request, error)

NewRegulationsCreateRequestWithFormdataBody calls the generic RegulationsCreate builder with application/x-www-form-urlencoded body

func NewRegulationsDeletePreviewListRequest added in v0.2.0

func NewRegulationsDeletePreviewListRequest(server string, id int, params *RegulationsDeletePreviewListParams) (*http.Request, error)

NewRegulationsDeletePreviewListRequest generates requests for RegulationsDeletePreviewList

func NewRegulationsDestroyRequest

func NewRegulationsDestroyRequest(server string, id int) (*http.Request, error)

NewRegulationsDestroyRequest generates requests for RegulationsDestroy

func NewRegulationsListRequest

func NewRegulationsListRequest(server string, params *RegulationsListParams) (*http.Request, error)

NewRegulationsListRequest generates requests for RegulationsList

func NewRegulationsPartialUpdateRequest

func NewRegulationsPartialUpdateRequest(server string, id int, body RegulationsPartialUpdateJSONRequestBody) (*http.Request, error)

NewRegulationsPartialUpdateRequest calls the generic RegulationsPartialUpdate builder with application/json body

func NewRegulationsPartialUpdateRequestWithBody

func NewRegulationsPartialUpdateRequestWithBody(server string, id int, contentType string, body io.Reader) (*http.Request, error)

NewRegulationsPartialUpdateRequestWithBody generates requests for RegulationsPartialUpdate with any type of body

func NewRegulationsPartialUpdateRequestWithFormdataBody added in v0.2.0

func NewRegulationsPartialUpdateRequestWithFormdataBody(server string, id int, body RegulationsPartialUpdateFormdataRequestBody) (*http.Request, error)

NewRegulationsPartialUpdateRequestWithFormdataBody calls the generic RegulationsPartialUpdate builder with application/x-www-form-urlencoded body

func NewRegulationsRetrieveRequest

func NewRegulationsRetrieveRequest(server string, id int) (*http.Request, error)

NewRegulationsRetrieveRequest generates requests for RegulationsRetrieve

func NewRegulationsUpdateRequest

func NewRegulationsUpdateRequest(server string, id int, body RegulationsUpdateJSONRequestBody) (*http.Request, error)

NewRegulationsUpdateRequest calls the generic RegulationsUpdate builder with application/json body

func NewRegulationsUpdateRequestWithBody

func NewRegulationsUpdateRequestWithBody(server string, id int, contentType string, body io.Reader) (*http.Request, error)

NewRegulationsUpdateRequestWithBody generates requests for RegulationsUpdate with any type of body

func NewRegulationsUpdateRequestWithFormdataBody added in v0.2.0

func NewRegulationsUpdateRequestWithFormdataBody(server string, id int, body RegulationsUpdateFormdataRequestBody) (*http.Request, error)

NewRegulationsUpdateRequestWithFormdataBody calls the generic RegulationsUpdate builder with application/x-www-form-urlencoded body

func NewReimportScanCreateRequestWithBody

func NewReimportScanCreateRequestWithBody(server string, contentType string, body io.Reader) (*http.Request, error)

NewReimportScanCreateRequestWithBody generates requests for ReimportScanCreate with any type of body

func NewRiskAcceptanceDeletePreviewListRequest added in v0.2.0

func NewRiskAcceptanceDeletePreviewListRequest(server string, id int, params *RiskAcceptanceDeletePreviewListParams) (*http.Request, error)

NewRiskAcceptanceDeletePreviewListRequest generates requests for RiskAcceptanceDeletePreviewList

func NewRiskAcceptanceDestroyRequest added in v0.2.0

func NewRiskAcceptanceDestroyRequest(server string, id int) (*http.Request, error)

NewRiskAcceptanceDestroyRequest generates requests for RiskAcceptanceDestroy

func NewRiskAcceptanceDownloadProofRetrieveRequest added in v0.2.0

func NewRiskAcceptanceDownloadProofRetrieveRequest(server string, id int) (*http.Request, error)

NewRiskAcceptanceDownloadProofRetrieveRequest generates requests for RiskAcceptanceDownloadProofRetrieve

func NewRiskAcceptanceListRequest added in v0.2.0

func NewRiskAcceptanceListRequest(server string, params *RiskAcceptanceListParams) (*http.Request, error)

NewRiskAcceptanceListRequest generates requests for RiskAcceptanceList

func NewRiskAcceptanceRetrieveRequest added in v0.2.0

func NewRiskAcceptanceRetrieveRequest(server string, id int) (*http.Request, error)

NewRiskAcceptanceRetrieveRequest generates requests for RiskAcceptanceRetrieve

func NewRolesListRequest

func NewRolesListRequest(server string, params *RolesListParams) (*http.Request, error)

NewRolesListRequest generates requests for RolesList

func NewRolesRetrieveRequest

func NewRolesRetrieveRequest(server string, id int) (*http.Request, error)

NewRolesRetrieveRequest generates requests for RolesRetrieve

func NewSlaConfigurationsCreateRequest added in v0.2.0

func NewSlaConfigurationsCreateRequest(server string, body SlaConfigurationsCreateJSONRequestBody) (*http.Request, error)

NewSlaConfigurationsCreateRequest calls the generic SlaConfigurationsCreate builder with application/json body

func NewSlaConfigurationsCreateRequestWithBody added in v0.2.0

func NewSlaConfigurationsCreateRequestWithBody(server string, contentType string, body io.Reader) (*http.Request, error)

NewSlaConfigurationsCreateRequestWithBody generates requests for SlaConfigurationsCreate with any type of body

func NewSlaConfigurationsCreateRequestWithFormdataBody added in v0.2.0

func NewSlaConfigurationsCreateRequestWithFormdataBody(server string, body SlaConfigurationsCreateFormdataRequestBody) (*http.Request, error)

NewSlaConfigurationsCreateRequestWithFormdataBody calls the generic SlaConfigurationsCreate builder with application/x-www-form-urlencoded body

func NewSlaConfigurationsDestroyRequest added in v0.2.0

func NewSlaConfigurationsDestroyRequest(server string, id int) (*http.Request, error)

NewSlaConfigurationsDestroyRequest generates requests for SlaConfigurationsDestroy

func NewSlaConfigurationsListRequest added in v0.2.0

func NewSlaConfigurationsListRequest(server string, params *SlaConfigurationsListParams) (*http.Request, error)

NewSlaConfigurationsListRequest generates requests for SlaConfigurationsList

func NewSlaConfigurationsPartialUpdateRequest added in v0.2.0

func NewSlaConfigurationsPartialUpdateRequest(server string, id int, body SlaConfigurationsPartialUpdateJSONRequestBody) (*http.Request, error)

NewSlaConfigurationsPartialUpdateRequest calls the generic SlaConfigurationsPartialUpdate builder with application/json body

func NewSlaConfigurationsPartialUpdateRequestWithBody added in v0.2.0

func NewSlaConfigurationsPartialUpdateRequestWithBody(server string, id int, contentType string, body io.Reader) (*http.Request, error)

NewSlaConfigurationsPartialUpdateRequestWithBody generates requests for SlaConfigurationsPartialUpdate with any type of body

func NewSlaConfigurationsPartialUpdateRequestWithFormdataBody added in v0.2.0

func NewSlaConfigurationsPartialUpdateRequestWithFormdataBody(server string, id int, body SlaConfigurationsPartialUpdateFormdataRequestBody) (*http.Request, error)

NewSlaConfigurationsPartialUpdateRequestWithFormdataBody calls the generic SlaConfigurationsPartialUpdate builder with application/x-www-form-urlencoded body

func NewSlaConfigurationsRetrieveRequest added in v0.2.0

func NewSlaConfigurationsRetrieveRequest(server string, id int) (*http.Request, error)

NewSlaConfigurationsRetrieveRequest generates requests for SlaConfigurationsRetrieve

func NewSlaConfigurationsUpdateRequest added in v0.2.0

func NewSlaConfigurationsUpdateRequest(server string, id int, body SlaConfigurationsUpdateJSONRequestBody) (*http.Request, error)

NewSlaConfigurationsUpdateRequest calls the generic SlaConfigurationsUpdate builder with application/json body

func NewSlaConfigurationsUpdateRequestWithBody added in v0.2.0

func NewSlaConfigurationsUpdateRequestWithBody(server string, id int, contentType string, body io.Reader) (*http.Request, error)

NewSlaConfigurationsUpdateRequestWithBody generates requests for SlaConfigurationsUpdate with any type of body

func NewSlaConfigurationsUpdateRequestWithFormdataBody added in v0.2.0

func NewSlaConfigurationsUpdateRequestWithFormdataBody(server string, id int, body SlaConfigurationsUpdateFormdataRequestBody) (*http.Request, error)

NewSlaConfigurationsUpdateRequestWithFormdataBody calls the generic SlaConfigurationsUpdate builder with application/x-www-form-urlencoded body

func NewSonarqubeIssuesCreateRequest

func NewSonarqubeIssuesCreateRequest(server string, body SonarqubeIssuesCreateJSONRequestBody) (*http.Request, error)

NewSonarqubeIssuesCreateRequest calls the generic SonarqubeIssuesCreate builder with application/json body

func NewSonarqubeIssuesCreateRequestWithBody

func NewSonarqubeIssuesCreateRequestWithBody(server string, contentType string, body io.Reader) (*http.Request, error)

NewSonarqubeIssuesCreateRequestWithBody generates requests for SonarqubeIssuesCreate with any type of body

func NewSonarqubeIssuesCreateRequestWithFormdataBody added in v0.2.0

func NewSonarqubeIssuesCreateRequestWithFormdataBody(server string, body SonarqubeIssuesCreateFormdataRequestBody) (*http.Request, error)

NewSonarqubeIssuesCreateRequestWithFormdataBody calls the generic SonarqubeIssuesCreate builder with application/x-www-form-urlencoded body

func NewSonarqubeIssuesDeletePreviewListRequest added in v0.2.0

func NewSonarqubeIssuesDeletePreviewListRequest(server string, id int, params *SonarqubeIssuesDeletePreviewListParams) (*http.Request, error)

NewSonarqubeIssuesDeletePreviewListRequest generates requests for SonarqubeIssuesDeletePreviewList

func NewSonarqubeIssuesDestroyRequest

func NewSonarqubeIssuesDestroyRequest(server string, id int) (*http.Request, error)

NewSonarqubeIssuesDestroyRequest generates requests for SonarqubeIssuesDestroy

func NewSonarqubeIssuesListRequest

func NewSonarqubeIssuesListRequest(server string, params *SonarqubeIssuesListParams) (*http.Request, error)

NewSonarqubeIssuesListRequest generates requests for SonarqubeIssuesList

func NewSonarqubeIssuesPartialUpdateRequest

func NewSonarqubeIssuesPartialUpdateRequest(server string, id int, body SonarqubeIssuesPartialUpdateJSONRequestBody) (*http.Request, error)

NewSonarqubeIssuesPartialUpdateRequest calls the generic SonarqubeIssuesPartialUpdate builder with application/json body

func NewSonarqubeIssuesPartialUpdateRequestWithBody

func NewSonarqubeIssuesPartialUpdateRequestWithBody(server string, id int, contentType string, body io.Reader) (*http.Request, error)

NewSonarqubeIssuesPartialUpdateRequestWithBody generates requests for SonarqubeIssuesPartialUpdate with any type of body

func NewSonarqubeIssuesPartialUpdateRequestWithFormdataBody added in v0.2.0

func NewSonarqubeIssuesPartialUpdateRequestWithFormdataBody(server string, id int, body SonarqubeIssuesPartialUpdateFormdataRequestBody) (*http.Request, error)

NewSonarqubeIssuesPartialUpdateRequestWithFormdataBody calls the generic SonarqubeIssuesPartialUpdate builder with application/x-www-form-urlencoded body

func NewSonarqubeIssuesRetrieveRequest

func NewSonarqubeIssuesRetrieveRequest(server string, id int) (*http.Request, error)

NewSonarqubeIssuesRetrieveRequest generates requests for SonarqubeIssuesRetrieve

func NewSonarqubeIssuesUpdateRequest

func NewSonarqubeIssuesUpdateRequest(server string, id int, body SonarqubeIssuesUpdateJSONRequestBody) (*http.Request, error)

NewSonarqubeIssuesUpdateRequest calls the generic SonarqubeIssuesUpdate builder with application/json body

func NewSonarqubeIssuesUpdateRequestWithBody

func NewSonarqubeIssuesUpdateRequestWithBody(server string, id int, contentType string, body io.Reader) (*http.Request, error)

NewSonarqubeIssuesUpdateRequestWithBody generates requests for SonarqubeIssuesUpdate with any type of body

func NewSonarqubeIssuesUpdateRequestWithFormdataBody added in v0.2.0

func NewSonarqubeIssuesUpdateRequestWithFormdataBody(server string, id int, body SonarqubeIssuesUpdateFormdataRequestBody) (*http.Request, error)

NewSonarqubeIssuesUpdateRequestWithFormdataBody calls the generic SonarqubeIssuesUpdate builder with application/x-www-form-urlencoded body

func NewSonarqubeTransitionsCreateRequest

func NewSonarqubeTransitionsCreateRequest(server string, body SonarqubeTransitionsCreateJSONRequestBody) (*http.Request, error)

NewSonarqubeTransitionsCreateRequest calls the generic SonarqubeTransitionsCreate builder with application/json body

func NewSonarqubeTransitionsCreateRequestWithBody

func NewSonarqubeTransitionsCreateRequestWithBody(server string, contentType string, body io.Reader) (*http.Request, error)

NewSonarqubeTransitionsCreateRequestWithBody generates requests for SonarqubeTransitionsCreate with any type of body

func NewSonarqubeTransitionsCreateRequestWithFormdataBody added in v0.2.0

func NewSonarqubeTransitionsCreateRequestWithFormdataBody(server string, body SonarqubeTransitionsCreateFormdataRequestBody) (*http.Request, error)

NewSonarqubeTransitionsCreateRequestWithFormdataBody calls the generic SonarqubeTransitionsCreate builder with application/x-www-form-urlencoded body

func NewSonarqubeTransitionsDeletePreviewListRequest added in v0.2.0

func NewSonarqubeTransitionsDeletePreviewListRequest(server string, id int, params *SonarqubeTransitionsDeletePreviewListParams) (*http.Request, error)

NewSonarqubeTransitionsDeletePreviewListRequest generates requests for SonarqubeTransitionsDeletePreviewList

func NewSonarqubeTransitionsDestroyRequest

func NewSonarqubeTransitionsDestroyRequest(server string, id int) (*http.Request, error)

NewSonarqubeTransitionsDestroyRequest generates requests for SonarqubeTransitionsDestroy

func NewSonarqubeTransitionsListRequest

func NewSonarqubeTransitionsListRequest(server string, params *SonarqubeTransitionsListParams) (*http.Request, error)

NewSonarqubeTransitionsListRequest generates requests for SonarqubeTransitionsList

func NewSonarqubeTransitionsPartialUpdateRequest

func NewSonarqubeTransitionsPartialUpdateRequest(server string, id int, body SonarqubeTransitionsPartialUpdateJSONRequestBody) (*http.Request, error)

NewSonarqubeTransitionsPartialUpdateRequest calls the generic SonarqubeTransitionsPartialUpdate builder with application/json body

func NewSonarqubeTransitionsPartialUpdateRequestWithBody

func NewSonarqubeTransitionsPartialUpdateRequestWithBody(server string, id int, contentType string, body io.Reader) (*http.Request, error)

NewSonarqubeTransitionsPartialUpdateRequestWithBody generates requests for SonarqubeTransitionsPartialUpdate with any type of body

func NewSonarqubeTransitionsPartialUpdateRequestWithFormdataBody added in v0.2.0

func NewSonarqubeTransitionsPartialUpdateRequestWithFormdataBody(server string, id int, body SonarqubeTransitionsPartialUpdateFormdataRequestBody) (*http.Request, error)

NewSonarqubeTransitionsPartialUpdateRequestWithFormdataBody calls the generic SonarqubeTransitionsPartialUpdate builder with application/x-www-form-urlencoded body

func NewSonarqubeTransitionsRetrieveRequest

func NewSonarqubeTransitionsRetrieveRequest(server string, id int) (*http.Request, error)

NewSonarqubeTransitionsRetrieveRequest generates requests for SonarqubeTransitionsRetrieve

func NewSonarqubeTransitionsUpdateRequest

func NewSonarqubeTransitionsUpdateRequest(server string, id int, body SonarqubeTransitionsUpdateJSONRequestBody) (*http.Request, error)

NewSonarqubeTransitionsUpdateRequest calls the generic SonarqubeTransitionsUpdate builder with application/json body

func NewSonarqubeTransitionsUpdateRequestWithBody

func NewSonarqubeTransitionsUpdateRequestWithBody(server string, id int, contentType string, body io.Reader) (*http.Request, error)

NewSonarqubeTransitionsUpdateRequestWithBody generates requests for SonarqubeTransitionsUpdate with any type of body

func NewSonarqubeTransitionsUpdateRequestWithFormdataBody added in v0.2.0

func NewSonarqubeTransitionsUpdateRequestWithFormdataBody(server string, id int, body SonarqubeTransitionsUpdateFormdataRequestBody) (*http.Request, error)

NewSonarqubeTransitionsUpdateRequestWithFormdataBody calls the generic SonarqubeTransitionsUpdate builder with application/x-www-form-urlencoded body

func NewStubFindingsCreateRequest

func NewStubFindingsCreateRequest(server string, body StubFindingsCreateJSONRequestBody) (*http.Request, error)

NewStubFindingsCreateRequest calls the generic StubFindingsCreate builder with application/json body

func NewStubFindingsCreateRequestWithBody

func NewStubFindingsCreateRequestWithBody(server string, contentType string, body io.Reader) (*http.Request, error)

NewStubFindingsCreateRequestWithBody generates requests for StubFindingsCreate with any type of body

func NewStubFindingsCreateRequestWithFormdataBody added in v0.2.0

func NewStubFindingsCreateRequestWithFormdataBody(server string, body StubFindingsCreateFormdataRequestBody) (*http.Request, error)

NewStubFindingsCreateRequestWithFormdataBody calls the generic StubFindingsCreate builder with application/x-www-form-urlencoded body

func NewStubFindingsDeletePreviewListRequest added in v0.2.0

func NewStubFindingsDeletePreviewListRequest(server string, id int, params *StubFindingsDeletePreviewListParams) (*http.Request, error)

NewStubFindingsDeletePreviewListRequest generates requests for StubFindingsDeletePreviewList

func NewStubFindingsDestroyRequest

func NewStubFindingsDestroyRequest(server string, id int) (*http.Request, error)

NewStubFindingsDestroyRequest generates requests for StubFindingsDestroy

func NewStubFindingsListRequest

func NewStubFindingsListRequest(server string, params *StubFindingsListParams) (*http.Request, error)

NewStubFindingsListRequest generates requests for StubFindingsList

func NewStubFindingsPartialUpdateRequest

func NewStubFindingsPartialUpdateRequest(server string, id int, body StubFindingsPartialUpdateJSONRequestBody) (*http.Request, error)

NewStubFindingsPartialUpdateRequest calls the generic StubFindingsPartialUpdate builder with application/json body

func NewStubFindingsPartialUpdateRequestWithBody

func NewStubFindingsPartialUpdateRequestWithBody(server string, id int, contentType string, body io.Reader) (*http.Request, error)

NewStubFindingsPartialUpdateRequestWithBody generates requests for StubFindingsPartialUpdate with any type of body

func NewStubFindingsPartialUpdateRequestWithFormdataBody added in v0.2.0

func NewStubFindingsPartialUpdateRequestWithFormdataBody(server string, id int, body StubFindingsPartialUpdateFormdataRequestBody) (*http.Request, error)

NewStubFindingsPartialUpdateRequestWithFormdataBody calls the generic StubFindingsPartialUpdate builder with application/x-www-form-urlencoded body

func NewStubFindingsRetrieveRequest

func NewStubFindingsRetrieveRequest(server string, id int) (*http.Request, error)

NewStubFindingsRetrieveRequest generates requests for StubFindingsRetrieve

func NewStubFindingsUpdateRequest

func NewStubFindingsUpdateRequest(server string, id int, body StubFindingsUpdateJSONRequestBody) (*http.Request, error)

NewStubFindingsUpdateRequest calls the generic StubFindingsUpdate builder with application/json body

func NewStubFindingsUpdateRequestWithBody

func NewStubFindingsUpdateRequestWithBody(server string, id int, contentType string, body io.Reader) (*http.Request, error)

NewStubFindingsUpdateRequestWithBody generates requests for StubFindingsUpdate with any type of body

func NewStubFindingsUpdateRequestWithFormdataBody added in v0.2.0

func NewStubFindingsUpdateRequestWithFormdataBody(server string, id int, body StubFindingsUpdateFormdataRequestBody) (*http.Request, error)

NewStubFindingsUpdateRequestWithFormdataBody calls the generic StubFindingsUpdate builder with application/x-www-form-urlencoded body

func NewSystemSettingsListRequest

func NewSystemSettingsListRequest(server string, params *SystemSettingsListParams) (*http.Request, error)

NewSystemSettingsListRequest generates requests for SystemSettingsList

func NewSystemSettingsPartialUpdateRequest

func NewSystemSettingsPartialUpdateRequest(server string, id int, body SystemSettingsPartialUpdateJSONRequestBody) (*http.Request, error)

NewSystemSettingsPartialUpdateRequest calls the generic SystemSettingsPartialUpdate builder with application/json body

func NewSystemSettingsPartialUpdateRequestWithBody

func NewSystemSettingsPartialUpdateRequestWithBody(server string, id int, contentType string, body io.Reader) (*http.Request, error)

NewSystemSettingsPartialUpdateRequestWithBody generates requests for SystemSettingsPartialUpdate with any type of body

func NewSystemSettingsPartialUpdateRequestWithFormdataBody added in v0.2.0

func NewSystemSettingsPartialUpdateRequestWithFormdataBody(server string, id int, body SystemSettingsPartialUpdateFormdataRequestBody) (*http.Request, error)

NewSystemSettingsPartialUpdateRequestWithFormdataBody calls the generic SystemSettingsPartialUpdate builder with application/x-www-form-urlencoded body

func NewSystemSettingsUpdateRequest

func NewSystemSettingsUpdateRequest(server string, id int, body SystemSettingsUpdateJSONRequestBody) (*http.Request, error)

NewSystemSettingsUpdateRequest calls the generic SystemSettingsUpdate builder with application/json body

func NewSystemSettingsUpdateRequestWithBody

func NewSystemSettingsUpdateRequestWithBody(server string, id int, contentType string, body io.Reader) (*http.Request, error)

NewSystemSettingsUpdateRequestWithBody generates requests for SystemSettingsUpdate with any type of body

func NewSystemSettingsUpdateRequestWithFormdataBody added in v0.2.0

func NewSystemSettingsUpdateRequestWithFormdataBody(server string, id int, body SystemSettingsUpdateFormdataRequestBody) (*http.Request, error)

NewSystemSettingsUpdateRequestWithFormdataBody calls the generic SystemSettingsUpdate builder with application/x-www-form-urlencoded body

func NewTechnologiesCreateRequest

func NewTechnologiesCreateRequest(server string, body TechnologiesCreateJSONRequestBody) (*http.Request, error)

NewTechnologiesCreateRequest calls the generic TechnologiesCreate builder with application/json body

func NewTechnologiesCreateRequestWithBody

func NewTechnologiesCreateRequestWithBody(server string, contentType string, body io.Reader) (*http.Request, error)

NewTechnologiesCreateRequestWithBody generates requests for TechnologiesCreate with any type of body

func NewTechnologiesCreateRequestWithFormdataBody added in v0.2.0

func NewTechnologiesCreateRequestWithFormdataBody(server string, body TechnologiesCreateFormdataRequestBody) (*http.Request, error)

NewTechnologiesCreateRequestWithFormdataBody calls the generic TechnologiesCreate builder with application/x-www-form-urlencoded body

func NewTechnologiesDeletePreviewListRequest added in v0.2.0

func NewTechnologiesDeletePreviewListRequest(server string, id int, params *TechnologiesDeletePreviewListParams) (*http.Request, error)

NewTechnologiesDeletePreviewListRequest generates requests for TechnologiesDeletePreviewList

func NewTechnologiesDestroyRequest

func NewTechnologiesDestroyRequest(server string, id int) (*http.Request, error)

NewTechnologiesDestroyRequest generates requests for TechnologiesDestroy

func NewTechnologiesListRequest

func NewTechnologiesListRequest(server string, params *TechnologiesListParams) (*http.Request, error)

NewTechnologiesListRequest generates requests for TechnologiesList

func NewTechnologiesPartialUpdateRequest

func NewTechnologiesPartialUpdateRequest(server string, id int, body TechnologiesPartialUpdateJSONRequestBody) (*http.Request, error)

NewTechnologiesPartialUpdateRequest calls the generic TechnologiesPartialUpdate builder with application/json body

func NewTechnologiesPartialUpdateRequestWithBody

func NewTechnologiesPartialUpdateRequestWithBody(server string, id int, contentType string, body io.Reader) (*http.Request, error)

NewTechnologiesPartialUpdateRequestWithBody generates requests for TechnologiesPartialUpdate with any type of body

func NewTechnologiesPartialUpdateRequestWithFormdataBody added in v0.2.0

func NewTechnologiesPartialUpdateRequestWithFormdataBody(server string, id int, body TechnologiesPartialUpdateFormdataRequestBody) (*http.Request, error)

NewTechnologiesPartialUpdateRequestWithFormdataBody calls the generic TechnologiesPartialUpdate builder with application/x-www-form-urlencoded body

func NewTechnologiesRetrieveRequest

func NewTechnologiesRetrieveRequest(server string, id int) (*http.Request, error)

NewTechnologiesRetrieveRequest generates requests for TechnologiesRetrieve

func NewTechnologiesUpdateRequest

func NewTechnologiesUpdateRequest(server string, id int, body TechnologiesUpdateJSONRequestBody) (*http.Request, error)

NewTechnologiesUpdateRequest calls the generic TechnologiesUpdate builder with application/json body

func NewTechnologiesUpdateRequestWithBody

func NewTechnologiesUpdateRequestWithBody(server string, id int, contentType string, body io.Reader) (*http.Request, error)

NewTechnologiesUpdateRequestWithBody generates requests for TechnologiesUpdate with any type of body

func NewTechnologiesUpdateRequestWithFormdataBody added in v0.2.0

func NewTechnologiesUpdateRequestWithFormdataBody(server string, id int, body TechnologiesUpdateFormdataRequestBody) (*http.Request, error)

NewTechnologiesUpdateRequestWithFormdataBody calls the generic TechnologiesUpdate builder with application/x-www-form-urlencoded body

func NewTestImportsCreateRequest

func NewTestImportsCreateRequest(server string, body TestImportsCreateJSONRequestBody) (*http.Request, error)

NewTestImportsCreateRequest calls the generic TestImportsCreate builder with application/json body

func NewTestImportsCreateRequestWithBody

func NewTestImportsCreateRequestWithBody(server string, contentType string, body io.Reader) (*http.Request, error)

NewTestImportsCreateRequestWithBody generates requests for TestImportsCreate with any type of body

func NewTestImportsCreateRequestWithFormdataBody added in v0.2.0

func NewTestImportsCreateRequestWithFormdataBody(server string, body TestImportsCreateFormdataRequestBody) (*http.Request, error)

NewTestImportsCreateRequestWithFormdataBody calls the generic TestImportsCreate builder with application/x-www-form-urlencoded body

func NewTestImportsDeletePreviewListRequest added in v0.2.0

func NewTestImportsDeletePreviewListRequest(server string, id int, params *TestImportsDeletePreviewListParams) (*http.Request, error)

NewTestImportsDeletePreviewListRequest generates requests for TestImportsDeletePreviewList

func NewTestImportsDestroyRequest

func NewTestImportsDestroyRequest(server string, id int) (*http.Request, error)

NewTestImportsDestroyRequest generates requests for TestImportsDestroy

func NewTestImportsListRequest

func NewTestImportsListRequest(server string, params *TestImportsListParams) (*http.Request, error)

NewTestImportsListRequest generates requests for TestImportsList

func NewTestImportsPartialUpdateRequest

func NewTestImportsPartialUpdateRequest(server string, id int, body TestImportsPartialUpdateJSONRequestBody) (*http.Request, error)

NewTestImportsPartialUpdateRequest calls the generic TestImportsPartialUpdate builder with application/json body

func NewTestImportsPartialUpdateRequestWithBody

func NewTestImportsPartialUpdateRequestWithBody(server string, id int, contentType string, body io.Reader) (*http.Request, error)

NewTestImportsPartialUpdateRequestWithBody generates requests for TestImportsPartialUpdate with any type of body

func NewTestImportsPartialUpdateRequestWithFormdataBody added in v0.2.0

func NewTestImportsPartialUpdateRequestWithFormdataBody(server string, id int, body TestImportsPartialUpdateFormdataRequestBody) (*http.Request, error)

NewTestImportsPartialUpdateRequestWithFormdataBody calls the generic TestImportsPartialUpdate builder with application/x-www-form-urlencoded body

func NewTestImportsRetrieveRequest

func NewTestImportsRetrieveRequest(server string, id int, params *TestImportsRetrieveParams) (*http.Request, error)

NewTestImportsRetrieveRequest generates requests for TestImportsRetrieve

func NewTestImportsUpdateRequest

func NewTestImportsUpdateRequest(server string, id int, body TestImportsUpdateJSONRequestBody) (*http.Request, error)

NewTestImportsUpdateRequest calls the generic TestImportsUpdate builder with application/json body

func NewTestImportsUpdateRequestWithBody

func NewTestImportsUpdateRequestWithBody(server string, id int, contentType string, body io.Reader) (*http.Request, error)

NewTestImportsUpdateRequestWithBody generates requests for TestImportsUpdate with any type of body

func NewTestImportsUpdateRequestWithFormdataBody added in v0.2.0

func NewTestImportsUpdateRequestWithFormdataBody(server string, id int, body TestImportsUpdateFormdataRequestBody) (*http.Request, error)

NewTestImportsUpdateRequestWithFormdataBody calls the generic TestImportsUpdate builder with application/x-www-form-urlencoded body

func NewTestTypesCreateRequest

func NewTestTypesCreateRequest(server string, body TestTypesCreateJSONRequestBody) (*http.Request, error)

NewTestTypesCreateRequest calls the generic TestTypesCreate builder with application/json body

func NewTestTypesCreateRequestWithBody

func NewTestTypesCreateRequestWithBody(server string, contentType string, body io.Reader) (*http.Request, error)

NewTestTypesCreateRequestWithBody generates requests for TestTypesCreate with any type of body

func NewTestTypesCreateRequestWithFormdataBody added in v0.2.0

func NewTestTypesCreateRequestWithFormdataBody(server string, body TestTypesCreateFormdataRequestBody) (*http.Request, error)

NewTestTypesCreateRequestWithFormdataBody calls the generic TestTypesCreate builder with application/x-www-form-urlencoded body

func NewTestTypesListRequest

func NewTestTypesListRequest(server string, params *TestTypesListParams) (*http.Request, error)

NewTestTypesListRequest generates requests for TestTypesList

func NewTestTypesPartialUpdateRequest

func NewTestTypesPartialUpdateRequest(server string, id int, body TestTypesPartialUpdateJSONRequestBody) (*http.Request, error)

NewTestTypesPartialUpdateRequest calls the generic TestTypesPartialUpdate builder with application/json body

func NewTestTypesPartialUpdateRequestWithBody

func NewTestTypesPartialUpdateRequestWithBody(server string, id int, contentType string, body io.Reader) (*http.Request, error)

NewTestTypesPartialUpdateRequestWithBody generates requests for TestTypesPartialUpdate with any type of body

func NewTestTypesPartialUpdateRequestWithFormdataBody added in v0.2.0

func NewTestTypesPartialUpdateRequestWithFormdataBody(server string, id int, body TestTypesPartialUpdateFormdataRequestBody) (*http.Request, error)

NewTestTypesPartialUpdateRequestWithFormdataBody calls the generic TestTypesPartialUpdate builder with application/x-www-form-urlencoded body

func NewTestTypesRetrieveRequest

func NewTestTypesRetrieveRequest(server string, id int) (*http.Request, error)

NewTestTypesRetrieveRequest generates requests for TestTypesRetrieve

func NewTestTypesUpdateRequest

func NewTestTypesUpdateRequest(server string, id int, body TestTypesUpdateJSONRequestBody) (*http.Request, error)

NewTestTypesUpdateRequest calls the generic TestTypesUpdate builder with application/json body

func NewTestTypesUpdateRequestWithBody

func NewTestTypesUpdateRequestWithBody(server string, id int, contentType string, body io.Reader) (*http.Request, error)

NewTestTypesUpdateRequestWithBody generates requests for TestTypesUpdate with any type of body

func NewTestTypesUpdateRequestWithFormdataBody added in v0.2.0

func NewTestTypesUpdateRequestWithFormdataBody(server string, id int, body TestTypesUpdateFormdataRequestBody) (*http.Request, error)

NewTestTypesUpdateRequestWithFormdataBody calls the generic TestTypesUpdate builder with application/x-www-form-urlencoded body

func NewTestsAcceptRisksCreateRequest

func NewTestsAcceptRisksCreateRequest(server string, id int, body TestsAcceptRisksCreateJSONRequestBody) (*http.Request, error)

NewTestsAcceptRisksCreateRequest calls the generic TestsAcceptRisksCreate builder with application/json body

func NewTestsAcceptRisksCreateRequestWithBody

func NewTestsAcceptRisksCreateRequestWithBody(server string, id int, contentType string, body io.Reader) (*http.Request, error)

NewTestsAcceptRisksCreateRequestWithBody generates requests for TestsAcceptRisksCreate with any type of body

func NewTestsAcceptRisksCreateRequestWithFormdataBody added in v0.2.0

func NewTestsAcceptRisksCreateRequestWithFormdataBody(server string, id int, body TestsAcceptRisksCreateFormdataRequestBody) (*http.Request, error)

NewTestsAcceptRisksCreateRequestWithFormdataBody calls the generic TestsAcceptRisksCreate builder with application/x-www-form-urlencoded body

func NewTestsCreateRequest

func NewTestsCreateRequest(server string, body TestsCreateJSONRequestBody) (*http.Request, error)

NewTestsCreateRequest calls the generic TestsCreate builder with application/json body

func NewTestsCreateRequestWithBody

func NewTestsCreateRequestWithBody(server string, contentType string, body io.Reader) (*http.Request, error)

NewTestsCreateRequestWithBody generates requests for TestsCreate with any type of body

func NewTestsCreateRequestWithFormdataBody added in v0.2.0

func NewTestsCreateRequestWithFormdataBody(server string, body TestsCreateFormdataRequestBody) (*http.Request, error)

NewTestsCreateRequestWithFormdataBody calls the generic TestsCreate builder with application/x-www-form-urlencoded body

func NewTestsDeletePreviewListRequest added in v0.2.0

func NewTestsDeletePreviewListRequest(server string, id int, params *TestsDeletePreviewListParams) (*http.Request, error)

NewTestsDeletePreviewListRequest generates requests for TestsDeletePreviewList

func NewTestsDestroyRequest

func NewTestsDestroyRequest(server string, id int) (*http.Request, error)

NewTestsDestroyRequest generates requests for TestsDestroy

func NewTestsFilesCreateRequestWithBody

func NewTestsFilesCreateRequestWithBody(server string, id int, contentType string, body io.Reader) (*http.Request, error)

NewTestsFilesCreateRequestWithBody generates requests for TestsFilesCreate with any type of body

func NewTestsFilesDownloadRetrieveRequest added in v0.2.0

func NewTestsFilesDownloadRetrieveRequest(server string, id int, fileId string) (*http.Request, error)

NewTestsFilesDownloadRetrieveRequest generates requests for TestsFilesDownloadRetrieve

func NewTestsFilesRetrieveRequest

func NewTestsFilesRetrieveRequest(server string, id int) (*http.Request, error)

NewTestsFilesRetrieveRequest generates requests for TestsFilesRetrieve

func NewTestsGenerateReportCreateRequest

func NewTestsGenerateReportCreateRequest(server string, id int, body TestsGenerateReportCreateJSONRequestBody) (*http.Request, error)

NewTestsGenerateReportCreateRequest calls the generic TestsGenerateReportCreate builder with application/json body

func NewTestsGenerateReportCreateRequestWithBody

func NewTestsGenerateReportCreateRequestWithBody(server string, id int, contentType string, body io.Reader) (*http.Request, error)

NewTestsGenerateReportCreateRequestWithBody generates requests for TestsGenerateReportCreate with any type of body

func NewTestsGenerateReportCreateRequestWithFormdataBody added in v0.2.0

func NewTestsGenerateReportCreateRequestWithFormdataBody(server string, id int, body TestsGenerateReportCreateFormdataRequestBody) (*http.Request, error)

NewTestsGenerateReportCreateRequestWithFormdataBody calls the generic TestsGenerateReportCreate builder with application/x-www-form-urlencoded body

func NewTestsListRequest

func NewTestsListRequest(server string, params *TestsListParams) (*http.Request, error)

NewTestsListRequest generates requests for TestsList

func NewTestsNotesCreateRequest

func NewTestsNotesCreateRequest(server string, id int, body TestsNotesCreateJSONRequestBody) (*http.Request, error)

NewTestsNotesCreateRequest calls the generic TestsNotesCreate builder with application/json body

func NewTestsNotesCreateRequestWithBody

func NewTestsNotesCreateRequestWithBody(server string, id int, contentType string, body io.Reader) (*http.Request, error)

NewTestsNotesCreateRequestWithBody generates requests for TestsNotesCreate with any type of body

func NewTestsNotesCreateRequestWithFormdataBody added in v0.2.0

func NewTestsNotesCreateRequestWithFormdataBody(server string, id int, body TestsNotesCreateFormdataRequestBody) (*http.Request, error)

NewTestsNotesCreateRequestWithFormdataBody calls the generic TestsNotesCreate builder with application/x-www-form-urlencoded body

func NewTestsNotesRetrieveRequest

func NewTestsNotesRetrieveRequest(server string, id int) (*http.Request, error)

NewTestsNotesRetrieveRequest generates requests for TestsNotesRetrieve

func NewTestsPartialUpdateRequest

func NewTestsPartialUpdateRequest(server string, id int, body TestsPartialUpdateJSONRequestBody) (*http.Request, error)

NewTestsPartialUpdateRequest calls the generic TestsPartialUpdate builder with application/json body

func NewTestsPartialUpdateRequestWithBody

func NewTestsPartialUpdateRequestWithBody(server string, id int, contentType string, body io.Reader) (*http.Request, error)

NewTestsPartialUpdateRequestWithBody generates requests for TestsPartialUpdate with any type of body

func NewTestsPartialUpdateRequestWithFormdataBody added in v0.2.0

func NewTestsPartialUpdateRequestWithFormdataBody(server string, id int, body TestsPartialUpdateFormdataRequestBody) (*http.Request, error)

NewTestsPartialUpdateRequestWithFormdataBody calls the generic TestsPartialUpdate builder with application/x-www-form-urlencoded body

func NewTestsRetrieveRequest

func NewTestsRetrieveRequest(server string, id int) (*http.Request, error)

NewTestsRetrieveRequest generates requests for TestsRetrieve

func NewTestsUpdateRequest

func NewTestsUpdateRequest(server string, id int, body TestsUpdateJSONRequestBody) (*http.Request, error)

NewTestsUpdateRequest calls the generic TestsUpdate builder with application/json body

func NewTestsUpdateRequestWithBody

func NewTestsUpdateRequestWithBody(server string, id int, contentType string, body io.Reader) (*http.Request, error)

NewTestsUpdateRequestWithBody generates requests for TestsUpdate with any type of body

func NewTestsUpdateRequestWithFormdataBody added in v0.2.0

func NewTestsUpdateRequestWithFormdataBody(server string, id int, body TestsUpdateFormdataRequestBody) (*http.Request, error)

NewTestsUpdateRequestWithFormdataBody calls the generic TestsUpdate builder with application/x-www-form-urlencoded body

func NewToolConfigurationsCreateRequest

func NewToolConfigurationsCreateRequest(server string, body ToolConfigurationsCreateJSONRequestBody) (*http.Request, error)

NewToolConfigurationsCreateRequest calls the generic ToolConfigurationsCreate builder with application/json body

func NewToolConfigurationsCreateRequestWithBody

func NewToolConfigurationsCreateRequestWithBody(server string, contentType string, body io.Reader) (*http.Request, error)

NewToolConfigurationsCreateRequestWithBody generates requests for ToolConfigurationsCreate with any type of body

func NewToolConfigurationsCreateRequestWithFormdataBody added in v0.2.0

func NewToolConfigurationsCreateRequestWithFormdataBody(server string, body ToolConfigurationsCreateFormdataRequestBody) (*http.Request, error)

NewToolConfigurationsCreateRequestWithFormdataBody calls the generic ToolConfigurationsCreate builder with application/x-www-form-urlencoded body

func NewToolConfigurationsDeletePreviewListRequest added in v0.2.0

func NewToolConfigurationsDeletePreviewListRequest(server string, id int, params *ToolConfigurationsDeletePreviewListParams) (*http.Request, error)

NewToolConfigurationsDeletePreviewListRequest generates requests for ToolConfigurationsDeletePreviewList

func NewToolConfigurationsDestroyRequest

func NewToolConfigurationsDestroyRequest(server string, id int) (*http.Request, error)

NewToolConfigurationsDestroyRequest generates requests for ToolConfigurationsDestroy

func NewToolConfigurationsListRequest

func NewToolConfigurationsListRequest(server string, params *ToolConfigurationsListParams) (*http.Request, error)

NewToolConfigurationsListRequest generates requests for ToolConfigurationsList

func NewToolConfigurationsPartialUpdateRequest

func NewToolConfigurationsPartialUpdateRequest(server string, id int, body ToolConfigurationsPartialUpdateJSONRequestBody) (*http.Request, error)

NewToolConfigurationsPartialUpdateRequest calls the generic ToolConfigurationsPartialUpdate builder with application/json body

func NewToolConfigurationsPartialUpdateRequestWithBody

func NewToolConfigurationsPartialUpdateRequestWithBody(server string, id int, contentType string, body io.Reader) (*http.Request, error)

NewToolConfigurationsPartialUpdateRequestWithBody generates requests for ToolConfigurationsPartialUpdate with any type of body

func NewToolConfigurationsPartialUpdateRequestWithFormdataBody added in v0.2.0

func NewToolConfigurationsPartialUpdateRequestWithFormdataBody(server string, id int, body ToolConfigurationsPartialUpdateFormdataRequestBody) (*http.Request, error)

NewToolConfigurationsPartialUpdateRequestWithFormdataBody calls the generic ToolConfigurationsPartialUpdate builder with application/x-www-form-urlencoded body

func NewToolConfigurationsRetrieveRequest

func NewToolConfigurationsRetrieveRequest(server string, id int) (*http.Request, error)

NewToolConfigurationsRetrieveRequest generates requests for ToolConfigurationsRetrieve

func NewToolConfigurationsUpdateRequest

func NewToolConfigurationsUpdateRequest(server string, id int, body ToolConfigurationsUpdateJSONRequestBody) (*http.Request, error)

NewToolConfigurationsUpdateRequest calls the generic ToolConfigurationsUpdate builder with application/json body

func NewToolConfigurationsUpdateRequestWithBody

func NewToolConfigurationsUpdateRequestWithBody(server string, id int, contentType string, body io.Reader) (*http.Request, error)

NewToolConfigurationsUpdateRequestWithBody generates requests for ToolConfigurationsUpdate with any type of body

func NewToolConfigurationsUpdateRequestWithFormdataBody added in v0.2.0

func NewToolConfigurationsUpdateRequestWithFormdataBody(server string, id int, body ToolConfigurationsUpdateFormdataRequestBody) (*http.Request, error)

NewToolConfigurationsUpdateRequestWithFormdataBody calls the generic ToolConfigurationsUpdate builder with application/x-www-form-urlencoded body

func NewToolProductSettingsCreateRequest

func NewToolProductSettingsCreateRequest(server string, body ToolProductSettingsCreateJSONRequestBody) (*http.Request, error)

NewToolProductSettingsCreateRequest calls the generic ToolProductSettingsCreate builder with application/json body

func NewToolProductSettingsCreateRequestWithBody

func NewToolProductSettingsCreateRequestWithBody(server string, contentType string, body io.Reader) (*http.Request, error)

NewToolProductSettingsCreateRequestWithBody generates requests for ToolProductSettingsCreate with any type of body

func NewToolProductSettingsCreateRequestWithFormdataBody added in v0.2.0

func NewToolProductSettingsCreateRequestWithFormdataBody(server string, body ToolProductSettingsCreateFormdataRequestBody) (*http.Request, error)

NewToolProductSettingsCreateRequestWithFormdataBody calls the generic ToolProductSettingsCreate builder with application/x-www-form-urlencoded body

func NewToolProductSettingsDeletePreviewListRequest added in v0.2.0

func NewToolProductSettingsDeletePreviewListRequest(server string, id int, params *ToolProductSettingsDeletePreviewListParams) (*http.Request, error)

NewToolProductSettingsDeletePreviewListRequest generates requests for ToolProductSettingsDeletePreviewList

func NewToolProductSettingsDestroyRequest

func NewToolProductSettingsDestroyRequest(server string, id int) (*http.Request, error)

NewToolProductSettingsDestroyRequest generates requests for ToolProductSettingsDestroy

func NewToolProductSettingsListRequest

func NewToolProductSettingsListRequest(server string, params *ToolProductSettingsListParams) (*http.Request, error)

NewToolProductSettingsListRequest generates requests for ToolProductSettingsList

func NewToolProductSettingsPartialUpdateRequest

func NewToolProductSettingsPartialUpdateRequest(server string, id int, body ToolProductSettingsPartialUpdateJSONRequestBody) (*http.Request, error)

NewToolProductSettingsPartialUpdateRequest calls the generic ToolProductSettingsPartialUpdate builder with application/json body

func NewToolProductSettingsPartialUpdateRequestWithBody

func NewToolProductSettingsPartialUpdateRequestWithBody(server string, id int, contentType string, body io.Reader) (*http.Request, error)

NewToolProductSettingsPartialUpdateRequestWithBody generates requests for ToolProductSettingsPartialUpdate with any type of body

func NewToolProductSettingsPartialUpdateRequestWithFormdataBody added in v0.2.0

func NewToolProductSettingsPartialUpdateRequestWithFormdataBody(server string, id int, body ToolProductSettingsPartialUpdateFormdataRequestBody) (*http.Request, error)

NewToolProductSettingsPartialUpdateRequestWithFormdataBody calls the generic ToolProductSettingsPartialUpdate builder with application/x-www-form-urlencoded body

func NewToolProductSettingsRetrieveRequest

func NewToolProductSettingsRetrieveRequest(server string, id int) (*http.Request, error)

NewToolProductSettingsRetrieveRequest generates requests for ToolProductSettingsRetrieve

func NewToolProductSettingsUpdateRequest

func NewToolProductSettingsUpdateRequest(server string, id int, body ToolProductSettingsUpdateJSONRequestBody) (*http.Request, error)

NewToolProductSettingsUpdateRequest calls the generic ToolProductSettingsUpdate builder with application/json body

func NewToolProductSettingsUpdateRequestWithBody

func NewToolProductSettingsUpdateRequestWithBody(server string, id int, contentType string, body io.Reader) (*http.Request, error)

NewToolProductSettingsUpdateRequestWithBody generates requests for ToolProductSettingsUpdate with any type of body

func NewToolProductSettingsUpdateRequestWithFormdataBody added in v0.2.0

func NewToolProductSettingsUpdateRequestWithFormdataBody(server string, id int, body ToolProductSettingsUpdateFormdataRequestBody) (*http.Request, error)

NewToolProductSettingsUpdateRequestWithFormdataBody calls the generic ToolProductSettingsUpdate builder with application/x-www-form-urlencoded body

func NewToolTypesCreateRequest

func NewToolTypesCreateRequest(server string, body ToolTypesCreateJSONRequestBody) (*http.Request, error)

NewToolTypesCreateRequest calls the generic ToolTypesCreate builder with application/json body

func NewToolTypesCreateRequestWithBody

func NewToolTypesCreateRequestWithBody(server string, contentType string, body io.Reader) (*http.Request, error)

NewToolTypesCreateRequestWithBody generates requests for ToolTypesCreate with any type of body

func NewToolTypesCreateRequestWithFormdataBody added in v0.2.0

func NewToolTypesCreateRequestWithFormdataBody(server string, body ToolTypesCreateFormdataRequestBody) (*http.Request, error)

NewToolTypesCreateRequestWithFormdataBody calls the generic ToolTypesCreate builder with application/x-www-form-urlencoded body

func NewToolTypesDeletePreviewListRequest added in v0.2.0

func NewToolTypesDeletePreviewListRequest(server string, id int, params *ToolTypesDeletePreviewListParams) (*http.Request, error)

NewToolTypesDeletePreviewListRequest generates requests for ToolTypesDeletePreviewList

func NewToolTypesDestroyRequest

func NewToolTypesDestroyRequest(server string, id int) (*http.Request, error)

NewToolTypesDestroyRequest generates requests for ToolTypesDestroy

func NewToolTypesListRequest

func NewToolTypesListRequest(server string, params *ToolTypesListParams) (*http.Request, error)

NewToolTypesListRequest generates requests for ToolTypesList

func NewToolTypesPartialUpdateRequest

func NewToolTypesPartialUpdateRequest(server string, id int, body ToolTypesPartialUpdateJSONRequestBody) (*http.Request, error)

NewToolTypesPartialUpdateRequest calls the generic ToolTypesPartialUpdate builder with application/json body

func NewToolTypesPartialUpdateRequestWithBody

func NewToolTypesPartialUpdateRequestWithBody(server string, id int, contentType string, body io.Reader) (*http.Request, error)

NewToolTypesPartialUpdateRequestWithBody generates requests for ToolTypesPartialUpdate with any type of body

func NewToolTypesPartialUpdateRequestWithFormdataBody added in v0.2.0

func NewToolTypesPartialUpdateRequestWithFormdataBody(server string, id int, body ToolTypesPartialUpdateFormdataRequestBody) (*http.Request, error)

NewToolTypesPartialUpdateRequestWithFormdataBody calls the generic ToolTypesPartialUpdate builder with application/x-www-form-urlencoded body

func NewToolTypesRetrieveRequest

func NewToolTypesRetrieveRequest(server string, id int) (*http.Request, error)

NewToolTypesRetrieveRequest generates requests for ToolTypesRetrieve

func NewToolTypesUpdateRequest

func NewToolTypesUpdateRequest(server string, id int, body ToolTypesUpdateJSONRequestBody) (*http.Request, error)

NewToolTypesUpdateRequest calls the generic ToolTypesUpdate builder with application/json body

func NewToolTypesUpdateRequestWithBody

func NewToolTypesUpdateRequestWithBody(server string, id int, contentType string, body io.Reader) (*http.Request, error)

NewToolTypesUpdateRequestWithBody generates requests for ToolTypesUpdate with any type of body

func NewToolTypesUpdateRequestWithFormdataBody added in v0.2.0

func NewToolTypesUpdateRequestWithFormdataBody(server string, id int, body ToolTypesUpdateFormdataRequestBody) (*http.Request, error)

NewToolTypesUpdateRequestWithFormdataBody calls the generic ToolTypesUpdate builder with application/x-www-form-urlencoded body

func NewUserContactInfosCreateRequest

func NewUserContactInfosCreateRequest(server string, body UserContactInfosCreateJSONRequestBody) (*http.Request, error)

NewUserContactInfosCreateRequest calls the generic UserContactInfosCreate builder with application/json body

func NewUserContactInfosCreateRequestWithBody

func NewUserContactInfosCreateRequestWithBody(server string, contentType string, body io.Reader) (*http.Request, error)

NewUserContactInfosCreateRequestWithBody generates requests for UserContactInfosCreate with any type of body

func NewUserContactInfosCreateRequestWithFormdataBody added in v0.2.0

func NewUserContactInfosCreateRequestWithFormdataBody(server string, body UserContactInfosCreateFormdataRequestBody) (*http.Request, error)

NewUserContactInfosCreateRequestWithFormdataBody calls the generic UserContactInfosCreate builder with application/x-www-form-urlencoded body

func NewUserContactInfosDeletePreviewListRequest added in v0.2.0

func NewUserContactInfosDeletePreviewListRequest(server string, id int, params *UserContactInfosDeletePreviewListParams) (*http.Request, error)

NewUserContactInfosDeletePreviewListRequest generates requests for UserContactInfosDeletePreviewList

func NewUserContactInfosDestroyRequest

func NewUserContactInfosDestroyRequest(server string, id int) (*http.Request, error)

NewUserContactInfosDestroyRequest generates requests for UserContactInfosDestroy

func NewUserContactInfosListRequest

func NewUserContactInfosListRequest(server string, params *UserContactInfosListParams) (*http.Request, error)

NewUserContactInfosListRequest generates requests for UserContactInfosList

func NewUserContactInfosPartialUpdateRequest

func NewUserContactInfosPartialUpdateRequest(server string, id int, body UserContactInfosPartialUpdateJSONRequestBody) (*http.Request, error)

NewUserContactInfosPartialUpdateRequest calls the generic UserContactInfosPartialUpdate builder with application/json body

func NewUserContactInfosPartialUpdateRequestWithBody

func NewUserContactInfosPartialUpdateRequestWithBody(server string, id int, contentType string, body io.Reader) (*http.Request, error)

NewUserContactInfosPartialUpdateRequestWithBody generates requests for UserContactInfosPartialUpdate with any type of body

func NewUserContactInfosPartialUpdateRequestWithFormdataBody added in v0.2.0

func NewUserContactInfosPartialUpdateRequestWithFormdataBody(server string, id int, body UserContactInfosPartialUpdateFormdataRequestBody) (*http.Request, error)

NewUserContactInfosPartialUpdateRequestWithFormdataBody calls the generic UserContactInfosPartialUpdate builder with application/x-www-form-urlencoded body

func NewUserContactInfosRetrieveRequest

func NewUserContactInfosRetrieveRequest(server string, id int, params *UserContactInfosRetrieveParams) (*http.Request, error)

NewUserContactInfosRetrieveRequest generates requests for UserContactInfosRetrieve

func NewUserContactInfosUpdateRequest

func NewUserContactInfosUpdateRequest(server string, id int, body UserContactInfosUpdateJSONRequestBody) (*http.Request, error)

NewUserContactInfosUpdateRequest calls the generic UserContactInfosUpdate builder with application/json body

func NewUserContactInfosUpdateRequestWithBody

func NewUserContactInfosUpdateRequestWithBody(server string, id int, contentType string, body io.Reader) (*http.Request, error)

NewUserContactInfosUpdateRequestWithBody generates requests for UserContactInfosUpdate with any type of body

func NewUserContactInfosUpdateRequestWithFormdataBody added in v0.2.0

func NewUserContactInfosUpdateRequestWithFormdataBody(server string, id int, body UserContactInfosUpdateFormdataRequestBody) (*http.Request, error)

NewUserContactInfosUpdateRequestWithFormdataBody calls the generic UserContactInfosUpdate builder with application/x-www-form-urlencoded body

func NewUserProfileRetrieveRequest

func NewUserProfileRetrieveRequest(server string) (*http.Request, error)

NewUserProfileRetrieveRequest generates requests for UserProfileRetrieve

func NewUsersCreateRequest

func NewUsersCreateRequest(server string, body UsersCreateJSONRequestBody) (*http.Request, error)

NewUsersCreateRequest calls the generic UsersCreate builder with application/json body

func NewUsersCreateRequestWithBody

func NewUsersCreateRequestWithBody(server string, contentType string, body io.Reader) (*http.Request, error)

NewUsersCreateRequestWithBody generates requests for UsersCreate with any type of body

func NewUsersCreateRequestWithFormdataBody added in v0.2.0

func NewUsersCreateRequestWithFormdataBody(server string, body UsersCreateFormdataRequestBody) (*http.Request, error)

NewUsersCreateRequestWithFormdataBody calls the generic UsersCreate builder with application/x-www-form-urlencoded body

func NewUsersDeletePreviewListRequest added in v0.2.0

func NewUsersDeletePreviewListRequest(server string, id int, params *UsersDeletePreviewListParams) (*http.Request, error)

NewUsersDeletePreviewListRequest generates requests for UsersDeletePreviewList

func NewUsersDestroyRequest

func NewUsersDestroyRequest(server string, id int) (*http.Request, error)

NewUsersDestroyRequest generates requests for UsersDestroy

func NewUsersListRequest

func NewUsersListRequest(server string, params *UsersListParams) (*http.Request, error)

NewUsersListRequest generates requests for UsersList

func NewUsersPartialUpdateRequest

func NewUsersPartialUpdateRequest(server string, id int, body UsersPartialUpdateJSONRequestBody) (*http.Request, error)

NewUsersPartialUpdateRequest calls the generic UsersPartialUpdate builder with application/json body

func NewUsersPartialUpdateRequestWithBody

func NewUsersPartialUpdateRequestWithBody(server string, id int, contentType string, body io.Reader) (*http.Request, error)

NewUsersPartialUpdateRequestWithBody generates requests for UsersPartialUpdate with any type of body

func NewUsersPartialUpdateRequestWithFormdataBody added in v0.2.0

func NewUsersPartialUpdateRequestWithFormdataBody(server string, id int, body UsersPartialUpdateFormdataRequestBody) (*http.Request, error)

NewUsersPartialUpdateRequestWithFormdataBody calls the generic UsersPartialUpdate builder with application/x-www-form-urlencoded body

func NewUsersRetrieveRequest

func NewUsersRetrieveRequest(server string, id int) (*http.Request, error)

NewUsersRetrieveRequest generates requests for UsersRetrieve

func NewUsersUpdateRequest

func NewUsersUpdateRequest(server string, id int, body UsersUpdateJSONRequestBody) (*http.Request, error)

NewUsersUpdateRequest calls the generic UsersUpdate builder with application/json body

func NewUsersUpdateRequestWithBody

func NewUsersUpdateRequestWithBody(server string, id int, contentType string, body io.Reader) (*http.Request, error)

NewUsersUpdateRequestWithBody generates requests for UsersUpdate with any type of body

func NewUsersUpdateRequestWithFormdataBody added in v0.2.0

func NewUsersUpdateRequestWithFormdataBody(server string, id int, body UsersUpdateFormdataRequestBody) (*http.Request, error)

NewUsersUpdateRequestWithFormdataBody calls the generic UsersUpdate builder with application/x-www-form-urlencoded body

func PathToRawSpec

func PathToRawSpec(pathToFile string) map[string]func() ([]byte, error)

Constructs a synthetic filesystem for resolving external references when loading openapi specifications.

func RegisterHandlers

func RegisterHandlers(router EchoRouter, si ServerInterface)

RegisterHandlers adds each server route to the EchoRouter.

func RegisterHandlersWithBaseURL

func RegisterHandlersWithBaseURL(router EchoRouter, si ServerInterface, baseURL string)

Registers handlers, and prepends BaseURL to the paths, so that the paths can be served under a prefix.

Types

type AcceptedRiskRequest added in v0.2.0

type AcceptedRiskRequest struct {
	// AcceptedBy Name or email of person who accepts the risk
	AcceptedBy string `json:"accepted_by"`

	// Justification Justification for accepting findings with this vulnerability id
	Justification string `json:"justification"`

	// VulnerabilityId An id of a vulnerability in a security advisory associated with this finding. Can be a Common Vulnerabilities and Exposure (CVE) or from other sources.
	VulnerabilityId string `json:"vulnerability_id"`
}

AcceptedRiskRequest defines model for AcceptedRiskRequest.

type AddNewFileOptionRequest added in v0.2.0

type AddNewFileOptionRequest struct {
	File  openapi_types.File `json:"file"`
	Title string             `json:"title"`
}

AddNewFileOptionRequest defines model for AddNewFileOptionRequest.

type AddNewNoteOptionRequest added in v0.2.0

type AddNewNoteOptionRequest struct {
	Entry    string `json:"entry"`
	NoteType *int   `json:"note_type"`
	Private  *bool  `json:"private,omitempty"`
}

AddNewNoteOptionRequest defines model for AddNewNoteOptionRequest.

type ApiTokenAuthCreateFormdataRequestBody added in v0.2.0

type ApiTokenAuthCreateFormdataRequestBody = AuthTokenRequest

ApiTokenAuthCreateFormdataRequestBody defines body for ApiTokenAuthCreate for application/x-www-form-urlencoded ContentType.

type ApiTokenAuthCreateJSONRequestBody

type ApiTokenAuthCreateJSONRequestBody = AuthTokenRequest

ApiTokenAuthCreateJSONRequestBody defines body for ApiTokenAuthCreate for application/json ContentType.

type ApiTokenAuthCreateMultipartRequestBody added in v0.2.0

type ApiTokenAuthCreateMultipartRequestBody = AuthTokenRequest

ApiTokenAuthCreateMultipartRequestBody defines body for ApiTokenAuthCreate for multipart/form-data ContentType.

type ApiTokenAuthCreateResponse

type ApiTokenAuthCreateResponse struct {
	Body         []byte
	HTTPResponse *http.Response
	JSON200      *AuthToken
}

func ParseApiTokenAuthCreateResponse

func ParseApiTokenAuthCreateResponse(rsp *http.Response) (*ApiTokenAuthCreateResponse, error)

ParseApiTokenAuthCreateResponse parses an HTTP response from a ApiTokenAuthCreateWithResponse call

func (ApiTokenAuthCreateResponse) Status

Status returns HTTPResponse.Status

func (ApiTokenAuthCreateResponse) StatusCode

func (r ApiTokenAuthCreateResponse) StatusCode() int

StatusCode returns HTTPResponse.StatusCode

type AppAnalysis

type AppAnalysis struct {
	Confidence   *int       `json:"confidence"`
	Created      *time.Time `json:"created,omitempty"`
	Icon         *string    `json:"icon"`
	Id           *int       `json:"id,omitempty"`
	Name         string     `json:"name"`
	Product      int        `json:"product"`
	Tags         *[]string  `json:"tags,omitempty"`
	User         int        `json:"user"`
	Version      *string    `json:"version"`
	Website      *string    `json:"website"`
	WebsiteFound *string    `json:"website_found"`
}

AppAnalysis defines model for AppAnalysis.

type AppAnalysisRequest added in v0.2.0

type AppAnalysisRequest struct {
	Confidence   *int      `json:"confidence"`
	Icon         *string   `json:"icon"`
	Name         string    `json:"name"`
	Product      int       `json:"product"`
	Tags         *[]string `json:"tags,omitempty"`
	User         int       `json:"user"`
	Version      *string   `json:"version"`
	Website      *string   `json:"website"`
	WebsiteFound *string   `json:"website_found"`
}

AppAnalysisRequest defines model for AppAnalysisRequest.

type AuthToken

type AuthToken struct {
	Token *string `json:"token,omitempty"`
}

AuthToken defines model for AuthToken.

type AuthTokenRequest added in v0.2.0

type AuthTokenRequest struct {
	Password *string `json:"password,omitempty"`
	Username *string `json:"username,omitempty"`
}

AuthTokenRequest defines model for AuthTokenRequest.

type BurpRawRequestResponse

type BurpRawRequestResponse struct {
	ReqResp []map[string]string `json:"req_resp"`
}

BurpRawRequestResponse defines model for BurpRawRequestResponse.

type BurpRawRequestResponseRequest added in v0.2.0

type BurpRawRequestResponseRequest struct {
	ReqResp []map[string]string `json:"req_resp"`
}

BurpRawRequestResponseRequest defines model for BurpRawRequestResponseRequest.

type Client

type Client struct {
	// The endpoint of the server conforming to this interface, with scheme,
	// https://api.deepmap.com for example. This can contain a path relative
	// to the server, such as https://api.deepmap.com/dev-test, and all the
	// paths in the swagger spec will be appended to the server.
	Server string

	// Doer for performing requests, typically a *http.Client with any
	// customized settings, such as certificate chains.
	Client HttpRequestDoer

	// A list of callbacks for modifying requests which are generated before sending over
	// the network.
	RequestEditors []RequestEditorFn
}

Client which conforms to the OpenAPI3 specification for this service.

func NewClient

func NewClient(server string, opts ...ClientOption) (*Client, error)

Creates a new Client, with reasonable defaults

func (*Client) ApiTokenAuthCreate

func (c *Client) ApiTokenAuthCreate(ctx context.Context, body ApiTokenAuthCreateJSONRequestBody, reqEditors ...RequestEditorFn) (*http.Response, error)

func (*Client) ApiTokenAuthCreateWithBody

func (c *Client) ApiTokenAuthCreateWithBody(ctx context.Context, contentType string, body io.Reader, reqEditors ...RequestEditorFn) (*http.Response, error)

func (*Client) ApiTokenAuthCreateWithFormdataBody added in v0.2.0

func (c *Client) ApiTokenAuthCreateWithFormdataBody(ctx context.Context, body ApiTokenAuthCreateFormdataRequestBody, reqEditors ...RequestEditorFn) (*http.Response, error)

func (*Client) ConfigurationPermissionsList added in v0.2.0

func (c *Client) ConfigurationPermissionsList(ctx context.Context, params *ConfigurationPermissionsListParams, reqEditors ...RequestEditorFn) (*http.Response, error)

func (*Client) ConfigurationPermissionsRetrieve added in v0.2.0

func (c *Client) ConfigurationPermissionsRetrieve(ctx context.Context, id int, reqEditors ...RequestEditorFn) (*http.Response, error)

func (*Client) CredentialMappingsCreate added in v0.2.0

func (c *Client) CredentialMappingsCreate(ctx context.Context, body CredentialMappingsCreateJSONRequestBody, reqEditors ...RequestEditorFn) (*http.Response, error)

func (*Client) CredentialMappingsCreateWithBody added in v0.2.0

func (c *Client) CredentialMappingsCreateWithBody(ctx context.Context, contentType string, body io.Reader, reqEditors ...RequestEditorFn) (*http.Response, error)

func (*Client) CredentialMappingsCreateWithFormdataBody added in v0.2.0

func (c *Client) CredentialMappingsCreateWithFormdataBody(ctx context.Context, body CredentialMappingsCreateFormdataRequestBody, reqEditors ...RequestEditorFn) (*http.Response, error)

func (*Client) CredentialMappingsDeletePreviewList added in v0.2.0

func (c *Client) CredentialMappingsDeletePreviewList(ctx context.Context, id int, params *CredentialMappingsDeletePreviewListParams, reqEditors ...RequestEditorFn) (*http.Response, error)

func (*Client) CredentialMappingsDestroy added in v0.2.0

func (c *Client) CredentialMappingsDestroy(ctx context.Context, id int, reqEditors ...RequestEditorFn) (*http.Response, error)

func (*Client) CredentialMappingsList added in v0.2.0

func (c *Client) CredentialMappingsList(ctx context.Context, params *CredentialMappingsListParams, reqEditors ...RequestEditorFn) (*http.Response, error)

func (*Client) CredentialMappingsPartialUpdate added in v0.2.0

func (c *Client) CredentialMappingsPartialUpdate(ctx context.Context, id int, body CredentialMappingsPartialUpdateJSONRequestBody, reqEditors ...RequestEditorFn) (*http.Response, error)

func (*Client) CredentialMappingsPartialUpdateWithBody added in v0.2.0

func (c *Client) CredentialMappingsPartialUpdateWithBody(ctx context.Context, id int, contentType string, body io.Reader, reqEditors ...RequestEditorFn) (*http.Response, error)

func (*Client) CredentialMappingsPartialUpdateWithFormdataBody added in v0.2.0

func (c *Client) CredentialMappingsPartialUpdateWithFormdataBody(ctx context.Context, id int, body CredentialMappingsPartialUpdateFormdataRequestBody, reqEditors ...RequestEditorFn) (*http.Response, error)

func (*Client) CredentialMappingsRetrieve added in v0.2.0

func (c *Client) CredentialMappingsRetrieve(ctx context.Context, id int, reqEditors ...RequestEditorFn) (*http.Response, error)

func (*Client) CredentialMappingsUpdate added in v0.2.0

func (c *Client) CredentialMappingsUpdate(ctx context.Context, id int, body CredentialMappingsUpdateJSONRequestBody, reqEditors ...RequestEditorFn) (*http.Response, error)

func (*Client) CredentialMappingsUpdateWithBody added in v0.2.0

func (c *Client) CredentialMappingsUpdateWithBody(ctx context.Context, id int, contentType string, body io.Reader, reqEditors ...RequestEditorFn) (*http.Response, error)

func (*Client) CredentialMappingsUpdateWithFormdataBody added in v0.2.0

func (c *Client) CredentialMappingsUpdateWithFormdataBody(ctx context.Context, id int, body CredentialMappingsUpdateFormdataRequestBody, reqEditors ...RequestEditorFn) (*http.Response, error)

func (*Client) CredentialsCreate added in v0.2.0

func (c *Client) CredentialsCreate(ctx context.Context, body CredentialsCreateJSONRequestBody, reqEditors ...RequestEditorFn) (*http.Response, error)

func (*Client) CredentialsCreateWithBody added in v0.2.0

func (c *Client) CredentialsCreateWithBody(ctx context.Context, contentType string, body io.Reader, reqEditors ...RequestEditorFn) (*http.Response, error)

func (*Client) CredentialsCreateWithFormdataBody added in v0.2.0

func (c *Client) CredentialsCreateWithFormdataBody(ctx context.Context, body CredentialsCreateFormdataRequestBody, reqEditors ...RequestEditorFn) (*http.Response, error)

func (*Client) CredentialsDeletePreviewList added in v0.2.0

func (c *Client) CredentialsDeletePreviewList(ctx context.Context, id int, params *CredentialsDeletePreviewListParams, reqEditors ...RequestEditorFn) (*http.Response, error)

func (*Client) CredentialsDestroy added in v0.2.0

func (c *Client) CredentialsDestroy(ctx context.Context, id int, reqEditors ...RequestEditorFn) (*http.Response, error)

func (*Client) CredentialsList added in v0.2.0

func (c *Client) CredentialsList(ctx context.Context, params *CredentialsListParams, reqEditors ...RequestEditorFn) (*http.Response, error)

func (*Client) CredentialsPartialUpdate added in v0.2.0

func (c *Client) CredentialsPartialUpdate(ctx context.Context, id int, body CredentialsPartialUpdateJSONRequestBody, reqEditors ...RequestEditorFn) (*http.Response, error)

func (*Client) CredentialsPartialUpdateWithBody added in v0.2.0

func (c *Client) CredentialsPartialUpdateWithBody(ctx context.Context, id int, contentType string, body io.Reader, reqEditors ...RequestEditorFn) (*http.Response, error)

func (*Client) CredentialsPartialUpdateWithFormdataBody added in v0.2.0

func (c *Client) CredentialsPartialUpdateWithFormdataBody(ctx context.Context, id int, body CredentialsPartialUpdateFormdataRequestBody, reqEditors ...RequestEditorFn) (*http.Response, error)

func (*Client) CredentialsRetrieve added in v0.2.0

func (c *Client) CredentialsRetrieve(ctx context.Context, id int, reqEditors ...RequestEditorFn) (*http.Response, error)

func (*Client) CredentialsUpdate added in v0.2.0

func (c *Client) CredentialsUpdate(ctx context.Context, id int, body CredentialsUpdateJSONRequestBody, reqEditors ...RequestEditorFn) (*http.Response, error)

func (*Client) CredentialsUpdateWithBody added in v0.2.0

func (c *Client) CredentialsUpdateWithBody(ctx context.Context, id int, contentType string, body io.Reader, reqEditors ...RequestEditorFn) (*http.Response, error)

func (*Client) CredentialsUpdateWithFormdataBody added in v0.2.0

func (c *Client) CredentialsUpdateWithFormdataBody(ctx context.Context, id int, body CredentialsUpdateFormdataRequestBody, reqEditors ...RequestEditorFn) (*http.Response, error)

func (*Client) DevelopmentEnvironmentsCreate

func (c *Client) DevelopmentEnvironmentsCreate(ctx context.Context, body DevelopmentEnvironmentsCreateJSONRequestBody, reqEditors ...RequestEditorFn) (*http.Response, error)

func (*Client) DevelopmentEnvironmentsCreateWithBody

func (c *Client) DevelopmentEnvironmentsCreateWithBody(ctx context.Context, contentType string, body io.Reader, reqEditors ...RequestEditorFn) (*http.Response, error)

func (*Client) DevelopmentEnvironmentsCreateWithFormdataBody added in v0.2.0

func (c *Client) DevelopmentEnvironmentsCreateWithFormdataBody(ctx context.Context, body DevelopmentEnvironmentsCreateFormdataRequestBody, reqEditors ...RequestEditorFn) (*http.Response, error)

func (*Client) DevelopmentEnvironmentsDeletePreviewList added in v0.2.0

func (c *Client) DevelopmentEnvironmentsDeletePreviewList(ctx context.Context, id int, params *DevelopmentEnvironmentsDeletePreviewListParams, reqEditors ...RequestEditorFn) (*http.Response, error)

func (*Client) DevelopmentEnvironmentsDestroy

func (c *Client) DevelopmentEnvironmentsDestroy(ctx context.Context, id int, reqEditors ...RequestEditorFn) (*http.Response, error)

func (*Client) DevelopmentEnvironmentsList

func (c *Client) DevelopmentEnvironmentsList(ctx context.Context, params *DevelopmentEnvironmentsListParams, reqEditors ...RequestEditorFn) (*http.Response, error)

func (*Client) DevelopmentEnvironmentsPartialUpdate

func (c *Client) DevelopmentEnvironmentsPartialUpdate(ctx context.Context, id int, body DevelopmentEnvironmentsPartialUpdateJSONRequestBody, reqEditors ...RequestEditorFn) (*http.Response, error)

func (*Client) DevelopmentEnvironmentsPartialUpdateWithBody

func (c *Client) DevelopmentEnvironmentsPartialUpdateWithBody(ctx context.Context, id int, contentType string, body io.Reader, reqEditors ...RequestEditorFn) (*http.Response, error)

func (*Client) DevelopmentEnvironmentsPartialUpdateWithFormdataBody added in v0.2.0

func (c *Client) DevelopmentEnvironmentsPartialUpdateWithFormdataBody(ctx context.Context, id int, body DevelopmentEnvironmentsPartialUpdateFormdataRequestBody, reqEditors ...RequestEditorFn) (*http.Response, error)

func (*Client) DevelopmentEnvironmentsRetrieve

func (c *Client) DevelopmentEnvironmentsRetrieve(ctx context.Context, id int, reqEditors ...RequestEditorFn) (*http.Response, error)

func (*Client) DevelopmentEnvironmentsUpdate

func (c *Client) DevelopmentEnvironmentsUpdate(ctx context.Context, id int, body DevelopmentEnvironmentsUpdateJSONRequestBody, reqEditors ...RequestEditorFn) (*http.Response, error)

func (*Client) DevelopmentEnvironmentsUpdateWithBody

func (c *Client) DevelopmentEnvironmentsUpdateWithBody(ctx context.Context, id int, contentType string, body io.Reader, reqEditors ...RequestEditorFn) (*http.Response, error)

func (*Client) DevelopmentEnvironmentsUpdateWithFormdataBody added in v0.2.0

func (c *Client) DevelopmentEnvironmentsUpdateWithFormdataBody(ctx context.Context, id int, body DevelopmentEnvironmentsUpdateFormdataRequestBody, reqEditors ...RequestEditorFn) (*http.Response, error)

func (*Client) DojoGroupMembersCreate

func (c *Client) DojoGroupMembersCreate(ctx context.Context, body DojoGroupMembersCreateJSONRequestBody, reqEditors ...RequestEditorFn) (*http.Response, error)

func (*Client) DojoGroupMembersCreateWithBody

func (c *Client) DojoGroupMembersCreateWithBody(ctx context.Context, contentType string, body io.Reader, reqEditors ...RequestEditorFn) (*http.Response, error)

func (*Client) DojoGroupMembersCreateWithFormdataBody added in v0.2.0

func (c *Client) DojoGroupMembersCreateWithFormdataBody(ctx context.Context, body DojoGroupMembersCreateFormdataRequestBody, reqEditors ...RequestEditorFn) (*http.Response, error)

func (*Client) DojoGroupMembersDeletePreviewList added in v0.2.0

func (c *Client) DojoGroupMembersDeletePreviewList(ctx context.Context, id int, params *DojoGroupMembersDeletePreviewListParams, reqEditors ...RequestEditorFn) (*http.Response, error)

func (*Client) DojoGroupMembersDestroy

func (c *Client) DojoGroupMembersDestroy(ctx context.Context, id int, reqEditors ...RequestEditorFn) (*http.Response, error)

func (*Client) DojoGroupMembersList

func (c *Client) DojoGroupMembersList(ctx context.Context, params *DojoGroupMembersListParams, reqEditors ...RequestEditorFn) (*http.Response, error)

func (*Client) DojoGroupMembersPartialUpdate

func (c *Client) DojoGroupMembersPartialUpdate(ctx context.Context, id int, body DojoGroupMembersPartialUpdateJSONRequestBody, reqEditors ...RequestEditorFn) (*http.Response, error)

func (*Client) DojoGroupMembersPartialUpdateWithBody

func (c *Client) DojoGroupMembersPartialUpdateWithBody(ctx context.Context, id int, contentType string, body io.Reader, reqEditors ...RequestEditorFn) (*http.Response, error)

func (*Client) DojoGroupMembersPartialUpdateWithFormdataBody added in v0.2.0

func (c *Client) DojoGroupMembersPartialUpdateWithFormdataBody(ctx context.Context, id int, body DojoGroupMembersPartialUpdateFormdataRequestBody, reqEditors ...RequestEditorFn) (*http.Response, error)

func (*Client) DojoGroupMembersRetrieve

func (c *Client) DojoGroupMembersRetrieve(ctx context.Context, id int, params *DojoGroupMembersRetrieveParams, reqEditors ...RequestEditorFn) (*http.Response, error)

func (*Client) DojoGroupMembersUpdate

func (c *Client) DojoGroupMembersUpdate(ctx context.Context, id int, body DojoGroupMembersUpdateJSONRequestBody, reqEditors ...RequestEditorFn) (*http.Response, error)

func (*Client) DojoGroupMembersUpdateWithBody

func (c *Client) DojoGroupMembersUpdateWithBody(ctx context.Context, id int, contentType string, body io.Reader, reqEditors ...RequestEditorFn) (*http.Response, error)

func (*Client) DojoGroupMembersUpdateWithFormdataBody added in v0.2.0

func (c *Client) DojoGroupMembersUpdateWithFormdataBody(ctx context.Context, id int, body DojoGroupMembersUpdateFormdataRequestBody, reqEditors ...RequestEditorFn) (*http.Response, error)

func (*Client) DojoGroupsCreate

func (c *Client) DojoGroupsCreate(ctx context.Context, body DojoGroupsCreateJSONRequestBody, reqEditors ...RequestEditorFn) (*http.Response, error)

func (*Client) DojoGroupsCreateWithBody

func (c *Client) DojoGroupsCreateWithBody(ctx context.Context, contentType string, body io.Reader, reqEditors ...RequestEditorFn) (*http.Response, error)

func (*Client) DojoGroupsCreateWithFormdataBody added in v0.2.0

func (c *Client) DojoGroupsCreateWithFormdataBody(ctx context.Context, body DojoGroupsCreateFormdataRequestBody, reqEditors ...RequestEditorFn) (*http.Response, error)

func (*Client) DojoGroupsDeletePreviewList added in v0.2.0

func (c *Client) DojoGroupsDeletePreviewList(ctx context.Context, id int, params *DojoGroupsDeletePreviewListParams, reqEditors ...RequestEditorFn) (*http.Response, error)

func (*Client) DojoGroupsDestroy

func (c *Client) DojoGroupsDestroy(ctx context.Context, id int, reqEditors ...RequestEditorFn) (*http.Response, error)

func (*Client) DojoGroupsList

func (c *Client) DojoGroupsList(ctx context.Context, params *DojoGroupsListParams, reqEditors ...RequestEditorFn) (*http.Response, error)

func (*Client) DojoGroupsPartialUpdate

func (c *Client) DojoGroupsPartialUpdate(ctx context.Context, id int, body DojoGroupsPartialUpdateJSONRequestBody, reqEditors ...RequestEditorFn) (*http.Response, error)

func (*Client) DojoGroupsPartialUpdateWithBody

func (c *Client) DojoGroupsPartialUpdateWithBody(ctx context.Context, id int, contentType string, body io.Reader, reqEditors ...RequestEditorFn) (*http.Response, error)

func (*Client) DojoGroupsPartialUpdateWithFormdataBody added in v0.2.0

func (c *Client) DojoGroupsPartialUpdateWithFormdataBody(ctx context.Context, id int, body DojoGroupsPartialUpdateFormdataRequestBody, reqEditors ...RequestEditorFn) (*http.Response, error)

func (*Client) DojoGroupsRetrieve

func (c *Client) DojoGroupsRetrieve(ctx context.Context, id int, params *DojoGroupsRetrieveParams, reqEditors ...RequestEditorFn) (*http.Response, error)

func (*Client) DojoGroupsUpdate

func (c *Client) DojoGroupsUpdate(ctx context.Context, id int, body DojoGroupsUpdateJSONRequestBody, reqEditors ...RequestEditorFn) (*http.Response, error)

func (*Client) DojoGroupsUpdateWithBody

func (c *Client) DojoGroupsUpdateWithBody(ctx context.Context, id int, contentType string, body io.Reader, reqEditors ...RequestEditorFn) (*http.Response, error)

func (*Client) DojoGroupsUpdateWithFormdataBody added in v0.2.0

func (c *Client) DojoGroupsUpdateWithFormdataBody(ctx context.Context, id int, body DojoGroupsUpdateFormdataRequestBody, reqEditors ...RequestEditorFn) (*http.Response, error)

func (*Client) EndpointMetaImportCreateWithBody

func (c *Client) EndpointMetaImportCreateWithBody(ctx context.Context, contentType string, body io.Reader, reqEditors ...RequestEditorFn) (*http.Response, error)

func (*Client) EndpointStatusCreate

func (c *Client) EndpointStatusCreate(ctx context.Context, body EndpointStatusCreateJSONRequestBody, reqEditors ...RequestEditorFn) (*http.Response, error)

func (*Client) EndpointStatusCreateWithBody

func (c *Client) EndpointStatusCreateWithBody(ctx context.Context, contentType string, body io.Reader, reqEditors ...RequestEditorFn) (*http.Response, error)

func (*Client) EndpointStatusCreateWithFormdataBody added in v0.2.0

func (c *Client) EndpointStatusCreateWithFormdataBody(ctx context.Context, body EndpointStatusCreateFormdataRequestBody, reqEditors ...RequestEditorFn) (*http.Response, error)

func (*Client) EndpointStatusDeletePreviewList added in v0.2.0

func (c *Client) EndpointStatusDeletePreviewList(ctx context.Context, id int, params *EndpointStatusDeletePreviewListParams, reqEditors ...RequestEditorFn) (*http.Response, error)

func (*Client) EndpointStatusDestroy

func (c *Client) EndpointStatusDestroy(ctx context.Context, id int, reqEditors ...RequestEditorFn) (*http.Response, error)

func (*Client) EndpointStatusList

func (c *Client) EndpointStatusList(ctx context.Context, params *EndpointStatusListParams, reqEditors ...RequestEditorFn) (*http.Response, error)

func (*Client) EndpointStatusPartialUpdate

func (c *Client) EndpointStatusPartialUpdate(ctx context.Context, id int, body EndpointStatusPartialUpdateJSONRequestBody, reqEditors ...RequestEditorFn) (*http.Response, error)

func (*Client) EndpointStatusPartialUpdateWithBody

func (c *Client) EndpointStatusPartialUpdateWithBody(ctx context.Context, id int, contentType string, body io.Reader, reqEditors ...RequestEditorFn) (*http.Response, error)

func (*Client) EndpointStatusPartialUpdateWithFormdataBody added in v0.2.0

func (c *Client) EndpointStatusPartialUpdateWithFormdataBody(ctx context.Context, id int, body EndpointStatusPartialUpdateFormdataRequestBody, reqEditors ...RequestEditorFn) (*http.Response, error)

func (*Client) EndpointStatusRetrieve

func (c *Client) EndpointStatusRetrieve(ctx context.Context, id int, reqEditors ...RequestEditorFn) (*http.Response, error)

func (*Client) EndpointStatusUpdate

func (c *Client) EndpointStatusUpdate(ctx context.Context, id int, body EndpointStatusUpdateJSONRequestBody, reqEditors ...RequestEditorFn) (*http.Response, error)

func (*Client) EndpointStatusUpdateWithBody

func (c *Client) EndpointStatusUpdateWithBody(ctx context.Context, id int, contentType string, body io.Reader, reqEditors ...RequestEditorFn) (*http.Response, error)

func (*Client) EndpointStatusUpdateWithFormdataBody added in v0.2.0

func (c *Client) EndpointStatusUpdateWithFormdataBody(ctx context.Context, id int, body EndpointStatusUpdateFormdataRequestBody, reqEditors ...RequestEditorFn) (*http.Response, error)

func (*Client) EndpointsCreate

func (c *Client) EndpointsCreate(ctx context.Context, body EndpointsCreateJSONRequestBody, reqEditors ...RequestEditorFn) (*http.Response, error)

func (*Client) EndpointsCreateWithBody

func (c *Client) EndpointsCreateWithBody(ctx context.Context, contentType string, body io.Reader, reqEditors ...RequestEditorFn) (*http.Response, error)

func (*Client) EndpointsCreateWithFormdataBody added in v0.2.0

func (c *Client) EndpointsCreateWithFormdataBody(ctx context.Context, body EndpointsCreateFormdataRequestBody, reqEditors ...RequestEditorFn) (*http.Response, error)

func (*Client) EndpointsDeletePreviewList added in v0.2.0

func (c *Client) EndpointsDeletePreviewList(ctx context.Context, id int, params *EndpointsDeletePreviewListParams, reqEditors ...RequestEditorFn) (*http.Response, error)

func (*Client) EndpointsDestroy

func (c *Client) EndpointsDestroy(ctx context.Context, id int, reqEditors ...RequestEditorFn) (*http.Response, error)

func (*Client) EndpointsGenerateReportCreate

func (c *Client) EndpointsGenerateReportCreate(ctx context.Context, id int, body EndpointsGenerateReportCreateJSONRequestBody, reqEditors ...RequestEditorFn) (*http.Response, error)

func (*Client) EndpointsGenerateReportCreateWithBody

func (c *Client) EndpointsGenerateReportCreateWithBody(ctx context.Context, id int, contentType string, body io.Reader, reqEditors ...RequestEditorFn) (*http.Response, error)

func (*Client) EndpointsGenerateReportCreateWithFormdataBody added in v0.2.0

func (c *Client) EndpointsGenerateReportCreateWithFormdataBody(ctx context.Context, id int, body EndpointsGenerateReportCreateFormdataRequestBody, reqEditors ...RequestEditorFn) (*http.Response, error)

func (*Client) EndpointsList

func (c *Client) EndpointsList(ctx context.Context, params *EndpointsListParams, reqEditors ...RequestEditorFn) (*http.Response, error)

func (*Client) EndpointsPartialUpdate

func (c *Client) EndpointsPartialUpdate(ctx context.Context, id int, body EndpointsPartialUpdateJSONRequestBody, reqEditors ...RequestEditorFn) (*http.Response, error)

func (*Client) EndpointsPartialUpdateWithBody

func (c *Client) EndpointsPartialUpdateWithBody(ctx context.Context, id int, contentType string, body io.Reader, reqEditors ...RequestEditorFn) (*http.Response, error)

func (*Client) EndpointsPartialUpdateWithFormdataBody added in v0.2.0

func (c *Client) EndpointsPartialUpdateWithFormdataBody(ctx context.Context, id int, body EndpointsPartialUpdateFormdataRequestBody, reqEditors ...RequestEditorFn) (*http.Response, error)

func (*Client) EndpointsRetrieve

func (c *Client) EndpointsRetrieve(ctx context.Context, id int, reqEditors ...RequestEditorFn) (*http.Response, error)

func (*Client) EndpointsUpdate

func (c *Client) EndpointsUpdate(ctx context.Context, id int, body EndpointsUpdateJSONRequestBody, reqEditors ...RequestEditorFn) (*http.Response, error)

func (*Client) EndpointsUpdateWithBody

func (c *Client) EndpointsUpdateWithBody(ctx context.Context, id int, contentType string, body io.Reader, reqEditors ...RequestEditorFn) (*http.Response, error)

func (*Client) EndpointsUpdateWithFormdataBody added in v0.2.0

func (c *Client) EndpointsUpdateWithFormdataBody(ctx context.Context, id int, body EndpointsUpdateFormdataRequestBody, reqEditors ...RequestEditorFn) (*http.Response, error)

func (*Client) EngagementPresetsCreate

func (c *Client) EngagementPresetsCreate(ctx context.Context, body EngagementPresetsCreateJSONRequestBody, reqEditors ...RequestEditorFn) (*http.Response, error)

func (*Client) EngagementPresetsCreateWithBody

func (c *Client) EngagementPresetsCreateWithBody(ctx context.Context, contentType string, body io.Reader, reqEditors ...RequestEditorFn) (*http.Response, error)

func (*Client) EngagementPresetsCreateWithFormdataBody added in v0.2.0

func (c *Client) EngagementPresetsCreateWithFormdataBody(ctx context.Context, body EngagementPresetsCreateFormdataRequestBody, reqEditors ...RequestEditorFn) (*http.Response, error)

func (*Client) EngagementPresetsDeletePreviewList added in v0.2.0

func (c *Client) EngagementPresetsDeletePreviewList(ctx context.Context, id int, params *EngagementPresetsDeletePreviewListParams, reqEditors ...RequestEditorFn) (*http.Response, error)

func (*Client) EngagementPresetsDestroy

func (c *Client) EngagementPresetsDestroy(ctx context.Context, id int, reqEditors ...RequestEditorFn) (*http.Response, error)

func (*Client) EngagementPresetsList

func (c *Client) EngagementPresetsList(ctx context.Context, params *EngagementPresetsListParams, reqEditors ...RequestEditorFn) (*http.Response, error)

func (*Client) EngagementPresetsPartialUpdate

func (c *Client) EngagementPresetsPartialUpdate(ctx context.Context, id int, body EngagementPresetsPartialUpdateJSONRequestBody, reqEditors ...RequestEditorFn) (*http.Response, error)

func (*Client) EngagementPresetsPartialUpdateWithBody

func (c *Client) EngagementPresetsPartialUpdateWithBody(ctx context.Context, id int, contentType string, body io.Reader, reqEditors ...RequestEditorFn) (*http.Response, error)

func (*Client) EngagementPresetsPartialUpdateWithFormdataBody added in v0.2.0

func (c *Client) EngagementPresetsPartialUpdateWithFormdataBody(ctx context.Context, id int, body EngagementPresetsPartialUpdateFormdataRequestBody, reqEditors ...RequestEditorFn) (*http.Response, error)

func (*Client) EngagementPresetsRetrieve

func (c *Client) EngagementPresetsRetrieve(ctx context.Context, id int, reqEditors ...RequestEditorFn) (*http.Response, error)

func (*Client) EngagementPresetsUpdate

func (c *Client) EngagementPresetsUpdate(ctx context.Context, id int, body EngagementPresetsUpdateJSONRequestBody, reqEditors ...RequestEditorFn) (*http.Response, error)

func (*Client) EngagementPresetsUpdateWithBody

func (c *Client) EngagementPresetsUpdateWithBody(ctx context.Context, id int, contentType string, body io.Reader, reqEditors ...RequestEditorFn) (*http.Response, error)

func (*Client) EngagementPresetsUpdateWithFormdataBody added in v0.2.0

func (c *Client) EngagementPresetsUpdateWithFormdataBody(ctx context.Context, id int, body EngagementPresetsUpdateFormdataRequestBody, reqEditors ...RequestEditorFn) (*http.Response, error)

func (*Client) EngagementsAcceptRisksCreate

func (c *Client) EngagementsAcceptRisksCreate(ctx context.Context, id int, body EngagementsAcceptRisksCreateJSONRequestBody, reqEditors ...RequestEditorFn) (*http.Response, error)

func (*Client) EngagementsAcceptRisksCreateWithBody

func (c *Client) EngagementsAcceptRisksCreateWithBody(ctx context.Context, id int, contentType string, body io.Reader, reqEditors ...RequestEditorFn) (*http.Response, error)

func (*Client) EngagementsAcceptRisksCreateWithFormdataBody added in v0.2.0

func (c *Client) EngagementsAcceptRisksCreateWithFormdataBody(ctx context.Context, id int, body EngagementsAcceptRisksCreateFormdataRequestBody, reqEditors ...RequestEditorFn) (*http.Response, error)

func (*Client) EngagementsCloseCreate

func (c *Client) EngagementsCloseCreate(ctx context.Context, id int, reqEditors ...RequestEditorFn) (*http.Response, error)

func (*Client) EngagementsCompleteChecklistCreate added in v0.2.0

func (c *Client) EngagementsCompleteChecklistCreate(ctx context.Context, id int, body EngagementsCompleteChecklistCreateJSONRequestBody, reqEditors ...RequestEditorFn) (*http.Response, error)

func (*Client) EngagementsCompleteChecklistCreateWithBody added in v0.2.0

func (c *Client) EngagementsCompleteChecklistCreateWithBody(ctx context.Context, id int, contentType string, body io.Reader, reqEditors ...RequestEditorFn) (*http.Response, error)

func (*Client) EngagementsCompleteChecklistCreateWithFormdataBody added in v0.2.0

func (c *Client) EngagementsCompleteChecklistCreateWithFormdataBody(ctx context.Context, id int, body EngagementsCompleteChecklistCreateFormdataRequestBody, reqEditors ...RequestEditorFn) (*http.Response, error)

func (*Client) EngagementsCompleteChecklistRetrieve added in v0.2.0

func (c *Client) EngagementsCompleteChecklistRetrieve(ctx context.Context, id int, reqEditors ...RequestEditorFn) (*http.Response, error)

func (*Client) EngagementsCreate

func (c *Client) EngagementsCreate(ctx context.Context, body EngagementsCreateJSONRequestBody, reqEditors ...RequestEditorFn) (*http.Response, error)

func (*Client) EngagementsCreateWithBody

func (c *Client) EngagementsCreateWithBody(ctx context.Context, contentType string, body io.Reader, reqEditors ...RequestEditorFn) (*http.Response, error)

func (*Client) EngagementsCreateWithFormdataBody added in v0.2.0

func (c *Client) EngagementsCreateWithFormdataBody(ctx context.Context, body EngagementsCreateFormdataRequestBody, reqEditors ...RequestEditorFn) (*http.Response, error)

func (*Client) EngagementsDeletePreviewList added in v0.2.0

func (c *Client) EngagementsDeletePreviewList(ctx context.Context, id int, params *EngagementsDeletePreviewListParams, reqEditors ...RequestEditorFn) (*http.Response, error)

func (*Client) EngagementsDestroy

func (c *Client) EngagementsDestroy(ctx context.Context, id int, reqEditors ...RequestEditorFn) (*http.Response, error)

func (*Client) EngagementsFilesCreateWithBody

func (c *Client) EngagementsFilesCreateWithBody(ctx context.Context, id int, contentType string, body io.Reader, reqEditors ...RequestEditorFn) (*http.Response, error)

func (*Client) EngagementsFilesDownloadRetrieve added in v0.2.0

func (c *Client) EngagementsFilesDownloadRetrieve(ctx context.Context, id int, fileId string, reqEditors ...RequestEditorFn) (*http.Response, error)

func (*Client) EngagementsFilesRetrieve

func (c *Client) EngagementsFilesRetrieve(ctx context.Context, id int, reqEditors ...RequestEditorFn) (*http.Response, error)

func (*Client) EngagementsGenerateReportCreate

func (c *Client) EngagementsGenerateReportCreate(ctx context.Context, id int, body EngagementsGenerateReportCreateJSONRequestBody, reqEditors ...RequestEditorFn) (*http.Response, error)

func (*Client) EngagementsGenerateReportCreateWithBody

func (c *Client) EngagementsGenerateReportCreateWithBody(ctx context.Context, id int, contentType string, body io.Reader, reqEditors ...RequestEditorFn) (*http.Response, error)

func (*Client) EngagementsGenerateReportCreateWithFormdataBody added in v0.2.0

func (c *Client) EngagementsGenerateReportCreateWithFormdataBody(ctx context.Context, id int, body EngagementsGenerateReportCreateFormdataRequestBody, reqEditors ...RequestEditorFn) (*http.Response, error)

func (*Client) EngagementsList

func (c *Client) EngagementsList(ctx context.Context, params *EngagementsListParams, reqEditors ...RequestEditorFn) (*http.Response, error)

func (*Client) EngagementsNotesCreate

func (c *Client) EngagementsNotesCreate(ctx context.Context, id int, body EngagementsNotesCreateJSONRequestBody, reqEditors ...RequestEditorFn) (*http.Response, error)

func (*Client) EngagementsNotesCreateWithBody

func (c *Client) EngagementsNotesCreateWithBody(ctx context.Context, id int, contentType string, body io.Reader, reqEditors ...RequestEditorFn) (*http.Response, error)

func (*Client) EngagementsNotesCreateWithFormdataBody added in v0.2.0

func (c *Client) EngagementsNotesCreateWithFormdataBody(ctx context.Context, id int, body EngagementsNotesCreateFormdataRequestBody, reqEditors ...RequestEditorFn) (*http.Response, error)

func (*Client) EngagementsNotesRetrieve

func (c *Client) EngagementsNotesRetrieve(ctx context.Context, id int, reqEditors ...RequestEditorFn) (*http.Response, error)

func (*Client) EngagementsPartialUpdate

func (c *Client) EngagementsPartialUpdate(ctx context.Context, id int, body EngagementsPartialUpdateJSONRequestBody, reqEditors ...RequestEditorFn) (*http.Response, error)

func (*Client) EngagementsPartialUpdateWithBody

func (c *Client) EngagementsPartialUpdateWithBody(ctx context.Context, id int, contentType string, body io.Reader, reqEditors ...RequestEditorFn) (*http.Response, error)

func (*Client) EngagementsPartialUpdateWithFormdataBody added in v0.2.0

func (c *Client) EngagementsPartialUpdateWithFormdataBody(ctx context.Context, id int, body EngagementsPartialUpdateFormdataRequestBody, reqEditors ...RequestEditorFn) (*http.Response, error)

func (*Client) EngagementsReopenCreate

func (c *Client) EngagementsReopenCreate(ctx context.Context, id int, reqEditors ...RequestEditorFn) (*http.Response, error)

func (*Client) EngagementsRetrieve

func (c *Client) EngagementsRetrieve(ctx context.Context, id int, reqEditors ...RequestEditorFn) (*http.Response, error)

func (*Client) EngagementsUpdate

func (c *Client) EngagementsUpdate(ctx context.Context, id int, body EngagementsUpdateJSONRequestBody, reqEditors ...RequestEditorFn) (*http.Response, error)

func (*Client) EngagementsUpdateWithBody

func (c *Client) EngagementsUpdateWithBody(ctx context.Context, id int, contentType string, body io.Reader, reqEditors ...RequestEditorFn) (*http.Response, error)

func (*Client) EngagementsUpdateWithFormdataBody added in v0.2.0

func (c *Client) EngagementsUpdateWithFormdataBody(ctx context.Context, id int, body EngagementsUpdateFormdataRequestBody, reqEditors ...RequestEditorFn) (*http.Response, error)

func (*Client) FindingTemplatesCreate

func (c *Client) FindingTemplatesCreate(ctx context.Context, body FindingTemplatesCreateJSONRequestBody, reqEditors ...RequestEditorFn) (*http.Response, error)

func (*Client) FindingTemplatesCreateWithBody

func (c *Client) FindingTemplatesCreateWithBody(ctx context.Context, contentType string, body io.Reader, reqEditors ...RequestEditorFn) (*http.Response, error)

func (*Client) FindingTemplatesCreateWithFormdataBody added in v0.2.0

func (c *Client) FindingTemplatesCreateWithFormdataBody(ctx context.Context, body FindingTemplatesCreateFormdataRequestBody, reqEditors ...RequestEditorFn) (*http.Response, error)

func (*Client) FindingTemplatesDeletePreviewList added in v0.2.0

func (c *Client) FindingTemplatesDeletePreviewList(ctx context.Context, id int, params *FindingTemplatesDeletePreviewListParams, reqEditors ...RequestEditorFn) (*http.Response, error)

func (*Client) FindingTemplatesDestroy

func (c *Client) FindingTemplatesDestroy(ctx context.Context, id int, reqEditors ...RequestEditorFn) (*http.Response, error)

func (*Client) FindingTemplatesList

func (c *Client) FindingTemplatesList(ctx context.Context, params *FindingTemplatesListParams, reqEditors ...RequestEditorFn) (*http.Response, error)

func (*Client) FindingTemplatesPartialUpdate

func (c *Client) FindingTemplatesPartialUpdate(ctx context.Context, id int, body FindingTemplatesPartialUpdateJSONRequestBody, reqEditors ...RequestEditorFn) (*http.Response, error)

func (*Client) FindingTemplatesPartialUpdateWithBody

func (c *Client) FindingTemplatesPartialUpdateWithBody(ctx context.Context, id int, contentType string, body io.Reader, reqEditors ...RequestEditorFn) (*http.Response, error)

func (*Client) FindingTemplatesPartialUpdateWithFormdataBody added in v0.2.0

func (c *Client) FindingTemplatesPartialUpdateWithFormdataBody(ctx context.Context, id int, body FindingTemplatesPartialUpdateFormdataRequestBody, reqEditors ...RequestEditorFn) (*http.Response, error)

func (*Client) FindingTemplatesRetrieve

func (c *Client) FindingTemplatesRetrieve(ctx context.Context, id int, reqEditors ...RequestEditorFn) (*http.Response, error)

func (*Client) FindingTemplatesUpdate

func (c *Client) FindingTemplatesUpdate(ctx context.Context, id int, body FindingTemplatesUpdateJSONRequestBody, reqEditors ...RequestEditorFn) (*http.Response, error)

func (*Client) FindingTemplatesUpdateWithBody

func (c *Client) FindingTemplatesUpdateWithBody(ctx context.Context, id int, contentType string, body io.Reader, reqEditors ...RequestEditorFn) (*http.Response, error)

func (*Client) FindingTemplatesUpdateWithFormdataBody added in v0.2.0

func (c *Client) FindingTemplatesUpdateWithFormdataBody(ctx context.Context, id int, body FindingTemplatesUpdateFormdataRequestBody, reqEditors ...RequestEditorFn) (*http.Response, error)

func (*Client) FindingsAcceptRisksCreate

func (c *Client) FindingsAcceptRisksCreate(ctx context.Context, params *FindingsAcceptRisksCreateParams, body FindingsAcceptRisksCreateJSONRequestBody, reqEditors ...RequestEditorFn) (*http.Response, error)

func (*Client) FindingsAcceptRisksCreateWithBody

func (c *Client) FindingsAcceptRisksCreateWithBody(ctx context.Context, params *FindingsAcceptRisksCreateParams, contentType string, body io.Reader, reqEditors ...RequestEditorFn) (*http.Response, error)

func (*Client) FindingsAcceptRisksCreateWithFormdataBody added in v0.2.0

func (c *Client) FindingsAcceptRisksCreateWithFormdataBody(ctx context.Context, params *FindingsAcceptRisksCreateParams, body FindingsAcceptRisksCreateFormdataRequestBody, reqEditors ...RequestEditorFn) (*http.Response, error)

func (*Client) FindingsCloseCreate added in v0.2.0

func (c *Client) FindingsCloseCreate(ctx context.Context, id int, body FindingsCloseCreateJSONRequestBody, reqEditors ...RequestEditorFn) (*http.Response, error)

func (*Client) FindingsCloseCreateWithBody added in v0.2.0

func (c *Client) FindingsCloseCreateWithBody(ctx context.Context, id int, contentType string, body io.Reader, reqEditors ...RequestEditorFn) (*http.Response, error)

func (*Client) FindingsCloseCreateWithFormdataBody added in v0.2.0

func (c *Client) FindingsCloseCreateWithFormdataBody(ctx context.Context, id int, body FindingsCloseCreateFormdataRequestBody, reqEditors ...RequestEditorFn) (*http.Response, error)

func (*Client) FindingsCreate

func (c *Client) FindingsCreate(ctx context.Context, body FindingsCreateJSONRequestBody, reqEditors ...RequestEditorFn) (*http.Response, error)

func (*Client) FindingsCreateWithBody

func (c *Client) FindingsCreateWithBody(ctx context.Context, contentType string, body io.Reader, reqEditors ...RequestEditorFn) (*http.Response, error)

func (*Client) FindingsCreateWithFormdataBody added in v0.2.0

func (c *Client) FindingsCreateWithFormdataBody(ctx context.Context, body FindingsCreateFormdataRequestBody, reqEditors ...RequestEditorFn) (*http.Response, error)

func (*Client) FindingsDeletePreviewList added in v0.2.0

func (c *Client) FindingsDeletePreviewList(ctx context.Context, id int, params *FindingsDeletePreviewListParams, reqEditors ...RequestEditorFn) (*http.Response, error)

func (*Client) FindingsDestroy

func (c *Client) FindingsDestroy(ctx context.Context, id int, reqEditors ...RequestEditorFn) (*http.Response, error)

func (*Client) FindingsDuplicateList

func (c *Client) FindingsDuplicateList(ctx context.Context, id int, reqEditors ...RequestEditorFn) (*http.Response, error)

func (*Client) FindingsDuplicateResetCreate

func (c *Client) FindingsDuplicateResetCreate(ctx context.Context, id int, reqEditors ...RequestEditorFn) (*http.Response, error)

func (*Client) FindingsFilesCreateWithBody

func (c *Client) FindingsFilesCreateWithBody(ctx context.Context, id int, contentType string, body io.Reader, reqEditors ...RequestEditorFn) (*http.Response, error)

func (*Client) FindingsFilesDownloadRetrieve added in v0.2.0

func (c *Client) FindingsFilesDownloadRetrieve(ctx context.Context, id int, fileId string, reqEditors ...RequestEditorFn) (*http.Response, error)

func (*Client) FindingsFilesRetrieve

func (c *Client) FindingsFilesRetrieve(ctx context.Context, id int, reqEditors ...RequestEditorFn) (*http.Response, error)

func (*Client) FindingsGenerateReportCreate

func (c *Client) FindingsGenerateReportCreate(ctx context.Context, body FindingsGenerateReportCreateJSONRequestBody, reqEditors ...RequestEditorFn) (*http.Response, error)

func (*Client) FindingsGenerateReportCreateWithBody

func (c *Client) FindingsGenerateReportCreateWithBody(ctx context.Context, contentType string, body io.Reader, reqEditors ...RequestEditorFn) (*http.Response, error)

func (*Client) FindingsGenerateReportCreateWithFormdataBody added in v0.2.0

func (c *Client) FindingsGenerateReportCreateWithFormdataBody(ctx context.Context, body FindingsGenerateReportCreateFormdataRequestBody, reqEditors ...RequestEditorFn) (*http.Response, error)

func (*Client) FindingsList

func (c *Client) FindingsList(ctx context.Context, params *FindingsListParams, reqEditors ...RequestEditorFn) (*http.Response, error)

func (*Client) FindingsMetadataCreate

func (c *Client) FindingsMetadataCreate(ctx context.Context, id int, body FindingsMetadataCreateJSONRequestBody, reqEditors ...RequestEditorFn) (*http.Response, error)

func (*Client) FindingsMetadataCreateWithBody

func (c *Client) FindingsMetadataCreateWithBody(ctx context.Context, id int, contentType string, body io.Reader, reqEditors ...RequestEditorFn) (*http.Response, error)

func (*Client) FindingsMetadataCreateWithFormdataBody added in v0.2.0

func (c *Client) FindingsMetadataCreateWithFormdataBody(ctx context.Context, id int, body FindingsMetadataCreateFormdataRequestBody, reqEditors ...RequestEditorFn) (*http.Response, error)

func (*Client) FindingsMetadataDestroy

func (c *Client) FindingsMetadataDestroy(ctx context.Context, id int, params *FindingsMetadataDestroyParams, reqEditors ...RequestEditorFn) (*http.Response, error)

func (*Client) FindingsMetadataList

func (c *Client) FindingsMetadataList(ctx context.Context, id int, reqEditors ...RequestEditorFn) (*http.Response, error)

func (*Client) FindingsMetadataUpdate

func (c *Client) FindingsMetadataUpdate(ctx context.Context, id int, body FindingsMetadataUpdateJSONRequestBody, reqEditors ...RequestEditorFn) (*http.Response, error)

func (*Client) FindingsMetadataUpdateWithBody

func (c *Client) FindingsMetadataUpdateWithBody(ctx context.Context, id int, contentType string, body io.Reader, reqEditors ...RequestEditorFn) (*http.Response, error)

func (*Client) FindingsMetadataUpdateWithFormdataBody added in v0.2.0

func (c *Client) FindingsMetadataUpdateWithFormdataBody(ctx context.Context, id int, body FindingsMetadataUpdateFormdataRequestBody, reqEditors ...RequestEditorFn) (*http.Response, error)

func (*Client) FindingsNotesCreate

func (c *Client) FindingsNotesCreate(ctx context.Context, id int, body FindingsNotesCreateJSONRequestBody, reqEditors ...RequestEditorFn) (*http.Response, error)

func (*Client) FindingsNotesCreateWithBody

func (c *Client) FindingsNotesCreateWithBody(ctx context.Context, id int, contentType string, body io.Reader, reqEditors ...RequestEditorFn) (*http.Response, error)

func (*Client) FindingsNotesCreateWithFormdataBody added in v0.2.0

func (c *Client) FindingsNotesCreateWithFormdataBody(ctx context.Context, id int, body FindingsNotesCreateFormdataRequestBody, reqEditors ...RequestEditorFn) (*http.Response, error)

func (*Client) FindingsNotesRetrieve

func (c *Client) FindingsNotesRetrieve(ctx context.Context, id int, reqEditors ...RequestEditorFn) (*http.Response, error)

func (*Client) FindingsOriginalCreate

func (c *Client) FindingsOriginalCreate(ctx context.Context, id int, newFid int, reqEditors ...RequestEditorFn) (*http.Response, error)

func (*Client) FindingsPartialUpdate

func (c *Client) FindingsPartialUpdate(ctx context.Context, id int, body FindingsPartialUpdateJSONRequestBody, reqEditors ...RequestEditorFn) (*http.Response, error)

func (*Client) FindingsPartialUpdateWithBody

func (c *Client) FindingsPartialUpdateWithBody(ctx context.Context, id int, contentType string, body io.Reader, reqEditors ...RequestEditorFn) (*http.Response, error)

func (*Client) FindingsPartialUpdateWithFormdataBody added in v0.2.0

func (c *Client) FindingsPartialUpdateWithFormdataBody(ctx context.Context, id int, body FindingsPartialUpdateFormdataRequestBody, reqEditors ...RequestEditorFn) (*http.Response, error)

func (*Client) FindingsRemoveNotePartialUpdate

func (c *Client) FindingsRemoveNotePartialUpdate(ctx context.Context, id int, body FindingsRemoveNotePartialUpdateJSONRequestBody, reqEditors ...RequestEditorFn) (*http.Response, error)

func (*Client) FindingsRemoveNotePartialUpdateWithBody

func (c *Client) FindingsRemoveNotePartialUpdateWithBody(ctx context.Context, id int, contentType string, body io.Reader, reqEditors ...RequestEditorFn) (*http.Response, error)

func (*Client) FindingsRemoveNotePartialUpdateWithFormdataBody added in v0.2.0

func (c *Client) FindingsRemoveNotePartialUpdateWithFormdataBody(ctx context.Context, id int, body FindingsRemoveNotePartialUpdateFormdataRequestBody, reqEditors ...RequestEditorFn) (*http.Response, error)

func (*Client) FindingsRemoveTagsPartialUpdate

func (c *Client) FindingsRemoveTagsPartialUpdate(ctx context.Context, id int, body FindingsRemoveTagsPartialUpdateJSONRequestBody, reqEditors ...RequestEditorFn) (*http.Response, error)

func (*Client) FindingsRemoveTagsPartialUpdateWithBody

func (c *Client) FindingsRemoveTagsPartialUpdateWithBody(ctx context.Context, id int, contentType string, body io.Reader, reqEditors ...RequestEditorFn) (*http.Response, error)

func (*Client) FindingsRemoveTagsPartialUpdateWithFormdataBody added in v0.2.0

func (c *Client) FindingsRemoveTagsPartialUpdateWithFormdataBody(ctx context.Context, id int, body FindingsRemoveTagsPartialUpdateFormdataRequestBody, reqEditors ...RequestEditorFn) (*http.Response, error)

func (*Client) FindingsRemoveTagsUpdate

func (c *Client) FindingsRemoveTagsUpdate(ctx context.Context, id int, body FindingsRemoveTagsUpdateJSONRequestBody, reqEditors ...RequestEditorFn) (*http.Response, error)

func (*Client) FindingsRemoveTagsUpdateWithBody

func (c *Client) FindingsRemoveTagsUpdateWithBody(ctx context.Context, id int, contentType string, body io.Reader, reqEditors ...RequestEditorFn) (*http.Response, error)

func (*Client) FindingsRemoveTagsUpdateWithFormdataBody added in v0.2.0

func (c *Client) FindingsRemoveTagsUpdateWithFormdataBody(ctx context.Context, id int, body FindingsRemoveTagsUpdateFormdataRequestBody, reqEditors ...RequestEditorFn) (*http.Response, error)

func (*Client) FindingsRequestResponseCreate

func (c *Client) FindingsRequestResponseCreate(ctx context.Context, id int, body FindingsRequestResponseCreateJSONRequestBody, reqEditors ...RequestEditorFn) (*http.Response, error)

func (*Client) FindingsRequestResponseCreateWithBody

func (c *Client) FindingsRequestResponseCreateWithBody(ctx context.Context, id int, contentType string, body io.Reader, reqEditors ...RequestEditorFn) (*http.Response, error)

func (*Client) FindingsRequestResponseCreateWithFormdataBody added in v0.2.0

func (c *Client) FindingsRequestResponseCreateWithFormdataBody(ctx context.Context, id int, body FindingsRequestResponseCreateFormdataRequestBody, reqEditors ...RequestEditorFn) (*http.Response, error)

func (*Client) FindingsRequestResponseRetrieve

func (c *Client) FindingsRequestResponseRetrieve(ctx context.Context, id int, reqEditors ...RequestEditorFn) (*http.Response, error)

func (*Client) FindingsRetrieve

func (c *Client) FindingsRetrieve(ctx context.Context, id int, params *FindingsRetrieveParams, reqEditors ...RequestEditorFn) (*http.Response, error)

func (*Client) FindingsTagsCreate

func (c *Client) FindingsTagsCreate(ctx context.Context, id int, body FindingsTagsCreateJSONRequestBody, reqEditors ...RequestEditorFn) (*http.Response, error)

func (*Client) FindingsTagsCreateWithBody

func (c *Client) FindingsTagsCreateWithBody(ctx context.Context, id int, contentType string, body io.Reader, reqEditors ...RequestEditorFn) (*http.Response, error)

func (*Client) FindingsTagsCreateWithFormdataBody added in v0.2.0

func (c *Client) FindingsTagsCreateWithFormdataBody(ctx context.Context, id int, body FindingsTagsCreateFormdataRequestBody, reqEditors ...RequestEditorFn) (*http.Response, error)

func (*Client) FindingsTagsRetrieve

func (c *Client) FindingsTagsRetrieve(ctx context.Context, id int, reqEditors ...RequestEditorFn) (*http.Response, error)

func (*Client) FindingsUpdate

func (c *Client) FindingsUpdate(ctx context.Context, id int, body FindingsUpdateJSONRequestBody, reqEditors ...RequestEditorFn) (*http.Response, error)

func (*Client) FindingsUpdateWithBody

func (c *Client) FindingsUpdateWithBody(ctx context.Context, id int, contentType string, body io.Reader, reqEditors ...RequestEditorFn) (*http.Response, error)

func (*Client) FindingsUpdateWithFormdataBody added in v0.2.0

func (c *Client) FindingsUpdateWithFormdataBody(ctx context.Context, id int, body FindingsUpdateFormdataRequestBody, reqEditors ...RequestEditorFn) (*http.Response, error)

func (*Client) GlobalRolesCreate

func (c *Client) GlobalRolesCreate(ctx context.Context, body GlobalRolesCreateJSONRequestBody, reqEditors ...RequestEditorFn) (*http.Response, error)

func (*Client) GlobalRolesCreateWithBody

func (c *Client) GlobalRolesCreateWithBody(ctx context.Context, contentType string, body io.Reader, reqEditors ...RequestEditorFn) (*http.Response, error)

func (*Client) GlobalRolesCreateWithFormdataBody added in v0.2.0

func (c *Client) GlobalRolesCreateWithFormdataBody(ctx context.Context, body GlobalRolesCreateFormdataRequestBody, reqEditors ...RequestEditorFn) (*http.Response, error)

func (*Client) GlobalRolesDeletePreviewList added in v0.2.0

func (c *Client) GlobalRolesDeletePreviewList(ctx context.Context, id int, params *GlobalRolesDeletePreviewListParams, reqEditors ...RequestEditorFn) (*http.Response, error)

func (*Client) GlobalRolesDestroy

func (c *Client) GlobalRolesDestroy(ctx context.Context, id int, reqEditors ...RequestEditorFn) (*http.Response, error)

func (*Client) GlobalRolesList

func (c *Client) GlobalRolesList(ctx context.Context, params *GlobalRolesListParams, reqEditors ...RequestEditorFn) (*http.Response, error)

func (*Client) GlobalRolesPartialUpdate

func (c *Client) GlobalRolesPartialUpdate(ctx context.Context, id int, body GlobalRolesPartialUpdateJSONRequestBody, reqEditors ...RequestEditorFn) (*http.Response, error)

func (*Client) GlobalRolesPartialUpdateWithBody

func (c *Client) GlobalRolesPartialUpdateWithBody(ctx context.Context, id int, contentType string, body io.Reader, reqEditors ...RequestEditorFn) (*http.Response, error)

func (*Client) GlobalRolesPartialUpdateWithFormdataBody added in v0.2.0

func (c *Client) GlobalRolesPartialUpdateWithFormdataBody(ctx context.Context, id int, body GlobalRolesPartialUpdateFormdataRequestBody, reqEditors ...RequestEditorFn) (*http.Response, error)

func (*Client) GlobalRolesRetrieve

func (c *Client) GlobalRolesRetrieve(ctx context.Context, id int, reqEditors ...RequestEditorFn) (*http.Response, error)

func (*Client) GlobalRolesUpdate

func (c *Client) GlobalRolesUpdate(ctx context.Context, id int, body GlobalRolesUpdateJSONRequestBody, reqEditors ...RequestEditorFn) (*http.Response, error)

func (*Client) GlobalRolesUpdateWithBody

func (c *Client) GlobalRolesUpdateWithBody(ctx context.Context, id int, contentType string, body io.Reader, reqEditors ...RequestEditorFn) (*http.Response, error)

func (*Client) GlobalRolesUpdateWithFormdataBody added in v0.2.0

func (c *Client) GlobalRolesUpdateWithFormdataBody(ctx context.Context, id int, body GlobalRolesUpdateFormdataRequestBody, reqEditors ...RequestEditorFn) (*http.Response, error)

func (*Client) ImportLanguagesCreateWithBody

func (c *Client) ImportLanguagesCreateWithBody(ctx context.Context, contentType string, body io.Reader, reqEditors ...RequestEditorFn) (*http.Response, error)

func (*Client) ImportScanCreateWithBody

func (c *Client) ImportScanCreateWithBody(ctx context.Context, contentType string, body io.Reader, reqEditors ...RequestEditorFn) (*http.Response, error)

func (*Client) JiraConfigurationsCreate

func (c *Client) JiraConfigurationsCreate(ctx context.Context, body JiraConfigurationsCreateJSONRequestBody, reqEditors ...RequestEditorFn) (*http.Response, error)

func (*Client) JiraConfigurationsCreateWithBody

func (c *Client) JiraConfigurationsCreateWithBody(ctx context.Context, contentType string, body io.Reader, reqEditors ...RequestEditorFn) (*http.Response, error)

func (*Client) JiraConfigurationsCreateWithFormdataBody added in v0.2.0

func (c *Client) JiraConfigurationsCreateWithFormdataBody(ctx context.Context, body JiraConfigurationsCreateFormdataRequestBody, reqEditors ...RequestEditorFn) (*http.Response, error)

func (*Client) JiraConfigurationsDeletePreviewList added in v0.2.0

func (c *Client) JiraConfigurationsDeletePreviewList(ctx context.Context, id int, params *JiraConfigurationsDeletePreviewListParams, reqEditors ...RequestEditorFn) (*http.Response, error)

func (*Client) JiraConfigurationsDestroy

func (c *Client) JiraConfigurationsDestroy(ctx context.Context, id int, reqEditors ...RequestEditorFn) (*http.Response, error)

func (*Client) JiraConfigurationsList

func (c *Client) JiraConfigurationsList(ctx context.Context, params *JiraConfigurationsListParams, reqEditors ...RequestEditorFn) (*http.Response, error)

func (*Client) JiraConfigurationsPartialUpdate

func (c *Client) JiraConfigurationsPartialUpdate(ctx context.Context, id int, body JiraConfigurationsPartialUpdateJSONRequestBody, reqEditors ...RequestEditorFn) (*http.Response, error)

func (*Client) JiraConfigurationsPartialUpdateWithBody

func (c *Client) JiraConfigurationsPartialUpdateWithBody(ctx context.Context, id int, contentType string, body io.Reader, reqEditors ...RequestEditorFn) (*http.Response, error)

func (*Client) JiraConfigurationsPartialUpdateWithFormdataBody added in v0.2.0

func (c *Client) JiraConfigurationsPartialUpdateWithFormdataBody(ctx context.Context, id int, body JiraConfigurationsPartialUpdateFormdataRequestBody, reqEditors ...RequestEditorFn) (*http.Response, error)

func (*Client) JiraConfigurationsRetrieve

func (c *Client) JiraConfigurationsRetrieve(ctx context.Context, id int, reqEditors ...RequestEditorFn) (*http.Response, error)

func (*Client) JiraConfigurationsUpdate

func (c *Client) JiraConfigurationsUpdate(ctx context.Context, id int, body JiraConfigurationsUpdateJSONRequestBody, reqEditors ...RequestEditorFn) (*http.Response, error)

func (*Client) JiraConfigurationsUpdateWithBody

func (c *Client) JiraConfigurationsUpdateWithBody(ctx context.Context, id int, contentType string, body io.Reader, reqEditors ...RequestEditorFn) (*http.Response, error)

func (*Client) JiraConfigurationsUpdateWithFormdataBody added in v0.2.0

func (c *Client) JiraConfigurationsUpdateWithFormdataBody(ctx context.Context, id int, body JiraConfigurationsUpdateFormdataRequestBody, reqEditors ...RequestEditorFn) (*http.Response, error)

func (*Client) JiraFindingMappingsCreate

func (c *Client) JiraFindingMappingsCreate(ctx context.Context, body JiraFindingMappingsCreateJSONRequestBody, reqEditors ...RequestEditorFn) (*http.Response, error)

func (*Client) JiraFindingMappingsCreateWithBody

func (c *Client) JiraFindingMappingsCreateWithBody(ctx context.Context, contentType string, body io.Reader, reqEditors ...RequestEditorFn) (*http.Response, error)

func (*Client) JiraFindingMappingsCreateWithFormdataBody added in v0.2.0

func (c *Client) JiraFindingMappingsCreateWithFormdataBody(ctx context.Context, body JiraFindingMappingsCreateFormdataRequestBody, reqEditors ...RequestEditorFn) (*http.Response, error)

func (*Client) JiraFindingMappingsDeletePreviewList added in v0.2.0

func (c *Client) JiraFindingMappingsDeletePreviewList(ctx context.Context, id int, params *JiraFindingMappingsDeletePreviewListParams, reqEditors ...RequestEditorFn) (*http.Response, error)

func (*Client) JiraFindingMappingsDestroy

func (c *Client) JiraFindingMappingsDestroy(ctx context.Context, id int, reqEditors ...RequestEditorFn) (*http.Response, error)

func (*Client) JiraFindingMappingsList

func (c *Client) JiraFindingMappingsList(ctx context.Context, params *JiraFindingMappingsListParams, reqEditors ...RequestEditorFn) (*http.Response, error)

func (*Client) JiraFindingMappingsPartialUpdate

func (c *Client) JiraFindingMappingsPartialUpdate(ctx context.Context, id int, body JiraFindingMappingsPartialUpdateJSONRequestBody, reqEditors ...RequestEditorFn) (*http.Response, error)

func (*Client) JiraFindingMappingsPartialUpdateWithBody

func (c *Client) JiraFindingMappingsPartialUpdateWithBody(ctx context.Context, id int, contentType string, body io.Reader, reqEditors ...RequestEditorFn) (*http.Response, error)

func (*Client) JiraFindingMappingsPartialUpdateWithFormdataBody added in v0.2.0

func (c *Client) JiraFindingMappingsPartialUpdateWithFormdataBody(ctx context.Context, id int, body JiraFindingMappingsPartialUpdateFormdataRequestBody, reqEditors ...RequestEditorFn) (*http.Response, error)

func (*Client) JiraFindingMappingsRetrieve

func (c *Client) JiraFindingMappingsRetrieve(ctx context.Context, id int, reqEditors ...RequestEditorFn) (*http.Response, error)

func (*Client) JiraFindingMappingsUpdate

func (c *Client) JiraFindingMappingsUpdate(ctx context.Context, id int, body JiraFindingMappingsUpdateJSONRequestBody, reqEditors ...RequestEditorFn) (*http.Response, error)

func (*Client) JiraFindingMappingsUpdateWithBody

func (c *Client) JiraFindingMappingsUpdateWithBody(ctx context.Context, id int, contentType string, body io.Reader, reqEditors ...RequestEditorFn) (*http.Response, error)

func (*Client) JiraFindingMappingsUpdateWithFormdataBody added in v0.2.0

func (c *Client) JiraFindingMappingsUpdateWithFormdataBody(ctx context.Context, id int, body JiraFindingMappingsUpdateFormdataRequestBody, reqEditors ...RequestEditorFn) (*http.Response, error)

func (*Client) JiraInstancesCreate

func (c *Client) JiraInstancesCreate(ctx context.Context, body JiraInstancesCreateJSONRequestBody, reqEditors ...RequestEditorFn) (*http.Response, error)

func (*Client) JiraInstancesCreateWithBody

func (c *Client) JiraInstancesCreateWithBody(ctx context.Context, contentType string, body io.Reader, reqEditors ...RequestEditorFn) (*http.Response, error)

func (*Client) JiraInstancesCreateWithFormdataBody added in v0.2.0

func (c *Client) JiraInstancesCreateWithFormdataBody(ctx context.Context, body JiraInstancesCreateFormdataRequestBody, reqEditors ...RequestEditorFn) (*http.Response, error)

func (*Client) JiraInstancesDeletePreviewList added in v0.2.0

func (c *Client) JiraInstancesDeletePreviewList(ctx context.Context, id int, params *JiraInstancesDeletePreviewListParams, reqEditors ...RequestEditorFn) (*http.Response, error)

func (*Client) JiraInstancesDestroy

func (c *Client) JiraInstancesDestroy(ctx context.Context, id int, reqEditors ...RequestEditorFn) (*http.Response, error)

func (*Client) JiraInstancesList

func (c *Client) JiraInstancesList(ctx context.Context, params *JiraInstancesListParams, reqEditors ...RequestEditorFn) (*http.Response, error)

func (*Client) JiraInstancesPartialUpdate

func (c *Client) JiraInstancesPartialUpdate(ctx context.Context, id int, body JiraInstancesPartialUpdateJSONRequestBody, reqEditors ...RequestEditorFn) (*http.Response, error)

func (*Client) JiraInstancesPartialUpdateWithBody

func (c *Client) JiraInstancesPartialUpdateWithBody(ctx context.Context, id int, contentType string, body io.Reader, reqEditors ...RequestEditorFn) (*http.Response, error)

func (*Client) JiraInstancesPartialUpdateWithFormdataBody added in v0.2.0

func (c *Client) JiraInstancesPartialUpdateWithFormdataBody(ctx context.Context, id int, body JiraInstancesPartialUpdateFormdataRequestBody, reqEditors ...RequestEditorFn) (*http.Response, error)

func (*Client) JiraInstancesRetrieve

func (c *Client) JiraInstancesRetrieve(ctx context.Context, id int, reqEditors ...RequestEditorFn) (*http.Response, error)

func (*Client) JiraInstancesUpdate

func (c *Client) JiraInstancesUpdate(ctx context.Context, id int, body JiraInstancesUpdateJSONRequestBody, reqEditors ...RequestEditorFn) (*http.Response, error)

func (*Client) JiraInstancesUpdateWithBody

func (c *Client) JiraInstancesUpdateWithBody(ctx context.Context, id int, contentType string, body io.Reader, reqEditors ...RequestEditorFn) (*http.Response, error)

func (*Client) JiraInstancesUpdateWithFormdataBody added in v0.2.0

func (c *Client) JiraInstancesUpdateWithFormdataBody(ctx context.Context, id int, body JiraInstancesUpdateFormdataRequestBody, reqEditors ...RequestEditorFn) (*http.Response, error)

func (*Client) JiraProductConfigurationsCreate

func (c *Client) JiraProductConfigurationsCreate(ctx context.Context, body JiraProductConfigurationsCreateJSONRequestBody, reqEditors ...RequestEditorFn) (*http.Response, error)

func (*Client) JiraProductConfigurationsCreateWithBody

func (c *Client) JiraProductConfigurationsCreateWithBody(ctx context.Context, contentType string, body io.Reader, reqEditors ...RequestEditorFn) (*http.Response, error)

func (*Client) JiraProductConfigurationsCreateWithFormdataBody added in v0.2.0

func (c *Client) JiraProductConfigurationsCreateWithFormdataBody(ctx context.Context, body JiraProductConfigurationsCreateFormdataRequestBody, reqEditors ...RequestEditorFn) (*http.Response, error)

func (*Client) JiraProductConfigurationsDeletePreviewList added in v0.2.0

func (c *Client) JiraProductConfigurationsDeletePreviewList(ctx context.Context, id int, params *JiraProductConfigurationsDeletePreviewListParams, reqEditors ...RequestEditorFn) (*http.Response, error)

func (*Client) JiraProductConfigurationsDestroy

func (c *Client) JiraProductConfigurationsDestroy(ctx context.Context, id int, reqEditors ...RequestEditorFn) (*http.Response, error)

func (*Client) JiraProductConfigurationsList

func (c *Client) JiraProductConfigurationsList(ctx context.Context, params *JiraProductConfigurationsListParams, reqEditors ...RequestEditorFn) (*http.Response, error)

func (*Client) JiraProductConfigurationsPartialUpdate

func (c *Client) JiraProductConfigurationsPartialUpdate(ctx context.Context, id int, body JiraProductConfigurationsPartialUpdateJSONRequestBody, reqEditors ...RequestEditorFn) (*http.Response, error)

func (*Client) JiraProductConfigurationsPartialUpdateWithBody

func (c *Client) JiraProductConfigurationsPartialUpdateWithBody(ctx context.Context, id int, contentType string, body io.Reader, reqEditors ...RequestEditorFn) (*http.Response, error)

func (*Client) JiraProductConfigurationsPartialUpdateWithFormdataBody added in v0.2.0

func (c *Client) JiraProductConfigurationsPartialUpdateWithFormdataBody(ctx context.Context, id int, body JiraProductConfigurationsPartialUpdateFormdataRequestBody, reqEditors ...RequestEditorFn) (*http.Response, error)

func (*Client) JiraProductConfigurationsRetrieve

func (c *Client) JiraProductConfigurationsRetrieve(ctx context.Context, id int, reqEditors ...RequestEditorFn) (*http.Response, error)

func (*Client) JiraProductConfigurationsUpdate

func (c *Client) JiraProductConfigurationsUpdate(ctx context.Context, id int, body JiraProductConfigurationsUpdateJSONRequestBody, reqEditors ...RequestEditorFn) (*http.Response, error)

func (*Client) JiraProductConfigurationsUpdateWithBody

func (c *Client) JiraProductConfigurationsUpdateWithBody(ctx context.Context, id int, contentType string, body io.Reader, reqEditors ...RequestEditorFn) (*http.Response, error)

func (*Client) JiraProductConfigurationsUpdateWithFormdataBody added in v0.2.0

func (c *Client) JiraProductConfigurationsUpdateWithFormdataBody(ctx context.Context, id int, body JiraProductConfigurationsUpdateFormdataRequestBody, reqEditors ...RequestEditorFn) (*http.Response, error)

func (*Client) JiraProjectsCreate

func (c *Client) JiraProjectsCreate(ctx context.Context, body JiraProjectsCreateJSONRequestBody, reqEditors ...RequestEditorFn) (*http.Response, error)

func (*Client) JiraProjectsCreateWithBody

func (c *Client) JiraProjectsCreateWithBody(ctx context.Context, contentType string, body io.Reader, reqEditors ...RequestEditorFn) (*http.Response, error)

func (*Client) JiraProjectsCreateWithFormdataBody added in v0.2.0

func (c *Client) JiraProjectsCreateWithFormdataBody(ctx context.Context, body JiraProjectsCreateFormdataRequestBody, reqEditors ...RequestEditorFn) (*http.Response, error)

func (*Client) JiraProjectsDeletePreviewList added in v0.2.0

func (c *Client) JiraProjectsDeletePreviewList(ctx context.Context, id int, params *JiraProjectsDeletePreviewListParams, reqEditors ...RequestEditorFn) (*http.Response, error)

func (*Client) JiraProjectsDestroy

func (c *Client) JiraProjectsDestroy(ctx context.Context, id int, reqEditors ...RequestEditorFn) (*http.Response, error)

func (*Client) JiraProjectsList

func (c *Client) JiraProjectsList(ctx context.Context, params *JiraProjectsListParams, reqEditors ...RequestEditorFn) (*http.Response, error)

func (*Client) JiraProjectsPartialUpdate

func (c *Client) JiraProjectsPartialUpdate(ctx context.Context, id int, body JiraProjectsPartialUpdateJSONRequestBody, reqEditors ...RequestEditorFn) (*http.Response, error)

func (*Client) JiraProjectsPartialUpdateWithBody

func (c *Client) JiraProjectsPartialUpdateWithBody(ctx context.Context, id int, contentType string, body io.Reader, reqEditors ...RequestEditorFn) (*http.Response, error)

func (*Client) JiraProjectsPartialUpdateWithFormdataBody added in v0.2.0

func (c *Client) JiraProjectsPartialUpdateWithFormdataBody(ctx context.Context, id int, body JiraProjectsPartialUpdateFormdataRequestBody, reqEditors ...RequestEditorFn) (*http.Response, error)

func (*Client) JiraProjectsRetrieve

func (c *Client) JiraProjectsRetrieve(ctx context.Context, id int, reqEditors ...RequestEditorFn) (*http.Response, error)

func (*Client) JiraProjectsUpdate

func (c *Client) JiraProjectsUpdate(ctx context.Context, id int, body JiraProjectsUpdateJSONRequestBody, reqEditors ...RequestEditorFn) (*http.Response, error)

func (*Client) JiraProjectsUpdateWithBody

func (c *Client) JiraProjectsUpdateWithBody(ctx context.Context, id int, contentType string, body io.Reader, reqEditors ...RequestEditorFn) (*http.Response, error)

func (*Client) JiraProjectsUpdateWithFormdataBody added in v0.2.0

func (c *Client) JiraProjectsUpdateWithFormdataBody(ctx context.Context, id int, body JiraProjectsUpdateFormdataRequestBody, reqEditors ...RequestEditorFn) (*http.Response, error)

func (*Client) LanguageTypesCreate

func (c *Client) LanguageTypesCreate(ctx context.Context, body LanguageTypesCreateJSONRequestBody, reqEditors ...RequestEditorFn) (*http.Response, error)

func (*Client) LanguageTypesCreateWithBody

func (c *Client) LanguageTypesCreateWithBody(ctx context.Context, contentType string, body io.Reader, reqEditors ...RequestEditorFn) (*http.Response, error)

func (*Client) LanguageTypesCreateWithFormdataBody added in v0.2.0

func (c *Client) LanguageTypesCreateWithFormdataBody(ctx context.Context, body LanguageTypesCreateFormdataRequestBody, reqEditors ...RequestEditorFn) (*http.Response, error)

func (*Client) LanguageTypesDeletePreviewList added in v0.2.0

func (c *Client) LanguageTypesDeletePreviewList(ctx context.Context, id int, params *LanguageTypesDeletePreviewListParams, reqEditors ...RequestEditorFn) (*http.Response, error)

func (*Client) LanguageTypesDestroy

func (c *Client) LanguageTypesDestroy(ctx context.Context, id int, reqEditors ...RequestEditorFn) (*http.Response, error)

func (*Client) LanguageTypesList

func (c *Client) LanguageTypesList(ctx context.Context, params *LanguageTypesListParams, reqEditors ...RequestEditorFn) (*http.Response, error)

func (*Client) LanguageTypesPartialUpdate

func (c *Client) LanguageTypesPartialUpdate(ctx context.Context, id int, body LanguageTypesPartialUpdateJSONRequestBody, reqEditors ...RequestEditorFn) (*http.Response, error)

func (*Client) LanguageTypesPartialUpdateWithBody

func (c *Client) LanguageTypesPartialUpdateWithBody(ctx context.Context, id int, contentType string, body io.Reader, reqEditors ...RequestEditorFn) (*http.Response, error)

func (*Client) LanguageTypesPartialUpdateWithFormdataBody added in v0.2.0

func (c *Client) LanguageTypesPartialUpdateWithFormdataBody(ctx context.Context, id int, body LanguageTypesPartialUpdateFormdataRequestBody, reqEditors ...RequestEditorFn) (*http.Response, error)

func (*Client) LanguageTypesRetrieve

func (c *Client) LanguageTypesRetrieve(ctx context.Context, id int, reqEditors ...RequestEditorFn) (*http.Response, error)

func (*Client) LanguageTypesUpdate

func (c *Client) LanguageTypesUpdate(ctx context.Context, id int, body LanguageTypesUpdateJSONRequestBody, reqEditors ...RequestEditorFn) (*http.Response, error)

func (*Client) LanguageTypesUpdateWithBody

func (c *Client) LanguageTypesUpdateWithBody(ctx context.Context, id int, contentType string, body io.Reader, reqEditors ...RequestEditorFn) (*http.Response, error)

func (*Client) LanguageTypesUpdateWithFormdataBody added in v0.2.0

func (c *Client) LanguageTypesUpdateWithFormdataBody(ctx context.Context, id int, body LanguageTypesUpdateFormdataRequestBody, reqEditors ...RequestEditorFn) (*http.Response, error)

func (*Client) LanguagesCreate

func (c *Client) LanguagesCreate(ctx context.Context, body LanguagesCreateJSONRequestBody, reqEditors ...RequestEditorFn) (*http.Response, error)

func (*Client) LanguagesCreateWithBody

func (c *Client) LanguagesCreateWithBody(ctx context.Context, contentType string, body io.Reader, reqEditors ...RequestEditorFn) (*http.Response, error)

func (*Client) LanguagesCreateWithFormdataBody added in v0.2.0

func (c *Client) LanguagesCreateWithFormdataBody(ctx context.Context, body LanguagesCreateFormdataRequestBody, reqEditors ...RequestEditorFn) (*http.Response, error)

func (*Client) LanguagesDeletePreviewList added in v0.2.0

func (c *Client) LanguagesDeletePreviewList(ctx context.Context, id int, params *LanguagesDeletePreviewListParams, reqEditors ...RequestEditorFn) (*http.Response, error)

func (*Client) LanguagesDestroy

func (c *Client) LanguagesDestroy(ctx context.Context, id int, reqEditors ...RequestEditorFn) (*http.Response, error)

func (*Client) LanguagesList

func (c *Client) LanguagesList(ctx context.Context, params *LanguagesListParams, reqEditors ...RequestEditorFn) (*http.Response, error)

func (*Client) LanguagesPartialUpdate

func (c *Client) LanguagesPartialUpdate(ctx context.Context, id int, body LanguagesPartialUpdateJSONRequestBody, reqEditors ...RequestEditorFn) (*http.Response, error)

func (*Client) LanguagesPartialUpdateWithBody

func (c *Client) LanguagesPartialUpdateWithBody(ctx context.Context, id int, contentType string, body io.Reader, reqEditors ...RequestEditorFn) (*http.Response, error)

func (*Client) LanguagesPartialUpdateWithFormdataBody added in v0.2.0

func (c *Client) LanguagesPartialUpdateWithFormdataBody(ctx context.Context, id int, body LanguagesPartialUpdateFormdataRequestBody, reqEditors ...RequestEditorFn) (*http.Response, error)

func (*Client) LanguagesRetrieve

func (c *Client) LanguagesRetrieve(ctx context.Context, id int, params *LanguagesRetrieveParams, reqEditors ...RequestEditorFn) (*http.Response, error)

func (*Client) LanguagesUpdate

func (c *Client) LanguagesUpdate(ctx context.Context, id int, body LanguagesUpdateJSONRequestBody, reqEditors ...RequestEditorFn) (*http.Response, error)

func (*Client) LanguagesUpdateWithBody

func (c *Client) LanguagesUpdateWithBody(ctx context.Context, id int, contentType string, body io.Reader, reqEditors ...RequestEditorFn) (*http.Response, error)

func (*Client) LanguagesUpdateWithFormdataBody added in v0.2.0

func (c *Client) LanguagesUpdateWithFormdataBody(ctx context.Context, id int, body LanguagesUpdateFormdataRequestBody, reqEditors ...RequestEditorFn) (*http.Response, error)

func (*Client) MetadataCreate

func (c *Client) MetadataCreate(ctx context.Context, body MetadataCreateJSONRequestBody, reqEditors ...RequestEditorFn) (*http.Response, error)

func (*Client) MetadataCreateWithBody

func (c *Client) MetadataCreateWithBody(ctx context.Context, contentType string, body io.Reader, reqEditors ...RequestEditorFn) (*http.Response, error)

func (*Client) MetadataCreateWithFormdataBody added in v0.2.0

func (c *Client) MetadataCreateWithFormdataBody(ctx context.Context, body MetadataCreateFormdataRequestBody, reqEditors ...RequestEditorFn) (*http.Response, error)

func (*Client) MetadataDeletePreviewList added in v0.2.0

func (c *Client) MetadataDeletePreviewList(ctx context.Context, id int, params *MetadataDeletePreviewListParams, reqEditors ...RequestEditorFn) (*http.Response, error)

func (*Client) MetadataDestroy

func (c *Client) MetadataDestroy(ctx context.Context, id int, reqEditors ...RequestEditorFn) (*http.Response, error)

func (*Client) MetadataList

func (c *Client) MetadataList(ctx context.Context, params *MetadataListParams, reqEditors ...RequestEditorFn) (*http.Response, error)

func (*Client) MetadataPartialUpdate

func (c *Client) MetadataPartialUpdate(ctx context.Context, id int, body MetadataPartialUpdateJSONRequestBody, reqEditors ...RequestEditorFn) (*http.Response, error)

func (*Client) MetadataPartialUpdateWithBody

func (c *Client) MetadataPartialUpdateWithBody(ctx context.Context, id int, contentType string, body io.Reader, reqEditors ...RequestEditorFn) (*http.Response, error)

func (*Client) MetadataPartialUpdateWithFormdataBody added in v0.2.0

func (c *Client) MetadataPartialUpdateWithFormdataBody(ctx context.Context, id int, body MetadataPartialUpdateFormdataRequestBody, reqEditors ...RequestEditorFn) (*http.Response, error)

func (*Client) MetadataRetrieve

func (c *Client) MetadataRetrieve(ctx context.Context, id int, params *MetadataRetrieveParams, reqEditors ...RequestEditorFn) (*http.Response, error)

func (*Client) MetadataUpdate

func (c *Client) MetadataUpdate(ctx context.Context, id int, body MetadataUpdateJSONRequestBody, reqEditors ...RequestEditorFn) (*http.Response, error)

func (*Client) MetadataUpdateWithBody

func (c *Client) MetadataUpdateWithBody(ctx context.Context, id int, contentType string, body io.Reader, reqEditors ...RequestEditorFn) (*http.Response, error)

func (*Client) MetadataUpdateWithFormdataBody added in v0.2.0

func (c *Client) MetadataUpdateWithFormdataBody(ctx context.Context, id int, body MetadataUpdateFormdataRequestBody, reqEditors ...RequestEditorFn) (*http.Response, error)

func (*Client) NetworkLocationsCreate

func (c *Client) NetworkLocationsCreate(ctx context.Context, body NetworkLocationsCreateJSONRequestBody, reqEditors ...RequestEditorFn) (*http.Response, error)

func (*Client) NetworkLocationsCreateWithBody

func (c *Client) NetworkLocationsCreateWithBody(ctx context.Context, contentType string, body io.Reader, reqEditors ...RequestEditorFn) (*http.Response, error)

func (*Client) NetworkLocationsCreateWithFormdataBody added in v0.2.0

func (c *Client) NetworkLocationsCreateWithFormdataBody(ctx context.Context, body NetworkLocationsCreateFormdataRequestBody, reqEditors ...RequestEditorFn) (*http.Response, error)

func (*Client) NetworkLocationsDeletePreviewList added in v0.2.0

func (c *Client) NetworkLocationsDeletePreviewList(ctx context.Context, id int, params *NetworkLocationsDeletePreviewListParams, reqEditors ...RequestEditorFn) (*http.Response, error)

func (*Client) NetworkLocationsDestroy

func (c *Client) NetworkLocationsDestroy(ctx context.Context, id int, reqEditors ...RequestEditorFn) (*http.Response, error)

func (*Client) NetworkLocationsList

func (c *Client) NetworkLocationsList(ctx context.Context, params *NetworkLocationsListParams, reqEditors ...RequestEditorFn) (*http.Response, error)

func (*Client) NetworkLocationsPartialUpdate

func (c *Client) NetworkLocationsPartialUpdate(ctx context.Context, id int, body NetworkLocationsPartialUpdateJSONRequestBody, reqEditors ...RequestEditorFn) (*http.Response, error)

func (*Client) NetworkLocationsPartialUpdateWithBody

func (c *Client) NetworkLocationsPartialUpdateWithBody(ctx context.Context, id int, contentType string, body io.Reader, reqEditors ...RequestEditorFn) (*http.Response, error)

func (*Client) NetworkLocationsPartialUpdateWithFormdataBody added in v0.2.0

func (c *Client) NetworkLocationsPartialUpdateWithFormdataBody(ctx context.Context, id int, body NetworkLocationsPartialUpdateFormdataRequestBody, reqEditors ...RequestEditorFn) (*http.Response, error)

func (*Client) NetworkLocationsRetrieve

func (c *Client) NetworkLocationsRetrieve(ctx context.Context, id int, reqEditors ...RequestEditorFn) (*http.Response, error)

func (*Client) NetworkLocationsUpdate

func (c *Client) NetworkLocationsUpdate(ctx context.Context, id int, body NetworkLocationsUpdateJSONRequestBody, reqEditors ...RequestEditorFn) (*http.Response, error)

func (*Client) NetworkLocationsUpdateWithBody

func (c *Client) NetworkLocationsUpdateWithBody(ctx context.Context, id int, contentType string, body io.Reader, reqEditors ...RequestEditorFn) (*http.Response, error)

func (*Client) NetworkLocationsUpdateWithFormdataBody added in v0.2.0

func (c *Client) NetworkLocationsUpdateWithFormdataBody(ctx context.Context, id int, body NetworkLocationsUpdateFormdataRequestBody, reqEditors ...RequestEditorFn) (*http.Response, error)

func (*Client) NoteTypeCreate

func (c *Client) NoteTypeCreate(ctx context.Context, body NoteTypeCreateJSONRequestBody, reqEditors ...RequestEditorFn) (*http.Response, error)

func (*Client) NoteTypeCreateWithBody

func (c *Client) NoteTypeCreateWithBody(ctx context.Context, contentType string, body io.Reader, reqEditors ...RequestEditorFn) (*http.Response, error)

func (*Client) NoteTypeCreateWithFormdataBody added in v0.2.0

func (c *Client) NoteTypeCreateWithFormdataBody(ctx context.Context, body NoteTypeCreateFormdataRequestBody, reqEditors ...RequestEditorFn) (*http.Response, error)

func (*Client) NoteTypeDeletePreviewList added in v0.2.0

func (c *Client) NoteTypeDeletePreviewList(ctx context.Context, id int, params *NoteTypeDeletePreviewListParams, reqEditors ...RequestEditorFn) (*http.Response, error)

func (*Client) NoteTypeDestroy

func (c *Client) NoteTypeDestroy(ctx context.Context, id int, reqEditors ...RequestEditorFn) (*http.Response, error)

func (*Client) NoteTypeList

func (c *Client) NoteTypeList(ctx context.Context, params *NoteTypeListParams, reqEditors ...RequestEditorFn) (*http.Response, error)

func (*Client) NoteTypePartialUpdate

func (c *Client) NoteTypePartialUpdate(ctx context.Context, id int, body NoteTypePartialUpdateJSONRequestBody, reqEditors ...RequestEditorFn) (*http.Response, error)

func (*Client) NoteTypePartialUpdateWithBody

func (c *Client) NoteTypePartialUpdateWithBody(ctx context.Context, id int, contentType string, body io.Reader, reqEditors ...RequestEditorFn) (*http.Response, error)

func (*Client) NoteTypePartialUpdateWithFormdataBody added in v0.2.0

func (c *Client) NoteTypePartialUpdateWithFormdataBody(ctx context.Context, id int, body NoteTypePartialUpdateFormdataRequestBody, reqEditors ...RequestEditorFn) (*http.Response, error)

func (*Client) NoteTypeRetrieve

func (c *Client) NoteTypeRetrieve(ctx context.Context, id int, reqEditors ...RequestEditorFn) (*http.Response, error)

func (*Client) NoteTypeUpdate

func (c *Client) NoteTypeUpdate(ctx context.Context, id int, body NoteTypeUpdateJSONRequestBody, reqEditors ...RequestEditorFn) (*http.Response, error)

func (*Client) NoteTypeUpdateWithBody

func (c *Client) NoteTypeUpdateWithBody(ctx context.Context, id int, contentType string, body io.Reader, reqEditors ...RequestEditorFn) (*http.Response, error)

func (*Client) NoteTypeUpdateWithFormdataBody added in v0.2.0

func (c *Client) NoteTypeUpdateWithFormdataBody(ctx context.Context, id int, body NoteTypeUpdateFormdataRequestBody, reqEditors ...RequestEditorFn) (*http.Response, error)

func (*Client) NotesList

func (c *Client) NotesList(ctx context.Context, params *NotesListParams, reqEditors ...RequestEditorFn) (*http.Response, error)

func (*Client) NotesPartialUpdate

func (c *Client) NotesPartialUpdate(ctx context.Context, id int, body NotesPartialUpdateJSONRequestBody, reqEditors ...RequestEditorFn) (*http.Response, error)

func (*Client) NotesPartialUpdateWithBody

func (c *Client) NotesPartialUpdateWithBody(ctx context.Context, id int, contentType string, body io.Reader, reqEditors ...RequestEditorFn) (*http.Response, error)

func (*Client) NotesPartialUpdateWithFormdataBody added in v0.2.0

func (c *Client) NotesPartialUpdateWithFormdataBody(ctx context.Context, id int, body NotesPartialUpdateFormdataRequestBody, reqEditors ...RequestEditorFn) (*http.Response, error)

func (*Client) NotesRetrieve

func (c *Client) NotesRetrieve(ctx context.Context, id int, reqEditors ...RequestEditorFn) (*http.Response, error)

func (*Client) NotesUpdate

func (c *Client) NotesUpdate(ctx context.Context, id int, body NotesUpdateJSONRequestBody, reqEditors ...RequestEditorFn) (*http.Response, error)

func (*Client) NotesUpdateWithBody

func (c *Client) NotesUpdateWithBody(ctx context.Context, id int, contentType string, body io.Reader, reqEditors ...RequestEditorFn) (*http.Response, error)

func (*Client) NotesUpdateWithFormdataBody added in v0.2.0

func (c *Client) NotesUpdateWithFormdataBody(ctx context.Context, id int, body NotesUpdateFormdataRequestBody, reqEditors ...RequestEditorFn) (*http.Response, error)

func (*Client) NotificationsCreate

func (c *Client) NotificationsCreate(ctx context.Context, body NotificationsCreateJSONRequestBody, reqEditors ...RequestEditorFn) (*http.Response, error)

func (*Client) NotificationsCreateWithBody

func (c *Client) NotificationsCreateWithBody(ctx context.Context, contentType string, body io.Reader, reqEditors ...RequestEditorFn) (*http.Response, error)

func (*Client) NotificationsCreateWithFormdataBody added in v0.2.0

func (c *Client) NotificationsCreateWithFormdataBody(ctx context.Context, body NotificationsCreateFormdataRequestBody, reqEditors ...RequestEditorFn) (*http.Response, error)

func (*Client) NotificationsDeletePreviewList added in v0.2.0

func (c *Client) NotificationsDeletePreviewList(ctx context.Context, id int, params *NotificationsDeletePreviewListParams, reqEditors ...RequestEditorFn) (*http.Response, error)

func (*Client) NotificationsDestroy

func (c *Client) NotificationsDestroy(ctx context.Context, id int, reqEditors ...RequestEditorFn) (*http.Response, error)

func (*Client) NotificationsList

func (c *Client) NotificationsList(ctx context.Context, params *NotificationsListParams, reqEditors ...RequestEditorFn) (*http.Response, error)

func (*Client) NotificationsPartialUpdate

func (c *Client) NotificationsPartialUpdate(ctx context.Context, id int, body NotificationsPartialUpdateJSONRequestBody, reqEditors ...RequestEditorFn) (*http.Response, error)

func (*Client) NotificationsPartialUpdateWithBody

func (c *Client) NotificationsPartialUpdateWithBody(ctx context.Context, id int, contentType string, body io.Reader, reqEditors ...RequestEditorFn) (*http.Response, error)

func (*Client) NotificationsPartialUpdateWithFormdataBody added in v0.2.0

func (c *Client) NotificationsPartialUpdateWithFormdataBody(ctx context.Context, id int, body NotificationsPartialUpdateFormdataRequestBody, reqEditors ...RequestEditorFn) (*http.Response, error)

func (*Client) NotificationsRetrieve

func (c *Client) NotificationsRetrieve(ctx context.Context, id int, params *NotificationsRetrieveParams, reqEditors ...RequestEditorFn) (*http.Response, error)

func (*Client) NotificationsUpdate

func (c *Client) NotificationsUpdate(ctx context.Context, id int, body NotificationsUpdateJSONRequestBody, reqEditors ...RequestEditorFn) (*http.Response, error)

func (*Client) NotificationsUpdateWithBody

func (c *Client) NotificationsUpdateWithBody(ctx context.Context, id int, contentType string, body io.Reader, reqEditors ...RequestEditorFn) (*http.Response, error)

func (*Client) NotificationsUpdateWithFormdataBody added in v0.2.0

func (c *Client) NotificationsUpdateWithFormdataBody(ctx context.Context, id int, body NotificationsUpdateFormdataRequestBody, reqEditors ...RequestEditorFn) (*http.Response, error)

func (*Client) Oa3SchemaRetrieve

func (c *Client) Oa3SchemaRetrieve(ctx context.Context, params *Oa3SchemaRetrieveParams, reqEditors ...RequestEditorFn) (*http.Response, error)

func (*Client) ProductApiScanConfigurationsCreate

func (c *Client) ProductApiScanConfigurationsCreate(ctx context.Context, body ProductApiScanConfigurationsCreateJSONRequestBody, reqEditors ...RequestEditorFn) (*http.Response, error)

func (*Client) ProductApiScanConfigurationsCreateWithBody

func (c *Client) ProductApiScanConfigurationsCreateWithBody(ctx context.Context, contentType string, body io.Reader, reqEditors ...RequestEditorFn) (*http.Response, error)

func (*Client) ProductApiScanConfigurationsCreateWithFormdataBody added in v0.2.0

func (c *Client) ProductApiScanConfigurationsCreateWithFormdataBody(ctx context.Context, body ProductApiScanConfigurationsCreateFormdataRequestBody, reqEditors ...RequestEditorFn) (*http.Response, error)

func (*Client) ProductApiScanConfigurationsDeletePreviewList added in v0.2.0

func (c *Client) ProductApiScanConfigurationsDeletePreviewList(ctx context.Context, id int, params *ProductApiScanConfigurationsDeletePreviewListParams, reqEditors ...RequestEditorFn) (*http.Response, error)

func (*Client) ProductApiScanConfigurationsDestroy

func (c *Client) ProductApiScanConfigurationsDestroy(ctx context.Context, id int, reqEditors ...RequestEditorFn) (*http.Response, error)

func (*Client) ProductApiScanConfigurationsList

func (c *Client) ProductApiScanConfigurationsList(ctx context.Context, params *ProductApiScanConfigurationsListParams, reqEditors ...RequestEditorFn) (*http.Response, error)

func (*Client) ProductApiScanConfigurationsPartialUpdate

func (c *Client) ProductApiScanConfigurationsPartialUpdate(ctx context.Context, id int, body ProductApiScanConfigurationsPartialUpdateJSONRequestBody, reqEditors ...RequestEditorFn) (*http.Response, error)

func (*Client) ProductApiScanConfigurationsPartialUpdateWithBody

func (c *Client) ProductApiScanConfigurationsPartialUpdateWithBody(ctx context.Context, id int, contentType string, body io.Reader, reqEditors ...RequestEditorFn) (*http.Response, error)

func (*Client) ProductApiScanConfigurationsPartialUpdateWithFormdataBody added in v0.2.0

func (c *Client) ProductApiScanConfigurationsPartialUpdateWithFormdataBody(ctx context.Context, id int, body ProductApiScanConfigurationsPartialUpdateFormdataRequestBody, reqEditors ...RequestEditorFn) (*http.Response, error)

func (*Client) ProductApiScanConfigurationsRetrieve

func (c *Client) ProductApiScanConfigurationsRetrieve(ctx context.Context, id int, reqEditors ...RequestEditorFn) (*http.Response, error)

func (*Client) ProductApiScanConfigurationsUpdate

func (c *Client) ProductApiScanConfigurationsUpdate(ctx context.Context, id int, body ProductApiScanConfigurationsUpdateJSONRequestBody, reqEditors ...RequestEditorFn) (*http.Response, error)

func (*Client) ProductApiScanConfigurationsUpdateWithBody

func (c *Client) ProductApiScanConfigurationsUpdateWithBody(ctx context.Context, id int, contentType string, body io.Reader, reqEditors ...RequestEditorFn) (*http.Response, error)

func (*Client) ProductApiScanConfigurationsUpdateWithFormdataBody added in v0.2.0

func (c *Client) ProductApiScanConfigurationsUpdateWithFormdataBody(ctx context.Context, id int, body ProductApiScanConfigurationsUpdateFormdataRequestBody, reqEditors ...RequestEditorFn) (*http.Response, error)

func (*Client) ProductGroupsCreate

func (c *Client) ProductGroupsCreate(ctx context.Context, body ProductGroupsCreateJSONRequestBody, reqEditors ...RequestEditorFn) (*http.Response, error)

func (*Client) ProductGroupsCreateWithBody

func (c *Client) ProductGroupsCreateWithBody(ctx context.Context, contentType string, body io.Reader, reqEditors ...RequestEditorFn) (*http.Response, error)

func (*Client) ProductGroupsCreateWithFormdataBody added in v0.2.0

func (c *Client) ProductGroupsCreateWithFormdataBody(ctx context.Context, body ProductGroupsCreateFormdataRequestBody, reqEditors ...RequestEditorFn) (*http.Response, error)

func (*Client) ProductGroupsDeletePreviewList added in v0.2.0

func (c *Client) ProductGroupsDeletePreviewList(ctx context.Context, id int, params *ProductGroupsDeletePreviewListParams, reqEditors ...RequestEditorFn) (*http.Response, error)

func (*Client) ProductGroupsDestroy

func (c *Client) ProductGroupsDestroy(ctx context.Context, id int, reqEditors ...RequestEditorFn) (*http.Response, error)

func (*Client) ProductGroupsList

func (c *Client) ProductGroupsList(ctx context.Context, params *ProductGroupsListParams, reqEditors ...RequestEditorFn) (*http.Response, error)

func (*Client) ProductGroupsPartialUpdate

func (c *Client) ProductGroupsPartialUpdate(ctx context.Context, id int, reqEditors ...RequestEditorFn) (*http.Response, error)

func (*Client) ProductGroupsRetrieve

func (c *Client) ProductGroupsRetrieve(ctx context.Context, id int, params *ProductGroupsRetrieveParams, reqEditors ...RequestEditorFn) (*http.Response, error)

func (*Client) ProductGroupsUpdate

func (c *Client) ProductGroupsUpdate(ctx context.Context, id int, body ProductGroupsUpdateJSONRequestBody, reqEditors ...RequestEditorFn) (*http.Response, error)

func (*Client) ProductGroupsUpdateWithBody

func (c *Client) ProductGroupsUpdateWithBody(ctx context.Context, id int, contentType string, body io.Reader, reqEditors ...RequestEditorFn) (*http.Response, error)

func (*Client) ProductGroupsUpdateWithFormdataBody added in v0.2.0

func (c *Client) ProductGroupsUpdateWithFormdataBody(ctx context.Context, id int, body ProductGroupsUpdateFormdataRequestBody, reqEditors ...RequestEditorFn) (*http.Response, error)

func (*Client) ProductMembersCreate

func (c *Client) ProductMembersCreate(ctx context.Context, body ProductMembersCreateJSONRequestBody, reqEditors ...RequestEditorFn) (*http.Response, error)

func (*Client) ProductMembersCreateWithBody

func (c *Client) ProductMembersCreateWithBody(ctx context.Context, contentType string, body io.Reader, reqEditors ...RequestEditorFn) (*http.Response, error)

func (*Client) ProductMembersCreateWithFormdataBody added in v0.2.0

func (c *Client) ProductMembersCreateWithFormdataBody(ctx context.Context, body ProductMembersCreateFormdataRequestBody, reqEditors ...RequestEditorFn) (*http.Response, error)

func (*Client) ProductMembersDeletePreviewList added in v0.2.0

func (c *Client) ProductMembersDeletePreviewList(ctx context.Context, id int, params *ProductMembersDeletePreviewListParams, reqEditors ...RequestEditorFn) (*http.Response, error)

func (*Client) ProductMembersDestroy

func (c *Client) ProductMembersDestroy(ctx context.Context, id int, reqEditors ...RequestEditorFn) (*http.Response, error)

func (*Client) ProductMembersList

func (c *Client) ProductMembersList(ctx context.Context, params *ProductMembersListParams, reqEditors ...RequestEditorFn) (*http.Response, error)

func (*Client) ProductMembersPartialUpdate

func (c *Client) ProductMembersPartialUpdate(ctx context.Context, id int, reqEditors ...RequestEditorFn) (*http.Response, error)

func (*Client) ProductMembersRetrieve

func (c *Client) ProductMembersRetrieve(ctx context.Context, id int, params *ProductMembersRetrieveParams, reqEditors ...RequestEditorFn) (*http.Response, error)

func (*Client) ProductMembersUpdate

func (c *Client) ProductMembersUpdate(ctx context.Context, id int, body ProductMembersUpdateJSONRequestBody, reqEditors ...RequestEditorFn) (*http.Response, error)

func (*Client) ProductMembersUpdateWithBody

func (c *Client) ProductMembersUpdateWithBody(ctx context.Context, id int, contentType string, body io.Reader, reqEditors ...RequestEditorFn) (*http.Response, error)

func (*Client) ProductMembersUpdateWithFormdataBody added in v0.2.0

func (c *Client) ProductMembersUpdateWithFormdataBody(ctx context.Context, id int, body ProductMembersUpdateFormdataRequestBody, reqEditors ...RequestEditorFn) (*http.Response, error)

func (*Client) ProductTypeGroupsCreate

func (c *Client) ProductTypeGroupsCreate(ctx context.Context, body ProductTypeGroupsCreateJSONRequestBody, reqEditors ...RequestEditorFn) (*http.Response, error)

func (*Client) ProductTypeGroupsCreateWithBody

func (c *Client) ProductTypeGroupsCreateWithBody(ctx context.Context, contentType string, body io.Reader, reqEditors ...RequestEditorFn) (*http.Response, error)

func (*Client) ProductTypeGroupsCreateWithFormdataBody added in v0.2.0

func (c *Client) ProductTypeGroupsCreateWithFormdataBody(ctx context.Context, body ProductTypeGroupsCreateFormdataRequestBody, reqEditors ...RequestEditorFn) (*http.Response, error)

func (*Client) ProductTypeGroupsDeletePreviewList added in v0.2.0

func (c *Client) ProductTypeGroupsDeletePreviewList(ctx context.Context, id int, params *ProductTypeGroupsDeletePreviewListParams, reqEditors ...RequestEditorFn) (*http.Response, error)

func (*Client) ProductTypeGroupsDestroy

func (c *Client) ProductTypeGroupsDestroy(ctx context.Context, id int, reqEditors ...RequestEditorFn) (*http.Response, error)

func (*Client) ProductTypeGroupsList

func (c *Client) ProductTypeGroupsList(ctx context.Context, params *ProductTypeGroupsListParams, reqEditors ...RequestEditorFn) (*http.Response, error)

func (*Client) ProductTypeGroupsPartialUpdate

func (c *Client) ProductTypeGroupsPartialUpdate(ctx context.Context, id int, reqEditors ...RequestEditorFn) (*http.Response, error)

func (*Client) ProductTypeGroupsRetrieve

func (c *Client) ProductTypeGroupsRetrieve(ctx context.Context, id int, params *ProductTypeGroupsRetrieveParams, reqEditors ...RequestEditorFn) (*http.Response, error)

func (*Client) ProductTypeGroupsUpdate

func (c *Client) ProductTypeGroupsUpdate(ctx context.Context, id int, body ProductTypeGroupsUpdateJSONRequestBody, reqEditors ...RequestEditorFn) (*http.Response, error)

func (*Client) ProductTypeGroupsUpdateWithBody

func (c *Client) ProductTypeGroupsUpdateWithBody(ctx context.Context, id int, contentType string, body io.Reader, reqEditors ...RequestEditorFn) (*http.Response, error)

func (*Client) ProductTypeGroupsUpdateWithFormdataBody added in v0.2.0

func (c *Client) ProductTypeGroupsUpdateWithFormdataBody(ctx context.Context, id int, body ProductTypeGroupsUpdateFormdataRequestBody, reqEditors ...RequestEditorFn) (*http.Response, error)

func (*Client) ProductTypeMembersCreate

func (c *Client) ProductTypeMembersCreate(ctx context.Context, body ProductTypeMembersCreateJSONRequestBody, reqEditors ...RequestEditorFn) (*http.Response, error)

func (*Client) ProductTypeMembersCreateWithBody

func (c *Client) ProductTypeMembersCreateWithBody(ctx context.Context, contentType string, body io.Reader, reqEditors ...RequestEditorFn) (*http.Response, error)

func (*Client) ProductTypeMembersCreateWithFormdataBody added in v0.2.0

func (c *Client) ProductTypeMembersCreateWithFormdataBody(ctx context.Context, body ProductTypeMembersCreateFormdataRequestBody, reqEditors ...RequestEditorFn) (*http.Response, error)

func (*Client) ProductTypeMembersDeletePreviewList added in v0.2.0

func (c *Client) ProductTypeMembersDeletePreviewList(ctx context.Context, id int, params *ProductTypeMembersDeletePreviewListParams, reqEditors ...RequestEditorFn) (*http.Response, error)

func (*Client) ProductTypeMembersDestroy

func (c *Client) ProductTypeMembersDestroy(ctx context.Context, id int, reqEditors ...RequestEditorFn) (*http.Response, error)

func (*Client) ProductTypeMembersList

func (c *Client) ProductTypeMembersList(ctx context.Context, params *ProductTypeMembersListParams, reqEditors ...RequestEditorFn) (*http.Response, error)

func (*Client) ProductTypeMembersPartialUpdate

func (c *Client) ProductTypeMembersPartialUpdate(ctx context.Context, id int, reqEditors ...RequestEditorFn) (*http.Response, error)

func (*Client) ProductTypeMembersRetrieve

func (c *Client) ProductTypeMembersRetrieve(ctx context.Context, id int, params *ProductTypeMembersRetrieveParams, reqEditors ...RequestEditorFn) (*http.Response, error)

func (*Client) ProductTypeMembersUpdate

func (c *Client) ProductTypeMembersUpdate(ctx context.Context, id int, body ProductTypeMembersUpdateJSONRequestBody, reqEditors ...RequestEditorFn) (*http.Response, error)

func (*Client) ProductTypeMembersUpdateWithBody

func (c *Client) ProductTypeMembersUpdateWithBody(ctx context.Context, id int, contentType string, body io.Reader, reqEditors ...RequestEditorFn) (*http.Response, error)

func (*Client) ProductTypeMembersUpdateWithFormdataBody added in v0.2.0

func (c *Client) ProductTypeMembersUpdateWithFormdataBody(ctx context.Context, id int, body ProductTypeMembersUpdateFormdataRequestBody, reqEditors ...RequestEditorFn) (*http.Response, error)

func (*Client) ProductTypesCreate

func (c *Client) ProductTypesCreate(ctx context.Context, body ProductTypesCreateJSONRequestBody, reqEditors ...RequestEditorFn) (*http.Response, error)

func (*Client) ProductTypesCreateWithBody

func (c *Client) ProductTypesCreateWithBody(ctx context.Context, contentType string, body io.Reader, reqEditors ...RequestEditorFn) (*http.Response, error)

func (*Client) ProductTypesCreateWithFormdataBody added in v0.2.0

func (c *Client) ProductTypesCreateWithFormdataBody(ctx context.Context, body ProductTypesCreateFormdataRequestBody, reqEditors ...RequestEditorFn) (*http.Response, error)

func (*Client) ProductTypesDeletePreviewList added in v0.2.0

func (c *Client) ProductTypesDeletePreviewList(ctx context.Context, id int, params *ProductTypesDeletePreviewListParams, reqEditors ...RequestEditorFn) (*http.Response, error)

func (*Client) ProductTypesDestroy

func (c *Client) ProductTypesDestroy(ctx context.Context, id int, reqEditors ...RequestEditorFn) (*http.Response, error)

func (*Client) ProductTypesGenerateReportCreate

func (c *Client) ProductTypesGenerateReportCreate(ctx context.Context, id int, body ProductTypesGenerateReportCreateJSONRequestBody, reqEditors ...RequestEditorFn) (*http.Response, error)

func (*Client) ProductTypesGenerateReportCreateWithBody

func (c *Client) ProductTypesGenerateReportCreateWithBody(ctx context.Context, id int, contentType string, body io.Reader, reqEditors ...RequestEditorFn) (*http.Response, error)

func (*Client) ProductTypesGenerateReportCreateWithFormdataBody added in v0.2.0

func (c *Client) ProductTypesGenerateReportCreateWithFormdataBody(ctx context.Context, id int, body ProductTypesGenerateReportCreateFormdataRequestBody, reqEditors ...RequestEditorFn) (*http.Response, error)

func (*Client) ProductTypesList

func (c *Client) ProductTypesList(ctx context.Context, params *ProductTypesListParams, reqEditors ...RequestEditorFn) (*http.Response, error)

func (*Client) ProductTypesPartialUpdate

func (c *Client) ProductTypesPartialUpdate(ctx context.Context, id int, body ProductTypesPartialUpdateJSONRequestBody, reqEditors ...RequestEditorFn) (*http.Response, error)

func (*Client) ProductTypesPartialUpdateWithBody

func (c *Client) ProductTypesPartialUpdateWithBody(ctx context.Context, id int, contentType string, body io.Reader, reqEditors ...RequestEditorFn) (*http.Response, error)

func (*Client) ProductTypesPartialUpdateWithFormdataBody added in v0.2.0

func (c *Client) ProductTypesPartialUpdateWithFormdataBody(ctx context.Context, id int, body ProductTypesPartialUpdateFormdataRequestBody, reqEditors ...RequestEditorFn) (*http.Response, error)

func (*Client) ProductTypesRetrieve

func (c *Client) ProductTypesRetrieve(ctx context.Context, id int, params *ProductTypesRetrieveParams, reqEditors ...RequestEditorFn) (*http.Response, error)

func (*Client) ProductTypesUpdate

func (c *Client) ProductTypesUpdate(ctx context.Context, id int, body ProductTypesUpdateJSONRequestBody, reqEditors ...RequestEditorFn) (*http.Response, error)

func (*Client) ProductTypesUpdateWithBody

func (c *Client) ProductTypesUpdateWithBody(ctx context.Context, id int, contentType string, body io.Reader, reqEditors ...RequestEditorFn) (*http.Response, error)

func (*Client) ProductTypesUpdateWithFormdataBody added in v0.2.0

func (c *Client) ProductTypesUpdateWithFormdataBody(ctx context.Context, id int, body ProductTypesUpdateFormdataRequestBody, reqEditors ...RequestEditorFn) (*http.Response, error)

func (*Client) ProductsCreate

func (c *Client) ProductsCreate(ctx context.Context, body ProductsCreateJSONRequestBody, reqEditors ...RequestEditorFn) (*http.Response, error)

func (*Client) ProductsCreateWithBody

func (c *Client) ProductsCreateWithBody(ctx context.Context, contentType string, body io.Reader, reqEditors ...RequestEditorFn) (*http.Response, error)

func (*Client) ProductsCreateWithFormdataBody added in v0.2.0

func (c *Client) ProductsCreateWithFormdataBody(ctx context.Context, body ProductsCreateFormdataRequestBody, reqEditors ...RequestEditorFn) (*http.Response, error)

func (*Client) ProductsDeletePreviewList added in v0.2.0

func (c *Client) ProductsDeletePreviewList(ctx context.Context, id int, params *ProductsDeletePreviewListParams, reqEditors ...RequestEditorFn) (*http.Response, error)

func (*Client) ProductsDestroy

func (c *Client) ProductsDestroy(ctx context.Context, id int, reqEditors ...RequestEditorFn) (*http.Response, error)

func (*Client) ProductsGenerateReportCreate

func (c *Client) ProductsGenerateReportCreate(ctx context.Context, id int, body ProductsGenerateReportCreateJSONRequestBody, reqEditors ...RequestEditorFn) (*http.Response, error)

func (*Client) ProductsGenerateReportCreateWithBody

func (c *Client) ProductsGenerateReportCreateWithBody(ctx context.Context, id int, contentType string, body io.Reader, reqEditors ...RequestEditorFn) (*http.Response, error)

func (*Client) ProductsGenerateReportCreateWithFormdataBody added in v0.2.0

func (c *Client) ProductsGenerateReportCreateWithFormdataBody(ctx context.Context, id int, body ProductsGenerateReportCreateFormdataRequestBody, reqEditors ...RequestEditorFn) (*http.Response, error)

func (*Client) ProductsList

func (c *Client) ProductsList(ctx context.Context, params *ProductsListParams, reqEditors ...RequestEditorFn) (*http.Response, error)

func (*Client) ProductsPartialUpdate

func (c *Client) ProductsPartialUpdate(ctx context.Context, id int, body ProductsPartialUpdateJSONRequestBody, reqEditors ...RequestEditorFn) (*http.Response, error)

func (*Client) ProductsPartialUpdateWithBody

func (c *Client) ProductsPartialUpdateWithBody(ctx context.Context, id int, contentType string, body io.Reader, reqEditors ...RequestEditorFn) (*http.Response, error)

func (*Client) ProductsPartialUpdateWithFormdataBody added in v0.2.0

func (c *Client) ProductsPartialUpdateWithFormdataBody(ctx context.Context, id int, body ProductsPartialUpdateFormdataRequestBody, reqEditors ...RequestEditorFn) (*http.Response, error)

func (*Client) ProductsRetrieve

func (c *Client) ProductsRetrieve(ctx context.Context, id int, params *ProductsRetrieveParams, reqEditors ...RequestEditorFn) (*http.Response, error)

func (*Client) ProductsUpdate

func (c *Client) ProductsUpdate(ctx context.Context, id int, body ProductsUpdateJSONRequestBody, reqEditors ...RequestEditorFn) (*http.Response, error)

func (*Client) ProductsUpdateWithBody

func (c *Client) ProductsUpdateWithBody(ctx context.Context, id int, contentType string, body io.Reader, reqEditors ...RequestEditorFn) (*http.Response, error)

func (*Client) ProductsUpdateWithFormdataBody added in v0.2.0

func (c *Client) ProductsUpdateWithFormdataBody(ctx context.Context, id int, body ProductsUpdateFormdataRequestBody, reqEditors ...RequestEditorFn) (*http.Response, error)

func (*Client) QuestionnaireAnsweredQuestionnairesList added in v0.2.0

func (c *Client) QuestionnaireAnsweredQuestionnairesList(ctx context.Context, params *QuestionnaireAnsweredQuestionnairesListParams, reqEditors ...RequestEditorFn) (*http.Response, error)

func (*Client) QuestionnaireAnsweredQuestionnairesRetrieve added in v0.2.0

func (c *Client) QuestionnaireAnsweredQuestionnairesRetrieve(ctx context.Context, id int, reqEditors ...RequestEditorFn) (*http.Response, error)

func (*Client) QuestionnaireAnswersList added in v0.2.0

func (c *Client) QuestionnaireAnswersList(ctx context.Context, params *QuestionnaireAnswersListParams, reqEditors ...RequestEditorFn) (*http.Response, error)

func (*Client) QuestionnaireAnswersRetrieve added in v0.2.0

func (c *Client) QuestionnaireAnswersRetrieve(ctx context.Context, id int, reqEditors ...RequestEditorFn) (*http.Response, error)

func (*Client) QuestionnaireEngagementQuestionnairesList added in v0.2.0

func (c *Client) QuestionnaireEngagementQuestionnairesList(ctx context.Context, params *QuestionnaireEngagementQuestionnairesListParams, reqEditors ...RequestEditorFn) (*http.Response, error)

func (*Client) QuestionnaireEngagementQuestionnairesRetrieve added in v0.2.0

func (c *Client) QuestionnaireEngagementQuestionnairesRetrieve(ctx context.Context, id int, reqEditors ...RequestEditorFn) (*http.Response, error)

func (*Client) QuestionnaireGeneralQuestionnairesList added in v0.2.0

func (c *Client) QuestionnaireGeneralQuestionnairesList(ctx context.Context, params *QuestionnaireGeneralQuestionnairesListParams, reqEditors ...RequestEditorFn) (*http.Response, error)

func (*Client) QuestionnaireGeneralQuestionnairesRetrieve added in v0.2.0

func (c *Client) QuestionnaireGeneralQuestionnairesRetrieve(ctx context.Context, id int, reqEditors ...RequestEditorFn) (*http.Response, error)

func (*Client) QuestionnaireQuestionsList added in v0.2.0

func (c *Client) QuestionnaireQuestionsList(ctx context.Context, params *QuestionnaireQuestionsListParams, reqEditors ...RequestEditorFn) (*http.Response, error)

func (*Client) QuestionnaireQuestionsRetrieve added in v0.2.0

func (c *Client) QuestionnaireQuestionsRetrieve(ctx context.Context, id int, reqEditors ...RequestEditorFn) (*http.Response, error)

func (*Client) RegulationsCreate

func (c *Client) RegulationsCreate(ctx context.Context, body RegulationsCreateJSONRequestBody, reqEditors ...RequestEditorFn) (*http.Response, error)

func (*Client) RegulationsCreateWithBody

func (c *Client) RegulationsCreateWithBody(ctx context.Context, contentType string, body io.Reader, reqEditors ...RequestEditorFn) (*http.Response, error)

func (*Client) RegulationsCreateWithFormdataBody added in v0.2.0

func (c *Client) RegulationsCreateWithFormdataBody(ctx context.Context, body RegulationsCreateFormdataRequestBody, reqEditors ...RequestEditorFn) (*http.Response, error)

func (*Client) RegulationsDeletePreviewList added in v0.2.0

func (c *Client) RegulationsDeletePreviewList(ctx context.Context, id int, params *RegulationsDeletePreviewListParams, reqEditors ...RequestEditorFn) (*http.Response, error)

func (*Client) RegulationsDestroy

func (c *Client) RegulationsDestroy(ctx context.Context, id int, reqEditors ...RequestEditorFn) (*http.Response, error)

func (*Client) RegulationsList

func (c *Client) RegulationsList(ctx context.Context, params *RegulationsListParams, reqEditors ...RequestEditorFn) (*http.Response, error)

func (*Client) RegulationsPartialUpdate

func (c *Client) RegulationsPartialUpdate(ctx context.Context, id int, body RegulationsPartialUpdateJSONRequestBody, reqEditors ...RequestEditorFn) (*http.Response, error)

func (*Client) RegulationsPartialUpdateWithBody

func (c *Client) RegulationsPartialUpdateWithBody(ctx context.Context, id int, contentType string, body io.Reader, reqEditors ...RequestEditorFn) (*http.Response, error)

func (*Client) RegulationsPartialUpdateWithFormdataBody added in v0.2.0

func (c *Client) RegulationsPartialUpdateWithFormdataBody(ctx context.Context, id int, body RegulationsPartialUpdateFormdataRequestBody, reqEditors ...RequestEditorFn) (*http.Response, error)

func (*Client) RegulationsRetrieve

func (c *Client) RegulationsRetrieve(ctx context.Context, id int, reqEditors ...RequestEditorFn) (*http.Response, error)

func (*Client) RegulationsUpdate

func (c *Client) RegulationsUpdate(ctx context.Context, id int, body RegulationsUpdateJSONRequestBody, reqEditors ...RequestEditorFn) (*http.Response, error)

func (*Client) RegulationsUpdateWithBody

func (c *Client) RegulationsUpdateWithBody(ctx context.Context, id int, contentType string, body io.Reader, reqEditors ...RequestEditorFn) (*http.Response, error)

func (*Client) RegulationsUpdateWithFormdataBody added in v0.2.0

func (c *Client) RegulationsUpdateWithFormdataBody(ctx context.Context, id int, body RegulationsUpdateFormdataRequestBody, reqEditors ...RequestEditorFn) (*http.Response, error)

func (*Client) ReimportScanCreateWithBody

func (c *Client) ReimportScanCreateWithBody(ctx context.Context, contentType string, body io.Reader, reqEditors ...RequestEditorFn) (*http.Response, error)

func (*Client) RiskAcceptanceDeletePreviewList added in v0.2.0

func (c *Client) RiskAcceptanceDeletePreviewList(ctx context.Context, id int, params *RiskAcceptanceDeletePreviewListParams, reqEditors ...RequestEditorFn) (*http.Response, error)

func (*Client) RiskAcceptanceDestroy added in v0.2.0

func (c *Client) RiskAcceptanceDestroy(ctx context.Context, id int, reqEditors ...RequestEditorFn) (*http.Response, error)

func (*Client) RiskAcceptanceDownloadProofRetrieve added in v0.2.0

func (c *Client) RiskAcceptanceDownloadProofRetrieve(ctx context.Context, id int, reqEditors ...RequestEditorFn) (*http.Response, error)

func (*Client) RiskAcceptanceList added in v0.2.0

func (c *Client) RiskAcceptanceList(ctx context.Context, params *RiskAcceptanceListParams, reqEditors ...RequestEditorFn) (*http.Response, error)

func (*Client) RiskAcceptanceRetrieve added in v0.2.0

func (c *Client) RiskAcceptanceRetrieve(ctx context.Context, id int, reqEditors ...RequestEditorFn) (*http.Response, error)

func (*Client) RolesList

func (c *Client) RolesList(ctx context.Context, params *RolesListParams, reqEditors ...RequestEditorFn) (*http.Response, error)

func (*Client) RolesRetrieve

func (c *Client) RolesRetrieve(ctx context.Context, id int, reqEditors ...RequestEditorFn) (*http.Response, error)

func (*Client) SlaConfigurationsCreate added in v0.2.0

func (c *Client) SlaConfigurationsCreate(ctx context.Context, body SlaConfigurationsCreateJSONRequestBody, reqEditors ...RequestEditorFn) (*http.Response, error)

func (*Client) SlaConfigurationsCreateWithBody added in v0.2.0

func (c *Client) SlaConfigurationsCreateWithBody(ctx context.Context, contentType string, body io.Reader, reqEditors ...RequestEditorFn) (*http.Response, error)

func (*Client) SlaConfigurationsCreateWithFormdataBody added in v0.2.0

func (c *Client) SlaConfigurationsCreateWithFormdataBody(ctx context.Context, body SlaConfigurationsCreateFormdataRequestBody, reqEditors ...RequestEditorFn) (*http.Response, error)

func (*Client) SlaConfigurationsDestroy added in v0.2.0

func (c *Client) SlaConfigurationsDestroy(ctx context.Context, id int, reqEditors ...RequestEditorFn) (*http.Response, error)

func (*Client) SlaConfigurationsList added in v0.2.0

func (c *Client) SlaConfigurationsList(ctx context.Context, params *SlaConfigurationsListParams, reqEditors ...RequestEditorFn) (*http.Response, error)

func (*Client) SlaConfigurationsPartialUpdate added in v0.2.0

func (c *Client) SlaConfigurationsPartialUpdate(ctx context.Context, id int, body SlaConfigurationsPartialUpdateJSONRequestBody, reqEditors ...RequestEditorFn) (*http.Response, error)

func (*Client) SlaConfigurationsPartialUpdateWithBody added in v0.2.0

func (c *Client) SlaConfigurationsPartialUpdateWithBody(ctx context.Context, id int, contentType string, body io.Reader, reqEditors ...RequestEditorFn) (*http.Response, error)

func (*Client) SlaConfigurationsPartialUpdateWithFormdataBody added in v0.2.0

func (c *Client) SlaConfigurationsPartialUpdateWithFormdataBody(ctx context.Context, id int, body SlaConfigurationsPartialUpdateFormdataRequestBody, reqEditors ...RequestEditorFn) (*http.Response, error)

func (*Client) SlaConfigurationsRetrieve added in v0.2.0

func (c *Client) SlaConfigurationsRetrieve(ctx context.Context, id int, reqEditors ...RequestEditorFn) (*http.Response, error)

func (*Client) SlaConfigurationsUpdate added in v0.2.0

func (c *Client) SlaConfigurationsUpdate(ctx context.Context, id int, body SlaConfigurationsUpdateJSONRequestBody, reqEditors ...RequestEditorFn) (*http.Response, error)

func (*Client) SlaConfigurationsUpdateWithBody added in v0.2.0

func (c *Client) SlaConfigurationsUpdateWithBody(ctx context.Context, id int, contentType string, body io.Reader, reqEditors ...RequestEditorFn) (*http.Response, error)

func (*Client) SlaConfigurationsUpdateWithFormdataBody added in v0.2.0

func (c *Client) SlaConfigurationsUpdateWithFormdataBody(ctx context.Context, id int, body SlaConfigurationsUpdateFormdataRequestBody, reqEditors ...RequestEditorFn) (*http.Response, error)

func (*Client) SonarqubeIssuesCreate

func (c *Client) SonarqubeIssuesCreate(ctx context.Context, body SonarqubeIssuesCreateJSONRequestBody, reqEditors ...RequestEditorFn) (*http.Response, error)

func (*Client) SonarqubeIssuesCreateWithBody

func (c *Client) SonarqubeIssuesCreateWithBody(ctx context.Context, contentType string, body io.Reader, reqEditors ...RequestEditorFn) (*http.Response, error)

func (*Client) SonarqubeIssuesCreateWithFormdataBody added in v0.2.0

func (c *Client) SonarqubeIssuesCreateWithFormdataBody(ctx context.Context, body SonarqubeIssuesCreateFormdataRequestBody, reqEditors ...RequestEditorFn) (*http.Response, error)

func (*Client) SonarqubeIssuesDeletePreviewList added in v0.2.0

func (c *Client) SonarqubeIssuesDeletePreviewList(ctx context.Context, id int, params *SonarqubeIssuesDeletePreviewListParams, reqEditors ...RequestEditorFn) (*http.Response, error)

func (*Client) SonarqubeIssuesDestroy

func (c *Client) SonarqubeIssuesDestroy(ctx context.Context, id int, reqEditors ...RequestEditorFn) (*http.Response, error)

func (*Client) SonarqubeIssuesList

func (c *Client) SonarqubeIssuesList(ctx context.Context, params *SonarqubeIssuesListParams, reqEditors ...RequestEditorFn) (*http.Response, error)

func (*Client) SonarqubeIssuesPartialUpdate

func (c *Client) SonarqubeIssuesPartialUpdate(ctx context.Context, id int, body SonarqubeIssuesPartialUpdateJSONRequestBody, reqEditors ...RequestEditorFn) (*http.Response, error)

func (*Client) SonarqubeIssuesPartialUpdateWithBody

func (c *Client) SonarqubeIssuesPartialUpdateWithBody(ctx context.Context, id int, contentType string, body io.Reader, reqEditors ...RequestEditorFn) (*http.Response, error)

func (*Client) SonarqubeIssuesPartialUpdateWithFormdataBody added in v0.2.0

func (c *Client) SonarqubeIssuesPartialUpdateWithFormdataBody(ctx context.Context, id int, body SonarqubeIssuesPartialUpdateFormdataRequestBody, reqEditors ...RequestEditorFn) (*http.Response, error)

func (*Client) SonarqubeIssuesRetrieve

func (c *Client) SonarqubeIssuesRetrieve(ctx context.Context, id int, reqEditors ...RequestEditorFn) (*http.Response, error)

func (*Client) SonarqubeIssuesUpdate

func (c *Client) SonarqubeIssuesUpdate(ctx context.Context, id int, body SonarqubeIssuesUpdateJSONRequestBody, reqEditors ...RequestEditorFn) (*http.Response, error)

func (*Client) SonarqubeIssuesUpdateWithBody

func (c *Client) SonarqubeIssuesUpdateWithBody(ctx context.Context, id int, contentType string, body io.Reader, reqEditors ...RequestEditorFn) (*http.Response, error)

func (*Client) SonarqubeIssuesUpdateWithFormdataBody added in v0.2.0

func (c *Client) SonarqubeIssuesUpdateWithFormdataBody(ctx context.Context, id int, body SonarqubeIssuesUpdateFormdataRequestBody, reqEditors ...RequestEditorFn) (*http.Response, error)

func (*Client) SonarqubeTransitionsCreate

func (c *Client) SonarqubeTransitionsCreate(ctx context.Context, body SonarqubeTransitionsCreateJSONRequestBody, reqEditors ...RequestEditorFn) (*http.Response, error)

func (*Client) SonarqubeTransitionsCreateWithBody

func (c *Client) SonarqubeTransitionsCreateWithBody(ctx context.Context, contentType string, body io.Reader, reqEditors ...RequestEditorFn) (*http.Response, error)

func (*Client) SonarqubeTransitionsCreateWithFormdataBody added in v0.2.0

func (c *Client) SonarqubeTransitionsCreateWithFormdataBody(ctx context.Context, body SonarqubeTransitionsCreateFormdataRequestBody, reqEditors ...RequestEditorFn) (*http.Response, error)

func (*Client) SonarqubeTransitionsDeletePreviewList added in v0.2.0

func (c *Client) SonarqubeTransitionsDeletePreviewList(ctx context.Context, id int, params *SonarqubeTransitionsDeletePreviewListParams, reqEditors ...RequestEditorFn) (*http.Response, error)

func (*Client) SonarqubeTransitionsDestroy

func (c *Client) SonarqubeTransitionsDestroy(ctx context.Context, id int, reqEditors ...RequestEditorFn) (*http.Response, error)

func (*Client) SonarqubeTransitionsList

func (c *Client) SonarqubeTransitionsList(ctx context.Context, params *SonarqubeTransitionsListParams, reqEditors ...RequestEditorFn) (*http.Response, error)

func (*Client) SonarqubeTransitionsPartialUpdate

func (c *Client) SonarqubeTransitionsPartialUpdate(ctx context.Context, id int, body SonarqubeTransitionsPartialUpdateJSONRequestBody, reqEditors ...RequestEditorFn) (*http.Response, error)

func (*Client) SonarqubeTransitionsPartialUpdateWithBody

func (c *Client) SonarqubeTransitionsPartialUpdateWithBody(ctx context.Context, id int, contentType string, body io.Reader, reqEditors ...RequestEditorFn) (*http.Response, error)

func (*Client) SonarqubeTransitionsPartialUpdateWithFormdataBody added in v0.2.0

func (c *Client) SonarqubeTransitionsPartialUpdateWithFormdataBody(ctx context.Context, id int, body SonarqubeTransitionsPartialUpdateFormdataRequestBody, reqEditors ...RequestEditorFn) (*http.Response, error)

func (*Client) SonarqubeTransitionsRetrieve

func (c *Client) SonarqubeTransitionsRetrieve(ctx context.Context, id int, reqEditors ...RequestEditorFn) (*http.Response, error)

func (*Client) SonarqubeTransitionsUpdate

func (c *Client) SonarqubeTransitionsUpdate(ctx context.Context, id int, body SonarqubeTransitionsUpdateJSONRequestBody, reqEditors ...RequestEditorFn) (*http.Response, error)

func (*Client) SonarqubeTransitionsUpdateWithBody

func (c *Client) SonarqubeTransitionsUpdateWithBody(ctx context.Context, id int, contentType string, body io.Reader, reqEditors ...RequestEditorFn) (*http.Response, error)

func (*Client) SonarqubeTransitionsUpdateWithFormdataBody added in v0.2.0

func (c *Client) SonarqubeTransitionsUpdateWithFormdataBody(ctx context.Context, id int, body SonarqubeTransitionsUpdateFormdataRequestBody, reqEditors ...RequestEditorFn) (*http.Response, error)

func (*Client) StubFindingsCreate

func (c *Client) StubFindingsCreate(ctx context.Context, body StubFindingsCreateJSONRequestBody, reqEditors ...RequestEditorFn) (*http.Response, error)

func (*Client) StubFindingsCreateWithBody

func (c *Client) StubFindingsCreateWithBody(ctx context.Context, contentType string, body io.Reader, reqEditors ...RequestEditorFn) (*http.Response, error)

func (*Client) StubFindingsCreateWithFormdataBody added in v0.2.0

func (c *Client) StubFindingsCreateWithFormdataBody(ctx context.Context, body StubFindingsCreateFormdataRequestBody, reqEditors ...RequestEditorFn) (*http.Response, error)

func (*Client) StubFindingsDeletePreviewList added in v0.2.0

func (c *Client) StubFindingsDeletePreviewList(ctx context.Context, id int, params *StubFindingsDeletePreviewListParams, reqEditors ...RequestEditorFn) (*http.Response, error)

func (*Client) StubFindingsDestroy

func (c *Client) StubFindingsDestroy(ctx context.Context, id int, reqEditors ...RequestEditorFn) (*http.Response, error)

func (*Client) StubFindingsList

func (c *Client) StubFindingsList(ctx context.Context, params *StubFindingsListParams, reqEditors ...RequestEditorFn) (*http.Response, error)

func (*Client) StubFindingsPartialUpdate

func (c *Client) StubFindingsPartialUpdate(ctx context.Context, id int, body StubFindingsPartialUpdateJSONRequestBody, reqEditors ...RequestEditorFn) (*http.Response, error)

func (*Client) StubFindingsPartialUpdateWithBody

func (c *Client) StubFindingsPartialUpdateWithBody(ctx context.Context, id int, contentType string, body io.Reader, reqEditors ...RequestEditorFn) (*http.Response, error)

func (*Client) StubFindingsPartialUpdateWithFormdataBody added in v0.2.0

func (c *Client) StubFindingsPartialUpdateWithFormdataBody(ctx context.Context, id int, body StubFindingsPartialUpdateFormdataRequestBody, reqEditors ...RequestEditorFn) (*http.Response, error)

func (*Client) StubFindingsRetrieve

func (c *Client) StubFindingsRetrieve(ctx context.Context, id int, reqEditors ...RequestEditorFn) (*http.Response, error)

func (*Client) StubFindingsUpdate

func (c *Client) StubFindingsUpdate(ctx context.Context, id int, body StubFindingsUpdateJSONRequestBody, reqEditors ...RequestEditorFn) (*http.Response, error)

func (*Client) StubFindingsUpdateWithBody

func (c *Client) StubFindingsUpdateWithBody(ctx context.Context, id int, contentType string, body io.Reader, reqEditors ...RequestEditorFn) (*http.Response, error)

func (*Client) StubFindingsUpdateWithFormdataBody added in v0.2.0

func (c *Client) StubFindingsUpdateWithFormdataBody(ctx context.Context, id int, body StubFindingsUpdateFormdataRequestBody, reqEditors ...RequestEditorFn) (*http.Response, error)

func (*Client) SystemSettingsList

func (c *Client) SystemSettingsList(ctx context.Context, params *SystemSettingsListParams, reqEditors ...RequestEditorFn) (*http.Response, error)

func (*Client) SystemSettingsPartialUpdate

func (c *Client) SystemSettingsPartialUpdate(ctx context.Context, id int, body SystemSettingsPartialUpdateJSONRequestBody, reqEditors ...RequestEditorFn) (*http.Response, error)

func (*Client) SystemSettingsPartialUpdateWithBody

func (c *Client) SystemSettingsPartialUpdateWithBody(ctx context.Context, id int, contentType string, body io.Reader, reqEditors ...RequestEditorFn) (*http.Response, error)

func (*Client) SystemSettingsPartialUpdateWithFormdataBody added in v0.2.0

func (c *Client) SystemSettingsPartialUpdateWithFormdataBody(ctx context.Context, id int, body SystemSettingsPartialUpdateFormdataRequestBody, reqEditors ...RequestEditorFn) (*http.Response, error)

func (*Client) SystemSettingsUpdate

func (c *Client) SystemSettingsUpdate(ctx context.Context, id int, body SystemSettingsUpdateJSONRequestBody, reqEditors ...RequestEditorFn) (*http.Response, error)

func (*Client) SystemSettingsUpdateWithBody

func (c *Client) SystemSettingsUpdateWithBody(ctx context.Context, id int, contentType string, body io.Reader, reqEditors ...RequestEditorFn) (*http.Response, error)

func (*Client) SystemSettingsUpdateWithFormdataBody added in v0.2.0

func (c *Client) SystemSettingsUpdateWithFormdataBody(ctx context.Context, id int, body SystemSettingsUpdateFormdataRequestBody, reqEditors ...RequestEditorFn) (*http.Response, error)

func (*Client) TechnologiesCreate

func (c *Client) TechnologiesCreate(ctx context.Context, body TechnologiesCreateJSONRequestBody, reqEditors ...RequestEditorFn) (*http.Response, error)

func (*Client) TechnologiesCreateWithBody

func (c *Client) TechnologiesCreateWithBody(ctx context.Context, contentType string, body io.Reader, reqEditors ...RequestEditorFn) (*http.Response, error)

func (*Client) TechnologiesCreateWithFormdataBody added in v0.2.0

func (c *Client) TechnologiesCreateWithFormdataBody(ctx context.Context, body TechnologiesCreateFormdataRequestBody, reqEditors ...RequestEditorFn) (*http.Response, error)

func (*Client) TechnologiesDeletePreviewList added in v0.2.0

func (c *Client) TechnologiesDeletePreviewList(ctx context.Context, id int, params *TechnologiesDeletePreviewListParams, reqEditors ...RequestEditorFn) (*http.Response, error)

func (*Client) TechnologiesDestroy

func (c *Client) TechnologiesDestroy(ctx context.Context, id int, reqEditors ...RequestEditorFn) (*http.Response, error)

func (*Client) TechnologiesList

func (c *Client) TechnologiesList(ctx context.Context, params *TechnologiesListParams, reqEditors ...RequestEditorFn) (*http.Response, error)

func (*Client) TechnologiesPartialUpdate

func (c *Client) TechnologiesPartialUpdate(ctx context.Context, id int, body TechnologiesPartialUpdateJSONRequestBody, reqEditors ...RequestEditorFn) (*http.Response, error)

func (*Client) TechnologiesPartialUpdateWithBody

func (c *Client) TechnologiesPartialUpdateWithBody(ctx context.Context, id int, contentType string, body io.Reader, reqEditors ...RequestEditorFn) (*http.Response, error)

func (*Client) TechnologiesPartialUpdateWithFormdataBody added in v0.2.0

func (c *Client) TechnologiesPartialUpdateWithFormdataBody(ctx context.Context, id int, body TechnologiesPartialUpdateFormdataRequestBody, reqEditors ...RequestEditorFn) (*http.Response, error)

func (*Client) TechnologiesRetrieve

func (c *Client) TechnologiesRetrieve(ctx context.Context, id int, reqEditors ...RequestEditorFn) (*http.Response, error)

func (*Client) TechnologiesUpdate

func (c *Client) TechnologiesUpdate(ctx context.Context, id int, body TechnologiesUpdateJSONRequestBody, reqEditors ...RequestEditorFn) (*http.Response, error)

func (*Client) TechnologiesUpdateWithBody

func (c *Client) TechnologiesUpdateWithBody(ctx context.Context, id int, contentType string, body io.Reader, reqEditors ...RequestEditorFn) (*http.Response, error)

func (*Client) TechnologiesUpdateWithFormdataBody added in v0.2.0

func (c *Client) TechnologiesUpdateWithFormdataBody(ctx context.Context, id int, body TechnologiesUpdateFormdataRequestBody, reqEditors ...RequestEditorFn) (*http.Response, error)

func (*Client) TestImportsCreate

func (c *Client) TestImportsCreate(ctx context.Context, body TestImportsCreateJSONRequestBody, reqEditors ...RequestEditorFn) (*http.Response, error)

func (*Client) TestImportsCreateWithBody

func (c *Client) TestImportsCreateWithBody(ctx context.Context, contentType string, body io.Reader, reqEditors ...RequestEditorFn) (*http.Response, error)

func (*Client) TestImportsCreateWithFormdataBody added in v0.2.0

func (c *Client) TestImportsCreateWithFormdataBody(ctx context.Context, body TestImportsCreateFormdataRequestBody, reqEditors ...RequestEditorFn) (*http.Response, error)

func (*Client) TestImportsDeletePreviewList added in v0.2.0

func (c *Client) TestImportsDeletePreviewList(ctx context.Context, id int, params *TestImportsDeletePreviewListParams, reqEditors ...RequestEditorFn) (*http.Response, error)

func (*Client) TestImportsDestroy

func (c *Client) TestImportsDestroy(ctx context.Context, id int, reqEditors ...RequestEditorFn) (*http.Response, error)

func (*Client) TestImportsList

func (c *Client) TestImportsList(ctx context.Context, params *TestImportsListParams, reqEditors ...RequestEditorFn) (*http.Response, error)

func (*Client) TestImportsPartialUpdate

func (c *Client) TestImportsPartialUpdate(ctx context.Context, id int, body TestImportsPartialUpdateJSONRequestBody, reqEditors ...RequestEditorFn) (*http.Response, error)

func (*Client) TestImportsPartialUpdateWithBody

func (c *Client) TestImportsPartialUpdateWithBody(ctx context.Context, id int, contentType string, body io.Reader, reqEditors ...RequestEditorFn) (*http.Response, error)

func (*Client) TestImportsPartialUpdateWithFormdataBody added in v0.2.0

func (c *Client) TestImportsPartialUpdateWithFormdataBody(ctx context.Context, id int, body TestImportsPartialUpdateFormdataRequestBody, reqEditors ...RequestEditorFn) (*http.Response, error)

func (*Client) TestImportsRetrieve

func (c *Client) TestImportsRetrieve(ctx context.Context, id int, params *TestImportsRetrieveParams, reqEditors ...RequestEditorFn) (*http.Response, error)

func (*Client) TestImportsUpdate

func (c *Client) TestImportsUpdate(ctx context.Context, id int, body TestImportsUpdateJSONRequestBody, reqEditors ...RequestEditorFn) (*http.Response, error)

func (*Client) TestImportsUpdateWithBody

func (c *Client) TestImportsUpdateWithBody(ctx context.Context, id int, contentType string, body io.Reader, reqEditors ...RequestEditorFn) (*http.Response, error)

func (*Client) TestImportsUpdateWithFormdataBody added in v0.2.0

func (c *Client) TestImportsUpdateWithFormdataBody(ctx context.Context, id int, body TestImportsUpdateFormdataRequestBody, reqEditors ...RequestEditorFn) (*http.Response, error)

func (*Client) TestTypesCreate

func (c *Client) TestTypesCreate(ctx context.Context, body TestTypesCreateJSONRequestBody, reqEditors ...RequestEditorFn) (*http.Response, error)

func (*Client) TestTypesCreateWithBody

func (c *Client) TestTypesCreateWithBody(ctx context.Context, contentType string, body io.Reader, reqEditors ...RequestEditorFn) (*http.Response, error)

func (*Client) TestTypesCreateWithFormdataBody added in v0.2.0

func (c *Client) TestTypesCreateWithFormdataBody(ctx context.Context, body TestTypesCreateFormdataRequestBody, reqEditors ...RequestEditorFn) (*http.Response, error)

func (*Client) TestTypesList

func (c *Client) TestTypesList(ctx context.Context, params *TestTypesListParams, reqEditors ...RequestEditorFn) (*http.Response, error)

func (*Client) TestTypesPartialUpdate

func (c *Client) TestTypesPartialUpdate(ctx context.Context, id int, body TestTypesPartialUpdateJSONRequestBody, reqEditors ...RequestEditorFn) (*http.Response, error)

func (*Client) TestTypesPartialUpdateWithBody

func (c *Client) TestTypesPartialUpdateWithBody(ctx context.Context, id int, contentType string, body io.Reader, reqEditors ...RequestEditorFn) (*http.Response, error)

func (*Client) TestTypesPartialUpdateWithFormdataBody added in v0.2.0

func (c *Client) TestTypesPartialUpdateWithFormdataBody(ctx context.Context, id int, body TestTypesPartialUpdateFormdataRequestBody, reqEditors ...RequestEditorFn) (*http.Response, error)

func (*Client) TestTypesRetrieve

func (c *Client) TestTypesRetrieve(ctx context.Context, id int, reqEditors ...RequestEditorFn) (*http.Response, error)

func (*Client) TestTypesUpdate

func (c *Client) TestTypesUpdate(ctx context.Context, id int, body TestTypesUpdateJSONRequestBody, reqEditors ...RequestEditorFn) (*http.Response, error)

func (*Client) TestTypesUpdateWithBody

func (c *Client) TestTypesUpdateWithBody(ctx context.Context, id int, contentType string, body io.Reader, reqEditors ...RequestEditorFn) (*http.Response, error)

func (*Client) TestTypesUpdateWithFormdataBody added in v0.2.0

func (c *Client) TestTypesUpdateWithFormdataBody(ctx context.Context, id int, body TestTypesUpdateFormdataRequestBody, reqEditors ...RequestEditorFn) (*http.Response, error)

func (*Client) TestsAcceptRisksCreate

func (c *Client) TestsAcceptRisksCreate(ctx context.Context, id int, body TestsAcceptRisksCreateJSONRequestBody, reqEditors ...RequestEditorFn) (*http.Response, error)

func (*Client) TestsAcceptRisksCreateWithBody

func (c *Client) TestsAcceptRisksCreateWithBody(ctx context.Context, id int, contentType string, body io.Reader, reqEditors ...RequestEditorFn) (*http.Response, error)

func (*Client) TestsAcceptRisksCreateWithFormdataBody added in v0.2.0

func (c *Client) TestsAcceptRisksCreateWithFormdataBody(ctx context.Context, id int, body TestsAcceptRisksCreateFormdataRequestBody, reqEditors ...RequestEditorFn) (*http.Response, error)

func (*Client) TestsCreate

func (c *Client) TestsCreate(ctx context.Context, body TestsCreateJSONRequestBody, reqEditors ...RequestEditorFn) (*http.Response, error)

func (*Client) TestsCreateWithBody

func (c *Client) TestsCreateWithBody(ctx context.Context, contentType string, body io.Reader, reqEditors ...RequestEditorFn) (*http.Response, error)

func (*Client) TestsCreateWithFormdataBody added in v0.2.0

func (c *Client) TestsCreateWithFormdataBody(ctx context.Context, body TestsCreateFormdataRequestBody, reqEditors ...RequestEditorFn) (*http.Response, error)

func (*Client) TestsDeletePreviewList added in v0.2.0

func (c *Client) TestsDeletePreviewList(ctx context.Context, id int, params *TestsDeletePreviewListParams, reqEditors ...RequestEditorFn) (*http.Response, error)

func (*Client) TestsDestroy

func (c *Client) TestsDestroy(ctx context.Context, id int, reqEditors ...RequestEditorFn) (*http.Response, error)

func (*Client) TestsFilesCreateWithBody

func (c *Client) TestsFilesCreateWithBody(ctx context.Context, id int, contentType string, body io.Reader, reqEditors ...RequestEditorFn) (*http.Response, error)

func (*Client) TestsFilesDownloadRetrieve added in v0.2.0

func (c *Client) TestsFilesDownloadRetrieve(ctx context.Context, id int, fileId string, reqEditors ...RequestEditorFn) (*http.Response, error)

func (*Client) TestsFilesRetrieve

func (c *Client) TestsFilesRetrieve(ctx context.Context, id int, reqEditors ...RequestEditorFn) (*http.Response, error)

func (*Client) TestsGenerateReportCreate

func (c *Client) TestsGenerateReportCreate(ctx context.Context, id int, body TestsGenerateReportCreateJSONRequestBody, reqEditors ...RequestEditorFn) (*http.Response, error)

func (*Client) TestsGenerateReportCreateWithBody

func (c *Client) TestsGenerateReportCreateWithBody(ctx context.Context, id int, contentType string, body io.Reader, reqEditors ...RequestEditorFn) (*http.Response, error)

func (*Client) TestsGenerateReportCreateWithFormdataBody added in v0.2.0

func (c *Client) TestsGenerateReportCreateWithFormdataBody(ctx context.Context, id int, body TestsGenerateReportCreateFormdataRequestBody, reqEditors ...RequestEditorFn) (*http.Response, error)

func (*Client) TestsList

func (c *Client) TestsList(ctx context.Context, params *TestsListParams, reqEditors ...RequestEditorFn) (*http.Response, error)

func (*Client) TestsNotesCreate

func (c *Client) TestsNotesCreate(ctx context.Context, id int, body TestsNotesCreateJSONRequestBody, reqEditors ...RequestEditorFn) (*http.Response, error)

func (*Client) TestsNotesCreateWithBody

func (c *Client) TestsNotesCreateWithBody(ctx context.Context, id int, contentType string, body io.Reader, reqEditors ...RequestEditorFn) (*http.Response, error)

func (*Client) TestsNotesCreateWithFormdataBody added in v0.2.0

func (c *Client) TestsNotesCreateWithFormdataBody(ctx context.Context, id int, body TestsNotesCreateFormdataRequestBody, reqEditors ...RequestEditorFn) (*http.Response, error)

func (*Client) TestsNotesRetrieve

func (c *Client) TestsNotesRetrieve(ctx context.Context, id int, reqEditors ...RequestEditorFn) (*http.Response, error)

func (*Client) TestsPartialUpdate

func (c *Client) TestsPartialUpdate(ctx context.Context, id int, body TestsPartialUpdateJSONRequestBody, reqEditors ...RequestEditorFn) (*http.Response, error)

func (*Client) TestsPartialUpdateWithBody

func (c *Client) TestsPartialUpdateWithBody(ctx context.Context, id int, contentType string, body io.Reader, reqEditors ...RequestEditorFn) (*http.Response, error)

func (*Client) TestsPartialUpdateWithFormdataBody added in v0.2.0

func (c *Client) TestsPartialUpdateWithFormdataBody(ctx context.Context, id int, body TestsPartialUpdateFormdataRequestBody, reqEditors ...RequestEditorFn) (*http.Response, error)

func (*Client) TestsRetrieve

func (c *Client) TestsRetrieve(ctx context.Context, id int, reqEditors ...RequestEditorFn) (*http.Response, error)

func (*Client) TestsUpdate

func (c *Client) TestsUpdate(ctx context.Context, id int, body TestsUpdateJSONRequestBody, reqEditors ...RequestEditorFn) (*http.Response, error)

func (*Client) TestsUpdateWithBody

func (c *Client) TestsUpdateWithBody(ctx context.Context, id int, contentType string, body io.Reader, reqEditors ...RequestEditorFn) (*http.Response, error)

func (*Client) TestsUpdateWithFormdataBody added in v0.2.0

func (c *Client) TestsUpdateWithFormdataBody(ctx context.Context, id int, body TestsUpdateFormdataRequestBody, reqEditors ...RequestEditorFn) (*http.Response, error)

func (*Client) ToolConfigurationsCreate

func (c *Client) ToolConfigurationsCreate(ctx context.Context, body ToolConfigurationsCreateJSONRequestBody, reqEditors ...RequestEditorFn) (*http.Response, error)

func (*Client) ToolConfigurationsCreateWithBody

func (c *Client) ToolConfigurationsCreateWithBody(ctx context.Context, contentType string, body io.Reader, reqEditors ...RequestEditorFn) (*http.Response, error)

func (*Client) ToolConfigurationsCreateWithFormdataBody added in v0.2.0

func (c *Client) ToolConfigurationsCreateWithFormdataBody(ctx context.Context, body ToolConfigurationsCreateFormdataRequestBody, reqEditors ...RequestEditorFn) (*http.Response, error)

func (*Client) ToolConfigurationsDeletePreviewList added in v0.2.0

func (c *Client) ToolConfigurationsDeletePreviewList(ctx context.Context, id int, params *ToolConfigurationsDeletePreviewListParams, reqEditors ...RequestEditorFn) (*http.Response, error)

func (*Client) ToolConfigurationsDestroy

func (c *Client) ToolConfigurationsDestroy(ctx context.Context, id int, reqEditors ...RequestEditorFn) (*http.Response, error)

func (*Client) ToolConfigurationsList

func (c *Client) ToolConfigurationsList(ctx context.Context, params *ToolConfigurationsListParams, reqEditors ...RequestEditorFn) (*http.Response, error)

func (*Client) ToolConfigurationsPartialUpdate

func (c *Client) ToolConfigurationsPartialUpdate(ctx context.Context, id int, body ToolConfigurationsPartialUpdateJSONRequestBody, reqEditors ...RequestEditorFn) (*http.Response, error)

func (*Client) ToolConfigurationsPartialUpdateWithBody

func (c *Client) ToolConfigurationsPartialUpdateWithBody(ctx context.Context, id int, contentType string, body io.Reader, reqEditors ...RequestEditorFn) (*http.Response, error)

func (*Client) ToolConfigurationsPartialUpdateWithFormdataBody added in v0.2.0

func (c *Client) ToolConfigurationsPartialUpdateWithFormdataBody(ctx context.Context, id int, body ToolConfigurationsPartialUpdateFormdataRequestBody, reqEditors ...RequestEditorFn) (*http.Response, error)

func (*Client) ToolConfigurationsRetrieve

func (c *Client) ToolConfigurationsRetrieve(ctx context.Context, id int, reqEditors ...RequestEditorFn) (*http.Response, error)

func (*Client) ToolConfigurationsUpdate

func (c *Client) ToolConfigurationsUpdate(ctx context.Context, id int, body ToolConfigurationsUpdateJSONRequestBody, reqEditors ...RequestEditorFn) (*http.Response, error)

func (*Client) ToolConfigurationsUpdateWithBody

func (c *Client) ToolConfigurationsUpdateWithBody(ctx context.Context, id int, contentType string, body io.Reader, reqEditors ...RequestEditorFn) (*http.Response, error)

func (*Client) ToolConfigurationsUpdateWithFormdataBody added in v0.2.0

func (c *Client) ToolConfigurationsUpdateWithFormdataBody(ctx context.Context, id int, body ToolConfigurationsUpdateFormdataRequestBody, reqEditors ...RequestEditorFn) (*http.Response, error)

func (*Client) ToolProductSettingsCreate

func (c *Client) ToolProductSettingsCreate(ctx context.Context, body ToolProductSettingsCreateJSONRequestBody, reqEditors ...RequestEditorFn) (*http.Response, error)

func (*Client) ToolProductSettingsCreateWithBody

func (c *Client) ToolProductSettingsCreateWithBody(ctx context.Context, contentType string, body io.Reader, reqEditors ...RequestEditorFn) (*http.Response, error)

func (*Client) ToolProductSettingsCreateWithFormdataBody added in v0.2.0

func (c *Client) ToolProductSettingsCreateWithFormdataBody(ctx context.Context, body ToolProductSettingsCreateFormdataRequestBody, reqEditors ...RequestEditorFn) (*http.Response, error)

func (*Client) ToolProductSettingsDeletePreviewList added in v0.2.0

func (c *Client) ToolProductSettingsDeletePreviewList(ctx context.Context, id int, params *ToolProductSettingsDeletePreviewListParams, reqEditors ...RequestEditorFn) (*http.Response, error)

func (*Client) ToolProductSettingsDestroy

func (c *Client) ToolProductSettingsDestroy(ctx context.Context, id int, reqEditors ...RequestEditorFn) (*http.Response, error)

func (*Client) ToolProductSettingsList

func (c *Client) ToolProductSettingsList(ctx context.Context, params *ToolProductSettingsListParams, reqEditors ...RequestEditorFn) (*http.Response, error)

func (*Client) ToolProductSettingsPartialUpdate

func (c *Client) ToolProductSettingsPartialUpdate(ctx context.Context, id int, body ToolProductSettingsPartialUpdateJSONRequestBody, reqEditors ...RequestEditorFn) (*http.Response, error)

func (*Client) ToolProductSettingsPartialUpdateWithBody

func (c *Client) ToolProductSettingsPartialUpdateWithBody(ctx context.Context, id int, contentType string, body io.Reader, reqEditors ...RequestEditorFn) (*http.Response, error)

func (*Client) ToolProductSettingsPartialUpdateWithFormdataBody added in v0.2.0

func (c *Client) ToolProductSettingsPartialUpdateWithFormdataBody(ctx context.Context, id int, body ToolProductSettingsPartialUpdateFormdataRequestBody, reqEditors ...RequestEditorFn) (*http.Response, error)

func (*Client) ToolProductSettingsRetrieve

func (c *Client) ToolProductSettingsRetrieve(ctx context.Context, id int, reqEditors ...RequestEditorFn) (*http.Response, error)

func (*Client) ToolProductSettingsUpdate

func (c *Client) ToolProductSettingsUpdate(ctx context.Context, id int, body ToolProductSettingsUpdateJSONRequestBody, reqEditors ...RequestEditorFn) (*http.Response, error)

func (*Client) ToolProductSettingsUpdateWithBody

func (c *Client) ToolProductSettingsUpdateWithBody(ctx context.Context, id int, contentType string, body io.Reader, reqEditors ...RequestEditorFn) (*http.Response, error)

func (*Client) ToolProductSettingsUpdateWithFormdataBody added in v0.2.0

func (c *Client) ToolProductSettingsUpdateWithFormdataBody(ctx context.Context, id int, body ToolProductSettingsUpdateFormdataRequestBody, reqEditors ...RequestEditorFn) (*http.Response, error)

func (*Client) ToolTypesCreate

func (c *Client) ToolTypesCreate(ctx context.Context, body ToolTypesCreateJSONRequestBody, reqEditors ...RequestEditorFn) (*http.Response, error)

func (*Client) ToolTypesCreateWithBody

func (c *Client) ToolTypesCreateWithBody(ctx context.Context, contentType string, body io.Reader, reqEditors ...RequestEditorFn) (*http.Response, error)

func (*Client) ToolTypesCreateWithFormdataBody added in v0.2.0

func (c *Client) ToolTypesCreateWithFormdataBody(ctx context.Context, body ToolTypesCreateFormdataRequestBody, reqEditors ...RequestEditorFn) (*http.Response, error)

func (*Client) ToolTypesDeletePreviewList added in v0.2.0

func (c *Client) ToolTypesDeletePreviewList(ctx context.Context, id int, params *ToolTypesDeletePreviewListParams, reqEditors ...RequestEditorFn) (*http.Response, error)

func (*Client) ToolTypesDestroy

func (c *Client) ToolTypesDestroy(ctx context.Context, id int, reqEditors ...RequestEditorFn) (*http.Response, error)

func (*Client) ToolTypesList

func (c *Client) ToolTypesList(ctx context.Context, params *ToolTypesListParams, reqEditors ...RequestEditorFn) (*http.Response, error)

func (*Client) ToolTypesPartialUpdate

func (c *Client) ToolTypesPartialUpdate(ctx context.Context, id int, body ToolTypesPartialUpdateJSONRequestBody, reqEditors ...RequestEditorFn) (*http.Response, error)

func (*Client) ToolTypesPartialUpdateWithBody

func (c *Client) ToolTypesPartialUpdateWithBody(ctx context.Context, id int, contentType string, body io.Reader, reqEditors ...RequestEditorFn) (*http.Response, error)

func (*Client) ToolTypesPartialUpdateWithFormdataBody added in v0.2.0

func (c *Client) ToolTypesPartialUpdateWithFormdataBody(ctx context.Context, id int, body ToolTypesPartialUpdateFormdataRequestBody, reqEditors ...RequestEditorFn) (*http.Response, error)

func (*Client) ToolTypesRetrieve

func (c *Client) ToolTypesRetrieve(ctx context.Context, id int, reqEditors ...RequestEditorFn) (*http.Response, error)

func (*Client) ToolTypesUpdate

func (c *Client) ToolTypesUpdate(ctx context.Context, id int, body ToolTypesUpdateJSONRequestBody, reqEditors ...RequestEditorFn) (*http.Response, error)

func (*Client) ToolTypesUpdateWithBody

func (c *Client) ToolTypesUpdateWithBody(ctx context.Context, id int, contentType string, body io.Reader, reqEditors ...RequestEditorFn) (*http.Response, error)

func (*Client) ToolTypesUpdateWithFormdataBody added in v0.2.0

func (c *Client) ToolTypesUpdateWithFormdataBody(ctx context.Context, id int, body ToolTypesUpdateFormdataRequestBody, reqEditors ...RequestEditorFn) (*http.Response, error)

func (*Client) UserContactInfosCreate

func (c *Client) UserContactInfosCreate(ctx context.Context, body UserContactInfosCreateJSONRequestBody, reqEditors ...RequestEditorFn) (*http.Response, error)

func (*Client) UserContactInfosCreateWithBody

func (c *Client) UserContactInfosCreateWithBody(ctx context.Context, contentType string, body io.Reader, reqEditors ...RequestEditorFn) (*http.Response, error)

func (*Client) UserContactInfosCreateWithFormdataBody added in v0.2.0

func (c *Client) UserContactInfosCreateWithFormdataBody(ctx context.Context, body UserContactInfosCreateFormdataRequestBody, reqEditors ...RequestEditorFn) (*http.Response, error)

func (*Client) UserContactInfosDeletePreviewList added in v0.2.0

func (c *Client) UserContactInfosDeletePreviewList(ctx context.Context, id int, params *UserContactInfosDeletePreviewListParams, reqEditors ...RequestEditorFn) (*http.Response, error)

func (*Client) UserContactInfosDestroy

func (c *Client) UserContactInfosDestroy(ctx context.Context, id int, reqEditors ...RequestEditorFn) (*http.Response, error)

func (*Client) UserContactInfosList

func (c *Client) UserContactInfosList(ctx context.Context, params *UserContactInfosListParams, reqEditors ...RequestEditorFn) (*http.Response, error)

func (*Client) UserContactInfosPartialUpdate

func (c *Client) UserContactInfosPartialUpdate(ctx context.Context, id int, body UserContactInfosPartialUpdateJSONRequestBody, reqEditors ...RequestEditorFn) (*http.Response, error)

func (*Client) UserContactInfosPartialUpdateWithBody

func (c *Client) UserContactInfosPartialUpdateWithBody(ctx context.Context, id int, contentType string, body io.Reader, reqEditors ...RequestEditorFn) (*http.Response, error)

func (*Client) UserContactInfosPartialUpdateWithFormdataBody added in v0.2.0

func (c *Client) UserContactInfosPartialUpdateWithFormdataBody(ctx context.Context, id int, body UserContactInfosPartialUpdateFormdataRequestBody, reqEditors ...RequestEditorFn) (*http.Response, error)

func (*Client) UserContactInfosRetrieve

func (c *Client) UserContactInfosRetrieve(ctx context.Context, id int, params *UserContactInfosRetrieveParams, reqEditors ...RequestEditorFn) (*http.Response, error)

func (*Client) UserContactInfosUpdate

func (c *Client) UserContactInfosUpdate(ctx context.Context, id int, body UserContactInfosUpdateJSONRequestBody, reqEditors ...RequestEditorFn) (*http.Response, error)

func (*Client) UserContactInfosUpdateWithBody

func (c *Client) UserContactInfosUpdateWithBody(ctx context.Context, id int, contentType string, body io.Reader, reqEditors ...RequestEditorFn) (*http.Response, error)

func (*Client) UserContactInfosUpdateWithFormdataBody added in v0.2.0

func (c *Client) UserContactInfosUpdateWithFormdataBody(ctx context.Context, id int, body UserContactInfosUpdateFormdataRequestBody, reqEditors ...RequestEditorFn) (*http.Response, error)

func (*Client) UserProfileRetrieve

func (c *Client) UserProfileRetrieve(ctx context.Context, reqEditors ...RequestEditorFn) (*http.Response, error)

func (*Client) UsersCreate

func (c *Client) UsersCreate(ctx context.Context, body UsersCreateJSONRequestBody, reqEditors ...RequestEditorFn) (*http.Response, error)

func (*Client) UsersCreateWithBody

func (c *Client) UsersCreateWithBody(ctx context.Context, contentType string, body io.Reader, reqEditors ...RequestEditorFn) (*http.Response, error)

func (*Client) UsersCreateWithFormdataBody added in v0.2.0

func (c *Client) UsersCreateWithFormdataBody(ctx context.Context, body UsersCreateFormdataRequestBody, reqEditors ...RequestEditorFn) (*http.Response, error)

func (*Client) UsersDeletePreviewList added in v0.2.0

func (c *Client) UsersDeletePreviewList(ctx context.Context, id int, params *UsersDeletePreviewListParams, reqEditors ...RequestEditorFn) (*http.Response, error)

func (*Client) UsersDestroy

func (c *Client) UsersDestroy(ctx context.Context, id int, reqEditors ...RequestEditorFn) (*http.Response, error)

func (*Client) UsersList

func (c *Client) UsersList(ctx context.Context, params *UsersListParams, reqEditors ...RequestEditorFn) (*http.Response, error)

func (*Client) UsersPartialUpdate

func (c *Client) UsersPartialUpdate(ctx context.Context, id int, body UsersPartialUpdateJSONRequestBody, reqEditors ...RequestEditorFn) (*http.Response, error)

func (*Client) UsersPartialUpdateWithBody

func (c *Client) UsersPartialUpdateWithBody(ctx context.Context, id int, contentType string, body io.Reader, reqEditors ...RequestEditorFn) (*http.Response, error)

func (*Client) UsersPartialUpdateWithFormdataBody added in v0.2.0

func (c *Client) UsersPartialUpdateWithFormdataBody(ctx context.Context, id int, body UsersPartialUpdateFormdataRequestBody, reqEditors ...RequestEditorFn) (*http.Response, error)

func (*Client) UsersRetrieve

func (c *Client) UsersRetrieve(ctx context.Context, id int, reqEditors ...RequestEditorFn) (*http.Response, error)

func (*Client) UsersUpdate

func (c *Client) UsersUpdate(ctx context.Context, id int, body UsersUpdateJSONRequestBody, reqEditors ...RequestEditorFn) (*http.Response, error)

func (*Client) UsersUpdateWithBody

func (c *Client) UsersUpdateWithBody(ctx context.Context, id int, contentType string, body io.Reader, reqEditors ...RequestEditorFn) (*http.Response, error)

func (*Client) UsersUpdateWithFormdataBody added in v0.2.0

func (c *Client) UsersUpdateWithFormdataBody(ctx context.Context, id int, body UsersUpdateFormdataRequestBody, reqEditors ...RequestEditorFn) (*http.Response, error)

type ClientInterface

type ClientInterface interface {
	// ApiTokenAuthCreate request with any body
	ApiTokenAuthCreateWithBody(ctx context.Context, contentType string, body io.Reader, reqEditors ...RequestEditorFn) (*http.Response, error)

	ApiTokenAuthCreate(ctx context.Context, body ApiTokenAuthCreateJSONRequestBody, reqEditors ...RequestEditorFn) (*http.Response, error)

	ApiTokenAuthCreateWithFormdataBody(ctx context.Context, body ApiTokenAuthCreateFormdataRequestBody, reqEditors ...RequestEditorFn) (*http.Response, error)

	// ConfigurationPermissionsList request
	ConfigurationPermissionsList(ctx context.Context, params *ConfigurationPermissionsListParams, reqEditors ...RequestEditorFn) (*http.Response, error)

	// ConfigurationPermissionsRetrieve request
	ConfigurationPermissionsRetrieve(ctx context.Context, id int, reqEditors ...RequestEditorFn) (*http.Response, error)

	// CredentialMappingsList request
	CredentialMappingsList(ctx context.Context, params *CredentialMappingsListParams, reqEditors ...RequestEditorFn) (*http.Response, error)

	// CredentialMappingsCreate request with any body
	CredentialMappingsCreateWithBody(ctx context.Context, contentType string, body io.Reader, reqEditors ...RequestEditorFn) (*http.Response, error)

	CredentialMappingsCreate(ctx context.Context, body CredentialMappingsCreateJSONRequestBody, reqEditors ...RequestEditorFn) (*http.Response, error)

	CredentialMappingsCreateWithFormdataBody(ctx context.Context, body CredentialMappingsCreateFormdataRequestBody, reqEditors ...RequestEditorFn) (*http.Response, error)

	// CredentialMappingsDestroy request
	CredentialMappingsDestroy(ctx context.Context, id int, reqEditors ...RequestEditorFn) (*http.Response, error)

	// CredentialMappingsRetrieve request
	CredentialMappingsRetrieve(ctx context.Context, id int, reqEditors ...RequestEditorFn) (*http.Response, error)

	// CredentialMappingsPartialUpdate request with any body
	CredentialMappingsPartialUpdateWithBody(ctx context.Context, id int, contentType string, body io.Reader, reqEditors ...RequestEditorFn) (*http.Response, error)

	CredentialMappingsPartialUpdate(ctx context.Context, id int, body CredentialMappingsPartialUpdateJSONRequestBody, reqEditors ...RequestEditorFn) (*http.Response, error)

	CredentialMappingsPartialUpdateWithFormdataBody(ctx context.Context, id int, body CredentialMappingsPartialUpdateFormdataRequestBody, reqEditors ...RequestEditorFn) (*http.Response, error)

	// CredentialMappingsUpdate request with any body
	CredentialMappingsUpdateWithBody(ctx context.Context, id int, contentType string, body io.Reader, reqEditors ...RequestEditorFn) (*http.Response, error)

	CredentialMappingsUpdate(ctx context.Context, id int, body CredentialMappingsUpdateJSONRequestBody, reqEditors ...RequestEditorFn) (*http.Response, error)

	CredentialMappingsUpdateWithFormdataBody(ctx context.Context, id int, body CredentialMappingsUpdateFormdataRequestBody, reqEditors ...RequestEditorFn) (*http.Response, error)

	// CredentialMappingsDeletePreviewList request
	CredentialMappingsDeletePreviewList(ctx context.Context, id int, params *CredentialMappingsDeletePreviewListParams, reqEditors ...RequestEditorFn) (*http.Response, error)

	// CredentialsList request
	CredentialsList(ctx context.Context, params *CredentialsListParams, reqEditors ...RequestEditorFn) (*http.Response, error)

	// CredentialsCreate request with any body
	CredentialsCreateWithBody(ctx context.Context, contentType string, body io.Reader, reqEditors ...RequestEditorFn) (*http.Response, error)

	CredentialsCreate(ctx context.Context, body CredentialsCreateJSONRequestBody, reqEditors ...RequestEditorFn) (*http.Response, error)

	CredentialsCreateWithFormdataBody(ctx context.Context, body CredentialsCreateFormdataRequestBody, reqEditors ...RequestEditorFn) (*http.Response, error)

	// CredentialsDestroy request
	CredentialsDestroy(ctx context.Context, id int, reqEditors ...RequestEditorFn) (*http.Response, error)

	// CredentialsRetrieve request
	CredentialsRetrieve(ctx context.Context, id int, reqEditors ...RequestEditorFn) (*http.Response, error)

	// CredentialsPartialUpdate request with any body
	CredentialsPartialUpdateWithBody(ctx context.Context, id int, contentType string, body io.Reader, reqEditors ...RequestEditorFn) (*http.Response, error)

	CredentialsPartialUpdate(ctx context.Context, id int, body CredentialsPartialUpdateJSONRequestBody, reqEditors ...RequestEditorFn) (*http.Response, error)

	CredentialsPartialUpdateWithFormdataBody(ctx context.Context, id int, body CredentialsPartialUpdateFormdataRequestBody, reqEditors ...RequestEditorFn) (*http.Response, error)

	// CredentialsUpdate request with any body
	CredentialsUpdateWithBody(ctx context.Context, id int, contentType string, body io.Reader, reqEditors ...RequestEditorFn) (*http.Response, error)

	CredentialsUpdate(ctx context.Context, id int, body CredentialsUpdateJSONRequestBody, reqEditors ...RequestEditorFn) (*http.Response, error)

	CredentialsUpdateWithFormdataBody(ctx context.Context, id int, body CredentialsUpdateFormdataRequestBody, reqEditors ...RequestEditorFn) (*http.Response, error)

	// CredentialsDeletePreviewList request
	CredentialsDeletePreviewList(ctx context.Context, id int, params *CredentialsDeletePreviewListParams, reqEditors ...RequestEditorFn) (*http.Response, error)

	// DevelopmentEnvironmentsList request
	DevelopmentEnvironmentsList(ctx context.Context, params *DevelopmentEnvironmentsListParams, reqEditors ...RequestEditorFn) (*http.Response, error)

	// DevelopmentEnvironmentsCreate request with any body
	DevelopmentEnvironmentsCreateWithBody(ctx context.Context, contentType string, body io.Reader, reqEditors ...RequestEditorFn) (*http.Response, error)

	DevelopmentEnvironmentsCreate(ctx context.Context, body DevelopmentEnvironmentsCreateJSONRequestBody, reqEditors ...RequestEditorFn) (*http.Response, error)

	DevelopmentEnvironmentsCreateWithFormdataBody(ctx context.Context, body DevelopmentEnvironmentsCreateFormdataRequestBody, reqEditors ...RequestEditorFn) (*http.Response, error)

	// DevelopmentEnvironmentsDestroy request
	DevelopmentEnvironmentsDestroy(ctx context.Context, id int, reqEditors ...RequestEditorFn) (*http.Response, error)

	// DevelopmentEnvironmentsRetrieve request
	DevelopmentEnvironmentsRetrieve(ctx context.Context, id int, reqEditors ...RequestEditorFn) (*http.Response, error)

	// DevelopmentEnvironmentsPartialUpdate request with any body
	DevelopmentEnvironmentsPartialUpdateWithBody(ctx context.Context, id int, contentType string, body io.Reader, reqEditors ...RequestEditorFn) (*http.Response, error)

	DevelopmentEnvironmentsPartialUpdate(ctx context.Context, id int, body DevelopmentEnvironmentsPartialUpdateJSONRequestBody, reqEditors ...RequestEditorFn) (*http.Response, error)

	DevelopmentEnvironmentsPartialUpdateWithFormdataBody(ctx context.Context, id int, body DevelopmentEnvironmentsPartialUpdateFormdataRequestBody, reqEditors ...RequestEditorFn) (*http.Response, error)

	// DevelopmentEnvironmentsUpdate request with any body
	DevelopmentEnvironmentsUpdateWithBody(ctx context.Context, id int, contentType string, body io.Reader, reqEditors ...RequestEditorFn) (*http.Response, error)

	DevelopmentEnvironmentsUpdate(ctx context.Context, id int, body DevelopmentEnvironmentsUpdateJSONRequestBody, reqEditors ...RequestEditorFn) (*http.Response, error)

	DevelopmentEnvironmentsUpdateWithFormdataBody(ctx context.Context, id int, body DevelopmentEnvironmentsUpdateFormdataRequestBody, reqEditors ...RequestEditorFn) (*http.Response, error)

	// DevelopmentEnvironmentsDeletePreviewList request
	DevelopmentEnvironmentsDeletePreviewList(ctx context.Context, id int, params *DevelopmentEnvironmentsDeletePreviewListParams, reqEditors ...RequestEditorFn) (*http.Response, error)

	// DojoGroupMembersList request
	DojoGroupMembersList(ctx context.Context, params *DojoGroupMembersListParams, reqEditors ...RequestEditorFn) (*http.Response, error)

	// DojoGroupMembersCreate request with any body
	DojoGroupMembersCreateWithBody(ctx context.Context, contentType string, body io.Reader, reqEditors ...RequestEditorFn) (*http.Response, error)

	DojoGroupMembersCreate(ctx context.Context, body DojoGroupMembersCreateJSONRequestBody, reqEditors ...RequestEditorFn) (*http.Response, error)

	DojoGroupMembersCreateWithFormdataBody(ctx context.Context, body DojoGroupMembersCreateFormdataRequestBody, reqEditors ...RequestEditorFn) (*http.Response, error)

	// DojoGroupMembersDestroy request
	DojoGroupMembersDestroy(ctx context.Context, id int, reqEditors ...RequestEditorFn) (*http.Response, error)

	// DojoGroupMembersRetrieve request
	DojoGroupMembersRetrieve(ctx context.Context, id int, params *DojoGroupMembersRetrieveParams, reqEditors ...RequestEditorFn) (*http.Response, error)

	// DojoGroupMembersPartialUpdate request with any body
	DojoGroupMembersPartialUpdateWithBody(ctx context.Context, id int, contentType string, body io.Reader, reqEditors ...RequestEditorFn) (*http.Response, error)

	DojoGroupMembersPartialUpdate(ctx context.Context, id int, body DojoGroupMembersPartialUpdateJSONRequestBody, reqEditors ...RequestEditorFn) (*http.Response, error)

	DojoGroupMembersPartialUpdateWithFormdataBody(ctx context.Context, id int, body DojoGroupMembersPartialUpdateFormdataRequestBody, reqEditors ...RequestEditorFn) (*http.Response, error)

	// DojoGroupMembersUpdate request with any body
	DojoGroupMembersUpdateWithBody(ctx context.Context, id int, contentType string, body io.Reader, reqEditors ...RequestEditorFn) (*http.Response, error)

	DojoGroupMembersUpdate(ctx context.Context, id int, body DojoGroupMembersUpdateJSONRequestBody, reqEditors ...RequestEditorFn) (*http.Response, error)

	DojoGroupMembersUpdateWithFormdataBody(ctx context.Context, id int, body DojoGroupMembersUpdateFormdataRequestBody, reqEditors ...RequestEditorFn) (*http.Response, error)

	// DojoGroupMembersDeletePreviewList request
	DojoGroupMembersDeletePreviewList(ctx context.Context, id int, params *DojoGroupMembersDeletePreviewListParams, reqEditors ...RequestEditorFn) (*http.Response, error)

	// DojoGroupsList request
	DojoGroupsList(ctx context.Context, params *DojoGroupsListParams, reqEditors ...RequestEditorFn) (*http.Response, error)

	// DojoGroupsCreate request with any body
	DojoGroupsCreateWithBody(ctx context.Context, contentType string, body io.Reader, reqEditors ...RequestEditorFn) (*http.Response, error)

	DojoGroupsCreate(ctx context.Context, body DojoGroupsCreateJSONRequestBody, reqEditors ...RequestEditorFn) (*http.Response, error)

	DojoGroupsCreateWithFormdataBody(ctx context.Context, body DojoGroupsCreateFormdataRequestBody, reqEditors ...RequestEditorFn) (*http.Response, error)

	// DojoGroupsDestroy request
	DojoGroupsDestroy(ctx context.Context, id int, reqEditors ...RequestEditorFn) (*http.Response, error)

	// DojoGroupsRetrieve request
	DojoGroupsRetrieve(ctx context.Context, id int, params *DojoGroupsRetrieveParams, reqEditors ...RequestEditorFn) (*http.Response, error)

	// DojoGroupsPartialUpdate request with any body
	DojoGroupsPartialUpdateWithBody(ctx context.Context, id int, contentType string, body io.Reader, reqEditors ...RequestEditorFn) (*http.Response, error)

	DojoGroupsPartialUpdate(ctx context.Context, id int, body DojoGroupsPartialUpdateJSONRequestBody, reqEditors ...RequestEditorFn) (*http.Response, error)

	DojoGroupsPartialUpdateWithFormdataBody(ctx context.Context, id int, body DojoGroupsPartialUpdateFormdataRequestBody, reqEditors ...RequestEditorFn) (*http.Response, error)

	// DojoGroupsUpdate request with any body
	DojoGroupsUpdateWithBody(ctx context.Context, id int, contentType string, body io.Reader, reqEditors ...RequestEditorFn) (*http.Response, error)

	DojoGroupsUpdate(ctx context.Context, id int, body DojoGroupsUpdateJSONRequestBody, reqEditors ...RequestEditorFn) (*http.Response, error)

	DojoGroupsUpdateWithFormdataBody(ctx context.Context, id int, body DojoGroupsUpdateFormdataRequestBody, reqEditors ...RequestEditorFn) (*http.Response, error)

	// DojoGroupsDeletePreviewList request
	DojoGroupsDeletePreviewList(ctx context.Context, id int, params *DojoGroupsDeletePreviewListParams, reqEditors ...RequestEditorFn) (*http.Response, error)

	// EndpointMetaImportCreate request with any body
	EndpointMetaImportCreateWithBody(ctx context.Context, contentType string, body io.Reader, reqEditors ...RequestEditorFn) (*http.Response, error)

	// EndpointStatusList request
	EndpointStatusList(ctx context.Context, params *EndpointStatusListParams, reqEditors ...RequestEditorFn) (*http.Response, error)

	// EndpointStatusCreate request with any body
	EndpointStatusCreateWithBody(ctx context.Context, contentType string, body io.Reader, reqEditors ...RequestEditorFn) (*http.Response, error)

	EndpointStatusCreate(ctx context.Context, body EndpointStatusCreateJSONRequestBody, reqEditors ...RequestEditorFn) (*http.Response, error)

	EndpointStatusCreateWithFormdataBody(ctx context.Context, body EndpointStatusCreateFormdataRequestBody, reqEditors ...RequestEditorFn) (*http.Response, error)

	// EndpointStatusDestroy request
	EndpointStatusDestroy(ctx context.Context, id int, reqEditors ...RequestEditorFn) (*http.Response, error)

	// EndpointStatusRetrieve request
	EndpointStatusRetrieve(ctx context.Context, id int, reqEditors ...RequestEditorFn) (*http.Response, error)

	// EndpointStatusPartialUpdate request with any body
	EndpointStatusPartialUpdateWithBody(ctx context.Context, id int, contentType string, body io.Reader, reqEditors ...RequestEditorFn) (*http.Response, error)

	EndpointStatusPartialUpdate(ctx context.Context, id int, body EndpointStatusPartialUpdateJSONRequestBody, reqEditors ...RequestEditorFn) (*http.Response, error)

	EndpointStatusPartialUpdateWithFormdataBody(ctx context.Context, id int, body EndpointStatusPartialUpdateFormdataRequestBody, reqEditors ...RequestEditorFn) (*http.Response, error)

	// EndpointStatusUpdate request with any body
	EndpointStatusUpdateWithBody(ctx context.Context, id int, contentType string, body io.Reader, reqEditors ...RequestEditorFn) (*http.Response, error)

	EndpointStatusUpdate(ctx context.Context, id int, body EndpointStatusUpdateJSONRequestBody, reqEditors ...RequestEditorFn) (*http.Response, error)

	EndpointStatusUpdateWithFormdataBody(ctx context.Context, id int, body EndpointStatusUpdateFormdataRequestBody, reqEditors ...RequestEditorFn) (*http.Response, error)

	// EndpointStatusDeletePreviewList request
	EndpointStatusDeletePreviewList(ctx context.Context, id int, params *EndpointStatusDeletePreviewListParams, reqEditors ...RequestEditorFn) (*http.Response, error)

	// EndpointsList request
	EndpointsList(ctx context.Context, params *EndpointsListParams, reqEditors ...RequestEditorFn) (*http.Response, error)

	// EndpointsCreate request with any body
	EndpointsCreateWithBody(ctx context.Context, contentType string, body io.Reader, reqEditors ...RequestEditorFn) (*http.Response, error)

	EndpointsCreate(ctx context.Context, body EndpointsCreateJSONRequestBody, reqEditors ...RequestEditorFn) (*http.Response, error)

	EndpointsCreateWithFormdataBody(ctx context.Context, body EndpointsCreateFormdataRequestBody, reqEditors ...RequestEditorFn) (*http.Response, error)

	// EndpointsDestroy request
	EndpointsDestroy(ctx context.Context, id int, reqEditors ...RequestEditorFn) (*http.Response, error)

	// EndpointsRetrieve request
	EndpointsRetrieve(ctx context.Context, id int, reqEditors ...RequestEditorFn) (*http.Response, error)

	// EndpointsPartialUpdate request with any body
	EndpointsPartialUpdateWithBody(ctx context.Context, id int, contentType string, body io.Reader, reqEditors ...RequestEditorFn) (*http.Response, error)

	EndpointsPartialUpdate(ctx context.Context, id int, body EndpointsPartialUpdateJSONRequestBody, reqEditors ...RequestEditorFn) (*http.Response, error)

	EndpointsPartialUpdateWithFormdataBody(ctx context.Context, id int, body EndpointsPartialUpdateFormdataRequestBody, reqEditors ...RequestEditorFn) (*http.Response, error)

	// EndpointsUpdate request with any body
	EndpointsUpdateWithBody(ctx context.Context, id int, contentType string, body io.Reader, reqEditors ...RequestEditorFn) (*http.Response, error)

	EndpointsUpdate(ctx context.Context, id int, body EndpointsUpdateJSONRequestBody, reqEditors ...RequestEditorFn) (*http.Response, error)

	EndpointsUpdateWithFormdataBody(ctx context.Context, id int, body EndpointsUpdateFormdataRequestBody, reqEditors ...RequestEditorFn) (*http.Response, error)

	// EndpointsDeletePreviewList request
	EndpointsDeletePreviewList(ctx context.Context, id int, params *EndpointsDeletePreviewListParams, reqEditors ...RequestEditorFn) (*http.Response, error)

	// EndpointsGenerateReportCreate request with any body
	EndpointsGenerateReportCreateWithBody(ctx context.Context, id int, contentType string, body io.Reader, reqEditors ...RequestEditorFn) (*http.Response, error)

	EndpointsGenerateReportCreate(ctx context.Context, id int, body EndpointsGenerateReportCreateJSONRequestBody, reqEditors ...RequestEditorFn) (*http.Response, error)

	EndpointsGenerateReportCreateWithFormdataBody(ctx context.Context, id int, body EndpointsGenerateReportCreateFormdataRequestBody, reqEditors ...RequestEditorFn) (*http.Response, error)

	// EngagementPresetsList request
	EngagementPresetsList(ctx context.Context, params *EngagementPresetsListParams, reqEditors ...RequestEditorFn) (*http.Response, error)

	// EngagementPresetsCreate request with any body
	EngagementPresetsCreateWithBody(ctx context.Context, contentType string, body io.Reader, reqEditors ...RequestEditorFn) (*http.Response, error)

	EngagementPresetsCreate(ctx context.Context, body EngagementPresetsCreateJSONRequestBody, reqEditors ...RequestEditorFn) (*http.Response, error)

	EngagementPresetsCreateWithFormdataBody(ctx context.Context, body EngagementPresetsCreateFormdataRequestBody, reqEditors ...RequestEditorFn) (*http.Response, error)

	// EngagementPresetsDestroy request
	EngagementPresetsDestroy(ctx context.Context, id int, reqEditors ...RequestEditorFn) (*http.Response, error)

	// EngagementPresetsRetrieve request
	EngagementPresetsRetrieve(ctx context.Context, id int, reqEditors ...RequestEditorFn) (*http.Response, error)

	// EngagementPresetsPartialUpdate request with any body
	EngagementPresetsPartialUpdateWithBody(ctx context.Context, id int, contentType string, body io.Reader, reqEditors ...RequestEditorFn) (*http.Response, error)

	EngagementPresetsPartialUpdate(ctx context.Context, id int, body EngagementPresetsPartialUpdateJSONRequestBody, reqEditors ...RequestEditorFn) (*http.Response, error)

	EngagementPresetsPartialUpdateWithFormdataBody(ctx context.Context, id int, body EngagementPresetsPartialUpdateFormdataRequestBody, reqEditors ...RequestEditorFn) (*http.Response, error)

	// EngagementPresetsUpdate request with any body
	EngagementPresetsUpdateWithBody(ctx context.Context, id int, contentType string, body io.Reader, reqEditors ...RequestEditorFn) (*http.Response, error)

	EngagementPresetsUpdate(ctx context.Context, id int, body EngagementPresetsUpdateJSONRequestBody, reqEditors ...RequestEditorFn) (*http.Response, error)

	EngagementPresetsUpdateWithFormdataBody(ctx context.Context, id int, body EngagementPresetsUpdateFormdataRequestBody, reqEditors ...RequestEditorFn) (*http.Response, error)

	// EngagementPresetsDeletePreviewList request
	EngagementPresetsDeletePreviewList(ctx context.Context, id int, params *EngagementPresetsDeletePreviewListParams, reqEditors ...RequestEditorFn) (*http.Response, error)

	// EngagementsList request
	EngagementsList(ctx context.Context, params *EngagementsListParams, reqEditors ...RequestEditorFn) (*http.Response, error)

	// EngagementsCreate request with any body
	EngagementsCreateWithBody(ctx context.Context, contentType string, body io.Reader, reqEditors ...RequestEditorFn) (*http.Response, error)

	EngagementsCreate(ctx context.Context, body EngagementsCreateJSONRequestBody, reqEditors ...RequestEditorFn) (*http.Response, error)

	EngagementsCreateWithFormdataBody(ctx context.Context, body EngagementsCreateFormdataRequestBody, reqEditors ...RequestEditorFn) (*http.Response, error)

	// EngagementsDestroy request
	EngagementsDestroy(ctx context.Context, id int, reqEditors ...RequestEditorFn) (*http.Response, error)

	// EngagementsRetrieve request
	EngagementsRetrieve(ctx context.Context, id int, reqEditors ...RequestEditorFn) (*http.Response, error)

	// EngagementsPartialUpdate request with any body
	EngagementsPartialUpdateWithBody(ctx context.Context, id int, contentType string, body io.Reader, reqEditors ...RequestEditorFn) (*http.Response, error)

	EngagementsPartialUpdate(ctx context.Context, id int, body EngagementsPartialUpdateJSONRequestBody, reqEditors ...RequestEditorFn) (*http.Response, error)

	EngagementsPartialUpdateWithFormdataBody(ctx context.Context, id int, body EngagementsPartialUpdateFormdataRequestBody, reqEditors ...RequestEditorFn) (*http.Response, error)

	// EngagementsUpdate request with any body
	EngagementsUpdateWithBody(ctx context.Context, id int, contentType string, body io.Reader, reqEditors ...RequestEditorFn) (*http.Response, error)

	EngagementsUpdate(ctx context.Context, id int, body EngagementsUpdateJSONRequestBody, reqEditors ...RequestEditorFn) (*http.Response, error)

	EngagementsUpdateWithFormdataBody(ctx context.Context, id int, body EngagementsUpdateFormdataRequestBody, reqEditors ...RequestEditorFn) (*http.Response, error)

	// EngagementsAcceptRisksCreate request with any body
	EngagementsAcceptRisksCreateWithBody(ctx context.Context, id int, contentType string, body io.Reader, reqEditors ...RequestEditorFn) (*http.Response, error)

	EngagementsAcceptRisksCreate(ctx context.Context, id int, body EngagementsAcceptRisksCreateJSONRequestBody, reqEditors ...RequestEditorFn) (*http.Response, error)

	EngagementsAcceptRisksCreateWithFormdataBody(ctx context.Context, id int, body EngagementsAcceptRisksCreateFormdataRequestBody, reqEditors ...RequestEditorFn) (*http.Response, error)

	// EngagementsCloseCreate request
	EngagementsCloseCreate(ctx context.Context, id int, reqEditors ...RequestEditorFn) (*http.Response, error)

	// EngagementsCompleteChecklistRetrieve request
	EngagementsCompleteChecklistRetrieve(ctx context.Context, id int, reqEditors ...RequestEditorFn) (*http.Response, error)

	// EngagementsCompleteChecklistCreate request with any body
	EngagementsCompleteChecklistCreateWithBody(ctx context.Context, id int, contentType string, body io.Reader, reqEditors ...RequestEditorFn) (*http.Response, error)

	EngagementsCompleteChecklistCreate(ctx context.Context, id int, body EngagementsCompleteChecklistCreateJSONRequestBody, reqEditors ...RequestEditorFn) (*http.Response, error)

	EngagementsCompleteChecklistCreateWithFormdataBody(ctx context.Context, id int, body EngagementsCompleteChecklistCreateFormdataRequestBody, reqEditors ...RequestEditorFn) (*http.Response, error)

	// EngagementsDeletePreviewList request
	EngagementsDeletePreviewList(ctx context.Context, id int, params *EngagementsDeletePreviewListParams, reqEditors ...RequestEditorFn) (*http.Response, error)

	// EngagementsFilesRetrieve request
	EngagementsFilesRetrieve(ctx context.Context, id int, reqEditors ...RequestEditorFn) (*http.Response, error)

	// EngagementsFilesCreate request with any body
	EngagementsFilesCreateWithBody(ctx context.Context, id int, contentType string, body io.Reader, reqEditors ...RequestEditorFn) (*http.Response, error)

	// EngagementsFilesDownloadRetrieve request
	EngagementsFilesDownloadRetrieve(ctx context.Context, id int, fileId string, reqEditors ...RequestEditorFn) (*http.Response, error)

	// EngagementsGenerateReportCreate request with any body
	EngagementsGenerateReportCreateWithBody(ctx context.Context, id int, contentType string, body io.Reader, reqEditors ...RequestEditorFn) (*http.Response, error)

	EngagementsGenerateReportCreate(ctx context.Context, id int, body EngagementsGenerateReportCreateJSONRequestBody, reqEditors ...RequestEditorFn) (*http.Response, error)

	EngagementsGenerateReportCreateWithFormdataBody(ctx context.Context, id int, body EngagementsGenerateReportCreateFormdataRequestBody, reqEditors ...RequestEditorFn) (*http.Response, error)

	// EngagementsNotesRetrieve request
	EngagementsNotesRetrieve(ctx context.Context, id int, reqEditors ...RequestEditorFn) (*http.Response, error)

	// EngagementsNotesCreate request with any body
	EngagementsNotesCreateWithBody(ctx context.Context, id int, contentType string, body io.Reader, reqEditors ...RequestEditorFn) (*http.Response, error)

	EngagementsNotesCreate(ctx context.Context, id int, body EngagementsNotesCreateJSONRequestBody, reqEditors ...RequestEditorFn) (*http.Response, error)

	EngagementsNotesCreateWithFormdataBody(ctx context.Context, id int, body EngagementsNotesCreateFormdataRequestBody, reqEditors ...RequestEditorFn) (*http.Response, error)

	// EngagementsReopenCreate request
	EngagementsReopenCreate(ctx context.Context, id int, reqEditors ...RequestEditorFn) (*http.Response, error)

	// FindingTemplatesList request
	FindingTemplatesList(ctx context.Context, params *FindingTemplatesListParams, reqEditors ...RequestEditorFn) (*http.Response, error)

	// FindingTemplatesCreate request with any body
	FindingTemplatesCreateWithBody(ctx context.Context, contentType string, body io.Reader, reqEditors ...RequestEditorFn) (*http.Response, error)

	FindingTemplatesCreate(ctx context.Context, body FindingTemplatesCreateJSONRequestBody, reqEditors ...RequestEditorFn) (*http.Response, error)

	FindingTemplatesCreateWithFormdataBody(ctx context.Context, body FindingTemplatesCreateFormdataRequestBody, reqEditors ...RequestEditorFn) (*http.Response, error)

	// FindingTemplatesDestroy request
	FindingTemplatesDestroy(ctx context.Context, id int, reqEditors ...RequestEditorFn) (*http.Response, error)

	// FindingTemplatesRetrieve request
	FindingTemplatesRetrieve(ctx context.Context, id int, reqEditors ...RequestEditorFn) (*http.Response, error)

	// FindingTemplatesPartialUpdate request with any body
	FindingTemplatesPartialUpdateWithBody(ctx context.Context, id int, contentType string, body io.Reader, reqEditors ...RequestEditorFn) (*http.Response, error)

	FindingTemplatesPartialUpdate(ctx context.Context, id int, body FindingTemplatesPartialUpdateJSONRequestBody, reqEditors ...RequestEditorFn) (*http.Response, error)

	FindingTemplatesPartialUpdateWithFormdataBody(ctx context.Context, id int, body FindingTemplatesPartialUpdateFormdataRequestBody, reqEditors ...RequestEditorFn) (*http.Response, error)

	// FindingTemplatesUpdate request with any body
	FindingTemplatesUpdateWithBody(ctx context.Context, id int, contentType string, body io.Reader, reqEditors ...RequestEditorFn) (*http.Response, error)

	FindingTemplatesUpdate(ctx context.Context, id int, body FindingTemplatesUpdateJSONRequestBody, reqEditors ...RequestEditorFn) (*http.Response, error)

	FindingTemplatesUpdateWithFormdataBody(ctx context.Context, id int, body FindingTemplatesUpdateFormdataRequestBody, reqEditors ...RequestEditorFn) (*http.Response, error)

	// FindingTemplatesDeletePreviewList request
	FindingTemplatesDeletePreviewList(ctx context.Context, id int, params *FindingTemplatesDeletePreviewListParams, reqEditors ...RequestEditorFn) (*http.Response, error)

	// FindingsList request
	FindingsList(ctx context.Context, params *FindingsListParams, reqEditors ...RequestEditorFn) (*http.Response, error)

	// FindingsCreate request with any body
	FindingsCreateWithBody(ctx context.Context, contentType string, body io.Reader, reqEditors ...RequestEditorFn) (*http.Response, error)

	FindingsCreate(ctx context.Context, body FindingsCreateJSONRequestBody, reqEditors ...RequestEditorFn) (*http.Response, error)

	FindingsCreateWithFormdataBody(ctx context.Context, body FindingsCreateFormdataRequestBody, reqEditors ...RequestEditorFn) (*http.Response, error)

	// FindingsAcceptRisksCreate request with any body
	FindingsAcceptRisksCreateWithBody(ctx context.Context, params *FindingsAcceptRisksCreateParams, contentType string, body io.Reader, reqEditors ...RequestEditorFn) (*http.Response, error)

	FindingsAcceptRisksCreate(ctx context.Context, params *FindingsAcceptRisksCreateParams, body FindingsAcceptRisksCreateJSONRequestBody, reqEditors ...RequestEditorFn) (*http.Response, error)

	FindingsAcceptRisksCreateWithFormdataBody(ctx context.Context, params *FindingsAcceptRisksCreateParams, body FindingsAcceptRisksCreateFormdataRequestBody, reqEditors ...RequestEditorFn) (*http.Response, error)

	// FindingsGenerateReportCreate request with any body
	FindingsGenerateReportCreateWithBody(ctx context.Context, contentType string, body io.Reader, reqEditors ...RequestEditorFn) (*http.Response, error)

	FindingsGenerateReportCreate(ctx context.Context, body FindingsGenerateReportCreateJSONRequestBody, reqEditors ...RequestEditorFn) (*http.Response, error)

	FindingsGenerateReportCreateWithFormdataBody(ctx context.Context, body FindingsGenerateReportCreateFormdataRequestBody, reqEditors ...RequestEditorFn) (*http.Response, error)

	// FindingsDestroy request
	FindingsDestroy(ctx context.Context, id int, reqEditors ...RequestEditorFn) (*http.Response, error)

	// FindingsRetrieve request
	FindingsRetrieve(ctx context.Context, id int, params *FindingsRetrieveParams, reqEditors ...RequestEditorFn) (*http.Response, error)

	// FindingsPartialUpdate request with any body
	FindingsPartialUpdateWithBody(ctx context.Context, id int, contentType string, body io.Reader, reqEditors ...RequestEditorFn) (*http.Response, error)

	FindingsPartialUpdate(ctx context.Context, id int, body FindingsPartialUpdateJSONRequestBody, reqEditors ...RequestEditorFn) (*http.Response, error)

	FindingsPartialUpdateWithFormdataBody(ctx context.Context, id int, body FindingsPartialUpdateFormdataRequestBody, reqEditors ...RequestEditorFn) (*http.Response, error)

	// FindingsUpdate request with any body
	FindingsUpdateWithBody(ctx context.Context, id int, contentType string, body io.Reader, reqEditors ...RequestEditorFn) (*http.Response, error)

	FindingsUpdate(ctx context.Context, id int, body FindingsUpdateJSONRequestBody, reqEditors ...RequestEditorFn) (*http.Response, error)

	FindingsUpdateWithFormdataBody(ctx context.Context, id int, body FindingsUpdateFormdataRequestBody, reqEditors ...RequestEditorFn) (*http.Response, error)

	// FindingsCloseCreate request with any body
	FindingsCloseCreateWithBody(ctx context.Context, id int, contentType string, body io.Reader, reqEditors ...RequestEditorFn) (*http.Response, error)

	FindingsCloseCreate(ctx context.Context, id int, body FindingsCloseCreateJSONRequestBody, reqEditors ...RequestEditorFn) (*http.Response, error)

	FindingsCloseCreateWithFormdataBody(ctx context.Context, id int, body FindingsCloseCreateFormdataRequestBody, reqEditors ...RequestEditorFn) (*http.Response, error)

	// FindingsDeletePreviewList request
	FindingsDeletePreviewList(ctx context.Context, id int, params *FindingsDeletePreviewListParams, reqEditors ...RequestEditorFn) (*http.Response, error)

	// FindingsDuplicateList request
	FindingsDuplicateList(ctx context.Context, id int, reqEditors ...RequestEditorFn) (*http.Response, error)

	// FindingsDuplicateResetCreate request
	FindingsDuplicateResetCreate(ctx context.Context, id int, reqEditors ...RequestEditorFn) (*http.Response, error)

	// FindingsFilesRetrieve request
	FindingsFilesRetrieve(ctx context.Context, id int, reqEditors ...RequestEditorFn) (*http.Response, error)

	// FindingsFilesCreate request with any body
	FindingsFilesCreateWithBody(ctx context.Context, id int, contentType string, body io.Reader, reqEditors ...RequestEditorFn) (*http.Response, error)

	// FindingsFilesDownloadRetrieve request
	FindingsFilesDownloadRetrieve(ctx context.Context, id int, fileId string, reqEditors ...RequestEditorFn) (*http.Response, error)

	// FindingsMetadataDestroy request
	FindingsMetadataDestroy(ctx context.Context, id int, params *FindingsMetadataDestroyParams, reqEditors ...RequestEditorFn) (*http.Response, error)

	// FindingsMetadataList request
	FindingsMetadataList(ctx context.Context, id int, reqEditors ...RequestEditorFn) (*http.Response, error)

	// FindingsMetadataCreate request with any body
	FindingsMetadataCreateWithBody(ctx context.Context, id int, contentType string, body io.Reader, reqEditors ...RequestEditorFn) (*http.Response, error)

	FindingsMetadataCreate(ctx context.Context, id int, body FindingsMetadataCreateJSONRequestBody, reqEditors ...RequestEditorFn) (*http.Response, error)

	FindingsMetadataCreateWithFormdataBody(ctx context.Context, id int, body FindingsMetadataCreateFormdataRequestBody, reqEditors ...RequestEditorFn) (*http.Response, error)

	// FindingsMetadataUpdate request with any body
	FindingsMetadataUpdateWithBody(ctx context.Context, id int, contentType string, body io.Reader, reqEditors ...RequestEditorFn) (*http.Response, error)

	FindingsMetadataUpdate(ctx context.Context, id int, body FindingsMetadataUpdateJSONRequestBody, reqEditors ...RequestEditorFn) (*http.Response, error)

	FindingsMetadataUpdateWithFormdataBody(ctx context.Context, id int, body FindingsMetadataUpdateFormdataRequestBody, reqEditors ...RequestEditorFn) (*http.Response, error)

	// FindingsNotesRetrieve request
	FindingsNotesRetrieve(ctx context.Context, id int, reqEditors ...RequestEditorFn) (*http.Response, error)

	// FindingsNotesCreate request with any body
	FindingsNotesCreateWithBody(ctx context.Context, id int, contentType string, body io.Reader, reqEditors ...RequestEditorFn) (*http.Response, error)

	FindingsNotesCreate(ctx context.Context, id int, body FindingsNotesCreateJSONRequestBody, reqEditors ...RequestEditorFn) (*http.Response, error)

	FindingsNotesCreateWithFormdataBody(ctx context.Context, id int, body FindingsNotesCreateFormdataRequestBody, reqEditors ...RequestEditorFn) (*http.Response, error)

	// FindingsOriginalCreate request
	FindingsOriginalCreate(ctx context.Context, id int, newFid int, reqEditors ...RequestEditorFn) (*http.Response, error)

	// FindingsRemoveNotePartialUpdate request with any body
	FindingsRemoveNotePartialUpdateWithBody(ctx context.Context, id int, contentType string, body io.Reader, reqEditors ...RequestEditorFn) (*http.Response, error)

	FindingsRemoveNotePartialUpdate(ctx context.Context, id int, body FindingsRemoveNotePartialUpdateJSONRequestBody, reqEditors ...RequestEditorFn) (*http.Response, error)

	FindingsRemoveNotePartialUpdateWithFormdataBody(ctx context.Context, id int, body FindingsRemoveNotePartialUpdateFormdataRequestBody, reqEditors ...RequestEditorFn) (*http.Response, error)

	// FindingsRemoveTagsPartialUpdate request with any body
	FindingsRemoveTagsPartialUpdateWithBody(ctx context.Context, id int, contentType string, body io.Reader, reqEditors ...RequestEditorFn) (*http.Response, error)

	FindingsRemoveTagsPartialUpdate(ctx context.Context, id int, body FindingsRemoveTagsPartialUpdateJSONRequestBody, reqEditors ...RequestEditorFn) (*http.Response, error)

	FindingsRemoveTagsPartialUpdateWithFormdataBody(ctx context.Context, id int, body FindingsRemoveTagsPartialUpdateFormdataRequestBody, reqEditors ...RequestEditorFn) (*http.Response, error)

	// FindingsRemoveTagsUpdate request with any body
	FindingsRemoveTagsUpdateWithBody(ctx context.Context, id int, contentType string, body io.Reader, reqEditors ...RequestEditorFn) (*http.Response, error)

	FindingsRemoveTagsUpdate(ctx context.Context, id int, body FindingsRemoveTagsUpdateJSONRequestBody, reqEditors ...RequestEditorFn) (*http.Response, error)

	FindingsRemoveTagsUpdateWithFormdataBody(ctx context.Context, id int, body FindingsRemoveTagsUpdateFormdataRequestBody, reqEditors ...RequestEditorFn) (*http.Response, error)

	// FindingsRequestResponseRetrieve request
	FindingsRequestResponseRetrieve(ctx context.Context, id int, reqEditors ...RequestEditorFn) (*http.Response, error)

	// FindingsRequestResponseCreate request with any body
	FindingsRequestResponseCreateWithBody(ctx context.Context, id int, contentType string, body io.Reader, reqEditors ...RequestEditorFn) (*http.Response, error)

	FindingsRequestResponseCreate(ctx context.Context, id int, body FindingsRequestResponseCreateJSONRequestBody, reqEditors ...RequestEditorFn) (*http.Response, error)

	FindingsRequestResponseCreateWithFormdataBody(ctx context.Context, id int, body FindingsRequestResponseCreateFormdataRequestBody, reqEditors ...RequestEditorFn) (*http.Response, error)

	// FindingsTagsRetrieve request
	FindingsTagsRetrieve(ctx context.Context, id int, reqEditors ...RequestEditorFn) (*http.Response, error)

	// FindingsTagsCreate request with any body
	FindingsTagsCreateWithBody(ctx context.Context, id int, contentType string, body io.Reader, reqEditors ...RequestEditorFn) (*http.Response, error)

	FindingsTagsCreate(ctx context.Context, id int, body FindingsTagsCreateJSONRequestBody, reqEditors ...RequestEditorFn) (*http.Response, error)

	FindingsTagsCreateWithFormdataBody(ctx context.Context, id int, body FindingsTagsCreateFormdataRequestBody, reqEditors ...RequestEditorFn) (*http.Response, error)

	// GlobalRolesList request
	GlobalRolesList(ctx context.Context, params *GlobalRolesListParams, reqEditors ...RequestEditorFn) (*http.Response, error)

	// GlobalRolesCreate request with any body
	GlobalRolesCreateWithBody(ctx context.Context, contentType string, body io.Reader, reqEditors ...RequestEditorFn) (*http.Response, error)

	GlobalRolesCreate(ctx context.Context, body GlobalRolesCreateJSONRequestBody, reqEditors ...RequestEditorFn) (*http.Response, error)

	GlobalRolesCreateWithFormdataBody(ctx context.Context, body GlobalRolesCreateFormdataRequestBody, reqEditors ...RequestEditorFn) (*http.Response, error)

	// GlobalRolesDestroy request
	GlobalRolesDestroy(ctx context.Context, id int, reqEditors ...RequestEditorFn) (*http.Response, error)

	// GlobalRolesRetrieve request
	GlobalRolesRetrieve(ctx context.Context, id int, reqEditors ...RequestEditorFn) (*http.Response, error)

	// GlobalRolesPartialUpdate request with any body
	GlobalRolesPartialUpdateWithBody(ctx context.Context, id int, contentType string, body io.Reader, reqEditors ...RequestEditorFn) (*http.Response, error)

	GlobalRolesPartialUpdate(ctx context.Context, id int, body GlobalRolesPartialUpdateJSONRequestBody, reqEditors ...RequestEditorFn) (*http.Response, error)

	GlobalRolesPartialUpdateWithFormdataBody(ctx context.Context, id int, body GlobalRolesPartialUpdateFormdataRequestBody, reqEditors ...RequestEditorFn) (*http.Response, error)

	// GlobalRolesUpdate request with any body
	GlobalRolesUpdateWithBody(ctx context.Context, id int, contentType string, body io.Reader, reqEditors ...RequestEditorFn) (*http.Response, error)

	GlobalRolesUpdate(ctx context.Context, id int, body GlobalRolesUpdateJSONRequestBody, reqEditors ...RequestEditorFn) (*http.Response, error)

	GlobalRolesUpdateWithFormdataBody(ctx context.Context, id int, body GlobalRolesUpdateFormdataRequestBody, reqEditors ...RequestEditorFn) (*http.Response, error)

	// GlobalRolesDeletePreviewList request
	GlobalRolesDeletePreviewList(ctx context.Context, id int, params *GlobalRolesDeletePreviewListParams, reqEditors ...RequestEditorFn) (*http.Response, error)

	// ImportLanguagesCreate request with any body
	ImportLanguagesCreateWithBody(ctx context.Context, contentType string, body io.Reader, reqEditors ...RequestEditorFn) (*http.Response, error)

	// ImportScanCreate request with any body
	ImportScanCreateWithBody(ctx context.Context, contentType string, body io.Reader, reqEditors ...RequestEditorFn) (*http.Response, error)

	// JiraConfigurationsList request
	JiraConfigurationsList(ctx context.Context, params *JiraConfigurationsListParams, reqEditors ...RequestEditorFn) (*http.Response, error)

	// JiraConfigurationsCreate request with any body
	JiraConfigurationsCreateWithBody(ctx context.Context, contentType string, body io.Reader, reqEditors ...RequestEditorFn) (*http.Response, error)

	JiraConfigurationsCreate(ctx context.Context, body JiraConfigurationsCreateJSONRequestBody, reqEditors ...RequestEditorFn) (*http.Response, error)

	JiraConfigurationsCreateWithFormdataBody(ctx context.Context, body JiraConfigurationsCreateFormdataRequestBody, reqEditors ...RequestEditorFn) (*http.Response, error)

	// JiraConfigurationsDestroy request
	JiraConfigurationsDestroy(ctx context.Context, id int, reqEditors ...RequestEditorFn) (*http.Response, error)

	// JiraConfigurationsRetrieve request
	JiraConfigurationsRetrieve(ctx context.Context, id int, reqEditors ...RequestEditorFn) (*http.Response, error)

	// JiraConfigurationsPartialUpdate request with any body
	JiraConfigurationsPartialUpdateWithBody(ctx context.Context, id int, contentType string, body io.Reader, reqEditors ...RequestEditorFn) (*http.Response, error)

	JiraConfigurationsPartialUpdate(ctx context.Context, id int, body JiraConfigurationsPartialUpdateJSONRequestBody, reqEditors ...RequestEditorFn) (*http.Response, error)

	JiraConfigurationsPartialUpdateWithFormdataBody(ctx context.Context, id int, body JiraConfigurationsPartialUpdateFormdataRequestBody, reqEditors ...RequestEditorFn) (*http.Response, error)

	// JiraConfigurationsUpdate request with any body
	JiraConfigurationsUpdateWithBody(ctx context.Context, id int, contentType string, body io.Reader, reqEditors ...RequestEditorFn) (*http.Response, error)

	JiraConfigurationsUpdate(ctx context.Context, id int, body JiraConfigurationsUpdateJSONRequestBody, reqEditors ...RequestEditorFn) (*http.Response, error)

	JiraConfigurationsUpdateWithFormdataBody(ctx context.Context, id int, body JiraConfigurationsUpdateFormdataRequestBody, reqEditors ...RequestEditorFn) (*http.Response, error)

	// JiraConfigurationsDeletePreviewList request
	JiraConfigurationsDeletePreviewList(ctx context.Context, id int, params *JiraConfigurationsDeletePreviewListParams, reqEditors ...RequestEditorFn) (*http.Response, error)

	// JiraFindingMappingsList request
	JiraFindingMappingsList(ctx context.Context, params *JiraFindingMappingsListParams, reqEditors ...RequestEditorFn) (*http.Response, error)

	// JiraFindingMappingsCreate request with any body
	JiraFindingMappingsCreateWithBody(ctx context.Context, contentType string, body io.Reader, reqEditors ...RequestEditorFn) (*http.Response, error)

	JiraFindingMappingsCreate(ctx context.Context, body JiraFindingMappingsCreateJSONRequestBody, reqEditors ...RequestEditorFn) (*http.Response, error)

	JiraFindingMappingsCreateWithFormdataBody(ctx context.Context, body JiraFindingMappingsCreateFormdataRequestBody, reqEditors ...RequestEditorFn) (*http.Response, error)

	// JiraFindingMappingsDestroy request
	JiraFindingMappingsDestroy(ctx context.Context, id int, reqEditors ...RequestEditorFn) (*http.Response, error)

	// JiraFindingMappingsRetrieve request
	JiraFindingMappingsRetrieve(ctx context.Context, id int, reqEditors ...RequestEditorFn) (*http.Response, error)

	// JiraFindingMappingsPartialUpdate request with any body
	JiraFindingMappingsPartialUpdateWithBody(ctx context.Context, id int, contentType string, body io.Reader, reqEditors ...RequestEditorFn) (*http.Response, error)

	JiraFindingMappingsPartialUpdate(ctx context.Context, id int, body JiraFindingMappingsPartialUpdateJSONRequestBody, reqEditors ...RequestEditorFn) (*http.Response, error)

	JiraFindingMappingsPartialUpdateWithFormdataBody(ctx context.Context, id int, body JiraFindingMappingsPartialUpdateFormdataRequestBody, reqEditors ...RequestEditorFn) (*http.Response, error)

	// JiraFindingMappingsUpdate request with any body
	JiraFindingMappingsUpdateWithBody(ctx context.Context, id int, contentType string, body io.Reader, reqEditors ...RequestEditorFn) (*http.Response, error)

	JiraFindingMappingsUpdate(ctx context.Context, id int, body JiraFindingMappingsUpdateJSONRequestBody, reqEditors ...RequestEditorFn) (*http.Response, error)

	JiraFindingMappingsUpdateWithFormdataBody(ctx context.Context, id int, body JiraFindingMappingsUpdateFormdataRequestBody, reqEditors ...RequestEditorFn) (*http.Response, error)

	// JiraFindingMappingsDeletePreviewList request
	JiraFindingMappingsDeletePreviewList(ctx context.Context, id int, params *JiraFindingMappingsDeletePreviewListParams, reqEditors ...RequestEditorFn) (*http.Response, error)

	// JiraInstancesList request
	JiraInstancesList(ctx context.Context, params *JiraInstancesListParams, reqEditors ...RequestEditorFn) (*http.Response, error)

	// JiraInstancesCreate request with any body
	JiraInstancesCreateWithBody(ctx context.Context, contentType string, body io.Reader, reqEditors ...RequestEditorFn) (*http.Response, error)

	JiraInstancesCreate(ctx context.Context, body JiraInstancesCreateJSONRequestBody, reqEditors ...RequestEditorFn) (*http.Response, error)

	JiraInstancesCreateWithFormdataBody(ctx context.Context, body JiraInstancesCreateFormdataRequestBody, reqEditors ...RequestEditorFn) (*http.Response, error)

	// JiraInstancesDestroy request
	JiraInstancesDestroy(ctx context.Context, id int, reqEditors ...RequestEditorFn) (*http.Response, error)

	// JiraInstancesRetrieve request
	JiraInstancesRetrieve(ctx context.Context, id int, reqEditors ...RequestEditorFn) (*http.Response, error)

	// JiraInstancesPartialUpdate request with any body
	JiraInstancesPartialUpdateWithBody(ctx context.Context, id int, contentType string, body io.Reader, reqEditors ...RequestEditorFn) (*http.Response, error)

	JiraInstancesPartialUpdate(ctx context.Context, id int, body JiraInstancesPartialUpdateJSONRequestBody, reqEditors ...RequestEditorFn) (*http.Response, error)

	JiraInstancesPartialUpdateWithFormdataBody(ctx context.Context, id int, body JiraInstancesPartialUpdateFormdataRequestBody, reqEditors ...RequestEditorFn) (*http.Response, error)

	// JiraInstancesUpdate request with any body
	JiraInstancesUpdateWithBody(ctx context.Context, id int, contentType string, body io.Reader, reqEditors ...RequestEditorFn) (*http.Response, error)

	JiraInstancesUpdate(ctx context.Context, id int, body JiraInstancesUpdateJSONRequestBody, reqEditors ...RequestEditorFn) (*http.Response, error)

	JiraInstancesUpdateWithFormdataBody(ctx context.Context, id int, body JiraInstancesUpdateFormdataRequestBody, reqEditors ...RequestEditorFn) (*http.Response, error)

	// JiraInstancesDeletePreviewList request
	JiraInstancesDeletePreviewList(ctx context.Context, id int, params *JiraInstancesDeletePreviewListParams, reqEditors ...RequestEditorFn) (*http.Response, error)

	// JiraProductConfigurationsList request
	JiraProductConfigurationsList(ctx context.Context, params *JiraProductConfigurationsListParams, reqEditors ...RequestEditorFn) (*http.Response, error)

	// JiraProductConfigurationsCreate request with any body
	JiraProductConfigurationsCreateWithBody(ctx context.Context, contentType string, body io.Reader, reqEditors ...RequestEditorFn) (*http.Response, error)

	JiraProductConfigurationsCreate(ctx context.Context, body JiraProductConfigurationsCreateJSONRequestBody, reqEditors ...RequestEditorFn) (*http.Response, error)

	JiraProductConfigurationsCreateWithFormdataBody(ctx context.Context, body JiraProductConfigurationsCreateFormdataRequestBody, reqEditors ...RequestEditorFn) (*http.Response, error)

	// JiraProductConfigurationsDestroy request
	JiraProductConfigurationsDestroy(ctx context.Context, id int, reqEditors ...RequestEditorFn) (*http.Response, error)

	// JiraProductConfigurationsRetrieve request
	JiraProductConfigurationsRetrieve(ctx context.Context, id int, reqEditors ...RequestEditorFn) (*http.Response, error)

	// JiraProductConfigurationsPartialUpdate request with any body
	JiraProductConfigurationsPartialUpdateWithBody(ctx context.Context, id int, contentType string, body io.Reader, reqEditors ...RequestEditorFn) (*http.Response, error)

	JiraProductConfigurationsPartialUpdate(ctx context.Context, id int, body JiraProductConfigurationsPartialUpdateJSONRequestBody, reqEditors ...RequestEditorFn) (*http.Response, error)

	JiraProductConfigurationsPartialUpdateWithFormdataBody(ctx context.Context, id int, body JiraProductConfigurationsPartialUpdateFormdataRequestBody, reqEditors ...RequestEditorFn) (*http.Response, error)

	// JiraProductConfigurationsUpdate request with any body
	JiraProductConfigurationsUpdateWithBody(ctx context.Context, id int, contentType string, body io.Reader, reqEditors ...RequestEditorFn) (*http.Response, error)

	JiraProductConfigurationsUpdate(ctx context.Context, id int, body JiraProductConfigurationsUpdateJSONRequestBody, reqEditors ...RequestEditorFn) (*http.Response, error)

	JiraProductConfigurationsUpdateWithFormdataBody(ctx context.Context, id int, body JiraProductConfigurationsUpdateFormdataRequestBody, reqEditors ...RequestEditorFn) (*http.Response, error)

	// JiraProductConfigurationsDeletePreviewList request
	JiraProductConfigurationsDeletePreviewList(ctx context.Context, id int, params *JiraProductConfigurationsDeletePreviewListParams, reqEditors ...RequestEditorFn) (*http.Response, error)

	// JiraProjectsList request
	JiraProjectsList(ctx context.Context, params *JiraProjectsListParams, reqEditors ...RequestEditorFn) (*http.Response, error)

	// JiraProjectsCreate request with any body
	JiraProjectsCreateWithBody(ctx context.Context, contentType string, body io.Reader, reqEditors ...RequestEditorFn) (*http.Response, error)

	JiraProjectsCreate(ctx context.Context, body JiraProjectsCreateJSONRequestBody, reqEditors ...RequestEditorFn) (*http.Response, error)

	JiraProjectsCreateWithFormdataBody(ctx context.Context, body JiraProjectsCreateFormdataRequestBody, reqEditors ...RequestEditorFn) (*http.Response, error)

	// JiraProjectsDestroy request
	JiraProjectsDestroy(ctx context.Context, id int, reqEditors ...RequestEditorFn) (*http.Response, error)

	// JiraProjectsRetrieve request
	JiraProjectsRetrieve(ctx context.Context, id int, reqEditors ...RequestEditorFn) (*http.Response, error)

	// JiraProjectsPartialUpdate request with any body
	JiraProjectsPartialUpdateWithBody(ctx context.Context, id int, contentType string, body io.Reader, reqEditors ...RequestEditorFn) (*http.Response, error)

	JiraProjectsPartialUpdate(ctx context.Context, id int, body JiraProjectsPartialUpdateJSONRequestBody, reqEditors ...RequestEditorFn) (*http.Response, error)

	JiraProjectsPartialUpdateWithFormdataBody(ctx context.Context, id int, body JiraProjectsPartialUpdateFormdataRequestBody, reqEditors ...RequestEditorFn) (*http.Response, error)

	// JiraProjectsUpdate request with any body
	JiraProjectsUpdateWithBody(ctx context.Context, id int, contentType string, body io.Reader, reqEditors ...RequestEditorFn) (*http.Response, error)

	JiraProjectsUpdate(ctx context.Context, id int, body JiraProjectsUpdateJSONRequestBody, reqEditors ...RequestEditorFn) (*http.Response, error)

	JiraProjectsUpdateWithFormdataBody(ctx context.Context, id int, body JiraProjectsUpdateFormdataRequestBody, reqEditors ...RequestEditorFn) (*http.Response, error)

	// JiraProjectsDeletePreviewList request
	JiraProjectsDeletePreviewList(ctx context.Context, id int, params *JiraProjectsDeletePreviewListParams, reqEditors ...RequestEditorFn) (*http.Response, error)

	// LanguageTypesList request
	LanguageTypesList(ctx context.Context, params *LanguageTypesListParams, reqEditors ...RequestEditorFn) (*http.Response, error)

	// LanguageTypesCreate request with any body
	LanguageTypesCreateWithBody(ctx context.Context, contentType string, body io.Reader, reqEditors ...RequestEditorFn) (*http.Response, error)

	LanguageTypesCreate(ctx context.Context, body LanguageTypesCreateJSONRequestBody, reqEditors ...RequestEditorFn) (*http.Response, error)

	LanguageTypesCreateWithFormdataBody(ctx context.Context, body LanguageTypesCreateFormdataRequestBody, reqEditors ...RequestEditorFn) (*http.Response, error)

	// LanguageTypesDestroy request
	LanguageTypesDestroy(ctx context.Context, id int, reqEditors ...RequestEditorFn) (*http.Response, error)

	// LanguageTypesRetrieve request
	LanguageTypesRetrieve(ctx context.Context, id int, reqEditors ...RequestEditorFn) (*http.Response, error)

	// LanguageTypesPartialUpdate request with any body
	LanguageTypesPartialUpdateWithBody(ctx context.Context, id int, contentType string, body io.Reader, reqEditors ...RequestEditorFn) (*http.Response, error)

	LanguageTypesPartialUpdate(ctx context.Context, id int, body LanguageTypesPartialUpdateJSONRequestBody, reqEditors ...RequestEditorFn) (*http.Response, error)

	LanguageTypesPartialUpdateWithFormdataBody(ctx context.Context, id int, body LanguageTypesPartialUpdateFormdataRequestBody, reqEditors ...RequestEditorFn) (*http.Response, error)

	// LanguageTypesUpdate request with any body
	LanguageTypesUpdateWithBody(ctx context.Context, id int, contentType string, body io.Reader, reqEditors ...RequestEditorFn) (*http.Response, error)

	LanguageTypesUpdate(ctx context.Context, id int, body LanguageTypesUpdateJSONRequestBody, reqEditors ...RequestEditorFn) (*http.Response, error)

	LanguageTypesUpdateWithFormdataBody(ctx context.Context, id int, body LanguageTypesUpdateFormdataRequestBody, reqEditors ...RequestEditorFn) (*http.Response, error)

	// LanguageTypesDeletePreviewList request
	LanguageTypesDeletePreviewList(ctx context.Context, id int, params *LanguageTypesDeletePreviewListParams, reqEditors ...RequestEditorFn) (*http.Response, error)

	// LanguagesList request
	LanguagesList(ctx context.Context, params *LanguagesListParams, reqEditors ...RequestEditorFn) (*http.Response, error)

	// LanguagesCreate request with any body
	LanguagesCreateWithBody(ctx context.Context, contentType string, body io.Reader, reqEditors ...RequestEditorFn) (*http.Response, error)

	LanguagesCreate(ctx context.Context, body LanguagesCreateJSONRequestBody, reqEditors ...RequestEditorFn) (*http.Response, error)

	LanguagesCreateWithFormdataBody(ctx context.Context, body LanguagesCreateFormdataRequestBody, reqEditors ...RequestEditorFn) (*http.Response, error)

	// LanguagesDestroy request
	LanguagesDestroy(ctx context.Context, id int, reqEditors ...RequestEditorFn) (*http.Response, error)

	// LanguagesRetrieve request
	LanguagesRetrieve(ctx context.Context, id int, params *LanguagesRetrieveParams, reqEditors ...RequestEditorFn) (*http.Response, error)

	// LanguagesPartialUpdate request with any body
	LanguagesPartialUpdateWithBody(ctx context.Context, id int, contentType string, body io.Reader, reqEditors ...RequestEditorFn) (*http.Response, error)

	LanguagesPartialUpdate(ctx context.Context, id int, body LanguagesPartialUpdateJSONRequestBody, reqEditors ...RequestEditorFn) (*http.Response, error)

	LanguagesPartialUpdateWithFormdataBody(ctx context.Context, id int, body LanguagesPartialUpdateFormdataRequestBody, reqEditors ...RequestEditorFn) (*http.Response, error)

	// LanguagesUpdate request with any body
	LanguagesUpdateWithBody(ctx context.Context, id int, contentType string, body io.Reader, reqEditors ...RequestEditorFn) (*http.Response, error)

	LanguagesUpdate(ctx context.Context, id int, body LanguagesUpdateJSONRequestBody, reqEditors ...RequestEditorFn) (*http.Response, error)

	LanguagesUpdateWithFormdataBody(ctx context.Context, id int, body LanguagesUpdateFormdataRequestBody, reqEditors ...RequestEditorFn) (*http.Response, error)

	// LanguagesDeletePreviewList request
	LanguagesDeletePreviewList(ctx context.Context, id int, params *LanguagesDeletePreviewListParams, reqEditors ...RequestEditorFn) (*http.Response, error)

	// MetadataList request
	MetadataList(ctx context.Context, params *MetadataListParams, reqEditors ...RequestEditorFn) (*http.Response, error)

	// MetadataCreate request with any body
	MetadataCreateWithBody(ctx context.Context, contentType string, body io.Reader, reqEditors ...RequestEditorFn) (*http.Response, error)

	MetadataCreate(ctx context.Context, body MetadataCreateJSONRequestBody, reqEditors ...RequestEditorFn) (*http.Response, error)

	MetadataCreateWithFormdataBody(ctx context.Context, body MetadataCreateFormdataRequestBody, reqEditors ...RequestEditorFn) (*http.Response, error)

	// MetadataDestroy request
	MetadataDestroy(ctx context.Context, id int, reqEditors ...RequestEditorFn) (*http.Response, error)

	// MetadataRetrieve request
	MetadataRetrieve(ctx context.Context, id int, params *MetadataRetrieveParams, reqEditors ...RequestEditorFn) (*http.Response, error)

	// MetadataPartialUpdate request with any body
	MetadataPartialUpdateWithBody(ctx context.Context, id int, contentType string, body io.Reader, reqEditors ...RequestEditorFn) (*http.Response, error)

	MetadataPartialUpdate(ctx context.Context, id int, body MetadataPartialUpdateJSONRequestBody, reqEditors ...RequestEditorFn) (*http.Response, error)

	MetadataPartialUpdateWithFormdataBody(ctx context.Context, id int, body MetadataPartialUpdateFormdataRequestBody, reqEditors ...RequestEditorFn) (*http.Response, error)

	// MetadataUpdate request with any body
	MetadataUpdateWithBody(ctx context.Context, id int, contentType string, body io.Reader, reqEditors ...RequestEditorFn) (*http.Response, error)

	MetadataUpdate(ctx context.Context, id int, body MetadataUpdateJSONRequestBody, reqEditors ...RequestEditorFn) (*http.Response, error)

	MetadataUpdateWithFormdataBody(ctx context.Context, id int, body MetadataUpdateFormdataRequestBody, reqEditors ...RequestEditorFn) (*http.Response, error)

	// MetadataDeletePreviewList request
	MetadataDeletePreviewList(ctx context.Context, id int, params *MetadataDeletePreviewListParams, reqEditors ...RequestEditorFn) (*http.Response, error)

	// NetworkLocationsList request
	NetworkLocationsList(ctx context.Context, params *NetworkLocationsListParams, reqEditors ...RequestEditorFn) (*http.Response, error)

	// NetworkLocationsCreate request with any body
	NetworkLocationsCreateWithBody(ctx context.Context, contentType string, body io.Reader, reqEditors ...RequestEditorFn) (*http.Response, error)

	NetworkLocationsCreate(ctx context.Context, body NetworkLocationsCreateJSONRequestBody, reqEditors ...RequestEditorFn) (*http.Response, error)

	NetworkLocationsCreateWithFormdataBody(ctx context.Context, body NetworkLocationsCreateFormdataRequestBody, reqEditors ...RequestEditorFn) (*http.Response, error)

	// NetworkLocationsDestroy request
	NetworkLocationsDestroy(ctx context.Context, id int, reqEditors ...RequestEditorFn) (*http.Response, error)

	// NetworkLocationsRetrieve request
	NetworkLocationsRetrieve(ctx context.Context, id int, reqEditors ...RequestEditorFn) (*http.Response, error)

	// NetworkLocationsPartialUpdate request with any body
	NetworkLocationsPartialUpdateWithBody(ctx context.Context, id int, contentType string, body io.Reader, reqEditors ...RequestEditorFn) (*http.Response, error)

	NetworkLocationsPartialUpdate(ctx context.Context, id int, body NetworkLocationsPartialUpdateJSONRequestBody, reqEditors ...RequestEditorFn) (*http.Response, error)

	NetworkLocationsPartialUpdateWithFormdataBody(ctx context.Context, id int, body NetworkLocationsPartialUpdateFormdataRequestBody, reqEditors ...RequestEditorFn) (*http.Response, error)

	// NetworkLocationsUpdate request with any body
	NetworkLocationsUpdateWithBody(ctx context.Context, id int, contentType string, body io.Reader, reqEditors ...RequestEditorFn) (*http.Response, error)

	NetworkLocationsUpdate(ctx context.Context, id int, body NetworkLocationsUpdateJSONRequestBody, reqEditors ...RequestEditorFn) (*http.Response, error)

	NetworkLocationsUpdateWithFormdataBody(ctx context.Context, id int, body NetworkLocationsUpdateFormdataRequestBody, reqEditors ...RequestEditorFn) (*http.Response, error)

	// NetworkLocationsDeletePreviewList request
	NetworkLocationsDeletePreviewList(ctx context.Context, id int, params *NetworkLocationsDeletePreviewListParams, reqEditors ...RequestEditorFn) (*http.Response, error)

	// NoteTypeList request
	NoteTypeList(ctx context.Context, params *NoteTypeListParams, reqEditors ...RequestEditorFn) (*http.Response, error)

	// NoteTypeCreate request with any body
	NoteTypeCreateWithBody(ctx context.Context, contentType string, body io.Reader, reqEditors ...RequestEditorFn) (*http.Response, error)

	NoteTypeCreate(ctx context.Context, body NoteTypeCreateJSONRequestBody, reqEditors ...RequestEditorFn) (*http.Response, error)

	NoteTypeCreateWithFormdataBody(ctx context.Context, body NoteTypeCreateFormdataRequestBody, reqEditors ...RequestEditorFn) (*http.Response, error)

	// NoteTypeDestroy request
	NoteTypeDestroy(ctx context.Context, id int, reqEditors ...RequestEditorFn) (*http.Response, error)

	// NoteTypeRetrieve request
	NoteTypeRetrieve(ctx context.Context, id int, reqEditors ...RequestEditorFn) (*http.Response, error)

	// NoteTypePartialUpdate request with any body
	NoteTypePartialUpdateWithBody(ctx context.Context, id int, contentType string, body io.Reader, reqEditors ...RequestEditorFn) (*http.Response, error)

	NoteTypePartialUpdate(ctx context.Context, id int, body NoteTypePartialUpdateJSONRequestBody, reqEditors ...RequestEditorFn) (*http.Response, error)

	NoteTypePartialUpdateWithFormdataBody(ctx context.Context, id int, body NoteTypePartialUpdateFormdataRequestBody, reqEditors ...RequestEditorFn) (*http.Response, error)

	// NoteTypeUpdate request with any body
	NoteTypeUpdateWithBody(ctx context.Context, id int, contentType string, body io.Reader, reqEditors ...RequestEditorFn) (*http.Response, error)

	NoteTypeUpdate(ctx context.Context, id int, body NoteTypeUpdateJSONRequestBody, reqEditors ...RequestEditorFn) (*http.Response, error)

	NoteTypeUpdateWithFormdataBody(ctx context.Context, id int, body NoteTypeUpdateFormdataRequestBody, reqEditors ...RequestEditorFn) (*http.Response, error)

	// NoteTypeDeletePreviewList request
	NoteTypeDeletePreviewList(ctx context.Context, id int, params *NoteTypeDeletePreviewListParams, reqEditors ...RequestEditorFn) (*http.Response, error)

	// NotesList request
	NotesList(ctx context.Context, params *NotesListParams, reqEditors ...RequestEditorFn) (*http.Response, error)

	// NotesRetrieve request
	NotesRetrieve(ctx context.Context, id int, reqEditors ...RequestEditorFn) (*http.Response, error)

	// NotesPartialUpdate request with any body
	NotesPartialUpdateWithBody(ctx context.Context, id int, contentType string, body io.Reader, reqEditors ...RequestEditorFn) (*http.Response, error)

	NotesPartialUpdate(ctx context.Context, id int, body NotesPartialUpdateJSONRequestBody, reqEditors ...RequestEditorFn) (*http.Response, error)

	NotesPartialUpdateWithFormdataBody(ctx context.Context, id int, body NotesPartialUpdateFormdataRequestBody, reqEditors ...RequestEditorFn) (*http.Response, error)

	// NotesUpdate request with any body
	NotesUpdateWithBody(ctx context.Context, id int, contentType string, body io.Reader, reqEditors ...RequestEditorFn) (*http.Response, error)

	NotesUpdate(ctx context.Context, id int, body NotesUpdateJSONRequestBody, reqEditors ...RequestEditorFn) (*http.Response, error)

	NotesUpdateWithFormdataBody(ctx context.Context, id int, body NotesUpdateFormdataRequestBody, reqEditors ...RequestEditorFn) (*http.Response, error)

	// NotificationsList request
	NotificationsList(ctx context.Context, params *NotificationsListParams, reqEditors ...RequestEditorFn) (*http.Response, error)

	// NotificationsCreate request with any body
	NotificationsCreateWithBody(ctx context.Context, contentType string, body io.Reader, reqEditors ...RequestEditorFn) (*http.Response, error)

	NotificationsCreate(ctx context.Context, body NotificationsCreateJSONRequestBody, reqEditors ...RequestEditorFn) (*http.Response, error)

	NotificationsCreateWithFormdataBody(ctx context.Context, body NotificationsCreateFormdataRequestBody, reqEditors ...RequestEditorFn) (*http.Response, error)

	// NotificationsDestroy request
	NotificationsDestroy(ctx context.Context, id int, reqEditors ...RequestEditorFn) (*http.Response, error)

	// NotificationsRetrieve request
	NotificationsRetrieve(ctx context.Context, id int, params *NotificationsRetrieveParams, reqEditors ...RequestEditorFn) (*http.Response, error)

	// NotificationsPartialUpdate request with any body
	NotificationsPartialUpdateWithBody(ctx context.Context, id int, contentType string, body io.Reader, reqEditors ...RequestEditorFn) (*http.Response, error)

	NotificationsPartialUpdate(ctx context.Context, id int, body NotificationsPartialUpdateJSONRequestBody, reqEditors ...RequestEditorFn) (*http.Response, error)

	NotificationsPartialUpdateWithFormdataBody(ctx context.Context, id int, body NotificationsPartialUpdateFormdataRequestBody, reqEditors ...RequestEditorFn) (*http.Response, error)

	// NotificationsUpdate request with any body
	NotificationsUpdateWithBody(ctx context.Context, id int, contentType string, body io.Reader, reqEditors ...RequestEditorFn) (*http.Response, error)

	NotificationsUpdate(ctx context.Context, id int, body NotificationsUpdateJSONRequestBody, reqEditors ...RequestEditorFn) (*http.Response, error)

	NotificationsUpdateWithFormdataBody(ctx context.Context, id int, body NotificationsUpdateFormdataRequestBody, reqEditors ...RequestEditorFn) (*http.Response, error)

	// NotificationsDeletePreviewList request
	NotificationsDeletePreviewList(ctx context.Context, id int, params *NotificationsDeletePreviewListParams, reqEditors ...RequestEditorFn) (*http.Response, error)

	// Oa3SchemaRetrieve request
	Oa3SchemaRetrieve(ctx context.Context, params *Oa3SchemaRetrieveParams, reqEditors ...RequestEditorFn) (*http.Response, error)

	// ProductApiScanConfigurationsList request
	ProductApiScanConfigurationsList(ctx context.Context, params *ProductApiScanConfigurationsListParams, reqEditors ...RequestEditorFn) (*http.Response, error)

	// ProductApiScanConfigurationsCreate request with any body
	ProductApiScanConfigurationsCreateWithBody(ctx context.Context, contentType string, body io.Reader, reqEditors ...RequestEditorFn) (*http.Response, error)

	ProductApiScanConfigurationsCreate(ctx context.Context, body ProductApiScanConfigurationsCreateJSONRequestBody, reqEditors ...RequestEditorFn) (*http.Response, error)

	ProductApiScanConfigurationsCreateWithFormdataBody(ctx context.Context, body ProductApiScanConfigurationsCreateFormdataRequestBody, reqEditors ...RequestEditorFn) (*http.Response, error)

	// ProductApiScanConfigurationsDestroy request
	ProductApiScanConfigurationsDestroy(ctx context.Context, id int, reqEditors ...RequestEditorFn) (*http.Response, error)

	// ProductApiScanConfigurationsRetrieve request
	ProductApiScanConfigurationsRetrieve(ctx context.Context, id int, reqEditors ...RequestEditorFn) (*http.Response, error)

	// ProductApiScanConfigurationsPartialUpdate request with any body
	ProductApiScanConfigurationsPartialUpdateWithBody(ctx context.Context, id int, contentType string, body io.Reader, reqEditors ...RequestEditorFn) (*http.Response, error)

	ProductApiScanConfigurationsPartialUpdate(ctx context.Context, id int, body ProductApiScanConfigurationsPartialUpdateJSONRequestBody, reqEditors ...RequestEditorFn) (*http.Response, error)

	ProductApiScanConfigurationsPartialUpdateWithFormdataBody(ctx context.Context, id int, body ProductApiScanConfigurationsPartialUpdateFormdataRequestBody, reqEditors ...RequestEditorFn) (*http.Response, error)

	// ProductApiScanConfigurationsUpdate request with any body
	ProductApiScanConfigurationsUpdateWithBody(ctx context.Context, id int, contentType string, body io.Reader, reqEditors ...RequestEditorFn) (*http.Response, error)

	ProductApiScanConfigurationsUpdate(ctx context.Context, id int, body ProductApiScanConfigurationsUpdateJSONRequestBody, reqEditors ...RequestEditorFn) (*http.Response, error)

	ProductApiScanConfigurationsUpdateWithFormdataBody(ctx context.Context, id int, body ProductApiScanConfigurationsUpdateFormdataRequestBody, reqEditors ...RequestEditorFn) (*http.Response, error)

	// ProductApiScanConfigurationsDeletePreviewList request
	ProductApiScanConfigurationsDeletePreviewList(ctx context.Context, id int, params *ProductApiScanConfigurationsDeletePreviewListParams, reqEditors ...RequestEditorFn) (*http.Response, error)

	// ProductGroupsList request
	ProductGroupsList(ctx context.Context, params *ProductGroupsListParams, reqEditors ...RequestEditorFn) (*http.Response, error)

	// ProductGroupsCreate request with any body
	ProductGroupsCreateWithBody(ctx context.Context, contentType string, body io.Reader, reqEditors ...RequestEditorFn) (*http.Response, error)

	ProductGroupsCreate(ctx context.Context, body ProductGroupsCreateJSONRequestBody, reqEditors ...RequestEditorFn) (*http.Response, error)

	ProductGroupsCreateWithFormdataBody(ctx context.Context, body ProductGroupsCreateFormdataRequestBody, reqEditors ...RequestEditorFn) (*http.Response, error)

	// ProductGroupsDestroy request
	ProductGroupsDestroy(ctx context.Context, id int, reqEditors ...RequestEditorFn) (*http.Response, error)

	// ProductGroupsRetrieve request
	ProductGroupsRetrieve(ctx context.Context, id int, params *ProductGroupsRetrieveParams, reqEditors ...RequestEditorFn) (*http.Response, error)

	// ProductGroupsPartialUpdate request
	ProductGroupsPartialUpdate(ctx context.Context, id int, reqEditors ...RequestEditorFn) (*http.Response, error)

	// ProductGroupsUpdate request with any body
	ProductGroupsUpdateWithBody(ctx context.Context, id int, contentType string, body io.Reader, reqEditors ...RequestEditorFn) (*http.Response, error)

	ProductGroupsUpdate(ctx context.Context, id int, body ProductGroupsUpdateJSONRequestBody, reqEditors ...RequestEditorFn) (*http.Response, error)

	ProductGroupsUpdateWithFormdataBody(ctx context.Context, id int, body ProductGroupsUpdateFormdataRequestBody, reqEditors ...RequestEditorFn) (*http.Response, error)

	// ProductGroupsDeletePreviewList request
	ProductGroupsDeletePreviewList(ctx context.Context, id int, params *ProductGroupsDeletePreviewListParams, reqEditors ...RequestEditorFn) (*http.Response, error)

	// ProductMembersList request
	ProductMembersList(ctx context.Context, params *ProductMembersListParams, reqEditors ...RequestEditorFn) (*http.Response, error)

	// ProductMembersCreate request with any body
	ProductMembersCreateWithBody(ctx context.Context, contentType string, body io.Reader, reqEditors ...RequestEditorFn) (*http.Response, error)

	ProductMembersCreate(ctx context.Context, body ProductMembersCreateJSONRequestBody, reqEditors ...RequestEditorFn) (*http.Response, error)

	ProductMembersCreateWithFormdataBody(ctx context.Context, body ProductMembersCreateFormdataRequestBody, reqEditors ...RequestEditorFn) (*http.Response, error)

	// ProductMembersDestroy request
	ProductMembersDestroy(ctx context.Context, id int, reqEditors ...RequestEditorFn) (*http.Response, error)

	// ProductMembersRetrieve request
	ProductMembersRetrieve(ctx context.Context, id int, params *ProductMembersRetrieveParams, reqEditors ...RequestEditorFn) (*http.Response, error)

	// ProductMembersPartialUpdate request
	ProductMembersPartialUpdate(ctx context.Context, id int, reqEditors ...RequestEditorFn) (*http.Response, error)

	// ProductMembersUpdate request with any body
	ProductMembersUpdateWithBody(ctx context.Context, id int, contentType string, body io.Reader, reqEditors ...RequestEditorFn) (*http.Response, error)

	ProductMembersUpdate(ctx context.Context, id int, body ProductMembersUpdateJSONRequestBody, reqEditors ...RequestEditorFn) (*http.Response, error)

	ProductMembersUpdateWithFormdataBody(ctx context.Context, id int, body ProductMembersUpdateFormdataRequestBody, reqEditors ...RequestEditorFn) (*http.Response, error)

	// ProductMembersDeletePreviewList request
	ProductMembersDeletePreviewList(ctx context.Context, id int, params *ProductMembersDeletePreviewListParams, reqEditors ...RequestEditorFn) (*http.Response, error)

	// ProductTypeGroupsList request
	ProductTypeGroupsList(ctx context.Context, params *ProductTypeGroupsListParams, reqEditors ...RequestEditorFn) (*http.Response, error)

	// ProductTypeGroupsCreate request with any body
	ProductTypeGroupsCreateWithBody(ctx context.Context, contentType string, body io.Reader, reqEditors ...RequestEditorFn) (*http.Response, error)

	ProductTypeGroupsCreate(ctx context.Context, body ProductTypeGroupsCreateJSONRequestBody, reqEditors ...RequestEditorFn) (*http.Response, error)

	ProductTypeGroupsCreateWithFormdataBody(ctx context.Context, body ProductTypeGroupsCreateFormdataRequestBody, reqEditors ...RequestEditorFn) (*http.Response, error)

	// ProductTypeGroupsDestroy request
	ProductTypeGroupsDestroy(ctx context.Context, id int, reqEditors ...RequestEditorFn) (*http.Response, error)

	// ProductTypeGroupsRetrieve request
	ProductTypeGroupsRetrieve(ctx context.Context, id int, params *ProductTypeGroupsRetrieveParams, reqEditors ...RequestEditorFn) (*http.Response, error)

	// ProductTypeGroupsPartialUpdate request
	ProductTypeGroupsPartialUpdate(ctx context.Context, id int, reqEditors ...RequestEditorFn) (*http.Response, error)

	// ProductTypeGroupsUpdate request with any body
	ProductTypeGroupsUpdateWithBody(ctx context.Context, id int, contentType string, body io.Reader, reqEditors ...RequestEditorFn) (*http.Response, error)

	ProductTypeGroupsUpdate(ctx context.Context, id int, body ProductTypeGroupsUpdateJSONRequestBody, reqEditors ...RequestEditorFn) (*http.Response, error)

	ProductTypeGroupsUpdateWithFormdataBody(ctx context.Context, id int, body ProductTypeGroupsUpdateFormdataRequestBody, reqEditors ...RequestEditorFn) (*http.Response, error)

	// ProductTypeGroupsDeletePreviewList request
	ProductTypeGroupsDeletePreviewList(ctx context.Context, id int, params *ProductTypeGroupsDeletePreviewListParams, reqEditors ...RequestEditorFn) (*http.Response, error)

	// ProductTypeMembersList request
	ProductTypeMembersList(ctx context.Context, params *ProductTypeMembersListParams, reqEditors ...RequestEditorFn) (*http.Response, error)

	// ProductTypeMembersCreate request with any body
	ProductTypeMembersCreateWithBody(ctx context.Context, contentType string, body io.Reader, reqEditors ...RequestEditorFn) (*http.Response, error)

	ProductTypeMembersCreate(ctx context.Context, body ProductTypeMembersCreateJSONRequestBody, reqEditors ...RequestEditorFn) (*http.Response, error)

	ProductTypeMembersCreateWithFormdataBody(ctx context.Context, body ProductTypeMembersCreateFormdataRequestBody, reqEditors ...RequestEditorFn) (*http.Response, error)

	// ProductTypeMembersDestroy request
	ProductTypeMembersDestroy(ctx context.Context, id int, reqEditors ...RequestEditorFn) (*http.Response, error)

	// ProductTypeMembersRetrieve request
	ProductTypeMembersRetrieve(ctx context.Context, id int, params *ProductTypeMembersRetrieveParams, reqEditors ...RequestEditorFn) (*http.Response, error)

	// ProductTypeMembersPartialUpdate request
	ProductTypeMembersPartialUpdate(ctx context.Context, id int, reqEditors ...RequestEditorFn) (*http.Response, error)

	// ProductTypeMembersUpdate request with any body
	ProductTypeMembersUpdateWithBody(ctx context.Context, id int, contentType string, body io.Reader, reqEditors ...RequestEditorFn) (*http.Response, error)

	ProductTypeMembersUpdate(ctx context.Context, id int, body ProductTypeMembersUpdateJSONRequestBody, reqEditors ...RequestEditorFn) (*http.Response, error)

	ProductTypeMembersUpdateWithFormdataBody(ctx context.Context, id int, body ProductTypeMembersUpdateFormdataRequestBody, reqEditors ...RequestEditorFn) (*http.Response, error)

	// ProductTypeMembersDeletePreviewList request
	ProductTypeMembersDeletePreviewList(ctx context.Context, id int, params *ProductTypeMembersDeletePreviewListParams, reqEditors ...RequestEditorFn) (*http.Response, error)

	// ProductTypesList request
	ProductTypesList(ctx context.Context, params *ProductTypesListParams, reqEditors ...RequestEditorFn) (*http.Response, error)

	// ProductTypesCreate request with any body
	ProductTypesCreateWithBody(ctx context.Context, contentType string, body io.Reader, reqEditors ...RequestEditorFn) (*http.Response, error)

	ProductTypesCreate(ctx context.Context, body ProductTypesCreateJSONRequestBody, reqEditors ...RequestEditorFn) (*http.Response, error)

	ProductTypesCreateWithFormdataBody(ctx context.Context, body ProductTypesCreateFormdataRequestBody, reqEditors ...RequestEditorFn) (*http.Response, error)

	// ProductTypesDestroy request
	ProductTypesDestroy(ctx context.Context, id int, reqEditors ...RequestEditorFn) (*http.Response, error)

	// ProductTypesRetrieve request
	ProductTypesRetrieve(ctx context.Context, id int, params *ProductTypesRetrieveParams, reqEditors ...RequestEditorFn) (*http.Response, error)

	// ProductTypesPartialUpdate request with any body
	ProductTypesPartialUpdateWithBody(ctx context.Context, id int, contentType string, body io.Reader, reqEditors ...RequestEditorFn) (*http.Response, error)

	ProductTypesPartialUpdate(ctx context.Context, id int, body ProductTypesPartialUpdateJSONRequestBody, reqEditors ...RequestEditorFn) (*http.Response, error)

	ProductTypesPartialUpdateWithFormdataBody(ctx context.Context, id int, body ProductTypesPartialUpdateFormdataRequestBody, reqEditors ...RequestEditorFn) (*http.Response, error)

	// ProductTypesUpdate request with any body
	ProductTypesUpdateWithBody(ctx context.Context, id int, contentType string, body io.Reader, reqEditors ...RequestEditorFn) (*http.Response, error)

	ProductTypesUpdate(ctx context.Context, id int, body ProductTypesUpdateJSONRequestBody, reqEditors ...RequestEditorFn) (*http.Response, error)

	ProductTypesUpdateWithFormdataBody(ctx context.Context, id int, body ProductTypesUpdateFormdataRequestBody, reqEditors ...RequestEditorFn) (*http.Response, error)

	// ProductTypesDeletePreviewList request
	ProductTypesDeletePreviewList(ctx context.Context, id int, params *ProductTypesDeletePreviewListParams, reqEditors ...RequestEditorFn) (*http.Response, error)

	// ProductTypesGenerateReportCreate request with any body
	ProductTypesGenerateReportCreateWithBody(ctx context.Context, id int, contentType string, body io.Reader, reqEditors ...RequestEditorFn) (*http.Response, error)

	ProductTypesGenerateReportCreate(ctx context.Context, id int, body ProductTypesGenerateReportCreateJSONRequestBody, reqEditors ...RequestEditorFn) (*http.Response, error)

	ProductTypesGenerateReportCreateWithFormdataBody(ctx context.Context, id int, body ProductTypesGenerateReportCreateFormdataRequestBody, reqEditors ...RequestEditorFn) (*http.Response, error)

	// ProductsList request
	ProductsList(ctx context.Context, params *ProductsListParams, reqEditors ...RequestEditorFn) (*http.Response, error)

	// ProductsCreate request with any body
	ProductsCreateWithBody(ctx context.Context, contentType string, body io.Reader, reqEditors ...RequestEditorFn) (*http.Response, error)

	ProductsCreate(ctx context.Context, body ProductsCreateJSONRequestBody, reqEditors ...RequestEditorFn) (*http.Response, error)

	ProductsCreateWithFormdataBody(ctx context.Context, body ProductsCreateFormdataRequestBody, reqEditors ...RequestEditorFn) (*http.Response, error)

	// ProductsDestroy request
	ProductsDestroy(ctx context.Context, id int, reqEditors ...RequestEditorFn) (*http.Response, error)

	// ProductsRetrieve request
	ProductsRetrieve(ctx context.Context, id int, params *ProductsRetrieveParams, reqEditors ...RequestEditorFn) (*http.Response, error)

	// ProductsPartialUpdate request with any body
	ProductsPartialUpdateWithBody(ctx context.Context, id int, contentType string, body io.Reader, reqEditors ...RequestEditorFn) (*http.Response, error)

	ProductsPartialUpdate(ctx context.Context, id int, body ProductsPartialUpdateJSONRequestBody, reqEditors ...RequestEditorFn) (*http.Response, error)

	ProductsPartialUpdateWithFormdataBody(ctx context.Context, id int, body ProductsPartialUpdateFormdataRequestBody, reqEditors ...RequestEditorFn) (*http.Response, error)

	// ProductsUpdate request with any body
	ProductsUpdateWithBody(ctx context.Context, id int, contentType string, body io.Reader, reqEditors ...RequestEditorFn) (*http.Response, error)

	ProductsUpdate(ctx context.Context, id int, body ProductsUpdateJSONRequestBody, reqEditors ...RequestEditorFn) (*http.Response, error)

	ProductsUpdateWithFormdataBody(ctx context.Context, id int, body ProductsUpdateFormdataRequestBody, reqEditors ...RequestEditorFn) (*http.Response, error)

	// ProductsDeletePreviewList request
	ProductsDeletePreviewList(ctx context.Context, id int, params *ProductsDeletePreviewListParams, reqEditors ...RequestEditorFn) (*http.Response, error)

	// ProductsGenerateReportCreate request with any body
	ProductsGenerateReportCreateWithBody(ctx context.Context, id int, contentType string, body io.Reader, reqEditors ...RequestEditorFn) (*http.Response, error)

	ProductsGenerateReportCreate(ctx context.Context, id int, body ProductsGenerateReportCreateJSONRequestBody, reqEditors ...RequestEditorFn) (*http.Response, error)

	ProductsGenerateReportCreateWithFormdataBody(ctx context.Context, id int, body ProductsGenerateReportCreateFormdataRequestBody, reqEditors ...RequestEditorFn) (*http.Response, error)

	// QuestionnaireAnsweredQuestionnairesList request
	QuestionnaireAnsweredQuestionnairesList(ctx context.Context, params *QuestionnaireAnsweredQuestionnairesListParams, reqEditors ...RequestEditorFn) (*http.Response, error)

	// QuestionnaireAnsweredQuestionnairesRetrieve request
	QuestionnaireAnsweredQuestionnairesRetrieve(ctx context.Context, id int, reqEditors ...RequestEditorFn) (*http.Response, error)

	// QuestionnaireAnswersList request
	QuestionnaireAnswersList(ctx context.Context, params *QuestionnaireAnswersListParams, reqEditors ...RequestEditorFn) (*http.Response, error)

	// QuestionnaireAnswersRetrieve request
	QuestionnaireAnswersRetrieve(ctx context.Context, id int, reqEditors ...RequestEditorFn) (*http.Response, error)

	// QuestionnaireEngagementQuestionnairesList request
	QuestionnaireEngagementQuestionnairesList(ctx context.Context, params *QuestionnaireEngagementQuestionnairesListParams, reqEditors ...RequestEditorFn) (*http.Response, error)

	// QuestionnaireEngagementQuestionnairesRetrieve request
	QuestionnaireEngagementQuestionnairesRetrieve(ctx context.Context, id int, reqEditors ...RequestEditorFn) (*http.Response, error)

	// QuestionnaireGeneralQuestionnairesList request
	QuestionnaireGeneralQuestionnairesList(ctx context.Context, params *QuestionnaireGeneralQuestionnairesListParams, reqEditors ...RequestEditorFn) (*http.Response, error)

	// QuestionnaireGeneralQuestionnairesRetrieve request
	QuestionnaireGeneralQuestionnairesRetrieve(ctx context.Context, id int, reqEditors ...RequestEditorFn) (*http.Response, error)

	// QuestionnaireQuestionsList request
	QuestionnaireQuestionsList(ctx context.Context, params *QuestionnaireQuestionsListParams, reqEditors ...RequestEditorFn) (*http.Response, error)

	// QuestionnaireQuestionsRetrieve request
	QuestionnaireQuestionsRetrieve(ctx context.Context, id int, reqEditors ...RequestEditorFn) (*http.Response, error)

	// RegulationsList request
	RegulationsList(ctx context.Context, params *RegulationsListParams, reqEditors ...RequestEditorFn) (*http.Response, error)

	// RegulationsCreate request with any body
	RegulationsCreateWithBody(ctx context.Context, contentType string, body io.Reader, reqEditors ...RequestEditorFn) (*http.Response, error)

	RegulationsCreate(ctx context.Context, body RegulationsCreateJSONRequestBody, reqEditors ...RequestEditorFn) (*http.Response, error)

	RegulationsCreateWithFormdataBody(ctx context.Context, body RegulationsCreateFormdataRequestBody, reqEditors ...RequestEditorFn) (*http.Response, error)

	// RegulationsDestroy request
	RegulationsDestroy(ctx context.Context, id int, reqEditors ...RequestEditorFn) (*http.Response, error)

	// RegulationsRetrieve request
	RegulationsRetrieve(ctx context.Context, id int, reqEditors ...RequestEditorFn) (*http.Response, error)

	// RegulationsPartialUpdate request with any body
	RegulationsPartialUpdateWithBody(ctx context.Context, id int, contentType string, body io.Reader, reqEditors ...RequestEditorFn) (*http.Response, error)

	RegulationsPartialUpdate(ctx context.Context, id int, body RegulationsPartialUpdateJSONRequestBody, reqEditors ...RequestEditorFn) (*http.Response, error)

	RegulationsPartialUpdateWithFormdataBody(ctx context.Context, id int, body RegulationsPartialUpdateFormdataRequestBody, reqEditors ...RequestEditorFn) (*http.Response, error)

	// RegulationsUpdate request with any body
	RegulationsUpdateWithBody(ctx context.Context, id int, contentType string, body io.Reader, reqEditors ...RequestEditorFn) (*http.Response, error)

	RegulationsUpdate(ctx context.Context, id int, body RegulationsUpdateJSONRequestBody, reqEditors ...RequestEditorFn) (*http.Response, error)

	RegulationsUpdateWithFormdataBody(ctx context.Context, id int, body RegulationsUpdateFormdataRequestBody, reqEditors ...RequestEditorFn) (*http.Response, error)

	// RegulationsDeletePreviewList request
	RegulationsDeletePreviewList(ctx context.Context, id int, params *RegulationsDeletePreviewListParams, reqEditors ...RequestEditorFn) (*http.Response, error)

	// ReimportScanCreate request with any body
	ReimportScanCreateWithBody(ctx context.Context, contentType string, body io.Reader, reqEditors ...RequestEditorFn) (*http.Response, error)

	// RiskAcceptanceList request
	RiskAcceptanceList(ctx context.Context, params *RiskAcceptanceListParams, reqEditors ...RequestEditorFn) (*http.Response, error)

	// RiskAcceptanceDestroy request
	RiskAcceptanceDestroy(ctx context.Context, id int, reqEditors ...RequestEditorFn) (*http.Response, error)

	// RiskAcceptanceRetrieve request
	RiskAcceptanceRetrieve(ctx context.Context, id int, reqEditors ...RequestEditorFn) (*http.Response, error)

	// RiskAcceptanceDeletePreviewList request
	RiskAcceptanceDeletePreviewList(ctx context.Context, id int, params *RiskAcceptanceDeletePreviewListParams, reqEditors ...RequestEditorFn) (*http.Response, error)

	// RiskAcceptanceDownloadProofRetrieve request
	RiskAcceptanceDownloadProofRetrieve(ctx context.Context, id int, reqEditors ...RequestEditorFn) (*http.Response, error)

	// RolesList request
	RolesList(ctx context.Context, params *RolesListParams, reqEditors ...RequestEditorFn) (*http.Response, error)

	// RolesRetrieve request
	RolesRetrieve(ctx context.Context, id int, reqEditors ...RequestEditorFn) (*http.Response, error)

	// SlaConfigurationsList request
	SlaConfigurationsList(ctx context.Context, params *SlaConfigurationsListParams, reqEditors ...RequestEditorFn) (*http.Response, error)

	// SlaConfigurationsCreate request with any body
	SlaConfigurationsCreateWithBody(ctx context.Context, contentType string, body io.Reader, reqEditors ...RequestEditorFn) (*http.Response, error)

	SlaConfigurationsCreate(ctx context.Context, body SlaConfigurationsCreateJSONRequestBody, reqEditors ...RequestEditorFn) (*http.Response, error)

	SlaConfigurationsCreateWithFormdataBody(ctx context.Context, body SlaConfigurationsCreateFormdataRequestBody, reqEditors ...RequestEditorFn) (*http.Response, error)

	// SlaConfigurationsDestroy request
	SlaConfigurationsDestroy(ctx context.Context, id int, reqEditors ...RequestEditorFn) (*http.Response, error)

	// SlaConfigurationsRetrieve request
	SlaConfigurationsRetrieve(ctx context.Context, id int, reqEditors ...RequestEditorFn) (*http.Response, error)

	// SlaConfigurationsPartialUpdate request with any body
	SlaConfigurationsPartialUpdateWithBody(ctx context.Context, id int, contentType string, body io.Reader, reqEditors ...RequestEditorFn) (*http.Response, error)

	SlaConfigurationsPartialUpdate(ctx context.Context, id int, body SlaConfigurationsPartialUpdateJSONRequestBody, reqEditors ...RequestEditorFn) (*http.Response, error)

	SlaConfigurationsPartialUpdateWithFormdataBody(ctx context.Context, id int, body SlaConfigurationsPartialUpdateFormdataRequestBody, reqEditors ...RequestEditorFn) (*http.Response, error)

	// SlaConfigurationsUpdate request with any body
	SlaConfigurationsUpdateWithBody(ctx context.Context, id int, contentType string, body io.Reader, reqEditors ...RequestEditorFn) (*http.Response, error)

	SlaConfigurationsUpdate(ctx context.Context, id int, body SlaConfigurationsUpdateJSONRequestBody, reqEditors ...RequestEditorFn) (*http.Response, error)

	SlaConfigurationsUpdateWithFormdataBody(ctx context.Context, id int, body SlaConfigurationsUpdateFormdataRequestBody, reqEditors ...RequestEditorFn) (*http.Response, error)

	// SonarqubeIssuesList request
	SonarqubeIssuesList(ctx context.Context, params *SonarqubeIssuesListParams, reqEditors ...RequestEditorFn) (*http.Response, error)

	// SonarqubeIssuesCreate request with any body
	SonarqubeIssuesCreateWithBody(ctx context.Context, contentType string, body io.Reader, reqEditors ...RequestEditorFn) (*http.Response, error)

	SonarqubeIssuesCreate(ctx context.Context, body SonarqubeIssuesCreateJSONRequestBody, reqEditors ...RequestEditorFn) (*http.Response, error)

	SonarqubeIssuesCreateWithFormdataBody(ctx context.Context, body SonarqubeIssuesCreateFormdataRequestBody, reqEditors ...RequestEditorFn) (*http.Response, error)

	// SonarqubeIssuesDestroy request
	SonarqubeIssuesDestroy(ctx context.Context, id int, reqEditors ...RequestEditorFn) (*http.Response, error)

	// SonarqubeIssuesRetrieve request
	SonarqubeIssuesRetrieve(ctx context.Context, id int, reqEditors ...RequestEditorFn) (*http.Response, error)

	// SonarqubeIssuesPartialUpdate request with any body
	SonarqubeIssuesPartialUpdateWithBody(ctx context.Context, id int, contentType string, body io.Reader, reqEditors ...RequestEditorFn) (*http.Response, error)

	SonarqubeIssuesPartialUpdate(ctx context.Context, id int, body SonarqubeIssuesPartialUpdateJSONRequestBody, reqEditors ...RequestEditorFn) (*http.Response, error)

	SonarqubeIssuesPartialUpdateWithFormdataBody(ctx context.Context, id int, body SonarqubeIssuesPartialUpdateFormdataRequestBody, reqEditors ...RequestEditorFn) (*http.Response, error)

	// SonarqubeIssuesUpdate request with any body
	SonarqubeIssuesUpdateWithBody(ctx context.Context, id int, contentType string, body io.Reader, reqEditors ...RequestEditorFn) (*http.Response, error)

	SonarqubeIssuesUpdate(ctx context.Context, id int, body SonarqubeIssuesUpdateJSONRequestBody, reqEditors ...RequestEditorFn) (*http.Response, error)

	SonarqubeIssuesUpdateWithFormdataBody(ctx context.Context, id int, body SonarqubeIssuesUpdateFormdataRequestBody, reqEditors ...RequestEditorFn) (*http.Response, error)

	// SonarqubeIssuesDeletePreviewList request
	SonarqubeIssuesDeletePreviewList(ctx context.Context, id int, params *SonarqubeIssuesDeletePreviewListParams, reqEditors ...RequestEditorFn) (*http.Response, error)

	// SonarqubeTransitionsList request
	SonarqubeTransitionsList(ctx context.Context, params *SonarqubeTransitionsListParams, reqEditors ...RequestEditorFn) (*http.Response, error)

	// SonarqubeTransitionsCreate request with any body
	SonarqubeTransitionsCreateWithBody(ctx context.Context, contentType string, body io.Reader, reqEditors ...RequestEditorFn) (*http.Response, error)

	SonarqubeTransitionsCreate(ctx context.Context, body SonarqubeTransitionsCreateJSONRequestBody, reqEditors ...RequestEditorFn) (*http.Response, error)

	SonarqubeTransitionsCreateWithFormdataBody(ctx context.Context, body SonarqubeTransitionsCreateFormdataRequestBody, reqEditors ...RequestEditorFn) (*http.Response, error)

	// SonarqubeTransitionsDestroy request
	SonarqubeTransitionsDestroy(ctx context.Context, id int, reqEditors ...RequestEditorFn) (*http.Response, error)

	// SonarqubeTransitionsRetrieve request
	SonarqubeTransitionsRetrieve(ctx context.Context, id int, reqEditors ...RequestEditorFn) (*http.Response, error)

	// SonarqubeTransitionsPartialUpdate request with any body
	SonarqubeTransitionsPartialUpdateWithBody(ctx context.Context, id int, contentType string, body io.Reader, reqEditors ...RequestEditorFn) (*http.Response, error)

	SonarqubeTransitionsPartialUpdate(ctx context.Context, id int, body SonarqubeTransitionsPartialUpdateJSONRequestBody, reqEditors ...RequestEditorFn) (*http.Response, error)

	SonarqubeTransitionsPartialUpdateWithFormdataBody(ctx context.Context, id int, body SonarqubeTransitionsPartialUpdateFormdataRequestBody, reqEditors ...RequestEditorFn) (*http.Response, error)

	// SonarqubeTransitionsUpdate request with any body
	SonarqubeTransitionsUpdateWithBody(ctx context.Context, id int, contentType string, body io.Reader, reqEditors ...RequestEditorFn) (*http.Response, error)

	SonarqubeTransitionsUpdate(ctx context.Context, id int, body SonarqubeTransitionsUpdateJSONRequestBody, reqEditors ...RequestEditorFn) (*http.Response, error)

	SonarqubeTransitionsUpdateWithFormdataBody(ctx context.Context, id int, body SonarqubeTransitionsUpdateFormdataRequestBody, reqEditors ...RequestEditorFn) (*http.Response, error)

	// SonarqubeTransitionsDeletePreviewList request
	SonarqubeTransitionsDeletePreviewList(ctx context.Context, id int, params *SonarqubeTransitionsDeletePreviewListParams, reqEditors ...RequestEditorFn) (*http.Response, error)

	// StubFindingsList request
	StubFindingsList(ctx context.Context, params *StubFindingsListParams, reqEditors ...RequestEditorFn) (*http.Response, error)

	// StubFindingsCreate request with any body
	StubFindingsCreateWithBody(ctx context.Context, contentType string, body io.Reader, reqEditors ...RequestEditorFn) (*http.Response, error)

	StubFindingsCreate(ctx context.Context, body StubFindingsCreateJSONRequestBody, reqEditors ...RequestEditorFn) (*http.Response, error)

	StubFindingsCreateWithFormdataBody(ctx context.Context, body StubFindingsCreateFormdataRequestBody, reqEditors ...RequestEditorFn) (*http.Response, error)

	// StubFindingsDestroy request
	StubFindingsDestroy(ctx context.Context, id int, reqEditors ...RequestEditorFn) (*http.Response, error)

	// StubFindingsRetrieve request
	StubFindingsRetrieve(ctx context.Context, id int, reqEditors ...RequestEditorFn) (*http.Response, error)

	// StubFindingsPartialUpdate request with any body
	StubFindingsPartialUpdateWithBody(ctx context.Context, id int, contentType string, body io.Reader, reqEditors ...RequestEditorFn) (*http.Response, error)

	StubFindingsPartialUpdate(ctx context.Context, id int, body StubFindingsPartialUpdateJSONRequestBody, reqEditors ...RequestEditorFn) (*http.Response, error)

	StubFindingsPartialUpdateWithFormdataBody(ctx context.Context, id int, body StubFindingsPartialUpdateFormdataRequestBody, reqEditors ...RequestEditorFn) (*http.Response, error)

	// StubFindingsUpdate request with any body
	StubFindingsUpdateWithBody(ctx context.Context, id int, contentType string, body io.Reader, reqEditors ...RequestEditorFn) (*http.Response, error)

	StubFindingsUpdate(ctx context.Context, id int, body StubFindingsUpdateJSONRequestBody, reqEditors ...RequestEditorFn) (*http.Response, error)

	StubFindingsUpdateWithFormdataBody(ctx context.Context, id int, body StubFindingsUpdateFormdataRequestBody, reqEditors ...RequestEditorFn) (*http.Response, error)

	// StubFindingsDeletePreviewList request
	StubFindingsDeletePreviewList(ctx context.Context, id int, params *StubFindingsDeletePreviewListParams, reqEditors ...RequestEditorFn) (*http.Response, error)

	// SystemSettingsList request
	SystemSettingsList(ctx context.Context, params *SystemSettingsListParams, reqEditors ...RequestEditorFn) (*http.Response, error)

	// SystemSettingsPartialUpdate request with any body
	SystemSettingsPartialUpdateWithBody(ctx context.Context, id int, contentType string, body io.Reader, reqEditors ...RequestEditorFn) (*http.Response, error)

	SystemSettingsPartialUpdate(ctx context.Context, id int, body SystemSettingsPartialUpdateJSONRequestBody, reqEditors ...RequestEditorFn) (*http.Response, error)

	SystemSettingsPartialUpdateWithFormdataBody(ctx context.Context, id int, body SystemSettingsPartialUpdateFormdataRequestBody, reqEditors ...RequestEditorFn) (*http.Response, error)

	// SystemSettingsUpdate request with any body
	SystemSettingsUpdateWithBody(ctx context.Context, id int, contentType string, body io.Reader, reqEditors ...RequestEditorFn) (*http.Response, error)

	SystemSettingsUpdate(ctx context.Context, id int, body SystemSettingsUpdateJSONRequestBody, reqEditors ...RequestEditorFn) (*http.Response, error)

	SystemSettingsUpdateWithFormdataBody(ctx context.Context, id int, body SystemSettingsUpdateFormdataRequestBody, reqEditors ...RequestEditorFn) (*http.Response, error)

	// TechnologiesList request
	TechnologiesList(ctx context.Context, params *TechnologiesListParams, reqEditors ...RequestEditorFn) (*http.Response, error)

	// TechnologiesCreate request with any body
	TechnologiesCreateWithBody(ctx context.Context, contentType string, body io.Reader, reqEditors ...RequestEditorFn) (*http.Response, error)

	TechnologiesCreate(ctx context.Context, body TechnologiesCreateJSONRequestBody, reqEditors ...RequestEditorFn) (*http.Response, error)

	TechnologiesCreateWithFormdataBody(ctx context.Context, body TechnologiesCreateFormdataRequestBody, reqEditors ...RequestEditorFn) (*http.Response, error)

	// TechnologiesDestroy request
	TechnologiesDestroy(ctx context.Context, id int, reqEditors ...RequestEditorFn) (*http.Response, error)

	// TechnologiesRetrieve request
	TechnologiesRetrieve(ctx context.Context, id int, reqEditors ...RequestEditorFn) (*http.Response, error)

	// TechnologiesPartialUpdate request with any body
	TechnologiesPartialUpdateWithBody(ctx context.Context, id int, contentType string, body io.Reader, reqEditors ...RequestEditorFn) (*http.Response, error)

	TechnologiesPartialUpdate(ctx context.Context, id int, body TechnologiesPartialUpdateJSONRequestBody, reqEditors ...RequestEditorFn) (*http.Response, error)

	TechnologiesPartialUpdateWithFormdataBody(ctx context.Context, id int, body TechnologiesPartialUpdateFormdataRequestBody, reqEditors ...RequestEditorFn) (*http.Response, error)

	// TechnologiesUpdate request with any body
	TechnologiesUpdateWithBody(ctx context.Context, id int, contentType string, body io.Reader, reqEditors ...RequestEditorFn) (*http.Response, error)

	TechnologiesUpdate(ctx context.Context, id int, body TechnologiesUpdateJSONRequestBody, reqEditors ...RequestEditorFn) (*http.Response, error)

	TechnologiesUpdateWithFormdataBody(ctx context.Context, id int, body TechnologiesUpdateFormdataRequestBody, reqEditors ...RequestEditorFn) (*http.Response, error)

	// TechnologiesDeletePreviewList request
	TechnologiesDeletePreviewList(ctx context.Context, id int, params *TechnologiesDeletePreviewListParams, reqEditors ...RequestEditorFn) (*http.Response, error)

	// TestImportsList request
	TestImportsList(ctx context.Context, params *TestImportsListParams, reqEditors ...RequestEditorFn) (*http.Response, error)

	// TestImportsCreate request with any body
	TestImportsCreateWithBody(ctx context.Context, contentType string, body io.Reader, reqEditors ...RequestEditorFn) (*http.Response, error)

	TestImportsCreate(ctx context.Context, body TestImportsCreateJSONRequestBody, reqEditors ...RequestEditorFn) (*http.Response, error)

	TestImportsCreateWithFormdataBody(ctx context.Context, body TestImportsCreateFormdataRequestBody, reqEditors ...RequestEditorFn) (*http.Response, error)

	// TestImportsDestroy request
	TestImportsDestroy(ctx context.Context, id int, reqEditors ...RequestEditorFn) (*http.Response, error)

	// TestImportsRetrieve request
	TestImportsRetrieve(ctx context.Context, id int, params *TestImportsRetrieveParams, reqEditors ...RequestEditorFn) (*http.Response, error)

	// TestImportsPartialUpdate request with any body
	TestImportsPartialUpdateWithBody(ctx context.Context, id int, contentType string, body io.Reader, reqEditors ...RequestEditorFn) (*http.Response, error)

	TestImportsPartialUpdate(ctx context.Context, id int, body TestImportsPartialUpdateJSONRequestBody, reqEditors ...RequestEditorFn) (*http.Response, error)

	TestImportsPartialUpdateWithFormdataBody(ctx context.Context, id int, body TestImportsPartialUpdateFormdataRequestBody, reqEditors ...RequestEditorFn) (*http.Response, error)

	// TestImportsUpdate request with any body
	TestImportsUpdateWithBody(ctx context.Context, id int, contentType string, body io.Reader, reqEditors ...RequestEditorFn) (*http.Response, error)

	TestImportsUpdate(ctx context.Context, id int, body TestImportsUpdateJSONRequestBody, reqEditors ...RequestEditorFn) (*http.Response, error)

	TestImportsUpdateWithFormdataBody(ctx context.Context, id int, body TestImportsUpdateFormdataRequestBody, reqEditors ...RequestEditorFn) (*http.Response, error)

	// TestImportsDeletePreviewList request
	TestImportsDeletePreviewList(ctx context.Context, id int, params *TestImportsDeletePreviewListParams, reqEditors ...RequestEditorFn) (*http.Response, error)

	// TestTypesList request
	TestTypesList(ctx context.Context, params *TestTypesListParams, reqEditors ...RequestEditorFn) (*http.Response, error)

	// TestTypesCreate request with any body
	TestTypesCreateWithBody(ctx context.Context, contentType string, body io.Reader, reqEditors ...RequestEditorFn) (*http.Response, error)

	TestTypesCreate(ctx context.Context, body TestTypesCreateJSONRequestBody, reqEditors ...RequestEditorFn) (*http.Response, error)

	TestTypesCreateWithFormdataBody(ctx context.Context, body TestTypesCreateFormdataRequestBody, reqEditors ...RequestEditorFn) (*http.Response, error)

	// TestTypesRetrieve request
	TestTypesRetrieve(ctx context.Context, id int, reqEditors ...RequestEditorFn) (*http.Response, error)

	// TestTypesPartialUpdate request with any body
	TestTypesPartialUpdateWithBody(ctx context.Context, id int, contentType string, body io.Reader, reqEditors ...RequestEditorFn) (*http.Response, error)

	TestTypesPartialUpdate(ctx context.Context, id int, body TestTypesPartialUpdateJSONRequestBody, reqEditors ...RequestEditorFn) (*http.Response, error)

	TestTypesPartialUpdateWithFormdataBody(ctx context.Context, id int, body TestTypesPartialUpdateFormdataRequestBody, reqEditors ...RequestEditorFn) (*http.Response, error)

	// TestTypesUpdate request with any body
	TestTypesUpdateWithBody(ctx context.Context, id int, contentType string, body io.Reader, reqEditors ...RequestEditorFn) (*http.Response, error)

	TestTypesUpdate(ctx context.Context, id int, body TestTypesUpdateJSONRequestBody, reqEditors ...RequestEditorFn) (*http.Response, error)

	TestTypesUpdateWithFormdataBody(ctx context.Context, id int, body TestTypesUpdateFormdataRequestBody, reqEditors ...RequestEditorFn) (*http.Response, error)

	// TestsList request
	TestsList(ctx context.Context, params *TestsListParams, reqEditors ...RequestEditorFn) (*http.Response, error)

	// TestsCreate request with any body
	TestsCreateWithBody(ctx context.Context, contentType string, body io.Reader, reqEditors ...RequestEditorFn) (*http.Response, error)

	TestsCreate(ctx context.Context, body TestsCreateJSONRequestBody, reqEditors ...RequestEditorFn) (*http.Response, error)

	TestsCreateWithFormdataBody(ctx context.Context, body TestsCreateFormdataRequestBody, reqEditors ...RequestEditorFn) (*http.Response, error)

	// TestsDestroy request
	TestsDestroy(ctx context.Context, id int, reqEditors ...RequestEditorFn) (*http.Response, error)

	// TestsRetrieve request
	TestsRetrieve(ctx context.Context, id int, reqEditors ...RequestEditorFn) (*http.Response, error)

	// TestsPartialUpdate request with any body
	TestsPartialUpdateWithBody(ctx context.Context, id int, contentType string, body io.Reader, reqEditors ...RequestEditorFn) (*http.Response, error)

	TestsPartialUpdate(ctx context.Context, id int, body TestsPartialUpdateJSONRequestBody, reqEditors ...RequestEditorFn) (*http.Response, error)

	TestsPartialUpdateWithFormdataBody(ctx context.Context, id int, body TestsPartialUpdateFormdataRequestBody, reqEditors ...RequestEditorFn) (*http.Response, error)

	// TestsUpdate request with any body
	TestsUpdateWithBody(ctx context.Context, id int, contentType string, body io.Reader, reqEditors ...RequestEditorFn) (*http.Response, error)

	TestsUpdate(ctx context.Context, id int, body TestsUpdateJSONRequestBody, reqEditors ...RequestEditorFn) (*http.Response, error)

	TestsUpdateWithFormdataBody(ctx context.Context, id int, body TestsUpdateFormdataRequestBody, reqEditors ...RequestEditorFn) (*http.Response, error)

	// TestsAcceptRisksCreate request with any body
	TestsAcceptRisksCreateWithBody(ctx context.Context, id int, contentType string, body io.Reader, reqEditors ...RequestEditorFn) (*http.Response, error)

	TestsAcceptRisksCreate(ctx context.Context, id int, body TestsAcceptRisksCreateJSONRequestBody, reqEditors ...RequestEditorFn) (*http.Response, error)

	TestsAcceptRisksCreateWithFormdataBody(ctx context.Context, id int, body TestsAcceptRisksCreateFormdataRequestBody, reqEditors ...RequestEditorFn) (*http.Response, error)

	// TestsDeletePreviewList request
	TestsDeletePreviewList(ctx context.Context, id int, params *TestsDeletePreviewListParams, reqEditors ...RequestEditorFn) (*http.Response, error)

	// TestsFilesRetrieve request
	TestsFilesRetrieve(ctx context.Context, id int, reqEditors ...RequestEditorFn) (*http.Response, error)

	// TestsFilesCreate request with any body
	TestsFilesCreateWithBody(ctx context.Context, id int, contentType string, body io.Reader, reqEditors ...RequestEditorFn) (*http.Response, error)

	// TestsFilesDownloadRetrieve request
	TestsFilesDownloadRetrieve(ctx context.Context, id int, fileId string, reqEditors ...RequestEditorFn) (*http.Response, error)

	// TestsGenerateReportCreate request with any body
	TestsGenerateReportCreateWithBody(ctx context.Context, id int, contentType string, body io.Reader, reqEditors ...RequestEditorFn) (*http.Response, error)

	TestsGenerateReportCreate(ctx context.Context, id int, body TestsGenerateReportCreateJSONRequestBody, reqEditors ...RequestEditorFn) (*http.Response, error)

	TestsGenerateReportCreateWithFormdataBody(ctx context.Context, id int, body TestsGenerateReportCreateFormdataRequestBody, reqEditors ...RequestEditorFn) (*http.Response, error)

	// TestsNotesRetrieve request
	TestsNotesRetrieve(ctx context.Context, id int, reqEditors ...RequestEditorFn) (*http.Response, error)

	// TestsNotesCreate request with any body
	TestsNotesCreateWithBody(ctx context.Context, id int, contentType string, body io.Reader, reqEditors ...RequestEditorFn) (*http.Response, error)

	TestsNotesCreate(ctx context.Context, id int, body TestsNotesCreateJSONRequestBody, reqEditors ...RequestEditorFn) (*http.Response, error)

	TestsNotesCreateWithFormdataBody(ctx context.Context, id int, body TestsNotesCreateFormdataRequestBody, reqEditors ...RequestEditorFn) (*http.Response, error)

	// ToolConfigurationsList request
	ToolConfigurationsList(ctx context.Context, params *ToolConfigurationsListParams, reqEditors ...RequestEditorFn) (*http.Response, error)

	// ToolConfigurationsCreate request with any body
	ToolConfigurationsCreateWithBody(ctx context.Context, contentType string, body io.Reader, reqEditors ...RequestEditorFn) (*http.Response, error)

	ToolConfigurationsCreate(ctx context.Context, body ToolConfigurationsCreateJSONRequestBody, reqEditors ...RequestEditorFn) (*http.Response, error)

	ToolConfigurationsCreateWithFormdataBody(ctx context.Context, body ToolConfigurationsCreateFormdataRequestBody, reqEditors ...RequestEditorFn) (*http.Response, error)

	// ToolConfigurationsDestroy request
	ToolConfigurationsDestroy(ctx context.Context, id int, reqEditors ...RequestEditorFn) (*http.Response, error)

	// ToolConfigurationsRetrieve request
	ToolConfigurationsRetrieve(ctx context.Context, id int, reqEditors ...RequestEditorFn) (*http.Response, error)

	// ToolConfigurationsPartialUpdate request with any body
	ToolConfigurationsPartialUpdateWithBody(ctx context.Context, id int, contentType string, body io.Reader, reqEditors ...RequestEditorFn) (*http.Response, error)

	ToolConfigurationsPartialUpdate(ctx context.Context, id int, body ToolConfigurationsPartialUpdateJSONRequestBody, reqEditors ...RequestEditorFn) (*http.Response, error)

	ToolConfigurationsPartialUpdateWithFormdataBody(ctx context.Context, id int, body ToolConfigurationsPartialUpdateFormdataRequestBody, reqEditors ...RequestEditorFn) (*http.Response, error)

	// ToolConfigurationsUpdate request with any body
	ToolConfigurationsUpdateWithBody(ctx context.Context, id int, contentType string, body io.Reader, reqEditors ...RequestEditorFn) (*http.Response, error)

	ToolConfigurationsUpdate(ctx context.Context, id int, body ToolConfigurationsUpdateJSONRequestBody, reqEditors ...RequestEditorFn) (*http.Response, error)

	ToolConfigurationsUpdateWithFormdataBody(ctx context.Context, id int, body ToolConfigurationsUpdateFormdataRequestBody, reqEditors ...RequestEditorFn) (*http.Response, error)

	// ToolConfigurationsDeletePreviewList request
	ToolConfigurationsDeletePreviewList(ctx context.Context, id int, params *ToolConfigurationsDeletePreviewListParams, reqEditors ...RequestEditorFn) (*http.Response, error)

	// ToolProductSettingsList request
	ToolProductSettingsList(ctx context.Context, params *ToolProductSettingsListParams, reqEditors ...RequestEditorFn) (*http.Response, error)

	// ToolProductSettingsCreate request with any body
	ToolProductSettingsCreateWithBody(ctx context.Context, contentType string, body io.Reader, reqEditors ...RequestEditorFn) (*http.Response, error)

	ToolProductSettingsCreate(ctx context.Context, body ToolProductSettingsCreateJSONRequestBody, reqEditors ...RequestEditorFn) (*http.Response, error)

	ToolProductSettingsCreateWithFormdataBody(ctx context.Context, body ToolProductSettingsCreateFormdataRequestBody, reqEditors ...RequestEditorFn) (*http.Response, error)

	// ToolProductSettingsDestroy request
	ToolProductSettingsDestroy(ctx context.Context, id int, reqEditors ...RequestEditorFn) (*http.Response, error)

	// ToolProductSettingsRetrieve request
	ToolProductSettingsRetrieve(ctx context.Context, id int, reqEditors ...RequestEditorFn) (*http.Response, error)

	// ToolProductSettingsPartialUpdate request with any body
	ToolProductSettingsPartialUpdateWithBody(ctx context.Context, id int, contentType string, body io.Reader, reqEditors ...RequestEditorFn) (*http.Response, error)

	ToolProductSettingsPartialUpdate(ctx context.Context, id int, body ToolProductSettingsPartialUpdateJSONRequestBody, reqEditors ...RequestEditorFn) (*http.Response, error)

	ToolProductSettingsPartialUpdateWithFormdataBody(ctx context.Context, id int, body ToolProductSettingsPartialUpdateFormdataRequestBody, reqEditors ...RequestEditorFn) (*http.Response, error)

	// ToolProductSettingsUpdate request with any body
	ToolProductSettingsUpdateWithBody(ctx context.Context, id int, contentType string, body io.Reader, reqEditors ...RequestEditorFn) (*http.Response, error)

	ToolProductSettingsUpdate(ctx context.Context, id int, body ToolProductSettingsUpdateJSONRequestBody, reqEditors ...RequestEditorFn) (*http.Response, error)

	ToolProductSettingsUpdateWithFormdataBody(ctx context.Context, id int, body ToolProductSettingsUpdateFormdataRequestBody, reqEditors ...RequestEditorFn) (*http.Response, error)

	// ToolProductSettingsDeletePreviewList request
	ToolProductSettingsDeletePreviewList(ctx context.Context, id int, params *ToolProductSettingsDeletePreviewListParams, reqEditors ...RequestEditorFn) (*http.Response, error)

	// ToolTypesList request
	ToolTypesList(ctx context.Context, params *ToolTypesListParams, reqEditors ...RequestEditorFn) (*http.Response, error)

	// ToolTypesCreate request with any body
	ToolTypesCreateWithBody(ctx context.Context, contentType string, body io.Reader, reqEditors ...RequestEditorFn) (*http.Response, error)

	ToolTypesCreate(ctx context.Context, body ToolTypesCreateJSONRequestBody, reqEditors ...RequestEditorFn) (*http.Response, error)

	ToolTypesCreateWithFormdataBody(ctx context.Context, body ToolTypesCreateFormdataRequestBody, reqEditors ...RequestEditorFn) (*http.Response, error)

	// ToolTypesDestroy request
	ToolTypesDestroy(ctx context.Context, id int, reqEditors ...RequestEditorFn) (*http.Response, error)

	// ToolTypesRetrieve request
	ToolTypesRetrieve(ctx context.Context, id int, reqEditors ...RequestEditorFn) (*http.Response, error)

	// ToolTypesPartialUpdate request with any body
	ToolTypesPartialUpdateWithBody(ctx context.Context, id int, contentType string, body io.Reader, reqEditors ...RequestEditorFn) (*http.Response, error)

	ToolTypesPartialUpdate(ctx context.Context, id int, body ToolTypesPartialUpdateJSONRequestBody, reqEditors ...RequestEditorFn) (*http.Response, error)

	ToolTypesPartialUpdateWithFormdataBody(ctx context.Context, id int, body ToolTypesPartialUpdateFormdataRequestBody, reqEditors ...RequestEditorFn) (*http.Response, error)

	// ToolTypesUpdate request with any body
	ToolTypesUpdateWithBody(ctx context.Context, id int, contentType string, body io.Reader, reqEditors ...RequestEditorFn) (*http.Response, error)

	ToolTypesUpdate(ctx context.Context, id int, body ToolTypesUpdateJSONRequestBody, reqEditors ...RequestEditorFn) (*http.Response, error)

	ToolTypesUpdateWithFormdataBody(ctx context.Context, id int, body ToolTypesUpdateFormdataRequestBody, reqEditors ...RequestEditorFn) (*http.Response, error)

	// ToolTypesDeletePreviewList request
	ToolTypesDeletePreviewList(ctx context.Context, id int, params *ToolTypesDeletePreviewListParams, reqEditors ...RequestEditorFn) (*http.Response, error)

	// UserContactInfosList request
	UserContactInfosList(ctx context.Context, params *UserContactInfosListParams, reqEditors ...RequestEditorFn) (*http.Response, error)

	// UserContactInfosCreate request with any body
	UserContactInfosCreateWithBody(ctx context.Context, contentType string, body io.Reader, reqEditors ...RequestEditorFn) (*http.Response, error)

	UserContactInfosCreate(ctx context.Context, body UserContactInfosCreateJSONRequestBody, reqEditors ...RequestEditorFn) (*http.Response, error)

	UserContactInfosCreateWithFormdataBody(ctx context.Context, body UserContactInfosCreateFormdataRequestBody, reqEditors ...RequestEditorFn) (*http.Response, error)

	// UserContactInfosDestroy request
	UserContactInfosDestroy(ctx context.Context, id int, reqEditors ...RequestEditorFn) (*http.Response, error)

	// UserContactInfosRetrieve request
	UserContactInfosRetrieve(ctx context.Context, id int, params *UserContactInfosRetrieveParams, reqEditors ...RequestEditorFn) (*http.Response, error)

	// UserContactInfosPartialUpdate request with any body
	UserContactInfosPartialUpdateWithBody(ctx context.Context, id int, contentType string, body io.Reader, reqEditors ...RequestEditorFn) (*http.Response, error)

	UserContactInfosPartialUpdate(ctx context.Context, id int, body UserContactInfosPartialUpdateJSONRequestBody, reqEditors ...RequestEditorFn) (*http.Response, error)

	UserContactInfosPartialUpdateWithFormdataBody(ctx context.Context, id int, body UserContactInfosPartialUpdateFormdataRequestBody, reqEditors ...RequestEditorFn) (*http.Response, error)

	// UserContactInfosUpdate request with any body
	UserContactInfosUpdateWithBody(ctx context.Context, id int, contentType string, body io.Reader, reqEditors ...RequestEditorFn) (*http.Response, error)

	UserContactInfosUpdate(ctx context.Context, id int, body UserContactInfosUpdateJSONRequestBody, reqEditors ...RequestEditorFn) (*http.Response, error)

	UserContactInfosUpdateWithFormdataBody(ctx context.Context, id int, body UserContactInfosUpdateFormdataRequestBody, reqEditors ...RequestEditorFn) (*http.Response, error)

	// UserContactInfosDeletePreviewList request
	UserContactInfosDeletePreviewList(ctx context.Context, id int, params *UserContactInfosDeletePreviewListParams, reqEditors ...RequestEditorFn) (*http.Response, error)

	// UserProfileRetrieve request
	UserProfileRetrieve(ctx context.Context, reqEditors ...RequestEditorFn) (*http.Response, error)

	// UsersList request
	UsersList(ctx context.Context, params *UsersListParams, reqEditors ...RequestEditorFn) (*http.Response, error)

	// UsersCreate request with any body
	UsersCreateWithBody(ctx context.Context, contentType string, body io.Reader, reqEditors ...RequestEditorFn) (*http.Response, error)

	UsersCreate(ctx context.Context, body UsersCreateJSONRequestBody, reqEditors ...RequestEditorFn) (*http.Response, error)

	UsersCreateWithFormdataBody(ctx context.Context, body UsersCreateFormdataRequestBody, reqEditors ...RequestEditorFn) (*http.Response, error)

	// UsersDestroy request
	UsersDestroy(ctx context.Context, id int, reqEditors ...RequestEditorFn) (*http.Response, error)

	// UsersRetrieve request
	UsersRetrieve(ctx context.Context, id int, reqEditors ...RequestEditorFn) (*http.Response, error)

	// UsersPartialUpdate request with any body
	UsersPartialUpdateWithBody(ctx context.Context, id int, contentType string, body io.Reader, reqEditors ...RequestEditorFn) (*http.Response, error)

	UsersPartialUpdate(ctx context.Context, id int, body UsersPartialUpdateJSONRequestBody, reqEditors ...RequestEditorFn) (*http.Response, error)

	UsersPartialUpdateWithFormdataBody(ctx context.Context, id int, body UsersPartialUpdateFormdataRequestBody, reqEditors ...RequestEditorFn) (*http.Response, error)

	// UsersUpdate request with any body
	UsersUpdateWithBody(ctx context.Context, id int, contentType string, body io.Reader, reqEditors ...RequestEditorFn) (*http.Response, error)

	UsersUpdate(ctx context.Context, id int, body UsersUpdateJSONRequestBody, reqEditors ...RequestEditorFn) (*http.Response, error)

	UsersUpdateWithFormdataBody(ctx context.Context, id int, body UsersUpdateFormdataRequestBody, reqEditors ...RequestEditorFn) (*http.Response, error)

	// UsersDeletePreviewList request
	UsersDeletePreviewList(ctx context.Context, id int, params *UsersDeletePreviewListParams, reqEditors ...RequestEditorFn) (*http.Response, error)
}

The interface specification for the client above.

type ClientOption

type ClientOption func(*Client) error

ClientOption allows setting custom parameters during construction

func WithBaseURL

func WithBaseURL(baseURL string) ClientOption

WithBaseURL overrides the baseURL.

func WithHTTPClient

func WithHTTPClient(doer HttpRequestDoer) ClientOption

WithHTTPClient allows overriding the default Doer, which is automatically created using http.Client. This is useful for tests.

func WithRequestEditorFn

func WithRequestEditorFn(fn RequestEditorFn) ClientOption

WithRequestEditorFn allows setting up a callback function, which will be called right before sending the request. This can be used to mutate the request.

type ClientWithResponses

type ClientWithResponses struct {
	ClientInterface
}

ClientWithResponses builds on ClientInterface to offer response payloads

func NewClientWithResponses

func NewClientWithResponses(server string, opts ...ClientOption) (*ClientWithResponses, error)

NewClientWithResponses creates a new ClientWithResponses, which wraps Client with return type handling

func (*ClientWithResponses) ApiTokenAuthCreateWithBodyWithResponse

func (c *ClientWithResponses) ApiTokenAuthCreateWithBodyWithResponse(ctx context.Context, contentType string, body io.Reader, reqEditors ...RequestEditorFn) (*ApiTokenAuthCreateResponse, error)

ApiTokenAuthCreateWithBodyWithResponse request with arbitrary body returning *ApiTokenAuthCreateResponse

func (*ClientWithResponses) ApiTokenAuthCreateWithFormdataBodyWithResponse added in v0.2.0

func (c *ClientWithResponses) ApiTokenAuthCreateWithFormdataBodyWithResponse(ctx context.Context, body ApiTokenAuthCreateFormdataRequestBody, reqEditors ...RequestEditorFn) (*ApiTokenAuthCreateResponse, error)

func (*ClientWithResponses) ApiTokenAuthCreateWithResponse

func (c *ClientWithResponses) ApiTokenAuthCreateWithResponse(ctx context.Context, body ApiTokenAuthCreateJSONRequestBody, reqEditors ...RequestEditorFn) (*ApiTokenAuthCreateResponse, error)

func (*ClientWithResponses) ConfigurationPermissionsListWithResponse added in v0.2.0

func (c *ClientWithResponses) ConfigurationPermissionsListWithResponse(ctx context.Context, params *ConfigurationPermissionsListParams, reqEditors ...RequestEditorFn) (*ConfigurationPermissionsListResponse, error)

ConfigurationPermissionsListWithResponse request returning *ConfigurationPermissionsListResponse

func (*ClientWithResponses) ConfigurationPermissionsRetrieveWithResponse added in v0.2.0

func (c *ClientWithResponses) ConfigurationPermissionsRetrieveWithResponse(ctx context.Context, id int, reqEditors ...RequestEditorFn) (*ConfigurationPermissionsRetrieveResponse, error)

ConfigurationPermissionsRetrieveWithResponse request returning *ConfigurationPermissionsRetrieveResponse

func (*ClientWithResponses) CredentialMappingsCreateWithBodyWithResponse added in v0.2.0

func (c *ClientWithResponses) CredentialMappingsCreateWithBodyWithResponse(ctx context.Context, contentType string, body io.Reader, reqEditors ...RequestEditorFn) (*CredentialMappingsCreateResponse, error)

CredentialMappingsCreateWithBodyWithResponse request with arbitrary body returning *CredentialMappingsCreateResponse

func (*ClientWithResponses) CredentialMappingsCreateWithFormdataBodyWithResponse added in v0.2.0

func (c *ClientWithResponses) CredentialMappingsCreateWithFormdataBodyWithResponse(ctx context.Context, body CredentialMappingsCreateFormdataRequestBody, reqEditors ...RequestEditorFn) (*CredentialMappingsCreateResponse, error)

func (*ClientWithResponses) CredentialMappingsCreateWithResponse added in v0.2.0

func (c *ClientWithResponses) CredentialMappingsCreateWithResponse(ctx context.Context, body CredentialMappingsCreateJSONRequestBody, reqEditors ...RequestEditorFn) (*CredentialMappingsCreateResponse, error)

func (*ClientWithResponses) CredentialMappingsDeletePreviewListWithResponse added in v0.2.0

func (c *ClientWithResponses) CredentialMappingsDeletePreviewListWithResponse(ctx context.Context, id int, params *CredentialMappingsDeletePreviewListParams, reqEditors ...RequestEditorFn) (*CredentialMappingsDeletePreviewListResponse, error)

CredentialMappingsDeletePreviewListWithResponse request returning *CredentialMappingsDeletePreviewListResponse

func (*ClientWithResponses) CredentialMappingsDestroyWithResponse added in v0.2.0

func (c *ClientWithResponses) CredentialMappingsDestroyWithResponse(ctx context.Context, id int, reqEditors ...RequestEditorFn) (*CredentialMappingsDestroyResponse, error)

CredentialMappingsDestroyWithResponse request returning *CredentialMappingsDestroyResponse

func (*ClientWithResponses) CredentialMappingsListWithResponse added in v0.2.0

func (c *ClientWithResponses) CredentialMappingsListWithResponse(ctx context.Context, params *CredentialMappingsListParams, reqEditors ...RequestEditorFn) (*CredentialMappingsListResponse, error)

CredentialMappingsListWithResponse request returning *CredentialMappingsListResponse

func (*ClientWithResponses) CredentialMappingsPartialUpdateWithBodyWithResponse added in v0.2.0

func (c *ClientWithResponses) CredentialMappingsPartialUpdateWithBodyWithResponse(ctx context.Context, id int, contentType string, body io.Reader, reqEditors ...RequestEditorFn) (*CredentialMappingsPartialUpdateResponse, error)

CredentialMappingsPartialUpdateWithBodyWithResponse request with arbitrary body returning *CredentialMappingsPartialUpdateResponse

func (*ClientWithResponses) CredentialMappingsPartialUpdateWithFormdataBodyWithResponse added in v0.2.0

func (c *ClientWithResponses) CredentialMappingsPartialUpdateWithFormdataBodyWithResponse(ctx context.Context, id int, body CredentialMappingsPartialUpdateFormdataRequestBody, reqEditors ...RequestEditorFn) (*CredentialMappingsPartialUpdateResponse, error)

func (*ClientWithResponses) CredentialMappingsPartialUpdateWithResponse added in v0.2.0

func (c *ClientWithResponses) CredentialMappingsPartialUpdateWithResponse(ctx context.Context, id int, body CredentialMappingsPartialUpdateJSONRequestBody, reqEditors ...RequestEditorFn) (*CredentialMappingsPartialUpdateResponse, error)

func (*ClientWithResponses) CredentialMappingsRetrieveWithResponse added in v0.2.0

func (c *ClientWithResponses) CredentialMappingsRetrieveWithResponse(ctx context.Context, id int, reqEditors ...RequestEditorFn) (*CredentialMappingsRetrieveResponse, error)

CredentialMappingsRetrieveWithResponse request returning *CredentialMappingsRetrieveResponse

func (*ClientWithResponses) CredentialMappingsUpdateWithBodyWithResponse added in v0.2.0

func (c *ClientWithResponses) CredentialMappingsUpdateWithBodyWithResponse(ctx context.Context, id int, contentType string, body io.Reader, reqEditors ...RequestEditorFn) (*CredentialMappingsUpdateResponse, error)

CredentialMappingsUpdateWithBodyWithResponse request with arbitrary body returning *CredentialMappingsUpdateResponse

func (*ClientWithResponses) CredentialMappingsUpdateWithFormdataBodyWithResponse added in v0.2.0

func (c *ClientWithResponses) CredentialMappingsUpdateWithFormdataBodyWithResponse(ctx context.Context, id int, body CredentialMappingsUpdateFormdataRequestBody, reqEditors ...RequestEditorFn) (*CredentialMappingsUpdateResponse, error)

func (*ClientWithResponses) CredentialMappingsUpdateWithResponse added in v0.2.0

func (c *ClientWithResponses) CredentialMappingsUpdateWithResponse(ctx context.Context, id int, body CredentialMappingsUpdateJSONRequestBody, reqEditors ...RequestEditorFn) (*CredentialMappingsUpdateResponse, error)

func (*ClientWithResponses) CredentialsCreateWithBodyWithResponse added in v0.2.0

func (c *ClientWithResponses) CredentialsCreateWithBodyWithResponse(ctx context.Context, contentType string, body io.Reader, reqEditors ...RequestEditorFn) (*CredentialsCreateResponse, error)

CredentialsCreateWithBodyWithResponse request with arbitrary body returning *CredentialsCreateResponse

func (*ClientWithResponses) CredentialsCreateWithFormdataBodyWithResponse added in v0.2.0

func (c *ClientWithResponses) CredentialsCreateWithFormdataBodyWithResponse(ctx context.Context, body CredentialsCreateFormdataRequestBody, reqEditors ...RequestEditorFn) (*CredentialsCreateResponse, error)

func (*ClientWithResponses) CredentialsCreateWithResponse added in v0.2.0

func (c *ClientWithResponses) CredentialsCreateWithResponse(ctx context.Context, body CredentialsCreateJSONRequestBody, reqEditors ...RequestEditorFn) (*CredentialsCreateResponse, error)

func (*ClientWithResponses) CredentialsDeletePreviewListWithResponse added in v0.2.0

func (c *ClientWithResponses) CredentialsDeletePreviewListWithResponse(ctx context.Context, id int, params *CredentialsDeletePreviewListParams, reqEditors ...RequestEditorFn) (*CredentialsDeletePreviewListResponse, error)

CredentialsDeletePreviewListWithResponse request returning *CredentialsDeletePreviewListResponse

func (*ClientWithResponses) CredentialsDestroyWithResponse added in v0.2.0

func (c *ClientWithResponses) CredentialsDestroyWithResponse(ctx context.Context, id int, reqEditors ...RequestEditorFn) (*CredentialsDestroyResponse, error)

CredentialsDestroyWithResponse request returning *CredentialsDestroyResponse

func (*ClientWithResponses) CredentialsListWithResponse added in v0.2.0

func (c *ClientWithResponses) CredentialsListWithResponse(ctx context.Context, params *CredentialsListParams, reqEditors ...RequestEditorFn) (*CredentialsListResponse, error)

CredentialsListWithResponse request returning *CredentialsListResponse

func (*ClientWithResponses) CredentialsPartialUpdateWithBodyWithResponse added in v0.2.0

func (c *ClientWithResponses) CredentialsPartialUpdateWithBodyWithResponse(ctx context.Context, id int, contentType string, body io.Reader, reqEditors ...RequestEditorFn) (*CredentialsPartialUpdateResponse, error)

CredentialsPartialUpdateWithBodyWithResponse request with arbitrary body returning *CredentialsPartialUpdateResponse

func (*ClientWithResponses) CredentialsPartialUpdateWithFormdataBodyWithResponse added in v0.2.0

func (c *ClientWithResponses) CredentialsPartialUpdateWithFormdataBodyWithResponse(ctx context.Context, id int, body CredentialsPartialUpdateFormdataRequestBody, reqEditors ...RequestEditorFn) (*CredentialsPartialUpdateResponse, error)

func (*ClientWithResponses) CredentialsPartialUpdateWithResponse added in v0.2.0

func (c *ClientWithResponses) CredentialsPartialUpdateWithResponse(ctx context.Context, id int, body CredentialsPartialUpdateJSONRequestBody, reqEditors ...RequestEditorFn) (*CredentialsPartialUpdateResponse, error)

func (*ClientWithResponses) CredentialsRetrieveWithResponse added in v0.2.0

func (c *ClientWithResponses) CredentialsRetrieveWithResponse(ctx context.Context, id int, reqEditors ...RequestEditorFn) (*CredentialsRetrieveResponse, error)

CredentialsRetrieveWithResponse request returning *CredentialsRetrieveResponse

func (*ClientWithResponses) CredentialsUpdateWithBodyWithResponse added in v0.2.0

func (c *ClientWithResponses) CredentialsUpdateWithBodyWithResponse(ctx context.Context, id int, contentType string, body io.Reader, reqEditors ...RequestEditorFn) (*CredentialsUpdateResponse, error)

CredentialsUpdateWithBodyWithResponse request with arbitrary body returning *CredentialsUpdateResponse

func (*ClientWithResponses) CredentialsUpdateWithFormdataBodyWithResponse added in v0.2.0

func (c *ClientWithResponses) CredentialsUpdateWithFormdataBodyWithResponse(ctx context.Context, id int, body CredentialsUpdateFormdataRequestBody, reqEditors ...RequestEditorFn) (*CredentialsUpdateResponse, error)

func (*ClientWithResponses) CredentialsUpdateWithResponse added in v0.2.0

func (c *ClientWithResponses) CredentialsUpdateWithResponse(ctx context.Context, id int, body CredentialsUpdateJSONRequestBody, reqEditors ...RequestEditorFn) (*CredentialsUpdateResponse, error)

func (*ClientWithResponses) DevelopmentEnvironmentsCreateWithBodyWithResponse

func (c *ClientWithResponses) DevelopmentEnvironmentsCreateWithBodyWithResponse(ctx context.Context, contentType string, body io.Reader, reqEditors ...RequestEditorFn) (*DevelopmentEnvironmentsCreateResponse, error)

DevelopmentEnvironmentsCreateWithBodyWithResponse request with arbitrary body returning *DevelopmentEnvironmentsCreateResponse

func (*ClientWithResponses) DevelopmentEnvironmentsCreateWithFormdataBodyWithResponse added in v0.2.0

func (c *ClientWithResponses) DevelopmentEnvironmentsCreateWithFormdataBodyWithResponse(ctx context.Context, body DevelopmentEnvironmentsCreateFormdataRequestBody, reqEditors ...RequestEditorFn) (*DevelopmentEnvironmentsCreateResponse, error)

func (*ClientWithResponses) DevelopmentEnvironmentsCreateWithResponse

func (c *ClientWithResponses) DevelopmentEnvironmentsCreateWithResponse(ctx context.Context, body DevelopmentEnvironmentsCreateJSONRequestBody, reqEditors ...RequestEditorFn) (*DevelopmentEnvironmentsCreateResponse, error)

func (*ClientWithResponses) DevelopmentEnvironmentsDeletePreviewListWithResponse added in v0.2.0

func (c *ClientWithResponses) DevelopmentEnvironmentsDeletePreviewListWithResponse(ctx context.Context, id int, params *DevelopmentEnvironmentsDeletePreviewListParams, reqEditors ...RequestEditorFn) (*DevelopmentEnvironmentsDeletePreviewListResponse, error)

DevelopmentEnvironmentsDeletePreviewListWithResponse request returning *DevelopmentEnvironmentsDeletePreviewListResponse

func (*ClientWithResponses) DevelopmentEnvironmentsDestroyWithResponse

func (c *ClientWithResponses) DevelopmentEnvironmentsDestroyWithResponse(ctx context.Context, id int, reqEditors ...RequestEditorFn) (*DevelopmentEnvironmentsDestroyResponse, error)

DevelopmentEnvironmentsDestroyWithResponse request returning *DevelopmentEnvironmentsDestroyResponse

func (*ClientWithResponses) DevelopmentEnvironmentsListWithResponse

func (c *ClientWithResponses) DevelopmentEnvironmentsListWithResponse(ctx context.Context, params *DevelopmentEnvironmentsListParams, reqEditors ...RequestEditorFn) (*DevelopmentEnvironmentsListResponse, error)

DevelopmentEnvironmentsListWithResponse request returning *DevelopmentEnvironmentsListResponse

func (*ClientWithResponses) DevelopmentEnvironmentsPartialUpdateWithBodyWithResponse

func (c *ClientWithResponses) DevelopmentEnvironmentsPartialUpdateWithBodyWithResponse(ctx context.Context, id int, contentType string, body io.Reader, reqEditors ...RequestEditorFn) (*DevelopmentEnvironmentsPartialUpdateResponse, error)

DevelopmentEnvironmentsPartialUpdateWithBodyWithResponse request with arbitrary body returning *DevelopmentEnvironmentsPartialUpdateResponse

func (*ClientWithResponses) DevelopmentEnvironmentsPartialUpdateWithFormdataBodyWithResponse added in v0.2.0

func (c *ClientWithResponses) DevelopmentEnvironmentsPartialUpdateWithFormdataBodyWithResponse(ctx context.Context, id int, body DevelopmentEnvironmentsPartialUpdateFormdataRequestBody, reqEditors ...RequestEditorFn) (*DevelopmentEnvironmentsPartialUpdateResponse, error)

func (*ClientWithResponses) DevelopmentEnvironmentsRetrieveWithResponse

func (c *ClientWithResponses) DevelopmentEnvironmentsRetrieveWithResponse(ctx context.Context, id int, reqEditors ...RequestEditorFn) (*DevelopmentEnvironmentsRetrieveResponse, error)

DevelopmentEnvironmentsRetrieveWithResponse request returning *DevelopmentEnvironmentsRetrieveResponse

func (*ClientWithResponses) DevelopmentEnvironmentsUpdateWithBodyWithResponse

func (c *ClientWithResponses) DevelopmentEnvironmentsUpdateWithBodyWithResponse(ctx context.Context, id int, contentType string, body io.Reader, reqEditors ...RequestEditorFn) (*DevelopmentEnvironmentsUpdateResponse, error)

DevelopmentEnvironmentsUpdateWithBodyWithResponse request with arbitrary body returning *DevelopmentEnvironmentsUpdateResponse

func (*ClientWithResponses) DevelopmentEnvironmentsUpdateWithFormdataBodyWithResponse added in v0.2.0

func (c *ClientWithResponses) DevelopmentEnvironmentsUpdateWithFormdataBodyWithResponse(ctx context.Context, id int, body DevelopmentEnvironmentsUpdateFormdataRequestBody, reqEditors ...RequestEditorFn) (*DevelopmentEnvironmentsUpdateResponse, error)

func (*ClientWithResponses) DevelopmentEnvironmentsUpdateWithResponse

func (c *ClientWithResponses) DevelopmentEnvironmentsUpdateWithResponse(ctx context.Context, id int, body DevelopmentEnvironmentsUpdateJSONRequestBody, reqEditors ...RequestEditorFn) (*DevelopmentEnvironmentsUpdateResponse, error)

func (*ClientWithResponses) DojoGroupMembersCreateWithBodyWithResponse

func (c *ClientWithResponses) DojoGroupMembersCreateWithBodyWithResponse(ctx context.Context, contentType string, body io.Reader, reqEditors ...RequestEditorFn) (*DojoGroupMembersCreateResponse, error)

DojoGroupMembersCreateWithBodyWithResponse request with arbitrary body returning *DojoGroupMembersCreateResponse

func (*ClientWithResponses) DojoGroupMembersCreateWithFormdataBodyWithResponse added in v0.2.0

func (c *ClientWithResponses) DojoGroupMembersCreateWithFormdataBodyWithResponse(ctx context.Context, body DojoGroupMembersCreateFormdataRequestBody, reqEditors ...RequestEditorFn) (*DojoGroupMembersCreateResponse, error)

func (*ClientWithResponses) DojoGroupMembersCreateWithResponse

func (c *ClientWithResponses) DojoGroupMembersCreateWithResponse(ctx context.Context, body DojoGroupMembersCreateJSONRequestBody, reqEditors ...RequestEditorFn) (*DojoGroupMembersCreateResponse, error)

func (*ClientWithResponses) DojoGroupMembersDeletePreviewListWithResponse added in v0.2.0

func (c *ClientWithResponses) DojoGroupMembersDeletePreviewListWithResponse(ctx context.Context, id int, params *DojoGroupMembersDeletePreviewListParams, reqEditors ...RequestEditorFn) (*DojoGroupMembersDeletePreviewListResponse, error)

DojoGroupMembersDeletePreviewListWithResponse request returning *DojoGroupMembersDeletePreviewListResponse

func (*ClientWithResponses) DojoGroupMembersDestroyWithResponse

func (c *ClientWithResponses) DojoGroupMembersDestroyWithResponse(ctx context.Context, id int, reqEditors ...RequestEditorFn) (*DojoGroupMembersDestroyResponse, error)

DojoGroupMembersDestroyWithResponse request returning *DojoGroupMembersDestroyResponse

func (*ClientWithResponses) DojoGroupMembersListWithResponse

func (c *ClientWithResponses) DojoGroupMembersListWithResponse(ctx context.Context, params *DojoGroupMembersListParams, reqEditors ...RequestEditorFn) (*DojoGroupMembersListResponse, error)

DojoGroupMembersListWithResponse request returning *DojoGroupMembersListResponse

func (*ClientWithResponses) DojoGroupMembersPartialUpdateWithBodyWithResponse

func (c *ClientWithResponses) DojoGroupMembersPartialUpdateWithBodyWithResponse(ctx context.Context, id int, contentType string, body io.Reader, reqEditors ...RequestEditorFn) (*DojoGroupMembersPartialUpdateResponse, error)

DojoGroupMembersPartialUpdateWithBodyWithResponse request with arbitrary body returning *DojoGroupMembersPartialUpdateResponse

func (*ClientWithResponses) DojoGroupMembersPartialUpdateWithFormdataBodyWithResponse added in v0.2.0

func (c *ClientWithResponses) DojoGroupMembersPartialUpdateWithFormdataBodyWithResponse(ctx context.Context, id int, body DojoGroupMembersPartialUpdateFormdataRequestBody, reqEditors ...RequestEditorFn) (*DojoGroupMembersPartialUpdateResponse, error)

func (*ClientWithResponses) DojoGroupMembersPartialUpdateWithResponse

func (c *ClientWithResponses) DojoGroupMembersPartialUpdateWithResponse(ctx context.Context, id int, body DojoGroupMembersPartialUpdateJSONRequestBody, reqEditors ...RequestEditorFn) (*DojoGroupMembersPartialUpdateResponse, error)

func (*ClientWithResponses) DojoGroupMembersRetrieveWithResponse

func (c *ClientWithResponses) DojoGroupMembersRetrieveWithResponse(ctx context.Context, id int, params *DojoGroupMembersRetrieveParams, reqEditors ...RequestEditorFn) (*DojoGroupMembersRetrieveResponse, error)

DojoGroupMembersRetrieveWithResponse request returning *DojoGroupMembersRetrieveResponse

func (*ClientWithResponses) DojoGroupMembersUpdateWithBodyWithResponse

func (c *ClientWithResponses) DojoGroupMembersUpdateWithBodyWithResponse(ctx context.Context, id int, contentType string, body io.Reader, reqEditors ...RequestEditorFn) (*DojoGroupMembersUpdateResponse, error)

DojoGroupMembersUpdateWithBodyWithResponse request with arbitrary body returning *DojoGroupMembersUpdateResponse

func (*ClientWithResponses) DojoGroupMembersUpdateWithFormdataBodyWithResponse added in v0.2.0

func (c *ClientWithResponses) DojoGroupMembersUpdateWithFormdataBodyWithResponse(ctx context.Context, id int, body DojoGroupMembersUpdateFormdataRequestBody, reqEditors ...RequestEditorFn) (*DojoGroupMembersUpdateResponse, error)

func (*ClientWithResponses) DojoGroupMembersUpdateWithResponse

func (c *ClientWithResponses) DojoGroupMembersUpdateWithResponse(ctx context.Context, id int, body DojoGroupMembersUpdateJSONRequestBody, reqEditors ...RequestEditorFn) (*DojoGroupMembersUpdateResponse, error)

func (*ClientWithResponses) DojoGroupsCreateWithBodyWithResponse

func (c *ClientWithResponses) DojoGroupsCreateWithBodyWithResponse(ctx context.Context, contentType string, body io.Reader, reqEditors ...RequestEditorFn) (*DojoGroupsCreateResponse, error)

DojoGroupsCreateWithBodyWithResponse request with arbitrary body returning *DojoGroupsCreateResponse

func (*ClientWithResponses) DojoGroupsCreateWithFormdataBodyWithResponse added in v0.2.0

func (c *ClientWithResponses) DojoGroupsCreateWithFormdataBodyWithResponse(ctx context.Context, body DojoGroupsCreateFormdataRequestBody, reqEditors ...RequestEditorFn) (*DojoGroupsCreateResponse, error)

func (*ClientWithResponses) DojoGroupsCreateWithResponse

func (c *ClientWithResponses) DojoGroupsCreateWithResponse(ctx context.Context, body DojoGroupsCreateJSONRequestBody, reqEditors ...RequestEditorFn) (*DojoGroupsCreateResponse, error)

func (*ClientWithResponses) DojoGroupsDeletePreviewListWithResponse added in v0.2.0

func (c *ClientWithResponses) DojoGroupsDeletePreviewListWithResponse(ctx context.Context, id int, params *DojoGroupsDeletePreviewListParams, reqEditors ...RequestEditorFn) (*DojoGroupsDeletePreviewListResponse, error)

DojoGroupsDeletePreviewListWithResponse request returning *DojoGroupsDeletePreviewListResponse

func (*ClientWithResponses) DojoGroupsDestroyWithResponse

func (c *ClientWithResponses) DojoGroupsDestroyWithResponse(ctx context.Context, id int, reqEditors ...RequestEditorFn) (*DojoGroupsDestroyResponse, error)

DojoGroupsDestroyWithResponse request returning *DojoGroupsDestroyResponse

func (*ClientWithResponses) DojoGroupsListWithResponse

func (c *ClientWithResponses) DojoGroupsListWithResponse(ctx context.Context, params *DojoGroupsListParams, reqEditors ...RequestEditorFn) (*DojoGroupsListResponse, error)

DojoGroupsListWithResponse request returning *DojoGroupsListResponse

func (*ClientWithResponses) DojoGroupsPartialUpdateWithBodyWithResponse

func (c *ClientWithResponses) DojoGroupsPartialUpdateWithBodyWithResponse(ctx context.Context, id int, contentType string, body io.Reader, reqEditors ...RequestEditorFn) (*DojoGroupsPartialUpdateResponse, error)

DojoGroupsPartialUpdateWithBodyWithResponse request with arbitrary body returning *DojoGroupsPartialUpdateResponse

func (*ClientWithResponses) DojoGroupsPartialUpdateWithFormdataBodyWithResponse added in v0.2.0

func (c *ClientWithResponses) DojoGroupsPartialUpdateWithFormdataBodyWithResponse(ctx context.Context, id int, body DojoGroupsPartialUpdateFormdataRequestBody, reqEditors ...RequestEditorFn) (*DojoGroupsPartialUpdateResponse, error)

func (*ClientWithResponses) DojoGroupsPartialUpdateWithResponse

func (c *ClientWithResponses) DojoGroupsPartialUpdateWithResponse(ctx context.Context, id int, body DojoGroupsPartialUpdateJSONRequestBody, reqEditors ...RequestEditorFn) (*DojoGroupsPartialUpdateResponse, error)

func (*ClientWithResponses) DojoGroupsRetrieveWithResponse

func (c *ClientWithResponses) DojoGroupsRetrieveWithResponse(ctx context.Context, id int, params *DojoGroupsRetrieveParams, reqEditors ...RequestEditorFn) (*DojoGroupsRetrieveResponse, error)

DojoGroupsRetrieveWithResponse request returning *DojoGroupsRetrieveResponse

func (*ClientWithResponses) DojoGroupsUpdateWithBodyWithResponse

func (c *ClientWithResponses) DojoGroupsUpdateWithBodyWithResponse(ctx context.Context, id int, contentType string, body io.Reader, reqEditors ...RequestEditorFn) (*DojoGroupsUpdateResponse, error)

DojoGroupsUpdateWithBodyWithResponse request with arbitrary body returning *DojoGroupsUpdateResponse

func (*ClientWithResponses) DojoGroupsUpdateWithFormdataBodyWithResponse added in v0.2.0

func (c *ClientWithResponses) DojoGroupsUpdateWithFormdataBodyWithResponse(ctx context.Context, id int, body DojoGroupsUpdateFormdataRequestBody, reqEditors ...RequestEditorFn) (*DojoGroupsUpdateResponse, error)

func (*ClientWithResponses) DojoGroupsUpdateWithResponse

func (c *ClientWithResponses) DojoGroupsUpdateWithResponse(ctx context.Context, id int, body DojoGroupsUpdateJSONRequestBody, reqEditors ...RequestEditorFn) (*DojoGroupsUpdateResponse, error)

func (*ClientWithResponses) EndpointMetaImportCreateWithBodyWithResponse

func (c *ClientWithResponses) EndpointMetaImportCreateWithBodyWithResponse(ctx context.Context, contentType string, body io.Reader, reqEditors ...RequestEditorFn) (*EndpointMetaImportCreateResponse, error)

EndpointMetaImportCreateWithBodyWithResponse request with arbitrary body returning *EndpointMetaImportCreateResponse

func (*ClientWithResponses) EndpointStatusCreateWithBodyWithResponse

func (c *ClientWithResponses) EndpointStatusCreateWithBodyWithResponse(ctx context.Context, contentType string, body io.Reader, reqEditors ...RequestEditorFn) (*EndpointStatusCreateResponse, error)

EndpointStatusCreateWithBodyWithResponse request with arbitrary body returning *EndpointStatusCreateResponse

func (*ClientWithResponses) EndpointStatusCreateWithFormdataBodyWithResponse added in v0.2.0

func (c *ClientWithResponses) EndpointStatusCreateWithFormdataBodyWithResponse(ctx context.Context, body EndpointStatusCreateFormdataRequestBody, reqEditors ...RequestEditorFn) (*EndpointStatusCreateResponse, error)

func (*ClientWithResponses) EndpointStatusCreateWithResponse

func (c *ClientWithResponses) EndpointStatusCreateWithResponse(ctx context.Context, body EndpointStatusCreateJSONRequestBody, reqEditors ...RequestEditorFn) (*EndpointStatusCreateResponse, error)

func (*ClientWithResponses) EndpointStatusDeletePreviewListWithResponse added in v0.2.0

func (c *ClientWithResponses) EndpointStatusDeletePreviewListWithResponse(ctx context.Context, id int, params *EndpointStatusDeletePreviewListParams, reqEditors ...RequestEditorFn) (*EndpointStatusDeletePreviewListResponse, error)

EndpointStatusDeletePreviewListWithResponse request returning *EndpointStatusDeletePreviewListResponse

func (*ClientWithResponses) EndpointStatusDestroyWithResponse

func (c *ClientWithResponses) EndpointStatusDestroyWithResponse(ctx context.Context, id int, reqEditors ...RequestEditorFn) (*EndpointStatusDestroyResponse, error)

EndpointStatusDestroyWithResponse request returning *EndpointStatusDestroyResponse

func (*ClientWithResponses) EndpointStatusListWithResponse

func (c *ClientWithResponses) EndpointStatusListWithResponse(ctx context.Context, params *EndpointStatusListParams, reqEditors ...RequestEditorFn) (*EndpointStatusListResponse, error)

EndpointStatusListWithResponse request returning *EndpointStatusListResponse

func (*ClientWithResponses) EndpointStatusPartialUpdateWithBodyWithResponse

func (c *ClientWithResponses) EndpointStatusPartialUpdateWithBodyWithResponse(ctx context.Context, id int, contentType string, body io.Reader, reqEditors ...RequestEditorFn) (*EndpointStatusPartialUpdateResponse, error)

EndpointStatusPartialUpdateWithBodyWithResponse request with arbitrary body returning *EndpointStatusPartialUpdateResponse

func (*ClientWithResponses) EndpointStatusPartialUpdateWithFormdataBodyWithResponse added in v0.2.0

func (c *ClientWithResponses) EndpointStatusPartialUpdateWithFormdataBodyWithResponse(ctx context.Context, id int, body EndpointStatusPartialUpdateFormdataRequestBody, reqEditors ...RequestEditorFn) (*EndpointStatusPartialUpdateResponse, error)

func (*ClientWithResponses) EndpointStatusPartialUpdateWithResponse

func (c *ClientWithResponses) EndpointStatusPartialUpdateWithResponse(ctx context.Context, id int, body EndpointStatusPartialUpdateJSONRequestBody, reqEditors ...RequestEditorFn) (*EndpointStatusPartialUpdateResponse, error)

func (*ClientWithResponses) EndpointStatusRetrieveWithResponse

func (c *ClientWithResponses) EndpointStatusRetrieveWithResponse(ctx context.Context, id int, reqEditors ...RequestEditorFn) (*EndpointStatusRetrieveResponse, error)

EndpointStatusRetrieveWithResponse request returning *EndpointStatusRetrieveResponse

func (*ClientWithResponses) EndpointStatusUpdateWithBodyWithResponse

func (c *ClientWithResponses) EndpointStatusUpdateWithBodyWithResponse(ctx context.Context, id int, contentType string, body io.Reader, reqEditors ...RequestEditorFn) (*EndpointStatusUpdateResponse, error)

EndpointStatusUpdateWithBodyWithResponse request with arbitrary body returning *EndpointStatusUpdateResponse

func (*ClientWithResponses) EndpointStatusUpdateWithFormdataBodyWithResponse added in v0.2.0

func (c *ClientWithResponses) EndpointStatusUpdateWithFormdataBodyWithResponse(ctx context.Context, id int, body EndpointStatusUpdateFormdataRequestBody, reqEditors ...RequestEditorFn) (*EndpointStatusUpdateResponse, error)

func (*ClientWithResponses) EndpointStatusUpdateWithResponse

func (c *ClientWithResponses) EndpointStatusUpdateWithResponse(ctx context.Context, id int, body EndpointStatusUpdateJSONRequestBody, reqEditors ...RequestEditorFn) (*EndpointStatusUpdateResponse, error)

func (*ClientWithResponses) EndpointsCreateWithBodyWithResponse

func (c *ClientWithResponses) EndpointsCreateWithBodyWithResponse(ctx context.Context, contentType string, body io.Reader, reqEditors ...RequestEditorFn) (*EndpointsCreateResponse, error)

EndpointsCreateWithBodyWithResponse request with arbitrary body returning *EndpointsCreateResponse

func (*ClientWithResponses) EndpointsCreateWithFormdataBodyWithResponse added in v0.2.0

func (c *ClientWithResponses) EndpointsCreateWithFormdataBodyWithResponse(ctx context.Context, body EndpointsCreateFormdataRequestBody, reqEditors ...RequestEditorFn) (*EndpointsCreateResponse, error)

func (*ClientWithResponses) EndpointsCreateWithResponse

func (c *ClientWithResponses) EndpointsCreateWithResponse(ctx context.Context, body EndpointsCreateJSONRequestBody, reqEditors ...RequestEditorFn) (*EndpointsCreateResponse, error)

func (*ClientWithResponses) EndpointsDeletePreviewListWithResponse added in v0.2.0

func (c *ClientWithResponses) EndpointsDeletePreviewListWithResponse(ctx context.Context, id int, params *EndpointsDeletePreviewListParams, reqEditors ...RequestEditorFn) (*EndpointsDeletePreviewListResponse, error)

EndpointsDeletePreviewListWithResponse request returning *EndpointsDeletePreviewListResponse

func (*ClientWithResponses) EndpointsDestroyWithResponse

func (c *ClientWithResponses) EndpointsDestroyWithResponse(ctx context.Context, id int, reqEditors ...RequestEditorFn) (*EndpointsDestroyResponse, error)

EndpointsDestroyWithResponse request returning *EndpointsDestroyResponse

func (*ClientWithResponses) EndpointsGenerateReportCreateWithBodyWithResponse

func (c *ClientWithResponses) EndpointsGenerateReportCreateWithBodyWithResponse(ctx context.Context, id int, contentType string, body io.Reader, reqEditors ...RequestEditorFn) (*EndpointsGenerateReportCreateResponse, error)

EndpointsGenerateReportCreateWithBodyWithResponse request with arbitrary body returning *EndpointsGenerateReportCreateResponse

func (*ClientWithResponses) EndpointsGenerateReportCreateWithFormdataBodyWithResponse added in v0.2.0

func (c *ClientWithResponses) EndpointsGenerateReportCreateWithFormdataBodyWithResponse(ctx context.Context, id int, body EndpointsGenerateReportCreateFormdataRequestBody, reqEditors ...RequestEditorFn) (*EndpointsGenerateReportCreateResponse, error)

func (*ClientWithResponses) EndpointsGenerateReportCreateWithResponse

func (c *ClientWithResponses) EndpointsGenerateReportCreateWithResponse(ctx context.Context, id int, body EndpointsGenerateReportCreateJSONRequestBody, reqEditors ...RequestEditorFn) (*EndpointsGenerateReportCreateResponse, error)

func (*ClientWithResponses) EndpointsListWithResponse

func (c *ClientWithResponses) EndpointsListWithResponse(ctx context.Context, params *EndpointsListParams, reqEditors ...RequestEditorFn) (*EndpointsListResponse, error)

EndpointsListWithResponse request returning *EndpointsListResponse

func (*ClientWithResponses) EndpointsPartialUpdateWithBodyWithResponse

func (c *ClientWithResponses) EndpointsPartialUpdateWithBodyWithResponse(ctx context.Context, id int, contentType string, body io.Reader, reqEditors ...RequestEditorFn) (*EndpointsPartialUpdateResponse, error)

EndpointsPartialUpdateWithBodyWithResponse request with arbitrary body returning *EndpointsPartialUpdateResponse

func (*ClientWithResponses) EndpointsPartialUpdateWithFormdataBodyWithResponse added in v0.2.0

func (c *ClientWithResponses) EndpointsPartialUpdateWithFormdataBodyWithResponse(ctx context.Context, id int, body EndpointsPartialUpdateFormdataRequestBody, reqEditors ...RequestEditorFn) (*EndpointsPartialUpdateResponse, error)

func (*ClientWithResponses) EndpointsPartialUpdateWithResponse

func (c *ClientWithResponses) EndpointsPartialUpdateWithResponse(ctx context.Context, id int, body EndpointsPartialUpdateJSONRequestBody, reqEditors ...RequestEditorFn) (*EndpointsPartialUpdateResponse, error)

func (*ClientWithResponses) EndpointsRetrieveWithResponse

func (c *ClientWithResponses) EndpointsRetrieveWithResponse(ctx context.Context, id int, reqEditors ...RequestEditorFn) (*EndpointsRetrieveResponse, error)

EndpointsRetrieveWithResponse request returning *EndpointsRetrieveResponse

func (*ClientWithResponses) EndpointsUpdateWithBodyWithResponse

func (c *ClientWithResponses) EndpointsUpdateWithBodyWithResponse(ctx context.Context, id int, contentType string, body io.Reader, reqEditors ...RequestEditorFn) (*EndpointsUpdateResponse, error)

EndpointsUpdateWithBodyWithResponse request with arbitrary body returning *EndpointsUpdateResponse

func (*ClientWithResponses) EndpointsUpdateWithFormdataBodyWithResponse added in v0.2.0

func (c *ClientWithResponses) EndpointsUpdateWithFormdataBodyWithResponse(ctx context.Context, id int, body EndpointsUpdateFormdataRequestBody, reqEditors ...RequestEditorFn) (*EndpointsUpdateResponse, error)

func (*ClientWithResponses) EndpointsUpdateWithResponse

func (c *ClientWithResponses) EndpointsUpdateWithResponse(ctx context.Context, id int, body EndpointsUpdateJSONRequestBody, reqEditors ...RequestEditorFn) (*EndpointsUpdateResponse, error)

func (*ClientWithResponses) EngagementPresetsCreateWithBodyWithResponse

func (c *ClientWithResponses) EngagementPresetsCreateWithBodyWithResponse(ctx context.Context, contentType string, body io.Reader, reqEditors ...RequestEditorFn) (*EngagementPresetsCreateResponse, error)

EngagementPresetsCreateWithBodyWithResponse request with arbitrary body returning *EngagementPresetsCreateResponse

func (*ClientWithResponses) EngagementPresetsCreateWithFormdataBodyWithResponse added in v0.2.0

func (c *ClientWithResponses) EngagementPresetsCreateWithFormdataBodyWithResponse(ctx context.Context, body EngagementPresetsCreateFormdataRequestBody, reqEditors ...RequestEditorFn) (*EngagementPresetsCreateResponse, error)

func (*ClientWithResponses) EngagementPresetsCreateWithResponse

func (c *ClientWithResponses) EngagementPresetsCreateWithResponse(ctx context.Context, body EngagementPresetsCreateJSONRequestBody, reqEditors ...RequestEditorFn) (*EngagementPresetsCreateResponse, error)

func (*ClientWithResponses) EngagementPresetsDeletePreviewListWithResponse added in v0.2.0

func (c *ClientWithResponses) EngagementPresetsDeletePreviewListWithResponse(ctx context.Context, id int, params *EngagementPresetsDeletePreviewListParams, reqEditors ...RequestEditorFn) (*EngagementPresetsDeletePreviewListResponse, error)

EngagementPresetsDeletePreviewListWithResponse request returning *EngagementPresetsDeletePreviewListResponse

func (*ClientWithResponses) EngagementPresetsDestroyWithResponse

func (c *ClientWithResponses) EngagementPresetsDestroyWithResponse(ctx context.Context, id int, reqEditors ...RequestEditorFn) (*EngagementPresetsDestroyResponse, error)

EngagementPresetsDestroyWithResponse request returning *EngagementPresetsDestroyResponse

func (*ClientWithResponses) EngagementPresetsListWithResponse

func (c *ClientWithResponses) EngagementPresetsListWithResponse(ctx context.Context, params *EngagementPresetsListParams, reqEditors ...RequestEditorFn) (*EngagementPresetsListResponse, error)

EngagementPresetsListWithResponse request returning *EngagementPresetsListResponse

func (*ClientWithResponses) EngagementPresetsPartialUpdateWithBodyWithResponse

func (c *ClientWithResponses) EngagementPresetsPartialUpdateWithBodyWithResponse(ctx context.Context, id int, contentType string, body io.Reader, reqEditors ...RequestEditorFn) (*EngagementPresetsPartialUpdateResponse, error)

EngagementPresetsPartialUpdateWithBodyWithResponse request with arbitrary body returning *EngagementPresetsPartialUpdateResponse

func (*ClientWithResponses) EngagementPresetsPartialUpdateWithFormdataBodyWithResponse added in v0.2.0

func (c *ClientWithResponses) EngagementPresetsPartialUpdateWithFormdataBodyWithResponse(ctx context.Context, id int, body EngagementPresetsPartialUpdateFormdataRequestBody, reqEditors ...RequestEditorFn) (*EngagementPresetsPartialUpdateResponse, error)

func (*ClientWithResponses) EngagementPresetsPartialUpdateWithResponse

func (c *ClientWithResponses) EngagementPresetsPartialUpdateWithResponse(ctx context.Context, id int, body EngagementPresetsPartialUpdateJSONRequestBody, reqEditors ...RequestEditorFn) (*EngagementPresetsPartialUpdateResponse, error)

func (*ClientWithResponses) EngagementPresetsRetrieveWithResponse

func (c *ClientWithResponses) EngagementPresetsRetrieveWithResponse(ctx context.Context, id int, reqEditors ...RequestEditorFn) (*EngagementPresetsRetrieveResponse, error)

EngagementPresetsRetrieveWithResponse request returning *EngagementPresetsRetrieveResponse

func (*ClientWithResponses) EngagementPresetsUpdateWithBodyWithResponse

func (c *ClientWithResponses) EngagementPresetsUpdateWithBodyWithResponse(ctx context.Context, id int, contentType string, body io.Reader, reqEditors ...RequestEditorFn) (*EngagementPresetsUpdateResponse, error)

EngagementPresetsUpdateWithBodyWithResponse request with arbitrary body returning *EngagementPresetsUpdateResponse

func (*ClientWithResponses) EngagementPresetsUpdateWithFormdataBodyWithResponse added in v0.2.0

func (c *ClientWithResponses) EngagementPresetsUpdateWithFormdataBodyWithResponse(ctx context.Context, id int, body EngagementPresetsUpdateFormdataRequestBody, reqEditors ...RequestEditorFn) (*EngagementPresetsUpdateResponse, error)

func (*ClientWithResponses) EngagementPresetsUpdateWithResponse

func (c *ClientWithResponses) EngagementPresetsUpdateWithResponse(ctx context.Context, id int, body EngagementPresetsUpdateJSONRequestBody, reqEditors ...RequestEditorFn) (*EngagementPresetsUpdateResponse, error)

func (*ClientWithResponses) EngagementsAcceptRisksCreateWithBodyWithResponse

func (c *ClientWithResponses) EngagementsAcceptRisksCreateWithBodyWithResponse(ctx context.Context, id int, contentType string, body io.Reader, reqEditors ...RequestEditorFn) (*EngagementsAcceptRisksCreateResponse, error)

EngagementsAcceptRisksCreateWithBodyWithResponse request with arbitrary body returning *EngagementsAcceptRisksCreateResponse

func (*ClientWithResponses) EngagementsAcceptRisksCreateWithFormdataBodyWithResponse added in v0.2.0

func (c *ClientWithResponses) EngagementsAcceptRisksCreateWithFormdataBodyWithResponse(ctx context.Context, id int, body EngagementsAcceptRisksCreateFormdataRequestBody, reqEditors ...RequestEditorFn) (*EngagementsAcceptRisksCreateResponse, error)

func (*ClientWithResponses) EngagementsAcceptRisksCreateWithResponse

func (c *ClientWithResponses) EngagementsAcceptRisksCreateWithResponse(ctx context.Context, id int, body EngagementsAcceptRisksCreateJSONRequestBody, reqEditors ...RequestEditorFn) (*EngagementsAcceptRisksCreateResponse, error)

func (*ClientWithResponses) EngagementsCloseCreateWithResponse

func (c *ClientWithResponses) EngagementsCloseCreateWithResponse(ctx context.Context, id int, reqEditors ...RequestEditorFn) (*EngagementsCloseCreateResponse, error)

EngagementsCloseCreateWithResponse request returning *EngagementsCloseCreateResponse

func (*ClientWithResponses) EngagementsCompleteChecklistCreateWithBodyWithResponse added in v0.2.0

func (c *ClientWithResponses) EngagementsCompleteChecklistCreateWithBodyWithResponse(ctx context.Context, id int, contentType string, body io.Reader, reqEditors ...RequestEditorFn) (*EngagementsCompleteChecklistCreateResponse, error)

EngagementsCompleteChecklistCreateWithBodyWithResponse request with arbitrary body returning *EngagementsCompleteChecklistCreateResponse

func (*ClientWithResponses) EngagementsCompleteChecklistCreateWithFormdataBodyWithResponse added in v0.2.0

func (c *ClientWithResponses) EngagementsCompleteChecklistCreateWithFormdataBodyWithResponse(ctx context.Context, id int, body EngagementsCompleteChecklistCreateFormdataRequestBody, reqEditors ...RequestEditorFn) (*EngagementsCompleteChecklistCreateResponse, error)

func (*ClientWithResponses) EngagementsCompleteChecklistCreateWithResponse added in v0.2.0

func (c *ClientWithResponses) EngagementsCompleteChecklistCreateWithResponse(ctx context.Context, id int, body EngagementsCompleteChecklistCreateJSONRequestBody, reqEditors ...RequestEditorFn) (*EngagementsCompleteChecklistCreateResponse, error)

func (*ClientWithResponses) EngagementsCompleteChecklistRetrieveWithResponse added in v0.2.0

func (c *ClientWithResponses) EngagementsCompleteChecklistRetrieveWithResponse(ctx context.Context, id int, reqEditors ...RequestEditorFn) (*EngagementsCompleteChecklistRetrieveResponse, error)

EngagementsCompleteChecklistRetrieveWithResponse request returning *EngagementsCompleteChecklistRetrieveResponse

func (*ClientWithResponses) EngagementsCreateWithBodyWithResponse

func (c *ClientWithResponses) EngagementsCreateWithBodyWithResponse(ctx context.Context, contentType string, body io.Reader, reqEditors ...RequestEditorFn) (*EngagementsCreateResponse, error)

EngagementsCreateWithBodyWithResponse request with arbitrary body returning *EngagementsCreateResponse

func (*ClientWithResponses) EngagementsCreateWithFormdataBodyWithResponse added in v0.2.0

func (c *ClientWithResponses) EngagementsCreateWithFormdataBodyWithResponse(ctx context.Context, body EngagementsCreateFormdataRequestBody, reqEditors ...RequestEditorFn) (*EngagementsCreateResponse, error)

func (*ClientWithResponses) EngagementsCreateWithResponse

func (c *ClientWithResponses) EngagementsCreateWithResponse(ctx context.Context, body EngagementsCreateJSONRequestBody, reqEditors ...RequestEditorFn) (*EngagementsCreateResponse, error)

func (*ClientWithResponses) EngagementsDeletePreviewListWithResponse added in v0.2.0

func (c *ClientWithResponses) EngagementsDeletePreviewListWithResponse(ctx context.Context, id int, params *EngagementsDeletePreviewListParams, reqEditors ...RequestEditorFn) (*EngagementsDeletePreviewListResponse, error)

EngagementsDeletePreviewListWithResponse request returning *EngagementsDeletePreviewListResponse

func (*ClientWithResponses) EngagementsDestroyWithResponse

func (c *ClientWithResponses) EngagementsDestroyWithResponse(ctx context.Context, id int, reqEditors ...RequestEditorFn) (*EngagementsDestroyResponse, error)

EngagementsDestroyWithResponse request returning *EngagementsDestroyResponse

func (*ClientWithResponses) EngagementsFilesCreateWithBodyWithResponse

func (c *ClientWithResponses) EngagementsFilesCreateWithBodyWithResponse(ctx context.Context, id int, contentType string, body io.Reader, reqEditors ...RequestEditorFn) (*EngagementsFilesCreateResponse, error)

EngagementsFilesCreateWithBodyWithResponse request with arbitrary body returning *EngagementsFilesCreateResponse

func (*ClientWithResponses) EngagementsFilesDownloadRetrieveWithResponse added in v0.2.0

func (c *ClientWithResponses) EngagementsFilesDownloadRetrieveWithResponse(ctx context.Context, id int, fileId string, reqEditors ...RequestEditorFn) (*EngagementsFilesDownloadRetrieveResponse, error)

EngagementsFilesDownloadRetrieveWithResponse request returning *EngagementsFilesDownloadRetrieveResponse

func (*ClientWithResponses) EngagementsFilesRetrieveWithResponse

func (c *ClientWithResponses) EngagementsFilesRetrieveWithResponse(ctx context.Context, id int, reqEditors ...RequestEditorFn) (*EngagementsFilesRetrieveResponse, error)

EngagementsFilesRetrieveWithResponse request returning *EngagementsFilesRetrieveResponse

func (*ClientWithResponses) EngagementsGenerateReportCreateWithBodyWithResponse

func (c *ClientWithResponses) EngagementsGenerateReportCreateWithBodyWithResponse(ctx context.Context, id int, contentType string, body io.Reader, reqEditors ...RequestEditorFn) (*EngagementsGenerateReportCreateResponse, error)

EngagementsGenerateReportCreateWithBodyWithResponse request with arbitrary body returning *EngagementsGenerateReportCreateResponse

func (*ClientWithResponses) EngagementsGenerateReportCreateWithFormdataBodyWithResponse added in v0.2.0

func (c *ClientWithResponses) EngagementsGenerateReportCreateWithFormdataBodyWithResponse(ctx context.Context, id int, body EngagementsGenerateReportCreateFormdataRequestBody, reqEditors ...RequestEditorFn) (*EngagementsGenerateReportCreateResponse, error)

func (*ClientWithResponses) EngagementsGenerateReportCreateWithResponse

func (c *ClientWithResponses) EngagementsGenerateReportCreateWithResponse(ctx context.Context, id int, body EngagementsGenerateReportCreateJSONRequestBody, reqEditors ...RequestEditorFn) (*EngagementsGenerateReportCreateResponse, error)

func (*ClientWithResponses) EngagementsListWithResponse

func (c *ClientWithResponses) EngagementsListWithResponse(ctx context.Context, params *EngagementsListParams, reqEditors ...RequestEditorFn) (*EngagementsListResponse, error)

EngagementsListWithResponse request returning *EngagementsListResponse

func (*ClientWithResponses) EngagementsNotesCreateWithBodyWithResponse

func (c *ClientWithResponses) EngagementsNotesCreateWithBodyWithResponse(ctx context.Context, id int, contentType string, body io.Reader, reqEditors ...RequestEditorFn) (*EngagementsNotesCreateResponse, error)

EngagementsNotesCreateWithBodyWithResponse request with arbitrary body returning *EngagementsNotesCreateResponse

func (*ClientWithResponses) EngagementsNotesCreateWithFormdataBodyWithResponse added in v0.2.0

func (c *ClientWithResponses) EngagementsNotesCreateWithFormdataBodyWithResponse(ctx context.Context, id int, body EngagementsNotesCreateFormdataRequestBody, reqEditors ...RequestEditorFn) (*EngagementsNotesCreateResponse, error)

func (*ClientWithResponses) EngagementsNotesCreateWithResponse

func (c *ClientWithResponses) EngagementsNotesCreateWithResponse(ctx context.Context, id int, body EngagementsNotesCreateJSONRequestBody, reqEditors ...RequestEditorFn) (*EngagementsNotesCreateResponse, error)

func (*ClientWithResponses) EngagementsNotesRetrieveWithResponse

func (c *ClientWithResponses) EngagementsNotesRetrieveWithResponse(ctx context.Context, id int, reqEditors ...RequestEditorFn) (*EngagementsNotesRetrieveResponse, error)

EngagementsNotesRetrieveWithResponse request returning *EngagementsNotesRetrieveResponse

func (*ClientWithResponses) EngagementsPartialUpdateWithBodyWithResponse

func (c *ClientWithResponses) EngagementsPartialUpdateWithBodyWithResponse(ctx context.Context, id int, contentType string, body io.Reader, reqEditors ...RequestEditorFn) (*EngagementsPartialUpdateResponse, error)

EngagementsPartialUpdateWithBodyWithResponse request with arbitrary body returning *EngagementsPartialUpdateResponse

func (*ClientWithResponses) EngagementsPartialUpdateWithFormdataBodyWithResponse added in v0.2.0

func (c *ClientWithResponses) EngagementsPartialUpdateWithFormdataBodyWithResponse(ctx context.Context, id int, body EngagementsPartialUpdateFormdataRequestBody, reqEditors ...RequestEditorFn) (*EngagementsPartialUpdateResponse, error)

func (*ClientWithResponses) EngagementsPartialUpdateWithResponse

func (c *ClientWithResponses) EngagementsPartialUpdateWithResponse(ctx context.Context, id int, body EngagementsPartialUpdateJSONRequestBody, reqEditors ...RequestEditorFn) (*EngagementsPartialUpdateResponse, error)

func (*ClientWithResponses) EngagementsReopenCreateWithResponse

func (c *ClientWithResponses) EngagementsReopenCreateWithResponse(ctx context.Context, id int, reqEditors ...RequestEditorFn) (*EngagementsReopenCreateResponse, error)

EngagementsReopenCreateWithResponse request returning *EngagementsReopenCreateResponse

func (*ClientWithResponses) EngagementsRetrieveWithResponse

func (c *ClientWithResponses) EngagementsRetrieveWithResponse(ctx context.Context, id int, reqEditors ...RequestEditorFn) (*EngagementsRetrieveResponse, error)

EngagementsRetrieveWithResponse request returning *EngagementsRetrieveResponse

func (*ClientWithResponses) EngagementsUpdateWithBodyWithResponse

func (c *ClientWithResponses) EngagementsUpdateWithBodyWithResponse(ctx context.Context, id int, contentType string, body io.Reader, reqEditors ...RequestEditorFn) (*EngagementsUpdateResponse, error)

EngagementsUpdateWithBodyWithResponse request with arbitrary body returning *EngagementsUpdateResponse

func (*ClientWithResponses) EngagementsUpdateWithFormdataBodyWithResponse added in v0.2.0

func (c *ClientWithResponses) EngagementsUpdateWithFormdataBodyWithResponse(ctx context.Context, id int, body EngagementsUpdateFormdataRequestBody, reqEditors ...RequestEditorFn) (*EngagementsUpdateResponse, error)

func (*ClientWithResponses) EngagementsUpdateWithResponse

func (c *ClientWithResponses) EngagementsUpdateWithResponse(ctx context.Context, id int, body EngagementsUpdateJSONRequestBody, reqEditors ...RequestEditorFn) (*EngagementsUpdateResponse, error)

func (*ClientWithResponses) FindingTemplatesCreateWithBodyWithResponse

func (c *ClientWithResponses) FindingTemplatesCreateWithBodyWithResponse(ctx context.Context, contentType string, body io.Reader, reqEditors ...RequestEditorFn) (*FindingTemplatesCreateResponse, error)

FindingTemplatesCreateWithBodyWithResponse request with arbitrary body returning *FindingTemplatesCreateResponse

func (*ClientWithResponses) FindingTemplatesCreateWithFormdataBodyWithResponse added in v0.2.0

func (c *ClientWithResponses) FindingTemplatesCreateWithFormdataBodyWithResponse(ctx context.Context, body FindingTemplatesCreateFormdataRequestBody, reqEditors ...RequestEditorFn) (*FindingTemplatesCreateResponse, error)

func (*ClientWithResponses) FindingTemplatesCreateWithResponse

func (c *ClientWithResponses) FindingTemplatesCreateWithResponse(ctx context.Context, body FindingTemplatesCreateJSONRequestBody, reqEditors ...RequestEditorFn) (*FindingTemplatesCreateResponse, error)

func (*ClientWithResponses) FindingTemplatesDeletePreviewListWithResponse added in v0.2.0

func (c *ClientWithResponses) FindingTemplatesDeletePreviewListWithResponse(ctx context.Context, id int, params *FindingTemplatesDeletePreviewListParams, reqEditors ...RequestEditorFn) (*FindingTemplatesDeletePreviewListResponse, error)

FindingTemplatesDeletePreviewListWithResponse request returning *FindingTemplatesDeletePreviewListResponse

func (*ClientWithResponses) FindingTemplatesDestroyWithResponse

func (c *ClientWithResponses) FindingTemplatesDestroyWithResponse(ctx context.Context, id int, reqEditors ...RequestEditorFn) (*FindingTemplatesDestroyResponse, error)

FindingTemplatesDestroyWithResponse request returning *FindingTemplatesDestroyResponse

func (*ClientWithResponses) FindingTemplatesListWithResponse

func (c *ClientWithResponses) FindingTemplatesListWithResponse(ctx context.Context, params *FindingTemplatesListParams, reqEditors ...RequestEditorFn) (*FindingTemplatesListResponse, error)

FindingTemplatesListWithResponse request returning *FindingTemplatesListResponse

func (*ClientWithResponses) FindingTemplatesPartialUpdateWithBodyWithResponse

func (c *ClientWithResponses) FindingTemplatesPartialUpdateWithBodyWithResponse(ctx context.Context, id int, contentType string, body io.Reader, reqEditors ...RequestEditorFn) (*FindingTemplatesPartialUpdateResponse, error)

FindingTemplatesPartialUpdateWithBodyWithResponse request with arbitrary body returning *FindingTemplatesPartialUpdateResponse

func (*ClientWithResponses) FindingTemplatesPartialUpdateWithFormdataBodyWithResponse added in v0.2.0

func (c *ClientWithResponses) FindingTemplatesPartialUpdateWithFormdataBodyWithResponse(ctx context.Context, id int, body FindingTemplatesPartialUpdateFormdataRequestBody, reqEditors ...RequestEditorFn) (*FindingTemplatesPartialUpdateResponse, error)

func (*ClientWithResponses) FindingTemplatesPartialUpdateWithResponse

func (c *ClientWithResponses) FindingTemplatesPartialUpdateWithResponse(ctx context.Context, id int, body FindingTemplatesPartialUpdateJSONRequestBody, reqEditors ...RequestEditorFn) (*FindingTemplatesPartialUpdateResponse, error)

func (*ClientWithResponses) FindingTemplatesRetrieveWithResponse

func (c *ClientWithResponses) FindingTemplatesRetrieveWithResponse(ctx context.Context, id int, reqEditors ...RequestEditorFn) (*FindingTemplatesRetrieveResponse, error)

FindingTemplatesRetrieveWithResponse request returning *FindingTemplatesRetrieveResponse

func (*ClientWithResponses) FindingTemplatesUpdateWithBodyWithResponse

func (c *ClientWithResponses) FindingTemplatesUpdateWithBodyWithResponse(ctx context.Context, id int, contentType string, body io.Reader, reqEditors ...RequestEditorFn) (*FindingTemplatesUpdateResponse, error)

FindingTemplatesUpdateWithBodyWithResponse request with arbitrary body returning *FindingTemplatesUpdateResponse

func (*ClientWithResponses) FindingTemplatesUpdateWithFormdataBodyWithResponse added in v0.2.0

func (c *ClientWithResponses) FindingTemplatesUpdateWithFormdataBodyWithResponse(ctx context.Context, id int, body FindingTemplatesUpdateFormdataRequestBody, reqEditors ...RequestEditorFn) (*FindingTemplatesUpdateResponse, error)

func (*ClientWithResponses) FindingTemplatesUpdateWithResponse

func (c *ClientWithResponses) FindingTemplatesUpdateWithResponse(ctx context.Context, id int, body FindingTemplatesUpdateJSONRequestBody, reqEditors ...RequestEditorFn) (*FindingTemplatesUpdateResponse, error)

func (*ClientWithResponses) FindingsAcceptRisksCreateWithBodyWithResponse

func (c *ClientWithResponses) FindingsAcceptRisksCreateWithBodyWithResponse(ctx context.Context, params *FindingsAcceptRisksCreateParams, contentType string, body io.Reader, reqEditors ...RequestEditorFn) (*FindingsAcceptRisksCreateResponse, error)

FindingsAcceptRisksCreateWithBodyWithResponse request with arbitrary body returning *FindingsAcceptRisksCreateResponse

func (*ClientWithResponses) FindingsAcceptRisksCreateWithFormdataBodyWithResponse added in v0.2.0

func (c *ClientWithResponses) FindingsAcceptRisksCreateWithFormdataBodyWithResponse(ctx context.Context, params *FindingsAcceptRisksCreateParams, body FindingsAcceptRisksCreateFormdataRequestBody, reqEditors ...RequestEditorFn) (*FindingsAcceptRisksCreateResponse, error)

func (*ClientWithResponses) FindingsCloseCreateWithBodyWithResponse added in v0.2.0

func (c *ClientWithResponses) FindingsCloseCreateWithBodyWithResponse(ctx context.Context, id int, contentType string, body io.Reader, reqEditors ...RequestEditorFn) (*FindingsCloseCreateResponse, error)

FindingsCloseCreateWithBodyWithResponse request with arbitrary body returning *FindingsCloseCreateResponse

func (*ClientWithResponses) FindingsCloseCreateWithFormdataBodyWithResponse added in v0.2.0

func (c *ClientWithResponses) FindingsCloseCreateWithFormdataBodyWithResponse(ctx context.Context, id int, body FindingsCloseCreateFormdataRequestBody, reqEditors ...RequestEditorFn) (*FindingsCloseCreateResponse, error)

func (*ClientWithResponses) FindingsCloseCreateWithResponse added in v0.2.0

func (c *ClientWithResponses) FindingsCloseCreateWithResponse(ctx context.Context, id int, body FindingsCloseCreateJSONRequestBody, reqEditors ...RequestEditorFn) (*FindingsCloseCreateResponse, error)

func (*ClientWithResponses) FindingsCreateWithBodyWithResponse

func (c *ClientWithResponses) FindingsCreateWithBodyWithResponse(ctx context.Context, contentType string, body io.Reader, reqEditors ...RequestEditorFn) (*FindingsCreateResponse, error)

FindingsCreateWithBodyWithResponse request with arbitrary body returning *FindingsCreateResponse

func (*ClientWithResponses) FindingsCreateWithFormdataBodyWithResponse added in v0.2.0

func (c *ClientWithResponses) FindingsCreateWithFormdataBodyWithResponse(ctx context.Context, body FindingsCreateFormdataRequestBody, reqEditors ...RequestEditorFn) (*FindingsCreateResponse, error)

func (*ClientWithResponses) FindingsCreateWithResponse

func (c *ClientWithResponses) FindingsCreateWithResponse(ctx context.Context, body FindingsCreateJSONRequestBody, reqEditors ...RequestEditorFn) (*FindingsCreateResponse, error)

func (*ClientWithResponses) FindingsDeletePreviewListWithResponse added in v0.2.0

func (c *ClientWithResponses) FindingsDeletePreviewListWithResponse(ctx context.Context, id int, params *FindingsDeletePreviewListParams, reqEditors ...RequestEditorFn) (*FindingsDeletePreviewListResponse, error)

FindingsDeletePreviewListWithResponse request returning *FindingsDeletePreviewListResponse

func (*ClientWithResponses) FindingsDestroyWithResponse

func (c *ClientWithResponses) FindingsDestroyWithResponse(ctx context.Context, id int, reqEditors ...RequestEditorFn) (*FindingsDestroyResponse, error)

FindingsDestroyWithResponse request returning *FindingsDestroyResponse

func (*ClientWithResponses) FindingsDuplicateListWithResponse

func (c *ClientWithResponses) FindingsDuplicateListWithResponse(ctx context.Context, id int, reqEditors ...RequestEditorFn) (*FindingsDuplicateListResponse, error)

FindingsDuplicateListWithResponse request returning *FindingsDuplicateListResponse

func (*ClientWithResponses) FindingsDuplicateResetCreateWithResponse

func (c *ClientWithResponses) FindingsDuplicateResetCreateWithResponse(ctx context.Context, id int, reqEditors ...RequestEditorFn) (*FindingsDuplicateResetCreateResponse, error)

FindingsDuplicateResetCreateWithResponse request returning *FindingsDuplicateResetCreateResponse

func (*ClientWithResponses) FindingsFilesCreateWithBodyWithResponse

func (c *ClientWithResponses) FindingsFilesCreateWithBodyWithResponse(ctx context.Context, id int, contentType string, body io.Reader, reqEditors ...RequestEditorFn) (*FindingsFilesCreateResponse, error)

FindingsFilesCreateWithBodyWithResponse request with arbitrary body returning *FindingsFilesCreateResponse

func (*ClientWithResponses) FindingsFilesDownloadRetrieveWithResponse added in v0.2.0

func (c *ClientWithResponses) FindingsFilesDownloadRetrieveWithResponse(ctx context.Context, id int, fileId string, reqEditors ...RequestEditorFn) (*FindingsFilesDownloadRetrieveResponse, error)

FindingsFilesDownloadRetrieveWithResponse request returning *FindingsFilesDownloadRetrieveResponse

func (*ClientWithResponses) FindingsFilesRetrieveWithResponse

func (c *ClientWithResponses) FindingsFilesRetrieveWithResponse(ctx context.Context, id int, reqEditors ...RequestEditorFn) (*FindingsFilesRetrieveResponse, error)

FindingsFilesRetrieveWithResponse request returning *FindingsFilesRetrieveResponse

func (*ClientWithResponses) FindingsGenerateReportCreateWithBodyWithResponse

func (c *ClientWithResponses) FindingsGenerateReportCreateWithBodyWithResponse(ctx context.Context, contentType string, body io.Reader, reqEditors ...RequestEditorFn) (*FindingsGenerateReportCreateResponse, error)

FindingsGenerateReportCreateWithBodyWithResponse request with arbitrary body returning *FindingsGenerateReportCreateResponse

func (*ClientWithResponses) FindingsGenerateReportCreateWithFormdataBodyWithResponse added in v0.2.0

func (c *ClientWithResponses) FindingsGenerateReportCreateWithFormdataBodyWithResponse(ctx context.Context, body FindingsGenerateReportCreateFormdataRequestBody, reqEditors ...RequestEditorFn) (*FindingsGenerateReportCreateResponse, error)

func (*ClientWithResponses) FindingsGenerateReportCreateWithResponse

func (c *ClientWithResponses) FindingsGenerateReportCreateWithResponse(ctx context.Context, body FindingsGenerateReportCreateJSONRequestBody, reqEditors ...RequestEditorFn) (*FindingsGenerateReportCreateResponse, error)

func (*ClientWithResponses) FindingsListWithResponse

func (c *ClientWithResponses) FindingsListWithResponse(ctx context.Context, params *FindingsListParams, reqEditors ...RequestEditorFn) (*FindingsListResponse, error)

FindingsListWithResponse request returning *FindingsListResponse

func (*ClientWithResponses) FindingsMetadataCreateWithBodyWithResponse

func (c *ClientWithResponses) FindingsMetadataCreateWithBodyWithResponse(ctx context.Context, id int, contentType string, body io.Reader, reqEditors ...RequestEditorFn) (*FindingsMetadataCreateResponse, error)

FindingsMetadataCreateWithBodyWithResponse request with arbitrary body returning *FindingsMetadataCreateResponse

func (*ClientWithResponses) FindingsMetadataCreateWithFormdataBodyWithResponse added in v0.2.0

func (c *ClientWithResponses) FindingsMetadataCreateWithFormdataBodyWithResponse(ctx context.Context, id int, body FindingsMetadataCreateFormdataRequestBody, reqEditors ...RequestEditorFn) (*FindingsMetadataCreateResponse, error)

func (*ClientWithResponses) FindingsMetadataCreateWithResponse

func (c *ClientWithResponses) FindingsMetadataCreateWithResponse(ctx context.Context, id int, body FindingsMetadataCreateJSONRequestBody, reqEditors ...RequestEditorFn) (*FindingsMetadataCreateResponse, error)

func (*ClientWithResponses) FindingsMetadataDestroyWithResponse

func (c *ClientWithResponses) FindingsMetadataDestroyWithResponse(ctx context.Context, id int, params *FindingsMetadataDestroyParams, reqEditors ...RequestEditorFn) (*FindingsMetadataDestroyResponse, error)

FindingsMetadataDestroyWithResponse request returning *FindingsMetadataDestroyResponse

func (*ClientWithResponses) FindingsMetadataListWithResponse

func (c *ClientWithResponses) FindingsMetadataListWithResponse(ctx context.Context, id int, reqEditors ...RequestEditorFn) (*FindingsMetadataListResponse, error)

FindingsMetadataListWithResponse request returning *FindingsMetadataListResponse

func (*ClientWithResponses) FindingsMetadataUpdateWithBodyWithResponse

func (c *ClientWithResponses) FindingsMetadataUpdateWithBodyWithResponse(ctx context.Context, id int, contentType string, body io.Reader, reqEditors ...RequestEditorFn) (*FindingsMetadataUpdateResponse, error)

FindingsMetadataUpdateWithBodyWithResponse request with arbitrary body returning *FindingsMetadataUpdateResponse

func (*ClientWithResponses) FindingsMetadataUpdateWithFormdataBodyWithResponse added in v0.2.0

func (c *ClientWithResponses) FindingsMetadataUpdateWithFormdataBodyWithResponse(ctx context.Context, id int, body FindingsMetadataUpdateFormdataRequestBody, reqEditors ...RequestEditorFn) (*FindingsMetadataUpdateResponse, error)

func (*ClientWithResponses) FindingsMetadataUpdateWithResponse

func (c *ClientWithResponses) FindingsMetadataUpdateWithResponse(ctx context.Context, id int, body FindingsMetadataUpdateJSONRequestBody, reqEditors ...RequestEditorFn) (*FindingsMetadataUpdateResponse, error)

func (*ClientWithResponses) FindingsNotesCreateWithBodyWithResponse

func (c *ClientWithResponses) FindingsNotesCreateWithBodyWithResponse(ctx context.Context, id int, contentType string, body io.Reader, reqEditors ...RequestEditorFn) (*FindingsNotesCreateResponse, error)

FindingsNotesCreateWithBodyWithResponse request with arbitrary body returning *FindingsNotesCreateResponse

func (*ClientWithResponses) FindingsNotesCreateWithFormdataBodyWithResponse added in v0.2.0

func (c *ClientWithResponses) FindingsNotesCreateWithFormdataBodyWithResponse(ctx context.Context, id int, body FindingsNotesCreateFormdataRequestBody, reqEditors ...RequestEditorFn) (*FindingsNotesCreateResponse, error)

func (*ClientWithResponses) FindingsNotesCreateWithResponse

func (c *ClientWithResponses) FindingsNotesCreateWithResponse(ctx context.Context, id int, body FindingsNotesCreateJSONRequestBody, reqEditors ...RequestEditorFn) (*FindingsNotesCreateResponse, error)

func (*ClientWithResponses) FindingsNotesRetrieveWithResponse

func (c *ClientWithResponses) FindingsNotesRetrieveWithResponse(ctx context.Context, id int, reqEditors ...RequestEditorFn) (*FindingsNotesRetrieveResponse, error)

FindingsNotesRetrieveWithResponse request returning *FindingsNotesRetrieveResponse

func (*ClientWithResponses) FindingsOriginalCreateWithResponse

func (c *ClientWithResponses) FindingsOriginalCreateWithResponse(ctx context.Context, id int, newFid int, reqEditors ...RequestEditorFn) (*FindingsOriginalCreateResponse, error)

FindingsOriginalCreateWithResponse request returning *FindingsOriginalCreateResponse

func (*ClientWithResponses) FindingsPartialUpdateWithBodyWithResponse

func (c *ClientWithResponses) FindingsPartialUpdateWithBodyWithResponse(ctx context.Context, id int, contentType string, body io.Reader, reqEditors ...RequestEditorFn) (*FindingsPartialUpdateResponse, error)

FindingsPartialUpdateWithBodyWithResponse request with arbitrary body returning *FindingsPartialUpdateResponse

func (*ClientWithResponses) FindingsPartialUpdateWithFormdataBodyWithResponse added in v0.2.0

func (c *ClientWithResponses) FindingsPartialUpdateWithFormdataBodyWithResponse(ctx context.Context, id int, body FindingsPartialUpdateFormdataRequestBody, reqEditors ...RequestEditorFn) (*FindingsPartialUpdateResponse, error)

func (*ClientWithResponses) FindingsPartialUpdateWithResponse

func (c *ClientWithResponses) FindingsPartialUpdateWithResponse(ctx context.Context, id int, body FindingsPartialUpdateJSONRequestBody, reqEditors ...RequestEditorFn) (*FindingsPartialUpdateResponse, error)

func (*ClientWithResponses) FindingsRemoveNotePartialUpdateWithBodyWithResponse

func (c *ClientWithResponses) FindingsRemoveNotePartialUpdateWithBodyWithResponse(ctx context.Context, id int, contentType string, body io.Reader, reqEditors ...RequestEditorFn) (*FindingsRemoveNotePartialUpdateResponse, error)

FindingsRemoveNotePartialUpdateWithBodyWithResponse request with arbitrary body returning *FindingsRemoveNotePartialUpdateResponse

func (*ClientWithResponses) FindingsRemoveNotePartialUpdateWithFormdataBodyWithResponse added in v0.2.0

func (c *ClientWithResponses) FindingsRemoveNotePartialUpdateWithFormdataBodyWithResponse(ctx context.Context, id int, body FindingsRemoveNotePartialUpdateFormdataRequestBody, reqEditors ...RequestEditorFn) (*FindingsRemoveNotePartialUpdateResponse, error)

func (*ClientWithResponses) FindingsRemoveNotePartialUpdateWithResponse

func (c *ClientWithResponses) FindingsRemoveNotePartialUpdateWithResponse(ctx context.Context, id int, body FindingsRemoveNotePartialUpdateJSONRequestBody, reqEditors ...RequestEditorFn) (*FindingsRemoveNotePartialUpdateResponse, error)

func (*ClientWithResponses) FindingsRemoveTagsPartialUpdateWithBodyWithResponse

func (c *ClientWithResponses) FindingsRemoveTagsPartialUpdateWithBodyWithResponse(ctx context.Context, id int, contentType string, body io.Reader, reqEditors ...RequestEditorFn) (*FindingsRemoveTagsPartialUpdateResponse, error)

FindingsRemoveTagsPartialUpdateWithBodyWithResponse request with arbitrary body returning *FindingsRemoveTagsPartialUpdateResponse

func (*ClientWithResponses) FindingsRemoveTagsPartialUpdateWithFormdataBodyWithResponse added in v0.2.0

func (c *ClientWithResponses) FindingsRemoveTagsPartialUpdateWithFormdataBodyWithResponse(ctx context.Context, id int, body FindingsRemoveTagsPartialUpdateFormdataRequestBody, reqEditors ...RequestEditorFn) (*FindingsRemoveTagsPartialUpdateResponse, error)

func (*ClientWithResponses) FindingsRemoveTagsPartialUpdateWithResponse

func (c *ClientWithResponses) FindingsRemoveTagsPartialUpdateWithResponse(ctx context.Context, id int, body FindingsRemoveTagsPartialUpdateJSONRequestBody, reqEditors ...RequestEditorFn) (*FindingsRemoveTagsPartialUpdateResponse, error)

func (*ClientWithResponses) FindingsRemoveTagsUpdateWithBodyWithResponse

func (c *ClientWithResponses) FindingsRemoveTagsUpdateWithBodyWithResponse(ctx context.Context, id int, contentType string, body io.Reader, reqEditors ...RequestEditorFn) (*FindingsRemoveTagsUpdateResponse, error)

FindingsRemoveTagsUpdateWithBodyWithResponse request with arbitrary body returning *FindingsRemoveTagsUpdateResponse

func (*ClientWithResponses) FindingsRemoveTagsUpdateWithFormdataBodyWithResponse added in v0.2.0

func (c *ClientWithResponses) FindingsRemoveTagsUpdateWithFormdataBodyWithResponse(ctx context.Context, id int, body FindingsRemoveTagsUpdateFormdataRequestBody, reqEditors ...RequestEditorFn) (*FindingsRemoveTagsUpdateResponse, error)

func (*ClientWithResponses) FindingsRemoveTagsUpdateWithResponse

func (c *ClientWithResponses) FindingsRemoveTagsUpdateWithResponse(ctx context.Context, id int, body FindingsRemoveTagsUpdateJSONRequestBody, reqEditors ...RequestEditorFn) (*FindingsRemoveTagsUpdateResponse, error)

func (*ClientWithResponses) FindingsRequestResponseCreateWithBodyWithResponse

func (c *ClientWithResponses) FindingsRequestResponseCreateWithBodyWithResponse(ctx context.Context, id int, contentType string, body io.Reader, reqEditors ...RequestEditorFn) (*FindingsRequestResponseCreateResponse, error)

FindingsRequestResponseCreateWithBodyWithResponse request with arbitrary body returning *FindingsRequestResponseCreateResponse

func (*ClientWithResponses) FindingsRequestResponseCreateWithFormdataBodyWithResponse added in v0.2.0

func (c *ClientWithResponses) FindingsRequestResponseCreateWithFormdataBodyWithResponse(ctx context.Context, id int, body FindingsRequestResponseCreateFormdataRequestBody, reqEditors ...RequestEditorFn) (*FindingsRequestResponseCreateResponse, error)

func (*ClientWithResponses) FindingsRequestResponseCreateWithResponse

func (c *ClientWithResponses) FindingsRequestResponseCreateWithResponse(ctx context.Context, id int, body FindingsRequestResponseCreateJSONRequestBody, reqEditors ...RequestEditorFn) (*FindingsRequestResponseCreateResponse, error)

func (*ClientWithResponses) FindingsRequestResponseRetrieveWithResponse

func (c *ClientWithResponses) FindingsRequestResponseRetrieveWithResponse(ctx context.Context, id int, reqEditors ...RequestEditorFn) (*FindingsRequestResponseRetrieveResponse, error)

FindingsRequestResponseRetrieveWithResponse request returning *FindingsRequestResponseRetrieveResponse

func (*ClientWithResponses) FindingsRetrieveWithResponse

func (c *ClientWithResponses) FindingsRetrieveWithResponse(ctx context.Context, id int, params *FindingsRetrieveParams, reqEditors ...RequestEditorFn) (*FindingsRetrieveResponse, error)

FindingsRetrieveWithResponse request returning *FindingsRetrieveResponse

func (*ClientWithResponses) FindingsTagsCreateWithBodyWithResponse

func (c *ClientWithResponses) FindingsTagsCreateWithBodyWithResponse(ctx context.Context, id int, contentType string, body io.Reader, reqEditors ...RequestEditorFn) (*FindingsTagsCreateResponse, error)

FindingsTagsCreateWithBodyWithResponse request with arbitrary body returning *FindingsTagsCreateResponse

func (*ClientWithResponses) FindingsTagsCreateWithFormdataBodyWithResponse added in v0.2.0

func (c *ClientWithResponses) FindingsTagsCreateWithFormdataBodyWithResponse(ctx context.Context, id int, body FindingsTagsCreateFormdataRequestBody, reqEditors ...RequestEditorFn) (*FindingsTagsCreateResponse, error)

func (*ClientWithResponses) FindingsTagsCreateWithResponse

func (c *ClientWithResponses) FindingsTagsCreateWithResponse(ctx context.Context, id int, body FindingsTagsCreateJSONRequestBody, reqEditors ...RequestEditorFn) (*FindingsTagsCreateResponse, error)

func (*ClientWithResponses) FindingsTagsRetrieveWithResponse

func (c *ClientWithResponses) FindingsTagsRetrieveWithResponse(ctx context.Context, id int, reqEditors ...RequestEditorFn) (*FindingsTagsRetrieveResponse, error)

FindingsTagsRetrieveWithResponse request returning *FindingsTagsRetrieveResponse

func (*ClientWithResponses) FindingsUpdateWithBodyWithResponse

func (c *ClientWithResponses) FindingsUpdateWithBodyWithResponse(ctx context.Context, id int, contentType string, body io.Reader, reqEditors ...RequestEditorFn) (*FindingsUpdateResponse, error)

FindingsUpdateWithBodyWithResponse request with arbitrary body returning *FindingsUpdateResponse

func (*ClientWithResponses) FindingsUpdateWithFormdataBodyWithResponse added in v0.2.0

func (c *ClientWithResponses) FindingsUpdateWithFormdataBodyWithResponse(ctx context.Context, id int, body FindingsUpdateFormdataRequestBody, reqEditors ...RequestEditorFn) (*FindingsUpdateResponse, error)

func (*ClientWithResponses) FindingsUpdateWithResponse

func (c *ClientWithResponses) FindingsUpdateWithResponse(ctx context.Context, id int, body FindingsUpdateJSONRequestBody, reqEditors ...RequestEditorFn) (*FindingsUpdateResponse, error)

func (*ClientWithResponses) GlobalRolesCreateWithBodyWithResponse

func (c *ClientWithResponses) GlobalRolesCreateWithBodyWithResponse(ctx context.Context, contentType string, body io.Reader, reqEditors ...RequestEditorFn) (*GlobalRolesCreateResponse, error)

GlobalRolesCreateWithBodyWithResponse request with arbitrary body returning *GlobalRolesCreateResponse

func (*ClientWithResponses) GlobalRolesCreateWithFormdataBodyWithResponse added in v0.2.0

func (c *ClientWithResponses) GlobalRolesCreateWithFormdataBodyWithResponse(ctx context.Context, body GlobalRolesCreateFormdataRequestBody, reqEditors ...RequestEditorFn) (*GlobalRolesCreateResponse, error)

func (*ClientWithResponses) GlobalRolesCreateWithResponse

func (c *ClientWithResponses) GlobalRolesCreateWithResponse(ctx context.Context, body GlobalRolesCreateJSONRequestBody, reqEditors ...RequestEditorFn) (*GlobalRolesCreateResponse, error)

func (*ClientWithResponses) GlobalRolesDeletePreviewListWithResponse added in v0.2.0

func (c *ClientWithResponses) GlobalRolesDeletePreviewListWithResponse(ctx context.Context, id int, params *GlobalRolesDeletePreviewListParams, reqEditors ...RequestEditorFn) (*GlobalRolesDeletePreviewListResponse, error)

GlobalRolesDeletePreviewListWithResponse request returning *GlobalRolesDeletePreviewListResponse

func (*ClientWithResponses) GlobalRolesDestroyWithResponse

func (c *ClientWithResponses) GlobalRolesDestroyWithResponse(ctx context.Context, id int, reqEditors ...RequestEditorFn) (*GlobalRolesDestroyResponse, error)

GlobalRolesDestroyWithResponse request returning *GlobalRolesDestroyResponse

func (*ClientWithResponses) GlobalRolesListWithResponse

func (c *ClientWithResponses) GlobalRolesListWithResponse(ctx context.Context, params *GlobalRolesListParams, reqEditors ...RequestEditorFn) (*GlobalRolesListResponse, error)

GlobalRolesListWithResponse request returning *GlobalRolesListResponse

func (*ClientWithResponses) GlobalRolesPartialUpdateWithBodyWithResponse

func (c *ClientWithResponses) GlobalRolesPartialUpdateWithBodyWithResponse(ctx context.Context, id int, contentType string, body io.Reader, reqEditors ...RequestEditorFn) (*GlobalRolesPartialUpdateResponse, error)

GlobalRolesPartialUpdateWithBodyWithResponse request with arbitrary body returning *GlobalRolesPartialUpdateResponse

func (*ClientWithResponses) GlobalRolesPartialUpdateWithFormdataBodyWithResponse added in v0.2.0

func (c *ClientWithResponses) GlobalRolesPartialUpdateWithFormdataBodyWithResponse(ctx context.Context, id int, body GlobalRolesPartialUpdateFormdataRequestBody, reqEditors ...RequestEditorFn) (*GlobalRolesPartialUpdateResponse, error)

func (*ClientWithResponses) GlobalRolesPartialUpdateWithResponse

func (c *ClientWithResponses) GlobalRolesPartialUpdateWithResponse(ctx context.Context, id int, body GlobalRolesPartialUpdateJSONRequestBody, reqEditors ...RequestEditorFn) (*GlobalRolesPartialUpdateResponse, error)

func (*ClientWithResponses) GlobalRolesRetrieveWithResponse

func (c *ClientWithResponses) GlobalRolesRetrieveWithResponse(ctx context.Context, id int, reqEditors ...RequestEditorFn) (*GlobalRolesRetrieveResponse, error)

GlobalRolesRetrieveWithResponse request returning *GlobalRolesRetrieveResponse

func (*ClientWithResponses) GlobalRolesUpdateWithBodyWithResponse

func (c *ClientWithResponses) GlobalRolesUpdateWithBodyWithResponse(ctx context.Context, id int, contentType string, body io.Reader, reqEditors ...RequestEditorFn) (*GlobalRolesUpdateResponse, error)

GlobalRolesUpdateWithBodyWithResponse request with arbitrary body returning *GlobalRolesUpdateResponse

func (*ClientWithResponses) GlobalRolesUpdateWithFormdataBodyWithResponse added in v0.2.0

func (c *ClientWithResponses) GlobalRolesUpdateWithFormdataBodyWithResponse(ctx context.Context, id int, body GlobalRolesUpdateFormdataRequestBody, reqEditors ...RequestEditorFn) (*GlobalRolesUpdateResponse, error)

func (*ClientWithResponses) GlobalRolesUpdateWithResponse

func (c *ClientWithResponses) GlobalRolesUpdateWithResponse(ctx context.Context, id int, body GlobalRolesUpdateJSONRequestBody, reqEditors ...RequestEditorFn) (*GlobalRolesUpdateResponse, error)

func (*ClientWithResponses) ImportLanguagesCreateWithBodyWithResponse

func (c *ClientWithResponses) ImportLanguagesCreateWithBodyWithResponse(ctx context.Context, contentType string, body io.Reader, reqEditors ...RequestEditorFn) (*ImportLanguagesCreateResponse, error)

ImportLanguagesCreateWithBodyWithResponse request with arbitrary body returning *ImportLanguagesCreateResponse

func (*ClientWithResponses) ImportScanCreateWithBodyWithResponse

func (c *ClientWithResponses) ImportScanCreateWithBodyWithResponse(ctx context.Context, contentType string, body io.Reader, reqEditors ...RequestEditorFn) (*ImportScanCreateResponse, error)

ImportScanCreateWithBodyWithResponse request with arbitrary body returning *ImportScanCreateResponse

func (*ClientWithResponses) JiraConfigurationsCreateWithBodyWithResponse

func (c *ClientWithResponses) JiraConfigurationsCreateWithBodyWithResponse(ctx context.Context, contentType string, body io.Reader, reqEditors ...RequestEditorFn) (*JiraConfigurationsCreateResponse, error)

JiraConfigurationsCreateWithBodyWithResponse request with arbitrary body returning *JiraConfigurationsCreateResponse

func (*ClientWithResponses) JiraConfigurationsCreateWithFormdataBodyWithResponse added in v0.2.0

func (c *ClientWithResponses) JiraConfigurationsCreateWithFormdataBodyWithResponse(ctx context.Context, body JiraConfigurationsCreateFormdataRequestBody, reqEditors ...RequestEditorFn) (*JiraConfigurationsCreateResponse, error)

func (*ClientWithResponses) JiraConfigurationsCreateWithResponse

func (c *ClientWithResponses) JiraConfigurationsCreateWithResponse(ctx context.Context, body JiraConfigurationsCreateJSONRequestBody, reqEditors ...RequestEditorFn) (*JiraConfigurationsCreateResponse, error)

func (*ClientWithResponses) JiraConfigurationsDeletePreviewListWithResponse added in v0.2.0

func (c *ClientWithResponses) JiraConfigurationsDeletePreviewListWithResponse(ctx context.Context, id int, params *JiraConfigurationsDeletePreviewListParams, reqEditors ...RequestEditorFn) (*JiraConfigurationsDeletePreviewListResponse, error)

JiraConfigurationsDeletePreviewListWithResponse request returning *JiraConfigurationsDeletePreviewListResponse

func (*ClientWithResponses) JiraConfigurationsDestroyWithResponse

func (c *ClientWithResponses) JiraConfigurationsDestroyWithResponse(ctx context.Context, id int, reqEditors ...RequestEditorFn) (*JiraConfigurationsDestroyResponse, error)

JiraConfigurationsDestroyWithResponse request returning *JiraConfigurationsDestroyResponse

func (*ClientWithResponses) JiraConfigurationsListWithResponse

func (c *ClientWithResponses) JiraConfigurationsListWithResponse(ctx context.Context, params *JiraConfigurationsListParams, reqEditors ...RequestEditorFn) (*JiraConfigurationsListResponse, error)

JiraConfigurationsListWithResponse request returning *JiraConfigurationsListResponse

func (*ClientWithResponses) JiraConfigurationsPartialUpdateWithBodyWithResponse

func (c *ClientWithResponses) JiraConfigurationsPartialUpdateWithBodyWithResponse(ctx context.Context, id int, contentType string, body io.Reader, reqEditors ...RequestEditorFn) (*JiraConfigurationsPartialUpdateResponse, error)

JiraConfigurationsPartialUpdateWithBodyWithResponse request with arbitrary body returning *JiraConfigurationsPartialUpdateResponse

func (*ClientWithResponses) JiraConfigurationsPartialUpdateWithFormdataBodyWithResponse added in v0.2.0

func (c *ClientWithResponses) JiraConfigurationsPartialUpdateWithFormdataBodyWithResponse(ctx context.Context, id int, body JiraConfigurationsPartialUpdateFormdataRequestBody, reqEditors ...RequestEditorFn) (*JiraConfigurationsPartialUpdateResponse, error)

func (*ClientWithResponses) JiraConfigurationsPartialUpdateWithResponse

func (c *ClientWithResponses) JiraConfigurationsPartialUpdateWithResponse(ctx context.Context, id int, body JiraConfigurationsPartialUpdateJSONRequestBody, reqEditors ...RequestEditorFn) (*JiraConfigurationsPartialUpdateResponse, error)

func (*ClientWithResponses) JiraConfigurationsRetrieveWithResponse

func (c *ClientWithResponses) JiraConfigurationsRetrieveWithResponse(ctx context.Context, id int, reqEditors ...RequestEditorFn) (*JiraConfigurationsRetrieveResponse, error)

JiraConfigurationsRetrieveWithResponse request returning *JiraConfigurationsRetrieveResponse

func (*ClientWithResponses) JiraConfigurationsUpdateWithBodyWithResponse

func (c *ClientWithResponses) JiraConfigurationsUpdateWithBodyWithResponse(ctx context.Context, id int, contentType string, body io.Reader, reqEditors ...RequestEditorFn) (*JiraConfigurationsUpdateResponse, error)

JiraConfigurationsUpdateWithBodyWithResponse request with arbitrary body returning *JiraConfigurationsUpdateResponse

func (*ClientWithResponses) JiraConfigurationsUpdateWithFormdataBodyWithResponse added in v0.2.0

func (c *ClientWithResponses) JiraConfigurationsUpdateWithFormdataBodyWithResponse(ctx context.Context, id int, body JiraConfigurationsUpdateFormdataRequestBody, reqEditors ...RequestEditorFn) (*JiraConfigurationsUpdateResponse, error)

func (*ClientWithResponses) JiraConfigurationsUpdateWithResponse

func (c *ClientWithResponses) JiraConfigurationsUpdateWithResponse(ctx context.Context, id int, body JiraConfigurationsUpdateJSONRequestBody, reqEditors ...RequestEditorFn) (*JiraConfigurationsUpdateResponse, error)

func (*ClientWithResponses) JiraFindingMappingsCreateWithBodyWithResponse

func (c *ClientWithResponses) JiraFindingMappingsCreateWithBodyWithResponse(ctx context.Context, contentType string, body io.Reader, reqEditors ...RequestEditorFn) (*JiraFindingMappingsCreateResponse, error)

JiraFindingMappingsCreateWithBodyWithResponse request with arbitrary body returning *JiraFindingMappingsCreateResponse

func (*ClientWithResponses) JiraFindingMappingsCreateWithFormdataBodyWithResponse added in v0.2.0

func (c *ClientWithResponses) JiraFindingMappingsCreateWithFormdataBodyWithResponse(ctx context.Context, body JiraFindingMappingsCreateFormdataRequestBody, reqEditors ...RequestEditorFn) (*JiraFindingMappingsCreateResponse, error)

func (*ClientWithResponses) JiraFindingMappingsCreateWithResponse

func (c *ClientWithResponses) JiraFindingMappingsCreateWithResponse(ctx context.Context, body JiraFindingMappingsCreateJSONRequestBody, reqEditors ...RequestEditorFn) (*JiraFindingMappingsCreateResponse, error)

func (*ClientWithResponses) JiraFindingMappingsDeletePreviewListWithResponse added in v0.2.0

func (c *ClientWithResponses) JiraFindingMappingsDeletePreviewListWithResponse(ctx context.Context, id int, params *JiraFindingMappingsDeletePreviewListParams, reqEditors ...RequestEditorFn) (*JiraFindingMappingsDeletePreviewListResponse, error)

JiraFindingMappingsDeletePreviewListWithResponse request returning *JiraFindingMappingsDeletePreviewListResponse

func (*ClientWithResponses) JiraFindingMappingsDestroyWithResponse

func (c *ClientWithResponses) JiraFindingMappingsDestroyWithResponse(ctx context.Context, id int, reqEditors ...RequestEditorFn) (*JiraFindingMappingsDestroyResponse, error)

JiraFindingMappingsDestroyWithResponse request returning *JiraFindingMappingsDestroyResponse

func (*ClientWithResponses) JiraFindingMappingsListWithResponse

func (c *ClientWithResponses) JiraFindingMappingsListWithResponse(ctx context.Context, params *JiraFindingMappingsListParams, reqEditors ...RequestEditorFn) (*JiraFindingMappingsListResponse, error)

JiraFindingMappingsListWithResponse request returning *JiraFindingMappingsListResponse

func (*ClientWithResponses) JiraFindingMappingsPartialUpdateWithBodyWithResponse

func (c *ClientWithResponses) JiraFindingMappingsPartialUpdateWithBodyWithResponse(ctx context.Context, id int, contentType string, body io.Reader, reqEditors ...RequestEditorFn) (*JiraFindingMappingsPartialUpdateResponse, error)

JiraFindingMappingsPartialUpdateWithBodyWithResponse request with arbitrary body returning *JiraFindingMappingsPartialUpdateResponse

func (*ClientWithResponses) JiraFindingMappingsPartialUpdateWithFormdataBodyWithResponse added in v0.2.0

func (c *ClientWithResponses) JiraFindingMappingsPartialUpdateWithFormdataBodyWithResponse(ctx context.Context, id int, body JiraFindingMappingsPartialUpdateFormdataRequestBody, reqEditors ...RequestEditorFn) (*JiraFindingMappingsPartialUpdateResponse, error)

func (*ClientWithResponses) JiraFindingMappingsPartialUpdateWithResponse

func (c *ClientWithResponses) JiraFindingMappingsPartialUpdateWithResponse(ctx context.Context, id int, body JiraFindingMappingsPartialUpdateJSONRequestBody, reqEditors ...RequestEditorFn) (*JiraFindingMappingsPartialUpdateResponse, error)

func (*ClientWithResponses) JiraFindingMappingsRetrieveWithResponse

func (c *ClientWithResponses) JiraFindingMappingsRetrieveWithResponse(ctx context.Context, id int, reqEditors ...RequestEditorFn) (*JiraFindingMappingsRetrieveResponse, error)

JiraFindingMappingsRetrieveWithResponse request returning *JiraFindingMappingsRetrieveResponse

func (*ClientWithResponses) JiraFindingMappingsUpdateWithBodyWithResponse

func (c *ClientWithResponses) JiraFindingMappingsUpdateWithBodyWithResponse(ctx context.Context, id int, contentType string, body io.Reader, reqEditors ...RequestEditorFn) (*JiraFindingMappingsUpdateResponse, error)

JiraFindingMappingsUpdateWithBodyWithResponse request with arbitrary body returning *JiraFindingMappingsUpdateResponse

func (*ClientWithResponses) JiraFindingMappingsUpdateWithFormdataBodyWithResponse added in v0.2.0

func (c *ClientWithResponses) JiraFindingMappingsUpdateWithFormdataBodyWithResponse(ctx context.Context, id int, body JiraFindingMappingsUpdateFormdataRequestBody, reqEditors ...RequestEditorFn) (*JiraFindingMappingsUpdateResponse, error)

func (*ClientWithResponses) JiraFindingMappingsUpdateWithResponse

func (c *ClientWithResponses) JiraFindingMappingsUpdateWithResponse(ctx context.Context, id int, body JiraFindingMappingsUpdateJSONRequestBody, reqEditors ...RequestEditorFn) (*JiraFindingMappingsUpdateResponse, error)

func (*ClientWithResponses) JiraInstancesCreateWithBodyWithResponse

func (c *ClientWithResponses) JiraInstancesCreateWithBodyWithResponse(ctx context.Context, contentType string, body io.Reader, reqEditors ...RequestEditorFn) (*JiraInstancesCreateResponse, error)

JiraInstancesCreateWithBodyWithResponse request with arbitrary body returning *JiraInstancesCreateResponse

func (*ClientWithResponses) JiraInstancesCreateWithFormdataBodyWithResponse added in v0.2.0

func (c *ClientWithResponses) JiraInstancesCreateWithFormdataBodyWithResponse(ctx context.Context, body JiraInstancesCreateFormdataRequestBody, reqEditors ...RequestEditorFn) (*JiraInstancesCreateResponse, error)

func (*ClientWithResponses) JiraInstancesCreateWithResponse

func (c *ClientWithResponses) JiraInstancesCreateWithResponse(ctx context.Context, body JiraInstancesCreateJSONRequestBody, reqEditors ...RequestEditorFn) (*JiraInstancesCreateResponse, error)

func (*ClientWithResponses) JiraInstancesDeletePreviewListWithResponse added in v0.2.0

func (c *ClientWithResponses) JiraInstancesDeletePreviewListWithResponse(ctx context.Context, id int, params *JiraInstancesDeletePreviewListParams, reqEditors ...RequestEditorFn) (*JiraInstancesDeletePreviewListResponse, error)

JiraInstancesDeletePreviewListWithResponse request returning *JiraInstancesDeletePreviewListResponse

func (*ClientWithResponses) JiraInstancesDestroyWithResponse

func (c *ClientWithResponses) JiraInstancesDestroyWithResponse(ctx context.Context, id int, reqEditors ...RequestEditorFn) (*JiraInstancesDestroyResponse, error)

JiraInstancesDestroyWithResponse request returning *JiraInstancesDestroyResponse

func (*ClientWithResponses) JiraInstancesListWithResponse

func (c *ClientWithResponses) JiraInstancesListWithResponse(ctx context.Context, params *JiraInstancesListParams, reqEditors ...RequestEditorFn) (*JiraInstancesListResponse, error)

JiraInstancesListWithResponse request returning *JiraInstancesListResponse

func (*ClientWithResponses) JiraInstancesPartialUpdateWithBodyWithResponse

func (c *ClientWithResponses) JiraInstancesPartialUpdateWithBodyWithResponse(ctx context.Context, id int, contentType string, body io.Reader, reqEditors ...RequestEditorFn) (*JiraInstancesPartialUpdateResponse, error)

JiraInstancesPartialUpdateWithBodyWithResponse request with arbitrary body returning *JiraInstancesPartialUpdateResponse

func (*ClientWithResponses) JiraInstancesPartialUpdateWithFormdataBodyWithResponse added in v0.2.0

func (c *ClientWithResponses) JiraInstancesPartialUpdateWithFormdataBodyWithResponse(ctx context.Context, id int, body JiraInstancesPartialUpdateFormdataRequestBody, reqEditors ...RequestEditorFn) (*JiraInstancesPartialUpdateResponse, error)

func (*ClientWithResponses) JiraInstancesPartialUpdateWithResponse

func (c *ClientWithResponses) JiraInstancesPartialUpdateWithResponse(ctx context.Context, id int, body JiraInstancesPartialUpdateJSONRequestBody, reqEditors ...RequestEditorFn) (*JiraInstancesPartialUpdateResponse, error)

func (*ClientWithResponses) JiraInstancesRetrieveWithResponse

func (c *ClientWithResponses) JiraInstancesRetrieveWithResponse(ctx context.Context, id int, reqEditors ...RequestEditorFn) (*JiraInstancesRetrieveResponse, error)

JiraInstancesRetrieveWithResponse request returning *JiraInstancesRetrieveResponse

func (*ClientWithResponses) JiraInstancesUpdateWithBodyWithResponse

func (c *ClientWithResponses) JiraInstancesUpdateWithBodyWithResponse(ctx context.Context, id int, contentType string, body io.Reader, reqEditors ...RequestEditorFn) (*JiraInstancesUpdateResponse, error)

JiraInstancesUpdateWithBodyWithResponse request with arbitrary body returning *JiraInstancesUpdateResponse

func (*ClientWithResponses) JiraInstancesUpdateWithFormdataBodyWithResponse added in v0.2.0

func (c *ClientWithResponses) JiraInstancesUpdateWithFormdataBodyWithResponse(ctx context.Context, id int, body JiraInstancesUpdateFormdataRequestBody, reqEditors ...RequestEditorFn) (*JiraInstancesUpdateResponse, error)

func (*ClientWithResponses) JiraInstancesUpdateWithResponse

func (c *ClientWithResponses) JiraInstancesUpdateWithResponse(ctx context.Context, id int, body JiraInstancesUpdateJSONRequestBody, reqEditors ...RequestEditorFn) (*JiraInstancesUpdateResponse, error)

func (*ClientWithResponses) JiraProductConfigurationsCreateWithBodyWithResponse

func (c *ClientWithResponses) JiraProductConfigurationsCreateWithBodyWithResponse(ctx context.Context, contentType string, body io.Reader, reqEditors ...RequestEditorFn) (*JiraProductConfigurationsCreateResponse, error)

JiraProductConfigurationsCreateWithBodyWithResponse request with arbitrary body returning *JiraProductConfigurationsCreateResponse

func (*ClientWithResponses) JiraProductConfigurationsCreateWithFormdataBodyWithResponse added in v0.2.0

func (c *ClientWithResponses) JiraProductConfigurationsCreateWithFormdataBodyWithResponse(ctx context.Context, body JiraProductConfigurationsCreateFormdataRequestBody, reqEditors ...RequestEditorFn) (*JiraProductConfigurationsCreateResponse, error)

func (*ClientWithResponses) JiraProductConfigurationsCreateWithResponse

func (c *ClientWithResponses) JiraProductConfigurationsCreateWithResponse(ctx context.Context, body JiraProductConfigurationsCreateJSONRequestBody, reqEditors ...RequestEditorFn) (*JiraProductConfigurationsCreateResponse, error)

func (*ClientWithResponses) JiraProductConfigurationsDeletePreviewListWithResponse added in v0.2.0

func (c *ClientWithResponses) JiraProductConfigurationsDeletePreviewListWithResponse(ctx context.Context, id int, params *JiraProductConfigurationsDeletePreviewListParams, reqEditors ...RequestEditorFn) (*JiraProductConfigurationsDeletePreviewListResponse, error)

JiraProductConfigurationsDeletePreviewListWithResponse request returning *JiraProductConfigurationsDeletePreviewListResponse

func (*ClientWithResponses) JiraProductConfigurationsDestroyWithResponse

func (c *ClientWithResponses) JiraProductConfigurationsDestroyWithResponse(ctx context.Context, id int, reqEditors ...RequestEditorFn) (*JiraProductConfigurationsDestroyResponse, error)

JiraProductConfigurationsDestroyWithResponse request returning *JiraProductConfigurationsDestroyResponse

func (*ClientWithResponses) JiraProductConfigurationsListWithResponse

func (c *ClientWithResponses) JiraProductConfigurationsListWithResponse(ctx context.Context, params *JiraProductConfigurationsListParams, reqEditors ...RequestEditorFn) (*JiraProductConfigurationsListResponse, error)

JiraProductConfigurationsListWithResponse request returning *JiraProductConfigurationsListResponse

func (*ClientWithResponses) JiraProductConfigurationsPartialUpdateWithBodyWithResponse

func (c *ClientWithResponses) JiraProductConfigurationsPartialUpdateWithBodyWithResponse(ctx context.Context, id int, contentType string, body io.Reader, reqEditors ...RequestEditorFn) (*JiraProductConfigurationsPartialUpdateResponse, error)

JiraProductConfigurationsPartialUpdateWithBodyWithResponse request with arbitrary body returning *JiraProductConfigurationsPartialUpdateResponse

func (*ClientWithResponses) JiraProductConfigurationsPartialUpdateWithFormdataBodyWithResponse added in v0.2.0

func (c *ClientWithResponses) JiraProductConfigurationsPartialUpdateWithFormdataBodyWithResponse(ctx context.Context, id int, body JiraProductConfigurationsPartialUpdateFormdataRequestBody, reqEditors ...RequestEditorFn) (*JiraProductConfigurationsPartialUpdateResponse, error)

func (*ClientWithResponses) JiraProductConfigurationsRetrieveWithResponse

func (c *ClientWithResponses) JiraProductConfigurationsRetrieveWithResponse(ctx context.Context, id int, reqEditors ...RequestEditorFn) (*JiraProductConfigurationsRetrieveResponse, error)

JiraProductConfigurationsRetrieveWithResponse request returning *JiraProductConfigurationsRetrieveResponse

func (*ClientWithResponses) JiraProductConfigurationsUpdateWithBodyWithResponse

func (c *ClientWithResponses) JiraProductConfigurationsUpdateWithBodyWithResponse(ctx context.Context, id int, contentType string, body io.Reader, reqEditors ...RequestEditorFn) (*JiraProductConfigurationsUpdateResponse, error)

JiraProductConfigurationsUpdateWithBodyWithResponse request with arbitrary body returning *JiraProductConfigurationsUpdateResponse

func (*ClientWithResponses) JiraProductConfigurationsUpdateWithFormdataBodyWithResponse added in v0.2.0

func (c *ClientWithResponses) JiraProductConfigurationsUpdateWithFormdataBodyWithResponse(ctx context.Context, id int, body JiraProductConfigurationsUpdateFormdataRequestBody, reqEditors ...RequestEditorFn) (*JiraProductConfigurationsUpdateResponse, error)

func (*ClientWithResponses) JiraProductConfigurationsUpdateWithResponse

func (c *ClientWithResponses) JiraProductConfigurationsUpdateWithResponse(ctx context.Context, id int, body JiraProductConfigurationsUpdateJSONRequestBody, reqEditors ...RequestEditorFn) (*JiraProductConfigurationsUpdateResponse, error)

func (*ClientWithResponses) JiraProjectsCreateWithBodyWithResponse

func (c *ClientWithResponses) JiraProjectsCreateWithBodyWithResponse(ctx context.Context, contentType string, body io.Reader, reqEditors ...RequestEditorFn) (*JiraProjectsCreateResponse, error)

JiraProjectsCreateWithBodyWithResponse request with arbitrary body returning *JiraProjectsCreateResponse

func (*ClientWithResponses) JiraProjectsCreateWithFormdataBodyWithResponse added in v0.2.0

func (c *ClientWithResponses) JiraProjectsCreateWithFormdataBodyWithResponse(ctx context.Context, body JiraProjectsCreateFormdataRequestBody, reqEditors ...RequestEditorFn) (*JiraProjectsCreateResponse, error)

func (*ClientWithResponses) JiraProjectsCreateWithResponse

func (c *ClientWithResponses) JiraProjectsCreateWithResponse(ctx context.Context, body JiraProjectsCreateJSONRequestBody, reqEditors ...RequestEditorFn) (*JiraProjectsCreateResponse, error)

func (*ClientWithResponses) JiraProjectsDeletePreviewListWithResponse added in v0.2.0

func (c *ClientWithResponses) JiraProjectsDeletePreviewListWithResponse(ctx context.Context, id int, params *JiraProjectsDeletePreviewListParams, reqEditors ...RequestEditorFn) (*JiraProjectsDeletePreviewListResponse, error)

JiraProjectsDeletePreviewListWithResponse request returning *JiraProjectsDeletePreviewListResponse

func (*ClientWithResponses) JiraProjectsDestroyWithResponse

func (c *ClientWithResponses) JiraProjectsDestroyWithResponse(ctx context.Context, id int, reqEditors ...RequestEditorFn) (*JiraProjectsDestroyResponse, error)

JiraProjectsDestroyWithResponse request returning *JiraProjectsDestroyResponse

func (*ClientWithResponses) JiraProjectsListWithResponse

func (c *ClientWithResponses) JiraProjectsListWithResponse(ctx context.Context, params *JiraProjectsListParams, reqEditors ...RequestEditorFn) (*JiraProjectsListResponse, error)

JiraProjectsListWithResponse request returning *JiraProjectsListResponse

func (*ClientWithResponses) JiraProjectsPartialUpdateWithBodyWithResponse

func (c *ClientWithResponses) JiraProjectsPartialUpdateWithBodyWithResponse(ctx context.Context, id int, contentType string, body io.Reader, reqEditors ...RequestEditorFn) (*JiraProjectsPartialUpdateResponse, error)

JiraProjectsPartialUpdateWithBodyWithResponse request with arbitrary body returning *JiraProjectsPartialUpdateResponse

func (*ClientWithResponses) JiraProjectsPartialUpdateWithFormdataBodyWithResponse added in v0.2.0

func (c *ClientWithResponses) JiraProjectsPartialUpdateWithFormdataBodyWithResponse(ctx context.Context, id int, body JiraProjectsPartialUpdateFormdataRequestBody, reqEditors ...RequestEditorFn) (*JiraProjectsPartialUpdateResponse, error)

func (*ClientWithResponses) JiraProjectsPartialUpdateWithResponse

func (c *ClientWithResponses) JiraProjectsPartialUpdateWithResponse(ctx context.Context, id int, body JiraProjectsPartialUpdateJSONRequestBody, reqEditors ...RequestEditorFn) (*JiraProjectsPartialUpdateResponse, error)

func (*ClientWithResponses) JiraProjectsRetrieveWithResponse

func (c *ClientWithResponses) JiraProjectsRetrieveWithResponse(ctx context.Context, id int, reqEditors ...RequestEditorFn) (*JiraProjectsRetrieveResponse, error)

JiraProjectsRetrieveWithResponse request returning *JiraProjectsRetrieveResponse

func (*ClientWithResponses) JiraProjectsUpdateWithBodyWithResponse

func (c *ClientWithResponses) JiraProjectsUpdateWithBodyWithResponse(ctx context.Context, id int, contentType string, body io.Reader, reqEditors ...RequestEditorFn) (*JiraProjectsUpdateResponse, error)

JiraProjectsUpdateWithBodyWithResponse request with arbitrary body returning *JiraProjectsUpdateResponse

func (*ClientWithResponses) JiraProjectsUpdateWithFormdataBodyWithResponse added in v0.2.0

func (c *ClientWithResponses) JiraProjectsUpdateWithFormdataBodyWithResponse(ctx context.Context, id int, body JiraProjectsUpdateFormdataRequestBody, reqEditors ...RequestEditorFn) (*JiraProjectsUpdateResponse, error)

func (*ClientWithResponses) JiraProjectsUpdateWithResponse

func (c *ClientWithResponses) JiraProjectsUpdateWithResponse(ctx context.Context, id int, body JiraProjectsUpdateJSONRequestBody, reqEditors ...RequestEditorFn) (*JiraProjectsUpdateResponse, error)

func (*ClientWithResponses) LanguageTypesCreateWithBodyWithResponse

func (c *ClientWithResponses) LanguageTypesCreateWithBodyWithResponse(ctx context.Context, contentType string, body io.Reader, reqEditors ...RequestEditorFn) (*LanguageTypesCreateResponse, error)

LanguageTypesCreateWithBodyWithResponse request with arbitrary body returning *LanguageTypesCreateResponse

func (*ClientWithResponses) LanguageTypesCreateWithFormdataBodyWithResponse added in v0.2.0

func (c *ClientWithResponses) LanguageTypesCreateWithFormdataBodyWithResponse(ctx context.Context, body LanguageTypesCreateFormdataRequestBody, reqEditors ...RequestEditorFn) (*LanguageTypesCreateResponse, error)

func (*ClientWithResponses) LanguageTypesCreateWithResponse

func (c *ClientWithResponses) LanguageTypesCreateWithResponse(ctx context.Context, body LanguageTypesCreateJSONRequestBody, reqEditors ...RequestEditorFn) (*LanguageTypesCreateResponse, error)

func (*ClientWithResponses) LanguageTypesDeletePreviewListWithResponse added in v0.2.0

func (c *ClientWithResponses) LanguageTypesDeletePreviewListWithResponse(ctx context.Context, id int, params *LanguageTypesDeletePreviewListParams, reqEditors ...RequestEditorFn) (*LanguageTypesDeletePreviewListResponse, error)

LanguageTypesDeletePreviewListWithResponse request returning *LanguageTypesDeletePreviewListResponse

func (*ClientWithResponses) LanguageTypesDestroyWithResponse

func (c *ClientWithResponses) LanguageTypesDestroyWithResponse(ctx context.Context, id int, reqEditors ...RequestEditorFn) (*LanguageTypesDestroyResponse, error)

LanguageTypesDestroyWithResponse request returning *LanguageTypesDestroyResponse

func (*ClientWithResponses) LanguageTypesListWithResponse

func (c *ClientWithResponses) LanguageTypesListWithResponse(ctx context.Context, params *LanguageTypesListParams, reqEditors ...RequestEditorFn) (*LanguageTypesListResponse, error)

LanguageTypesListWithResponse request returning *LanguageTypesListResponse

func (*ClientWithResponses) LanguageTypesPartialUpdateWithBodyWithResponse

func (c *ClientWithResponses) LanguageTypesPartialUpdateWithBodyWithResponse(ctx context.Context, id int, contentType string, body io.Reader, reqEditors ...RequestEditorFn) (*LanguageTypesPartialUpdateResponse, error)

LanguageTypesPartialUpdateWithBodyWithResponse request with arbitrary body returning *LanguageTypesPartialUpdateResponse

func (*ClientWithResponses) LanguageTypesPartialUpdateWithFormdataBodyWithResponse added in v0.2.0

func (c *ClientWithResponses) LanguageTypesPartialUpdateWithFormdataBodyWithResponse(ctx context.Context, id int, body LanguageTypesPartialUpdateFormdataRequestBody, reqEditors ...RequestEditorFn) (*LanguageTypesPartialUpdateResponse, error)

func (*ClientWithResponses) LanguageTypesPartialUpdateWithResponse

func (c *ClientWithResponses) LanguageTypesPartialUpdateWithResponse(ctx context.Context, id int, body LanguageTypesPartialUpdateJSONRequestBody, reqEditors ...RequestEditorFn) (*LanguageTypesPartialUpdateResponse, error)

func (*ClientWithResponses) LanguageTypesRetrieveWithResponse

func (c *ClientWithResponses) LanguageTypesRetrieveWithResponse(ctx context.Context, id int, reqEditors ...RequestEditorFn) (*LanguageTypesRetrieveResponse, error)

LanguageTypesRetrieveWithResponse request returning *LanguageTypesRetrieveResponse

func (*ClientWithResponses) LanguageTypesUpdateWithBodyWithResponse

func (c *ClientWithResponses) LanguageTypesUpdateWithBodyWithResponse(ctx context.Context, id int, contentType string, body io.Reader, reqEditors ...RequestEditorFn) (*LanguageTypesUpdateResponse, error)

LanguageTypesUpdateWithBodyWithResponse request with arbitrary body returning *LanguageTypesUpdateResponse

func (*ClientWithResponses) LanguageTypesUpdateWithFormdataBodyWithResponse added in v0.2.0

func (c *ClientWithResponses) LanguageTypesUpdateWithFormdataBodyWithResponse(ctx context.Context, id int, body LanguageTypesUpdateFormdataRequestBody, reqEditors ...RequestEditorFn) (*LanguageTypesUpdateResponse, error)

func (*ClientWithResponses) LanguageTypesUpdateWithResponse

func (c *ClientWithResponses) LanguageTypesUpdateWithResponse(ctx context.Context, id int, body LanguageTypesUpdateJSONRequestBody, reqEditors ...RequestEditorFn) (*LanguageTypesUpdateResponse, error)

func (*ClientWithResponses) LanguagesCreateWithBodyWithResponse

func (c *ClientWithResponses) LanguagesCreateWithBodyWithResponse(ctx context.Context, contentType string, body io.Reader, reqEditors ...RequestEditorFn) (*LanguagesCreateResponse, error)

LanguagesCreateWithBodyWithResponse request with arbitrary body returning *LanguagesCreateResponse

func (*ClientWithResponses) LanguagesCreateWithFormdataBodyWithResponse added in v0.2.0

func (c *ClientWithResponses) LanguagesCreateWithFormdataBodyWithResponse(ctx context.Context, body LanguagesCreateFormdataRequestBody, reqEditors ...RequestEditorFn) (*LanguagesCreateResponse, error)

func (*ClientWithResponses) LanguagesCreateWithResponse

func (c *ClientWithResponses) LanguagesCreateWithResponse(ctx context.Context, body LanguagesCreateJSONRequestBody, reqEditors ...RequestEditorFn) (*LanguagesCreateResponse, error)

func (*ClientWithResponses) LanguagesDeletePreviewListWithResponse added in v0.2.0

func (c *ClientWithResponses) LanguagesDeletePreviewListWithResponse(ctx context.Context, id int, params *LanguagesDeletePreviewListParams, reqEditors ...RequestEditorFn) (*LanguagesDeletePreviewListResponse, error)

LanguagesDeletePreviewListWithResponse request returning *LanguagesDeletePreviewListResponse

func (*ClientWithResponses) LanguagesDestroyWithResponse

func (c *ClientWithResponses) LanguagesDestroyWithResponse(ctx context.Context, id int, reqEditors ...RequestEditorFn) (*LanguagesDestroyResponse, error)

LanguagesDestroyWithResponse request returning *LanguagesDestroyResponse

func (*ClientWithResponses) LanguagesListWithResponse

func (c *ClientWithResponses) LanguagesListWithResponse(ctx context.Context, params *LanguagesListParams, reqEditors ...RequestEditorFn) (*LanguagesListResponse, error)

LanguagesListWithResponse request returning *LanguagesListResponse

func (*ClientWithResponses) LanguagesPartialUpdateWithBodyWithResponse

func (c *ClientWithResponses) LanguagesPartialUpdateWithBodyWithResponse(ctx context.Context, id int, contentType string, body io.Reader, reqEditors ...RequestEditorFn) (*LanguagesPartialUpdateResponse, error)

LanguagesPartialUpdateWithBodyWithResponse request with arbitrary body returning *LanguagesPartialUpdateResponse

func (*ClientWithResponses) LanguagesPartialUpdateWithFormdataBodyWithResponse added in v0.2.0

func (c *ClientWithResponses) LanguagesPartialUpdateWithFormdataBodyWithResponse(ctx context.Context, id int, body LanguagesPartialUpdateFormdataRequestBody, reqEditors ...RequestEditorFn) (*LanguagesPartialUpdateResponse, error)

func (*ClientWithResponses) LanguagesPartialUpdateWithResponse

func (c *ClientWithResponses) LanguagesPartialUpdateWithResponse(ctx context.Context, id int, body LanguagesPartialUpdateJSONRequestBody, reqEditors ...RequestEditorFn) (*LanguagesPartialUpdateResponse, error)

func (*ClientWithResponses) LanguagesRetrieveWithResponse

func (c *ClientWithResponses) LanguagesRetrieveWithResponse(ctx context.Context, id int, params *LanguagesRetrieveParams, reqEditors ...RequestEditorFn) (*LanguagesRetrieveResponse, error)

LanguagesRetrieveWithResponse request returning *LanguagesRetrieveResponse

func (*ClientWithResponses) LanguagesUpdateWithBodyWithResponse

func (c *ClientWithResponses) LanguagesUpdateWithBodyWithResponse(ctx context.Context, id int, contentType string, body io.Reader, reqEditors ...RequestEditorFn) (*LanguagesUpdateResponse, error)

LanguagesUpdateWithBodyWithResponse request with arbitrary body returning *LanguagesUpdateResponse

func (*ClientWithResponses) LanguagesUpdateWithFormdataBodyWithResponse added in v0.2.0

func (c *ClientWithResponses) LanguagesUpdateWithFormdataBodyWithResponse(ctx context.Context, id int, body LanguagesUpdateFormdataRequestBody, reqEditors ...RequestEditorFn) (*LanguagesUpdateResponse, error)

func (*ClientWithResponses) LanguagesUpdateWithResponse

func (c *ClientWithResponses) LanguagesUpdateWithResponse(ctx context.Context, id int, body LanguagesUpdateJSONRequestBody, reqEditors ...RequestEditorFn) (*LanguagesUpdateResponse, error)

func (*ClientWithResponses) MetadataCreateWithBodyWithResponse

func (c *ClientWithResponses) MetadataCreateWithBodyWithResponse(ctx context.Context, contentType string, body io.Reader, reqEditors ...RequestEditorFn) (*MetadataCreateResponse, error)

MetadataCreateWithBodyWithResponse request with arbitrary body returning *MetadataCreateResponse

func (*ClientWithResponses) MetadataCreateWithFormdataBodyWithResponse added in v0.2.0

func (c *ClientWithResponses) MetadataCreateWithFormdataBodyWithResponse(ctx context.Context, body MetadataCreateFormdataRequestBody, reqEditors ...RequestEditorFn) (*MetadataCreateResponse, error)

func (*ClientWithResponses) MetadataCreateWithResponse

func (c *ClientWithResponses) MetadataCreateWithResponse(ctx context.Context, body MetadataCreateJSONRequestBody, reqEditors ...RequestEditorFn) (*MetadataCreateResponse, error)

func (*ClientWithResponses) MetadataDeletePreviewListWithResponse added in v0.2.0

func (c *ClientWithResponses) MetadataDeletePreviewListWithResponse(ctx context.Context, id int, params *MetadataDeletePreviewListParams, reqEditors ...RequestEditorFn) (*MetadataDeletePreviewListResponse, error)

MetadataDeletePreviewListWithResponse request returning *MetadataDeletePreviewListResponse

func (*ClientWithResponses) MetadataDestroyWithResponse

func (c *ClientWithResponses) MetadataDestroyWithResponse(ctx context.Context, id int, reqEditors ...RequestEditorFn) (*MetadataDestroyResponse, error)

MetadataDestroyWithResponse request returning *MetadataDestroyResponse

func (*ClientWithResponses) MetadataListWithResponse

func (c *ClientWithResponses) MetadataListWithResponse(ctx context.Context, params *MetadataListParams, reqEditors ...RequestEditorFn) (*MetadataListResponse, error)

MetadataListWithResponse request returning *MetadataListResponse

func (*ClientWithResponses) MetadataPartialUpdateWithBodyWithResponse

func (c *ClientWithResponses) MetadataPartialUpdateWithBodyWithResponse(ctx context.Context, id int, contentType string, body io.Reader, reqEditors ...RequestEditorFn) (*MetadataPartialUpdateResponse, error)

MetadataPartialUpdateWithBodyWithResponse request with arbitrary body returning *MetadataPartialUpdateResponse

func (*ClientWithResponses) MetadataPartialUpdateWithFormdataBodyWithResponse added in v0.2.0

func (c *ClientWithResponses) MetadataPartialUpdateWithFormdataBodyWithResponse(ctx context.Context, id int, body MetadataPartialUpdateFormdataRequestBody, reqEditors ...RequestEditorFn) (*MetadataPartialUpdateResponse, error)

func (*ClientWithResponses) MetadataPartialUpdateWithResponse

func (c *ClientWithResponses) MetadataPartialUpdateWithResponse(ctx context.Context, id int, body MetadataPartialUpdateJSONRequestBody, reqEditors ...RequestEditorFn) (*MetadataPartialUpdateResponse, error)

func (*ClientWithResponses) MetadataRetrieveWithResponse

func (c *ClientWithResponses) MetadataRetrieveWithResponse(ctx context.Context, id int, params *MetadataRetrieveParams, reqEditors ...RequestEditorFn) (*MetadataRetrieveResponse, error)

MetadataRetrieveWithResponse request returning *MetadataRetrieveResponse

func (*ClientWithResponses) MetadataUpdateWithBodyWithResponse

func (c *ClientWithResponses) MetadataUpdateWithBodyWithResponse(ctx context.Context, id int, contentType string, body io.Reader, reqEditors ...RequestEditorFn) (*MetadataUpdateResponse, error)

MetadataUpdateWithBodyWithResponse request with arbitrary body returning *MetadataUpdateResponse

func (*ClientWithResponses) MetadataUpdateWithFormdataBodyWithResponse added in v0.2.0

func (c *ClientWithResponses) MetadataUpdateWithFormdataBodyWithResponse(ctx context.Context, id int, body MetadataUpdateFormdataRequestBody, reqEditors ...RequestEditorFn) (*MetadataUpdateResponse, error)

func (*ClientWithResponses) MetadataUpdateWithResponse

func (c *ClientWithResponses) MetadataUpdateWithResponse(ctx context.Context, id int, body MetadataUpdateJSONRequestBody, reqEditors ...RequestEditorFn) (*MetadataUpdateResponse, error)

func (*ClientWithResponses) NetworkLocationsCreateWithBodyWithResponse

func (c *ClientWithResponses) NetworkLocationsCreateWithBodyWithResponse(ctx context.Context, contentType string, body io.Reader, reqEditors ...RequestEditorFn) (*NetworkLocationsCreateResponse, error)

NetworkLocationsCreateWithBodyWithResponse request with arbitrary body returning *NetworkLocationsCreateResponse

func (*ClientWithResponses) NetworkLocationsCreateWithFormdataBodyWithResponse added in v0.2.0

func (c *ClientWithResponses) NetworkLocationsCreateWithFormdataBodyWithResponse(ctx context.Context, body NetworkLocationsCreateFormdataRequestBody, reqEditors ...RequestEditorFn) (*NetworkLocationsCreateResponse, error)

func (*ClientWithResponses) NetworkLocationsCreateWithResponse

func (c *ClientWithResponses) NetworkLocationsCreateWithResponse(ctx context.Context, body NetworkLocationsCreateJSONRequestBody, reqEditors ...RequestEditorFn) (*NetworkLocationsCreateResponse, error)

func (*ClientWithResponses) NetworkLocationsDeletePreviewListWithResponse added in v0.2.0

func (c *ClientWithResponses) NetworkLocationsDeletePreviewListWithResponse(ctx context.Context, id int, params *NetworkLocationsDeletePreviewListParams, reqEditors ...RequestEditorFn) (*NetworkLocationsDeletePreviewListResponse, error)

NetworkLocationsDeletePreviewListWithResponse request returning *NetworkLocationsDeletePreviewListResponse

func (*ClientWithResponses) NetworkLocationsDestroyWithResponse

func (c *ClientWithResponses) NetworkLocationsDestroyWithResponse(ctx context.Context, id int, reqEditors ...RequestEditorFn) (*NetworkLocationsDestroyResponse, error)

NetworkLocationsDestroyWithResponse request returning *NetworkLocationsDestroyResponse

func (*ClientWithResponses) NetworkLocationsListWithResponse

func (c *ClientWithResponses) NetworkLocationsListWithResponse(ctx context.Context, params *NetworkLocationsListParams, reqEditors ...RequestEditorFn) (*NetworkLocationsListResponse, error)

NetworkLocationsListWithResponse request returning *NetworkLocationsListResponse

func (*ClientWithResponses) NetworkLocationsPartialUpdateWithBodyWithResponse

func (c *ClientWithResponses) NetworkLocationsPartialUpdateWithBodyWithResponse(ctx context.Context, id int, contentType string, body io.Reader, reqEditors ...RequestEditorFn) (*NetworkLocationsPartialUpdateResponse, error)

NetworkLocationsPartialUpdateWithBodyWithResponse request with arbitrary body returning *NetworkLocationsPartialUpdateResponse

func (*ClientWithResponses) NetworkLocationsPartialUpdateWithFormdataBodyWithResponse added in v0.2.0

func (c *ClientWithResponses) NetworkLocationsPartialUpdateWithFormdataBodyWithResponse(ctx context.Context, id int, body NetworkLocationsPartialUpdateFormdataRequestBody, reqEditors ...RequestEditorFn) (*NetworkLocationsPartialUpdateResponse, error)

func (*ClientWithResponses) NetworkLocationsPartialUpdateWithResponse

func (c *ClientWithResponses) NetworkLocationsPartialUpdateWithResponse(ctx context.Context, id int, body NetworkLocationsPartialUpdateJSONRequestBody, reqEditors ...RequestEditorFn) (*NetworkLocationsPartialUpdateResponse, error)

func (*ClientWithResponses) NetworkLocationsRetrieveWithResponse

func (c *ClientWithResponses) NetworkLocationsRetrieveWithResponse(ctx context.Context, id int, reqEditors ...RequestEditorFn) (*NetworkLocationsRetrieveResponse, error)

NetworkLocationsRetrieveWithResponse request returning *NetworkLocationsRetrieveResponse

func (*ClientWithResponses) NetworkLocationsUpdateWithBodyWithResponse

func (c *ClientWithResponses) NetworkLocationsUpdateWithBodyWithResponse(ctx context.Context, id int, contentType string, body io.Reader, reqEditors ...RequestEditorFn) (*NetworkLocationsUpdateResponse, error)

NetworkLocationsUpdateWithBodyWithResponse request with arbitrary body returning *NetworkLocationsUpdateResponse

func (*ClientWithResponses) NetworkLocationsUpdateWithFormdataBodyWithResponse added in v0.2.0

func (c *ClientWithResponses) NetworkLocationsUpdateWithFormdataBodyWithResponse(ctx context.Context, id int, body NetworkLocationsUpdateFormdataRequestBody, reqEditors ...RequestEditorFn) (*NetworkLocationsUpdateResponse, error)

func (*ClientWithResponses) NetworkLocationsUpdateWithResponse

func (c *ClientWithResponses) NetworkLocationsUpdateWithResponse(ctx context.Context, id int, body NetworkLocationsUpdateJSONRequestBody, reqEditors ...RequestEditorFn) (*NetworkLocationsUpdateResponse, error)

func (*ClientWithResponses) NoteTypeCreateWithBodyWithResponse

func (c *ClientWithResponses) NoteTypeCreateWithBodyWithResponse(ctx context.Context, contentType string, body io.Reader, reqEditors ...RequestEditorFn) (*NoteTypeCreateResponse, error)

NoteTypeCreateWithBodyWithResponse request with arbitrary body returning *NoteTypeCreateResponse

func (*ClientWithResponses) NoteTypeCreateWithFormdataBodyWithResponse added in v0.2.0

func (c *ClientWithResponses) NoteTypeCreateWithFormdataBodyWithResponse(ctx context.Context, body NoteTypeCreateFormdataRequestBody, reqEditors ...RequestEditorFn) (*NoteTypeCreateResponse, error)

func (*ClientWithResponses) NoteTypeCreateWithResponse

func (c *ClientWithResponses) NoteTypeCreateWithResponse(ctx context.Context, body NoteTypeCreateJSONRequestBody, reqEditors ...RequestEditorFn) (*NoteTypeCreateResponse, error)

func (*ClientWithResponses) NoteTypeDeletePreviewListWithResponse added in v0.2.0

func (c *ClientWithResponses) NoteTypeDeletePreviewListWithResponse(ctx context.Context, id int, params *NoteTypeDeletePreviewListParams, reqEditors ...RequestEditorFn) (*NoteTypeDeletePreviewListResponse, error)

NoteTypeDeletePreviewListWithResponse request returning *NoteTypeDeletePreviewListResponse

func (*ClientWithResponses) NoteTypeDestroyWithResponse

func (c *ClientWithResponses) NoteTypeDestroyWithResponse(ctx context.Context, id int, reqEditors ...RequestEditorFn) (*NoteTypeDestroyResponse, error)

NoteTypeDestroyWithResponse request returning *NoteTypeDestroyResponse

func (*ClientWithResponses) NoteTypeListWithResponse

func (c *ClientWithResponses) NoteTypeListWithResponse(ctx context.Context, params *NoteTypeListParams, reqEditors ...RequestEditorFn) (*NoteTypeListResponse, error)

NoteTypeListWithResponse request returning *NoteTypeListResponse

func (*ClientWithResponses) NoteTypePartialUpdateWithBodyWithResponse

func (c *ClientWithResponses) NoteTypePartialUpdateWithBodyWithResponse(ctx context.Context, id int, contentType string, body io.Reader, reqEditors ...RequestEditorFn) (*NoteTypePartialUpdateResponse, error)

NoteTypePartialUpdateWithBodyWithResponse request with arbitrary body returning *NoteTypePartialUpdateResponse

func (*ClientWithResponses) NoteTypePartialUpdateWithFormdataBodyWithResponse added in v0.2.0

func (c *ClientWithResponses) NoteTypePartialUpdateWithFormdataBodyWithResponse(ctx context.Context, id int, body NoteTypePartialUpdateFormdataRequestBody, reqEditors ...RequestEditorFn) (*NoteTypePartialUpdateResponse, error)

func (*ClientWithResponses) NoteTypePartialUpdateWithResponse

func (c *ClientWithResponses) NoteTypePartialUpdateWithResponse(ctx context.Context, id int, body NoteTypePartialUpdateJSONRequestBody, reqEditors ...RequestEditorFn) (*NoteTypePartialUpdateResponse, error)

func (*ClientWithResponses) NoteTypeRetrieveWithResponse

func (c *ClientWithResponses) NoteTypeRetrieveWithResponse(ctx context.Context, id int, reqEditors ...RequestEditorFn) (*NoteTypeRetrieveResponse, error)

NoteTypeRetrieveWithResponse request returning *NoteTypeRetrieveResponse

func (*ClientWithResponses) NoteTypeUpdateWithBodyWithResponse

func (c *ClientWithResponses) NoteTypeUpdateWithBodyWithResponse(ctx context.Context, id int, contentType string, body io.Reader, reqEditors ...RequestEditorFn) (*NoteTypeUpdateResponse, error)

NoteTypeUpdateWithBodyWithResponse request with arbitrary body returning *NoteTypeUpdateResponse

func (*ClientWithResponses) NoteTypeUpdateWithFormdataBodyWithResponse added in v0.2.0

func (c *ClientWithResponses) NoteTypeUpdateWithFormdataBodyWithResponse(ctx context.Context, id int, body NoteTypeUpdateFormdataRequestBody, reqEditors ...RequestEditorFn) (*NoteTypeUpdateResponse, error)

func (*ClientWithResponses) NoteTypeUpdateWithResponse

func (c *ClientWithResponses) NoteTypeUpdateWithResponse(ctx context.Context, id int, body NoteTypeUpdateJSONRequestBody, reqEditors ...RequestEditorFn) (*NoteTypeUpdateResponse, error)

func (*ClientWithResponses) NotesListWithResponse

func (c *ClientWithResponses) NotesListWithResponse(ctx context.Context, params *NotesListParams, reqEditors ...RequestEditorFn) (*NotesListResponse, error)

NotesListWithResponse request returning *NotesListResponse

func (*ClientWithResponses) NotesPartialUpdateWithBodyWithResponse

func (c *ClientWithResponses) NotesPartialUpdateWithBodyWithResponse(ctx context.Context, id int, contentType string, body io.Reader, reqEditors ...RequestEditorFn) (*NotesPartialUpdateResponse, error)

NotesPartialUpdateWithBodyWithResponse request with arbitrary body returning *NotesPartialUpdateResponse

func (*ClientWithResponses) NotesPartialUpdateWithFormdataBodyWithResponse added in v0.2.0

func (c *ClientWithResponses) NotesPartialUpdateWithFormdataBodyWithResponse(ctx context.Context, id int, body NotesPartialUpdateFormdataRequestBody, reqEditors ...RequestEditorFn) (*NotesPartialUpdateResponse, error)

func (*ClientWithResponses) NotesPartialUpdateWithResponse

func (c *ClientWithResponses) NotesPartialUpdateWithResponse(ctx context.Context, id int, body NotesPartialUpdateJSONRequestBody, reqEditors ...RequestEditorFn) (*NotesPartialUpdateResponse, error)

func (*ClientWithResponses) NotesRetrieveWithResponse

func (c *ClientWithResponses) NotesRetrieveWithResponse(ctx context.Context, id int, reqEditors ...RequestEditorFn) (*NotesRetrieveResponse, error)

NotesRetrieveWithResponse request returning *NotesRetrieveResponse

func (*ClientWithResponses) NotesUpdateWithBodyWithResponse

func (c *ClientWithResponses) NotesUpdateWithBodyWithResponse(ctx context.Context, id int, contentType string, body io.Reader, reqEditors ...RequestEditorFn) (*NotesUpdateResponse, error)

NotesUpdateWithBodyWithResponse request with arbitrary body returning *NotesUpdateResponse

func (*ClientWithResponses) NotesUpdateWithFormdataBodyWithResponse added in v0.2.0

func (c *ClientWithResponses) NotesUpdateWithFormdataBodyWithResponse(ctx context.Context, id int, body NotesUpdateFormdataRequestBody, reqEditors ...RequestEditorFn) (*NotesUpdateResponse, error)

func (*ClientWithResponses) NotesUpdateWithResponse

func (c *ClientWithResponses) NotesUpdateWithResponse(ctx context.Context, id int, body NotesUpdateJSONRequestBody, reqEditors ...RequestEditorFn) (*NotesUpdateResponse, error)

func (*ClientWithResponses) NotificationsCreateWithBodyWithResponse

func (c *ClientWithResponses) NotificationsCreateWithBodyWithResponse(ctx context.Context, contentType string, body io.Reader, reqEditors ...RequestEditorFn) (*NotificationsCreateResponse, error)

NotificationsCreateWithBodyWithResponse request with arbitrary body returning *NotificationsCreateResponse

func (*ClientWithResponses) NotificationsCreateWithFormdataBodyWithResponse added in v0.2.0

func (c *ClientWithResponses) NotificationsCreateWithFormdataBodyWithResponse(ctx context.Context, body NotificationsCreateFormdataRequestBody, reqEditors ...RequestEditorFn) (*NotificationsCreateResponse, error)

func (*ClientWithResponses) NotificationsCreateWithResponse

func (c *ClientWithResponses) NotificationsCreateWithResponse(ctx context.Context, body NotificationsCreateJSONRequestBody, reqEditors ...RequestEditorFn) (*NotificationsCreateResponse, error)

func (*ClientWithResponses) NotificationsDeletePreviewListWithResponse added in v0.2.0

func (c *ClientWithResponses) NotificationsDeletePreviewListWithResponse(ctx context.Context, id int, params *NotificationsDeletePreviewListParams, reqEditors ...RequestEditorFn) (*NotificationsDeletePreviewListResponse, error)

NotificationsDeletePreviewListWithResponse request returning *NotificationsDeletePreviewListResponse

func (*ClientWithResponses) NotificationsDestroyWithResponse

func (c *ClientWithResponses) NotificationsDestroyWithResponse(ctx context.Context, id int, reqEditors ...RequestEditorFn) (*NotificationsDestroyResponse, error)

NotificationsDestroyWithResponse request returning *NotificationsDestroyResponse

func (*ClientWithResponses) NotificationsListWithResponse

func (c *ClientWithResponses) NotificationsListWithResponse(ctx context.Context, params *NotificationsListParams, reqEditors ...RequestEditorFn) (*NotificationsListResponse, error)

NotificationsListWithResponse request returning *NotificationsListResponse

func (*ClientWithResponses) NotificationsPartialUpdateWithBodyWithResponse

func (c *ClientWithResponses) NotificationsPartialUpdateWithBodyWithResponse(ctx context.Context, id int, contentType string, body io.Reader, reqEditors ...RequestEditorFn) (*NotificationsPartialUpdateResponse, error)

NotificationsPartialUpdateWithBodyWithResponse request with arbitrary body returning *NotificationsPartialUpdateResponse

func (*ClientWithResponses) NotificationsPartialUpdateWithFormdataBodyWithResponse added in v0.2.0

func (c *ClientWithResponses) NotificationsPartialUpdateWithFormdataBodyWithResponse(ctx context.Context, id int, body NotificationsPartialUpdateFormdataRequestBody, reqEditors ...RequestEditorFn) (*NotificationsPartialUpdateResponse, error)

func (*ClientWithResponses) NotificationsPartialUpdateWithResponse

func (c *ClientWithResponses) NotificationsPartialUpdateWithResponse(ctx context.Context, id int, body NotificationsPartialUpdateJSONRequestBody, reqEditors ...RequestEditorFn) (*NotificationsPartialUpdateResponse, error)

func (*ClientWithResponses) NotificationsRetrieveWithResponse

func (c *ClientWithResponses) NotificationsRetrieveWithResponse(ctx context.Context, id int, params *NotificationsRetrieveParams, reqEditors ...RequestEditorFn) (*NotificationsRetrieveResponse, error)

NotificationsRetrieveWithResponse request returning *NotificationsRetrieveResponse

func (*ClientWithResponses) NotificationsUpdateWithBodyWithResponse

func (c *ClientWithResponses) NotificationsUpdateWithBodyWithResponse(ctx context.Context, id int, contentType string, body io.Reader, reqEditors ...RequestEditorFn) (*NotificationsUpdateResponse, error)

NotificationsUpdateWithBodyWithResponse request with arbitrary body returning *NotificationsUpdateResponse

func (*ClientWithResponses) NotificationsUpdateWithFormdataBodyWithResponse added in v0.2.0

func (c *ClientWithResponses) NotificationsUpdateWithFormdataBodyWithResponse(ctx context.Context, id int, body NotificationsUpdateFormdataRequestBody, reqEditors ...RequestEditorFn) (*NotificationsUpdateResponse, error)

func (*ClientWithResponses) NotificationsUpdateWithResponse

func (c *ClientWithResponses) NotificationsUpdateWithResponse(ctx context.Context, id int, body NotificationsUpdateJSONRequestBody, reqEditors ...RequestEditorFn) (*NotificationsUpdateResponse, error)

func (*ClientWithResponses) Oa3SchemaRetrieveWithResponse

func (c *ClientWithResponses) Oa3SchemaRetrieveWithResponse(ctx context.Context, params *Oa3SchemaRetrieveParams, reqEditors ...RequestEditorFn) (*Oa3SchemaRetrieveResponse, error)

Oa3SchemaRetrieveWithResponse request returning *Oa3SchemaRetrieveResponse

func (*ClientWithResponses) ProductApiScanConfigurationsCreateWithBodyWithResponse

func (c *ClientWithResponses) ProductApiScanConfigurationsCreateWithBodyWithResponse(ctx context.Context, contentType string, body io.Reader, reqEditors ...RequestEditorFn) (*ProductApiScanConfigurationsCreateResponse, error)

ProductApiScanConfigurationsCreateWithBodyWithResponse request with arbitrary body returning *ProductApiScanConfigurationsCreateResponse

func (*ClientWithResponses) ProductApiScanConfigurationsCreateWithFormdataBodyWithResponse added in v0.2.0

func (c *ClientWithResponses) ProductApiScanConfigurationsCreateWithFormdataBodyWithResponse(ctx context.Context, body ProductApiScanConfigurationsCreateFormdataRequestBody, reqEditors ...RequestEditorFn) (*ProductApiScanConfigurationsCreateResponse, error)

func (*ClientWithResponses) ProductApiScanConfigurationsDeletePreviewListWithResponse added in v0.2.0

func (c *ClientWithResponses) ProductApiScanConfigurationsDeletePreviewListWithResponse(ctx context.Context, id int, params *ProductApiScanConfigurationsDeletePreviewListParams, reqEditors ...RequestEditorFn) (*ProductApiScanConfigurationsDeletePreviewListResponse, error)

ProductApiScanConfigurationsDeletePreviewListWithResponse request returning *ProductApiScanConfigurationsDeletePreviewListResponse

func (*ClientWithResponses) ProductApiScanConfigurationsDestroyWithResponse

func (c *ClientWithResponses) ProductApiScanConfigurationsDestroyWithResponse(ctx context.Context, id int, reqEditors ...RequestEditorFn) (*ProductApiScanConfigurationsDestroyResponse, error)

ProductApiScanConfigurationsDestroyWithResponse request returning *ProductApiScanConfigurationsDestroyResponse

func (*ClientWithResponses) ProductApiScanConfigurationsListWithResponse

func (c *ClientWithResponses) ProductApiScanConfigurationsListWithResponse(ctx context.Context, params *ProductApiScanConfigurationsListParams, reqEditors ...RequestEditorFn) (*ProductApiScanConfigurationsListResponse, error)

ProductApiScanConfigurationsListWithResponse request returning *ProductApiScanConfigurationsListResponse

func (*ClientWithResponses) ProductApiScanConfigurationsPartialUpdateWithBodyWithResponse

func (c *ClientWithResponses) ProductApiScanConfigurationsPartialUpdateWithBodyWithResponse(ctx context.Context, id int, contentType string, body io.Reader, reqEditors ...RequestEditorFn) (*ProductApiScanConfigurationsPartialUpdateResponse, error)

ProductApiScanConfigurationsPartialUpdateWithBodyWithResponse request with arbitrary body returning *ProductApiScanConfigurationsPartialUpdateResponse

func (*ClientWithResponses) ProductApiScanConfigurationsPartialUpdateWithFormdataBodyWithResponse added in v0.2.0

func (c *ClientWithResponses) ProductApiScanConfigurationsPartialUpdateWithFormdataBodyWithResponse(ctx context.Context, id int, body ProductApiScanConfigurationsPartialUpdateFormdataRequestBody, reqEditors ...RequestEditorFn) (*ProductApiScanConfigurationsPartialUpdateResponse, error)

func (*ClientWithResponses) ProductApiScanConfigurationsRetrieveWithResponse

func (c *ClientWithResponses) ProductApiScanConfigurationsRetrieveWithResponse(ctx context.Context, id int, reqEditors ...RequestEditorFn) (*ProductApiScanConfigurationsRetrieveResponse, error)

ProductApiScanConfigurationsRetrieveWithResponse request returning *ProductApiScanConfigurationsRetrieveResponse

func (*ClientWithResponses) ProductApiScanConfigurationsUpdateWithBodyWithResponse

func (c *ClientWithResponses) ProductApiScanConfigurationsUpdateWithBodyWithResponse(ctx context.Context, id int, contentType string, body io.Reader, reqEditors ...RequestEditorFn) (*ProductApiScanConfigurationsUpdateResponse, error)

ProductApiScanConfigurationsUpdateWithBodyWithResponse request with arbitrary body returning *ProductApiScanConfigurationsUpdateResponse

func (*ClientWithResponses) ProductApiScanConfigurationsUpdateWithFormdataBodyWithResponse added in v0.2.0

func (c *ClientWithResponses) ProductApiScanConfigurationsUpdateWithFormdataBodyWithResponse(ctx context.Context, id int, body ProductApiScanConfigurationsUpdateFormdataRequestBody, reqEditors ...RequestEditorFn) (*ProductApiScanConfigurationsUpdateResponse, error)

func (*ClientWithResponses) ProductApiScanConfigurationsUpdateWithResponse

func (c *ClientWithResponses) ProductApiScanConfigurationsUpdateWithResponse(ctx context.Context, id int, body ProductApiScanConfigurationsUpdateJSONRequestBody, reqEditors ...RequestEditorFn) (*ProductApiScanConfigurationsUpdateResponse, error)

func (*ClientWithResponses) ProductGroupsCreateWithBodyWithResponse

func (c *ClientWithResponses) ProductGroupsCreateWithBodyWithResponse(ctx context.Context, contentType string, body io.Reader, reqEditors ...RequestEditorFn) (*ProductGroupsCreateResponse, error)

ProductGroupsCreateWithBodyWithResponse request with arbitrary body returning *ProductGroupsCreateResponse

func (*ClientWithResponses) ProductGroupsCreateWithFormdataBodyWithResponse added in v0.2.0

func (c *ClientWithResponses) ProductGroupsCreateWithFormdataBodyWithResponse(ctx context.Context, body ProductGroupsCreateFormdataRequestBody, reqEditors ...RequestEditorFn) (*ProductGroupsCreateResponse, error)

func (*ClientWithResponses) ProductGroupsCreateWithResponse

func (c *ClientWithResponses) ProductGroupsCreateWithResponse(ctx context.Context, body ProductGroupsCreateJSONRequestBody, reqEditors ...RequestEditorFn) (*ProductGroupsCreateResponse, error)

func (*ClientWithResponses) ProductGroupsDeletePreviewListWithResponse added in v0.2.0

func (c *ClientWithResponses) ProductGroupsDeletePreviewListWithResponse(ctx context.Context, id int, params *ProductGroupsDeletePreviewListParams, reqEditors ...RequestEditorFn) (*ProductGroupsDeletePreviewListResponse, error)

ProductGroupsDeletePreviewListWithResponse request returning *ProductGroupsDeletePreviewListResponse

func (*ClientWithResponses) ProductGroupsDestroyWithResponse

func (c *ClientWithResponses) ProductGroupsDestroyWithResponse(ctx context.Context, id int, reqEditors ...RequestEditorFn) (*ProductGroupsDestroyResponse, error)

ProductGroupsDestroyWithResponse request returning *ProductGroupsDestroyResponse

func (*ClientWithResponses) ProductGroupsListWithResponse

func (c *ClientWithResponses) ProductGroupsListWithResponse(ctx context.Context, params *ProductGroupsListParams, reqEditors ...RequestEditorFn) (*ProductGroupsListResponse, error)

ProductGroupsListWithResponse request returning *ProductGroupsListResponse

func (*ClientWithResponses) ProductGroupsPartialUpdateWithResponse

func (c *ClientWithResponses) ProductGroupsPartialUpdateWithResponse(ctx context.Context, id int, reqEditors ...RequestEditorFn) (*ProductGroupsPartialUpdateResponse, error)

ProductGroupsPartialUpdateWithResponse request returning *ProductGroupsPartialUpdateResponse

func (*ClientWithResponses) ProductGroupsRetrieveWithResponse

func (c *ClientWithResponses) ProductGroupsRetrieveWithResponse(ctx context.Context, id int, params *ProductGroupsRetrieveParams, reqEditors ...RequestEditorFn) (*ProductGroupsRetrieveResponse, error)

ProductGroupsRetrieveWithResponse request returning *ProductGroupsRetrieveResponse

func (*ClientWithResponses) ProductGroupsUpdateWithBodyWithResponse

func (c *ClientWithResponses) ProductGroupsUpdateWithBodyWithResponse(ctx context.Context, id int, contentType string, body io.Reader, reqEditors ...RequestEditorFn) (*ProductGroupsUpdateResponse, error)

ProductGroupsUpdateWithBodyWithResponse request with arbitrary body returning *ProductGroupsUpdateResponse

func (*ClientWithResponses) ProductGroupsUpdateWithFormdataBodyWithResponse added in v0.2.0

func (c *ClientWithResponses) ProductGroupsUpdateWithFormdataBodyWithResponse(ctx context.Context, id int, body ProductGroupsUpdateFormdataRequestBody, reqEditors ...RequestEditorFn) (*ProductGroupsUpdateResponse, error)

func (*ClientWithResponses) ProductGroupsUpdateWithResponse

func (c *ClientWithResponses) ProductGroupsUpdateWithResponse(ctx context.Context, id int, body ProductGroupsUpdateJSONRequestBody, reqEditors ...RequestEditorFn) (*ProductGroupsUpdateResponse, error)

func (*ClientWithResponses) ProductMembersCreateWithBodyWithResponse

func (c *ClientWithResponses) ProductMembersCreateWithBodyWithResponse(ctx context.Context, contentType string, body io.Reader, reqEditors ...RequestEditorFn) (*ProductMembersCreateResponse, error)

ProductMembersCreateWithBodyWithResponse request with arbitrary body returning *ProductMembersCreateResponse

func (*ClientWithResponses) ProductMembersCreateWithFormdataBodyWithResponse added in v0.2.0

func (c *ClientWithResponses) ProductMembersCreateWithFormdataBodyWithResponse(ctx context.Context, body ProductMembersCreateFormdataRequestBody, reqEditors ...RequestEditorFn) (*ProductMembersCreateResponse, error)

func (*ClientWithResponses) ProductMembersCreateWithResponse

func (c *ClientWithResponses) ProductMembersCreateWithResponse(ctx context.Context, body ProductMembersCreateJSONRequestBody, reqEditors ...RequestEditorFn) (*ProductMembersCreateResponse, error)

func (*ClientWithResponses) ProductMembersDeletePreviewListWithResponse added in v0.2.0

func (c *ClientWithResponses) ProductMembersDeletePreviewListWithResponse(ctx context.Context, id int, params *ProductMembersDeletePreviewListParams, reqEditors ...RequestEditorFn) (*ProductMembersDeletePreviewListResponse, error)

ProductMembersDeletePreviewListWithResponse request returning *ProductMembersDeletePreviewListResponse

func (*ClientWithResponses) ProductMembersDestroyWithResponse

func (c *ClientWithResponses) ProductMembersDestroyWithResponse(ctx context.Context, id int, reqEditors ...RequestEditorFn) (*ProductMembersDestroyResponse, error)

ProductMembersDestroyWithResponse request returning *ProductMembersDestroyResponse

func (*ClientWithResponses) ProductMembersListWithResponse

func (c *ClientWithResponses) ProductMembersListWithResponse(ctx context.Context, params *ProductMembersListParams, reqEditors ...RequestEditorFn) (*ProductMembersListResponse, error)

ProductMembersListWithResponse request returning *ProductMembersListResponse

func (*ClientWithResponses) ProductMembersPartialUpdateWithResponse

func (c *ClientWithResponses) ProductMembersPartialUpdateWithResponse(ctx context.Context, id int, reqEditors ...RequestEditorFn) (*ProductMembersPartialUpdateResponse, error)

ProductMembersPartialUpdateWithResponse request returning *ProductMembersPartialUpdateResponse

func (*ClientWithResponses) ProductMembersRetrieveWithResponse

func (c *ClientWithResponses) ProductMembersRetrieveWithResponse(ctx context.Context, id int, params *ProductMembersRetrieveParams, reqEditors ...RequestEditorFn) (*ProductMembersRetrieveResponse, error)

ProductMembersRetrieveWithResponse request returning *ProductMembersRetrieveResponse

func (*ClientWithResponses) ProductMembersUpdateWithBodyWithResponse

func (c *ClientWithResponses) ProductMembersUpdateWithBodyWithResponse(ctx context.Context, id int, contentType string, body io.Reader, reqEditors ...RequestEditorFn) (*ProductMembersUpdateResponse, error)

ProductMembersUpdateWithBodyWithResponse request with arbitrary body returning *ProductMembersUpdateResponse

func (*ClientWithResponses) ProductMembersUpdateWithFormdataBodyWithResponse added in v0.2.0

func (c *ClientWithResponses) ProductMembersUpdateWithFormdataBodyWithResponse(ctx context.Context, id int, body ProductMembersUpdateFormdataRequestBody, reqEditors ...RequestEditorFn) (*ProductMembersUpdateResponse, error)

func (*ClientWithResponses) ProductMembersUpdateWithResponse

func (c *ClientWithResponses) ProductMembersUpdateWithResponse(ctx context.Context, id int, body ProductMembersUpdateJSONRequestBody, reqEditors ...RequestEditorFn) (*ProductMembersUpdateResponse, error)

func (*ClientWithResponses) ProductTypeGroupsCreateWithBodyWithResponse

func (c *ClientWithResponses) ProductTypeGroupsCreateWithBodyWithResponse(ctx context.Context, contentType string, body io.Reader, reqEditors ...RequestEditorFn) (*ProductTypeGroupsCreateResponse, error)

ProductTypeGroupsCreateWithBodyWithResponse request with arbitrary body returning *ProductTypeGroupsCreateResponse

func (*ClientWithResponses) ProductTypeGroupsCreateWithFormdataBodyWithResponse added in v0.2.0

func (c *ClientWithResponses) ProductTypeGroupsCreateWithFormdataBodyWithResponse(ctx context.Context, body ProductTypeGroupsCreateFormdataRequestBody, reqEditors ...RequestEditorFn) (*ProductTypeGroupsCreateResponse, error)

func (*ClientWithResponses) ProductTypeGroupsCreateWithResponse

func (c *ClientWithResponses) ProductTypeGroupsCreateWithResponse(ctx context.Context, body ProductTypeGroupsCreateJSONRequestBody, reqEditors ...RequestEditorFn) (*ProductTypeGroupsCreateResponse, error)

func (*ClientWithResponses) ProductTypeGroupsDeletePreviewListWithResponse added in v0.2.0

func (c *ClientWithResponses) ProductTypeGroupsDeletePreviewListWithResponse(ctx context.Context, id int, params *ProductTypeGroupsDeletePreviewListParams, reqEditors ...RequestEditorFn) (*ProductTypeGroupsDeletePreviewListResponse, error)

ProductTypeGroupsDeletePreviewListWithResponse request returning *ProductTypeGroupsDeletePreviewListResponse

func (*ClientWithResponses) ProductTypeGroupsDestroyWithResponse

func (c *ClientWithResponses) ProductTypeGroupsDestroyWithResponse(ctx context.Context, id int, reqEditors ...RequestEditorFn) (*ProductTypeGroupsDestroyResponse, error)

ProductTypeGroupsDestroyWithResponse request returning *ProductTypeGroupsDestroyResponse

func (*ClientWithResponses) ProductTypeGroupsListWithResponse

func (c *ClientWithResponses) ProductTypeGroupsListWithResponse(ctx context.Context, params *ProductTypeGroupsListParams, reqEditors ...RequestEditorFn) (*ProductTypeGroupsListResponse, error)

ProductTypeGroupsListWithResponse request returning *ProductTypeGroupsListResponse

func (*ClientWithResponses) ProductTypeGroupsPartialUpdateWithResponse

func (c *ClientWithResponses) ProductTypeGroupsPartialUpdateWithResponse(ctx context.Context, id int, reqEditors ...RequestEditorFn) (*ProductTypeGroupsPartialUpdateResponse, error)

ProductTypeGroupsPartialUpdateWithResponse request returning *ProductTypeGroupsPartialUpdateResponse

func (*ClientWithResponses) ProductTypeGroupsRetrieveWithResponse

func (c *ClientWithResponses) ProductTypeGroupsRetrieveWithResponse(ctx context.Context, id int, params *ProductTypeGroupsRetrieveParams, reqEditors ...RequestEditorFn) (*ProductTypeGroupsRetrieveResponse, error)

ProductTypeGroupsRetrieveWithResponse request returning *ProductTypeGroupsRetrieveResponse

func (*ClientWithResponses) ProductTypeGroupsUpdateWithBodyWithResponse

func (c *ClientWithResponses) ProductTypeGroupsUpdateWithBodyWithResponse(ctx context.Context, id int, contentType string, body io.Reader, reqEditors ...RequestEditorFn) (*ProductTypeGroupsUpdateResponse, error)

ProductTypeGroupsUpdateWithBodyWithResponse request with arbitrary body returning *ProductTypeGroupsUpdateResponse

func (*ClientWithResponses) ProductTypeGroupsUpdateWithFormdataBodyWithResponse added in v0.2.0

func (c *ClientWithResponses) ProductTypeGroupsUpdateWithFormdataBodyWithResponse(ctx context.Context, id int, body ProductTypeGroupsUpdateFormdataRequestBody, reqEditors ...RequestEditorFn) (*ProductTypeGroupsUpdateResponse, error)

func (*ClientWithResponses) ProductTypeGroupsUpdateWithResponse

func (c *ClientWithResponses) ProductTypeGroupsUpdateWithResponse(ctx context.Context, id int, body ProductTypeGroupsUpdateJSONRequestBody, reqEditors ...RequestEditorFn) (*ProductTypeGroupsUpdateResponse, error)

func (*ClientWithResponses) ProductTypeMembersCreateWithBodyWithResponse

func (c *ClientWithResponses) ProductTypeMembersCreateWithBodyWithResponse(ctx context.Context, contentType string, body io.Reader, reqEditors ...RequestEditorFn) (*ProductTypeMembersCreateResponse, error)

ProductTypeMembersCreateWithBodyWithResponse request with arbitrary body returning *ProductTypeMembersCreateResponse

func (*ClientWithResponses) ProductTypeMembersCreateWithFormdataBodyWithResponse added in v0.2.0

func (c *ClientWithResponses) ProductTypeMembersCreateWithFormdataBodyWithResponse(ctx context.Context, body ProductTypeMembersCreateFormdataRequestBody, reqEditors ...RequestEditorFn) (*ProductTypeMembersCreateResponse, error)

func (*ClientWithResponses) ProductTypeMembersCreateWithResponse

func (c *ClientWithResponses) ProductTypeMembersCreateWithResponse(ctx context.Context, body ProductTypeMembersCreateJSONRequestBody, reqEditors ...RequestEditorFn) (*ProductTypeMembersCreateResponse, error)

func (*ClientWithResponses) ProductTypeMembersDeletePreviewListWithResponse added in v0.2.0

func (c *ClientWithResponses) ProductTypeMembersDeletePreviewListWithResponse(ctx context.Context, id int, params *ProductTypeMembersDeletePreviewListParams, reqEditors ...RequestEditorFn) (*ProductTypeMembersDeletePreviewListResponse, error)

ProductTypeMembersDeletePreviewListWithResponse request returning *ProductTypeMembersDeletePreviewListResponse

func (*ClientWithResponses) ProductTypeMembersDestroyWithResponse

func (c *ClientWithResponses) ProductTypeMembersDestroyWithResponse(ctx context.Context, id int, reqEditors ...RequestEditorFn) (*ProductTypeMembersDestroyResponse, error)

ProductTypeMembersDestroyWithResponse request returning *ProductTypeMembersDestroyResponse

func (*ClientWithResponses) ProductTypeMembersListWithResponse

func (c *ClientWithResponses) ProductTypeMembersListWithResponse(ctx context.Context, params *ProductTypeMembersListParams, reqEditors ...RequestEditorFn) (*ProductTypeMembersListResponse, error)

ProductTypeMembersListWithResponse request returning *ProductTypeMembersListResponse

func (*ClientWithResponses) ProductTypeMembersPartialUpdateWithResponse

func (c *ClientWithResponses) ProductTypeMembersPartialUpdateWithResponse(ctx context.Context, id int, reqEditors ...RequestEditorFn) (*ProductTypeMembersPartialUpdateResponse, error)

ProductTypeMembersPartialUpdateWithResponse request returning *ProductTypeMembersPartialUpdateResponse

func (*ClientWithResponses) ProductTypeMembersRetrieveWithResponse

func (c *ClientWithResponses) ProductTypeMembersRetrieveWithResponse(ctx context.Context, id int, params *ProductTypeMembersRetrieveParams, reqEditors ...RequestEditorFn) (*ProductTypeMembersRetrieveResponse, error)

ProductTypeMembersRetrieveWithResponse request returning *ProductTypeMembersRetrieveResponse

func (*ClientWithResponses) ProductTypeMembersUpdateWithBodyWithResponse

func (c *ClientWithResponses) ProductTypeMembersUpdateWithBodyWithResponse(ctx context.Context, id int, contentType string, body io.Reader, reqEditors ...RequestEditorFn) (*ProductTypeMembersUpdateResponse, error)

ProductTypeMembersUpdateWithBodyWithResponse request with arbitrary body returning *ProductTypeMembersUpdateResponse

func (*ClientWithResponses) ProductTypeMembersUpdateWithFormdataBodyWithResponse added in v0.2.0

func (c *ClientWithResponses) ProductTypeMembersUpdateWithFormdataBodyWithResponse(ctx context.Context, id int, body ProductTypeMembersUpdateFormdataRequestBody, reqEditors ...RequestEditorFn) (*ProductTypeMembersUpdateResponse, error)

func (*ClientWithResponses) ProductTypeMembersUpdateWithResponse

func (c *ClientWithResponses) ProductTypeMembersUpdateWithResponse(ctx context.Context, id int, body ProductTypeMembersUpdateJSONRequestBody, reqEditors ...RequestEditorFn) (*ProductTypeMembersUpdateResponse, error)

func (*ClientWithResponses) ProductTypesCreateWithBodyWithResponse

func (c *ClientWithResponses) ProductTypesCreateWithBodyWithResponse(ctx context.Context, contentType string, body io.Reader, reqEditors ...RequestEditorFn) (*ProductTypesCreateResponse, error)

ProductTypesCreateWithBodyWithResponse request with arbitrary body returning *ProductTypesCreateResponse

func (*ClientWithResponses) ProductTypesCreateWithFormdataBodyWithResponse added in v0.2.0

func (c *ClientWithResponses) ProductTypesCreateWithFormdataBodyWithResponse(ctx context.Context, body ProductTypesCreateFormdataRequestBody, reqEditors ...RequestEditorFn) (*ProductTypesCreateResponse, error)

func (*ClientWithResponses) ProductTypesCreateWithResponse

func (c *ClientWithResponses) ProductTypesCreateWithResponse(ctx context.Context, body ProductTypesCreateJSONRequestBody, reqEditors ...RequestEditorFn) (*ProductTypesCreateResponse, error)

func (*ClientWithResponses) ProductTypesDeletePreviewListWithResponse added in v0.2.0

func (c *ClientWithResponses) ProductTypesDeletePreviewListWithResponse(ctx context.Context, id int, params *ProductTypesDeletePreviewListParams, reqEditors ...RequestEditorFn) (*ProductTypesDeletePreviewListResponse, error)

ProductTypesDeletePreviewListWithResponse request returning *ProductTypesDeletePreviewListResponse

func (*ClientWithResponses) ProductTypesDestroyWithResponse

func (c *ClientWithResponses) ProductTypesDestroyWithResponse(ctx context.Context, id int, reqEditors ...RequestEditorFn) (*ProductTypesDestroyResponse, error)

ProductTypesDestroyWithResponse request returning *ProductTypesDestroyResponse

func (*ClientWithResponses) ProductTypesGenerateReportCreateWithBodyWithResponse

func (c *ClientWithResponses) ProductTypesGenerateReportCreateWithBodyWithResponse(ctx context.Context, id int, contentType string, body io.Reader, reqEditors ...RequestEditorFn) (*ProductTypesGenerateReportCreateResponse, error)

ProductTypesGenerateReportCreateWithBodyWithResponse request with arbitrary body returning *ProductTypesGenerateReportCreateResponse

func (*ClientWithResponses) ProductTypesGenerateReportCreateWithFormdataBodyWithResponse added in v0.2.0

func (c *ClientWithResponses) ProductTypesGenerateReportCreateWithFormdataBodyWithResponse(ctx context.Context, id int, body ProductTypesGenerateReportCreateFormdataRequestBody, reqEditors ...RequestEditorFn) (*ProductTypesGenerateReportCreateResponse, error)

func (*ClientWithResponses) ProductTypesGenerateReportCreateWithResponse

func (c *ClientWithResponses) ProductTypesGenerateReportCreateWithResponse(ctx context.Context, id int, body ProductTypesGenerateReportCreateJSONRequestBody, reqEditors ...RequestEditorFn) (*ProductTypesGenerateReportCreateResponse, error)

func (*ClientWithResponses) ProductTypesListWithResponse

func (c *ClientWithResponses) ProductTypesListWithResponse(ctx context.Context, params *ProductTypesListParams, reqEditors ...RequestEditorFn) (*ProductTypesListResponse, error)

ProductTypesListWithResponse request returning *ProductTypesListResponse

func (*ClientWithResponses) ProductTypesPartialUpdateWithBodyWithResponse

func (c *ClientWithResponses) ProductTypesPartialUpdateWithBodyWithResponse(ctx context.Context, id int, contentType string, body io.Reader, reqEditors ...RequestEditorFn) (*ProductTypesPartialUpdateResponse, error)

ProductTypesPartialUpdateWithBodyWithResponse request with arbitrary body returning *ProductTypesPartialUpdateResponse

func (*ClientWithResponses) ProductTypesPartialUpdateWithFormdataBodyWithResponse added in v0.2.0

func (c *ClientWithResponses) ProductTypesPartialUpdateWithFormdataBodyWithResponse(ctx context.Context, id int, body ProductTypesPartialUpdateFormdataRequestBody, reqEditors ...RequestEditorFn) (*ProductTypesPartialUpdateResponse, error)

func (*ClientWithResponses) ProductTypesPartialUpdateWithResponse

func (c *ClientWithResponses) ProductTypesPartialUpdateWithResponse(ctx context.Context, id int, body ProductTypesPartialUpdateJSONRequestBody, reqEditors ...RequestEditorFn) (*ProductTypesPartialUpdateResponse, error)

func (*ClientWithResponses) ProductTypesRetrieveWithResponse

func (c *ClientWithResponses) ProductTypesRetrieveWithResponse(ctx context.Context, id int, params *ProductTypesRetrieveParams, reqEditors ...RequestEditorFn) (*ProductTypesRetrieveResponse, error)

ProductTypesRetrieveWithResponse request returning *ProductTypesRetrieveResponse

func (*ClientWithResponses) ProductTypesUpdateWithBodyWithResponse

func (c *ClientWithResponses) ProductTypesUpdateWithBodyWithResponse(ctx context.Context, id int, contentType string, body io.Reader, reqEditors ...RequestEditorFn) (*ProductTypesUpdateResponse, error)

ProductTypesUpdateWithBodyWithResponse request with arbitrary body returning *ProductTypesUpdateResponse

func (*ClientWithResponses) ProductTypesUpdateWithFormdataBodyWithResponse added in v0.2.0

func (c *ClientWithResponses) ProductTypesUpdateWithFormdataBodyWithResponse(ctx context.Context, id int, body ProductTypesUpdateFormdataRequestBody, reqEditors ...RequestEditorFn) (*ProductTypesUpdateResponse, error)

func (*ClientWithResponses) ProductTypesUpdateWithResponse

func (c *ClientWithResponses) ProductTypesUpdateWithResponse(ctx context.Context, id int, body ProductTypesUpdateJSONRequestBody, reqEditors ...RequestEditorFn) (*ProductTypesUpdateResponse, error)

func (*ClientWithResponses) ProductsCreateWithBodyWithResponse

func (c *ClientWithResponses) ProductsCreateWithBodyWithResponse(ctx context.Context, contentType string, body io.Reader, reqEditors ...RequestEditorFn) (*ProductsCreateResponse, error)

ProductsCreateWithBodyWithResponse request with arbitrary body returning *ProductsCreateResponse

func (*ClientWithResponses) ProductsCreateWithFormdataBodyWithResponse added in v0.2.0

func (c *ClientWithResponses) ProductsCreateWithFormdataBodyWithResponse(ctx context.Context, body ProductsCreateFormdataRequestBody, reqEditors ...RequestEditorFn) (*ProductsCreateResponse, error)

func (*ClientWithResponses) ProductsCreateWithResponse

func (c *ClientWithResponses) ProductsCreateWithResponse(ctx context.Context, body ProductsCreateJSONRequestBody, reqEditors ...RequestEditorFn) (*ProductsCreateResponse, error)

func (*ClientWithResponses) ProductsDeletePreviewListWithResponse added in v0.2.0

func (c *ClientWithResponses) ProductsDeletePreviewListWithResponse(ctx context.Context, id int, params *ProductsDeletePreviewListParams, reqEditors ...RequestEditorFn) (*ProductsDeletePreviewListResponse, error)

ProductsDeletePreviewListWithResponse request returning *ProductsDeletePreviewListResponse

func (*ClientWithResponses) ProductsDestroyWithResponse

func (c *ClientWithResponses) ProductsDestroyWithResponse(ctx context.Context, id int, reqEditors ...RequestEditorFn) (*ProductsDestroyResponse, error)

ProductsDestroyWithResponse request returning *ProductsDestroyResponse

func (*ClientWithResponses) ProductsGenerateReportCreateWithBodyWithResponse

func (c *ClientWithResponses) ProductsGenerateReportCreateWithBodyWithResponse(ctx context.Context, id int, contentType string, body io.Reader, reqEditors ...RequestEditorFn) (*ProductsGenerateReportCreateResponse, error)

ProductsGenerateReportCreateWithBodyWithResponse request with arbitrary body returning *ProductsGenerateReportCreateResponse

func (*ClientWithResponses) ProductsGenerateReportCreateWithFormdataBodyWithResponse added in v0.2.0

func (c *ClientWithResponses) ProductsGenerateReportCreateWithFormdataBodyWithResponse(ctx context.Context, id int, body ProductsGenerateReportCreateFormdataRequestBody, reqEditors ...RequestEditorFn) (*ProductsGenerateReportCreateResponse, error)

func (*ClientWithResponses) ProductsGenerateReportCreateWithResponse

func (c *ClientWithResponses) ProductsGenerateReportCreateWithResponse(ctx context.Context, id int, body ProductsGenerateReportCreateJSONRequestBody, reqEditors ...RequestEditorFn) (*ProductsGenerateReportCreateResponse, error)

func (*ClientWithResponses) ProductsListWithResponse

func (c *ClientWithResponses) ProductsListWithResponse(ctx context.Context, params *ProductsListParams, reqEditors ...RequestEditorFn) (*ProductsListResponse, error)

ProductsListWithResponse request returning *ProductsListResponse

func (*ClientWithResponses) ProductsPartialUpdateWithBodyWithResponse

func (c *ClientWithResponses) ProductsPartialUpdateWithBodyWithResponse(ctx context.Context, id int, contentType string, body io.Reader, reqEditors ...RequestEditorFn) (*ProductsPartialUpdateResponse, error)

ProductsPartialUpdateWithBodyWithResponse request with arbitrary body returning *ProductsPartialUpdateResponse

func (*ClientWithResponses) ProductsPartialUpdateWithFormdataBodyWithResponse added in v0.2.0

func (c *ClientWithResponses) ProductsPartialUpdateWithFormdataBodyWithResponse(ctx context.Context, id int, body ProductsPartialUpdateFormdataRequestBody, reqEditors ...RequestEditorFn) (*ProductsPartialUpdateResponse, error)

func (*ClientWithResponses) ProductsPartialUpdateWithResponse

func (c *ClientWithResponses) ProductsPartialUpdateWithResponse(ctx context.Context, id int, body ProductsPartialUpdateJSONRequestBody, reqEditors ...RequestEditorFn) (*ProductsPartialUpdateResponse, error)

func (*ClientWithResponses) ProductsRetrieveWithResponse

func (c *ClientWithResponses) ProductsRetrieveWithResponse(ctx context.Context, id int, params *ProductsRetrieveParams, reqEditors ...RequestEditorFn) (*ProductsRetrieveResponse, error)

ProductsRetrieveWithResponse request returning *ProductsRetrieveResponse

func (*ClientWithResponses) ProductsUpdateWithBodyWithResponse

func (c *ClientWithResponses) ProductsUpdateWithBodyWithResponse(ctx context.Context, id int, contentType string, body io.Reader, reqEditors ...RequestEditorFn) (*ProductsUpdateResponse, error)

ProductsUpdateWithBodyWithResponse request with arbitrary body returning *ProductsUpdateResponse

func (*ClientWithResponses) ProductsUpdateWithFormdataBodyWithResponse added in v0.2.0

func (c *ClientWithResponses) ProductsUpdateWithFormdataBodyWithResponse(ctx context.Context, id int, body ProductsUpdateFormdataRequestBody, reqEditors ...RequestEditorFn) (*ProductsUpdateResponse, error)

func (*ClientWithResponses) ProductsUpdateWithResponse

func (c *ClientWithResponses) ProductsUpdateWithResponse(ctx context.Context, id int, body ProductsUpdateJSONRequestBody, reqEditors ...RequestEditorFn) (*ProductsUpdateResponse, error)

func (*ClientWithResponses) QuestionnaireAnsweredQuestionnairesListWithResponse added in v0.2.0

func (c *ClientWithResponses) QuestionnaireAnsweredQuestionnairesListWithResponse(ctx context.Context, params *QuestionnaireAnsweredQuestionnairesListParams, reqEditors ...RequestEditorFn) (*QuestionnaireAnsweredQuestionnairesListResponse, error)

QuestionnaireAnsweredQuestionnairesListWithResponse request returning *QuestionnaireAnsweredQuestionnairesListResponse

func (*ClientWithResponses) QuestionnaireAnsweredQuestionnairesRetrieveWithResponse added in v0.2.0

func (c *ClientWithResponses) QuestionnaireAnsweredQuestionnairesRetrieveWithResponse(ctx context.Context, id int, reqEditors ...RequestEditorFn) (*QuestionnaireAnsweredQuestionnairesRetrieveResponse, error)

QuestionnaireAnsweredQuestionnairesRetrieveWithResponse request returning *QuestionnaireAnsweredQuestionnairesRetrieveResponse

func (*ClientWithResponses) QuestionnaireAnswersListWithResponse added in v0.2.0

func (c *ClientWithResponses) QuestionnaireAnswersListWithResponse(ctx context.Context, params *QuestionnaireAnswersListParams, reqEditors ...RequestEditorFn) (*QuestionnaireAnswersListResponse, error)

QuestionnaireAnswersListWithResponse request returning *QuestionnaireAnswersListResponse

func (*ClientWithResponses) QuestionnaireAnswersRetrieveWithResponse added in v0.2.0

func (c *ClientWithResponses) QuestionnaireAnswersRetrieveWithResponse(ctx context.Context, id int, reqEditors ...RequestEditorFn) (*QuestionnaireAnswersRetrieveResponse, error)

QuestionnaireAnswersRetrieveWithResponse request returning *QuestionnaireAnswersRetrieveResponse

func (*ClientWithResponses) QuestionnaireEngagementQuestionnairesListWithResponse added in v0.2.0

func (c *ClientWithResponses) QuestionnaireEngagementQuestionnairesListWithResponse(ctx context.Context, params *QuestionnaireEngagementQuestionnairesListParams, reqEditors ...RequestEditorFn) (*QuestionnaireEngagementQuestionnairesListResponse, error)

QuestionnaireEngagementQuestionnairesListWithResponse request returning *QuestionnaireEngagementQuestionnairesListResponse

func (*ClientWithResponses) QuestionnaireEngagementQuestionnairesRetrieveWithResponse added in v0.2.0

func (c *ClientWithResponses) QuestionnaireEngagementQuestionnairesRetrieveWithResponse(ctx context.Context, id int, reqEditors ...RequestEditorFn) (*QuestionnaireEngagementQuestionnairesRetrieveResponse, error)

QuestionnaireEngagementQuestionnairesRetrieveWithResponse request returning *QuestionnaireEngagementQuestionnairesRetrieveResponse

func (*ClientWithResponses) QuestionnaireGeneralQuestionnairesListWithResponse added in v0.2.0

func (c *ClientWithResponses) QuestionnaireGeneralQuestionnairesListWithResponse(ctx context.Context, params *QuestionnaireGeneralQuestionnairesListParams, reqEditors ...RequestEditorFn) (*QuestionnaireGeneralQuestionnairesListResponse, error)

QuestionnaireGeneralQuestionnairesListWithResponse request returning *QuestionnaireGeneralQuestionnairesListResponse

func (*ClientWithResponses) QuestionnaireGeneralQuestionnairesRetrieveWithResponse added in v0.2.0

func (c *ClientWithResponses) QuestionnaireGeneralQuestionnairesRetrieveWithResponse(ctx context.Context, id int, reqEditors ...RequestEditorFn) (*QuestionnaireGeneralQuestionnairesRetrieveResponse, error)

QuestionnaireGeneralQuestionnairesRetrieveWithResponse request returning *QuestionnaireGeneralQuestionnairesRetrieveResponse

func (*ClientWithResponses) QuestionnaireQuestionsListWithResponse added in v0.2.0

func (c *ClientWithResponses) QuestionnaireQuestionsListWithResponse(ctx context.Context, params *QuestionnaireQuestionsListParams, reqEditors ...RequestEditorFn) (*QuestionnaireQuestionsListResponse, error)

QuestionnaireQuestionsListWithResponse request returning *QuestionnaireQuestionsListResponse

func (*ClientWithResponses) QuestionnaireQuestionsRetrieveWithResponse added in v0.2.0

func (c *ClientWithResponses) QuestionnaireQuestionsRetrieveWithResponse(ctx context.Context, id int, reqEditors ...RequestEditorFn) (*QuestionnaireQuestionsRetrieveResponse, error)

QuestionnaireQuestionsRetrieveWithResponse request returning *QuestionnaireQuestionsRetrieveResponse

func (*ClientWithResponses) RegulationsCreateWithBodyWithResponse

func (c *ClientWithResponses) RegulationsCreateWithBodyWithResponse(ctx context.Context, contentType string, body io.Reader, reqEditors ...RequestEditorFn) (*RegulationsCreateResponse, error)

RegulationsCreateWithBodyWithResponse request with arbitrary body returning *RegulationsCreateResponse

func (*ClientWithResponses) RegulationsCreateWithFormdataBodyWithResponse added in v0.2.0

func (c *ClientWithResponses) RegulationsCreateWithFormdataBodyWithResponse(ctx context.Context, body RegulationsCreateFormdataRequestBody, reqEditors ...RequestEditorFn) (*RegulationsCreateResponse, error)

func (*ClientWithResponses) RegulationsCreateWithResponse

func (c *ClientWithResponses) RegulationsCreateWithResponse(ctx context.Context, body RegulationsCreateJSONRequestBody, reqEditors ...RequestEditorFn) (*RegulationsCreateResponse, error)

func (*ClientWithResponses) RegulationsDeletePreviewListWithResponse added in v0.2.0

func (c *ClientWithResponses) RegulationsDeletePreviewListWithResponse(ctx context.Context, id int, params *RegulationsDeletePreviewListParams, reqEditors ...RequestEditorFn) (*RegulationsDeletePreviewListResponse, error)

RegulationsDeletePreviewListWithResponse request returning *RegulationsDeletePreviewListResponse

func (*ClientWithResponses) RegulationsDestroyWithResponse

func (c *ClientWithResponses) RegulationsDestroyWithResponse(ctx context.Context, id int, reqEditors ...RequestEditorFn) (*RegulationsDestroyResponse, error)

RegulationsDestroyWithResponse request returning *RegulationsDestroyResponse

func (*ClientWithResponses) RegulationsListWithResponse

func (c *ClientWithResponses) RegulationsListWithResponse(ctx context.Context, params *RegulationsListParams, reqEditors ...RequestEditorFn) (*RegulationsListResponse, error)

RegulationsListWithResponse request returning *RegulationsListResponse

func (*ClientWithResponses) RegulationsPartialUpdateWithBodyWithResponse

func (c *ClientWithResponses) RegulationsPartialUpdateWithBodyWithResponse(ctx context.Context, id int, contentType string, body io.Reader, reqEditors ...RequestEditorFn) (*RegulationsPartialUpdateResponse, error)

RegulationsPartialUpdateWithBodyWithResponse request with arbitrary body returning *RegulationsPartialUpdateResponse

func (*ClientWithResponses) RegulationsPartialUpdateWithFormdataBodyWithResponse added in v0.2.0

func (c *ClientWithResponses) RegulationsPartialUpdateWithFormdataBodyWithResponse(ctx context.Context, id int, body RegulationsPartialUpdateFormdataRequestBody, reqEditors ...RequestEditorFn) (*RegulationsPartialUpdateResponse, error)

func (*ClientWithResponses) RegulationsPartialUpdateWithResponse

func (c *ClientWithResponses) RegulationsPartialUpdateWithResponse(ctx context.Context, id int, body RegulationsPartialUpdateJSONRequestBody, reqEditors ...RequestEditorFn) (*RegulationsPartialUpdateResponse, error)

func (*ClientWithResponses) RegulationsRetrieveWithResponse

func (c *ClientWithResponses) RegulationsRetrieveWithResponse(ctx context.Context, id int, reqEditors ...RequestEditorFn) (*RegulationsRetrieveResponse, error)

RegulationsRetrieveWithResponse request returning *RegulationsRetrieveResponse

func (*ClientWithResponses) RegulationsUpdateWithBodyWithResponse

func (c *ClientWithResponses) RegulationsUpdateWithBodyWithResponse(ctx context.Context, id int, contentType string, body io.Reader, reqEditors ...RequestEditorFn) (*RegulationsUpdateResponse, error)

RegulationsUpdateWithBodyWithResponse request with arbitrary body returning *RegulationsUpdateResponse

func (*ClientWithResponses) RegulationsUpdateWithFormdataBodyWithResponse added in v0.2.0

func (c *ClientWithResponses) RegulationsUpdateWithFormdataBodyWithResponse(ctx context.Context, id int, body RegulationsUpdateFormdataRequestBody, reqEditors ...RequestEditorFn) (*RegulationsUpdateResponse, error)

func (*ClientWithResponses) RegulationsUpdateWithResponse

func (c *ClientWithResponses) RegulationsUpdateWithResponse(ctx context.Context, id int, body RegulationsUpdateJSONRequestBody, reqEditors ...RequestEditorFn) (*RegulationsUpdateResponse, error)

func (*ClientWithResponses) ReimportScanCreateWithBodyWithResponse

func (c *ClientWithResponses) ReimportScanCreateWithBodyWithResponse(ctx context.Context, contentType string, body io.Reader, reqEditors ...RequestEditorFn) (*ReimportScanCreateResponse, error)

ReimportScanCreateWithBodyWithResponse request with arbitrary body returning *ReimportScanCreateResponse

func (*ClientWithResponses) RiskAcceptanceDeletePreviewListWithResponse added in v0.2.0

func (c *ClientWithResponses) RiskAcceptanceDeletePreviewListWithResponse(ctx context.Context, id int, params *RiskAcceptanceDeletePreviewListParams, reqEditors ...RequestEditorFn) (*RiskAcceptanceDeletePreviewListResponse, error)

RiskAcceptanceDeletePreviewListWithResponse request returning *RiskAcceptanceDeletePreviewListResponse

func (*ClientWithResponses) RiskAcceptanceDestroyWithResponse added in v0.2.0

func (c *ClientWithResponses) RiskAcceptanceDestroyWithResponse(ctx context.Context, id int, reqEditors ...RequestEditorFn) (*RiskAcceptanceDestroyResponse, error)

RiskAcceptanceDestroyWithResponse request returning *RiskAcceptanceDestroyResponse

func (*ClientWithResponses) RiskAcceptanceDownloadProofRetrieveWithResponse added in v0.2.0

func (c *ClientWithResponses) RiskAcceptanceDownloadProofRetrieveWithResponse(ctx context.Context, id int, reqEditors ...RequestEditorFn) (*RiskAcceptanceDownloadProofRetrieveResponse, error)

RiskAcceptanceDownloadProofRetrieveWithResponse request returning *RiskAcceptanceDownloadProofRetrieveResponse

func (*ClientWithResponses) RiskAcceptanceListWithResponse added in v0.2.0

func (c *ClientWithResponses) RiskAcceptanceListWithResponse(ctx context.Context, params *RiskAcceptanceListParams, reqEditors ...RequestEditorFn) (*RiskAcceptanceListResponse, error)

RiskAcceptanceListWithResponse request returning *RiskAcceptanceListResponse

func (*ClientWithResponses) RiskAcceptanceRetrieveWithResponse added in v0.2.0

func (c *ClientWithResponses) RiskAcceptanceRetrieveWithResponse(ctx context.Context, id int, reqEditors ...RequestEditorFn) (*RiskAcceptanceRetrieveResponse, error)

RiskAcceptanceRetrieveWithResponse request returning *RiskAcceptanceRetrieveResponse

func (*ClientWithResponses) RolesListWithResponse

func (c *ClientWithResponses) RolesListWithResponse(ctx context.Context, params *RolesListParams, reqEditors ...RequestEditorFn) (*RolesListResponse, error)

RolesListWithResponse request returning *RolesListResponse

func (*ClientWithResponses) RolesRetrieveWithResponse

func (c *ClientWithResponses) RolesRetrieveWithResponse(ctx context.Context, id int, reqEditors ...RequestEditorFn) (*RolesRetrieveResponse, error)

RolesRetrieveWithResponse request returning *RolesRetrieveResponse

func (*ClientWithResponses) SlaConfigurationsCreateWithBodyWithResponse added in v0.2.0

func (c *ClientWithResponses) SlaConfigurationsCreateWithBodyWithResponse(ctx context.Context, contentType string, body io.Reader, reqEditors ...RequestEditorFn) (*SlaConfigurationsCreateResponse, error)

SlaConfigurationsCreateWithBodyWithResponse request with arbitrary body returning *SlaConfigurationsCreateResponse

func (*ClientWithResponses) SlaConfigurationsCreateWithFormdataBodyWithResponse added in v0.2.0

func (c *ClientWithResponses) SlaConfigurationsCreateWithFormdataBodyWithResponse(ctx context.Context, body SlaConfigurationsCreateFormdataRequestBody, reqEditors ...RequestEditorFn) (*SlaConfigurationsCreateResponse, error)

func (*ClientWithResponses) SlaConfigurationsCreateWithResponse added in v0.2.0

func (c *ClientWithResponses) SlaConfigurationsCreateWithResponse(ctx context.Context, body SlaConfigurationsCreateJSONRequestBody, reqEditors ...RequestEditorFn) (*SlaConfigurationsCreateResponse, error)

func (*ClientWithResponses) SlaConfigurationsDestroyWithResponse added in v0.2.0

func (c *ClientWithResponses) SlaConfigurationsDestroyWithResponse(ctx context.Context, id int, reqEditors ...RequestEditorFn) (*SlaConfigurationsDestroyResponse, error)

SlaConfigurationsDestroyWithResponse request returning *SlaConfigurationsDestroyResponse

func (*ClientWithResponses) SlaConfigurationsListWithResponse added in v0.2.0

func (c *ClientWithResponses) SlaConfigurationsListWithResponse(ctx context.Context, params *SlaConfigurationsListParams, reqEditors ...RequestEditorFn) (*SlaConfigurationsListResponse, error)

SlaConfigurationsListWithResponse request returning *SlaConfigurationsListResponse

func (*ClientWithResponses) SlaConfigurationsPartialUpdateWithBodyWithResponse added in v0.2.0

func (c *ClientWithResponses) SlaConfigurationsPartialUpdateWithBodyWithResponse(ctx context.Context, id int, contentType string, body io.Reader, reqEditors ...RequestEditorFn) (*SlaConfigurationsPartialUpdateResponse, error)

SlaConfigurationsPartialUpdateWithBodyWithResponse request with arbitrary body returning *SlaConfigurationsPartialUpdateResponse

func (*ClientWithResponses) SlaConfigurationsPartialUpdateWithFormdataBodyWithResponse added in v0.2.0

func (c *ClientWithResponses) SlaConfigurationsPartialUpdateWithFormdataBodyWithResponse(ctx context.Context, id int, body SlaConfigurationsPartialUpdateFormdataRequestBody, reqEditors ...RequestEditorFn) (*SlaConfigurationsPartialUpdateResponse, error)

func (*ClientWithResponses) SlaConfigurationsPartialUpdateWithResponse added in v0.2.0

func (c *ClientWithResponses) SlaConfigurationsPartialUpdateWithResponse(ctx context.Context, id int, body SlaConfigurationsPartialUpdateJSONRequestBody, reqEditors ...RequestEditorFn) (*SlaConfigurationsPartialUpdateResponse, error)

func (*ClientWithResponses) SlaConfigurationsRetrieveWithResponse added in v0.2.0

func (c *ClientWithResponses) SlaConfigurationsRetrieveWithResponse(ctx context.Context, id int, reqEditors ...RequestEditorFn) (*SlaConfigurationsRetrieveResponse, error)

SlaConfigurationsRetrieveWithResponse request returning *SlaConfigurationsRetrieveResponse

func (*ClientWithResponses) SlaConfigurationsUpdateWithBodyWithResponse added in v0.2.0

func (c *ClientWithResponses) SlaConfigurationsUpdateWithBodyWithResponse(ctx context.Context, id int, contentType string, body io.Reader, reqEditors ...RequestEditorFn) (*SlaConfigurationsUpdateResponse, error)

SlaConfigurationsUpdateWithBodyWithResponse request with arbitrary body returning *SlaConfigurationsUpdateResponse

func (*ClientWithResponses) SlaConfigurationsUpdateWithFormdataBodyWithResponse added in v0.2.0

func (c *ClientWithResponses) SlaConfigurationsUpdateWithFormdataBodyWithResponse(ctx context.Context, id int, body SlaConfigurationsUpdateFormdataRequestBody, reqEditors ...RequestEditorFn) (*SlaConfigurationsUpdateResponse, error)

func (*ClientWithResponses) SlaConfigurationsUpdateWithResponse added in v0.2.0

func (c *ClientWithResponses) SlaConfigurationsUpdateWithResponse(ctx context.Context, id int, body SlaConfigurationsUpdateJSONRequestBody, reqEditors ...RequestEditorFn) (*SlaConfigurationsUpdateResponse, error)

func (*ClientWithResponses) SonarqubeIssuesCreateWithBodyWithResponse

func (c *ClientWithResponses) SonarqubeIssuesCreateWithBodyWithResponse(ctx context.Context, contentType string, body io.Reader, reqEditors ...RequestEditorFn) (*SonarqubeIssuesCreateResponse, error)

SonarqubeIssuesCreateWithBodyWithResponse request with arbitrary body returning *SonarqubeIssuesCreateResponse

func (*ClientWithResponses) SonarqubeIssuesCreateWithFormdataBodyWithResponse added in v0.2.0

func (c *ClientWithResponses) SonarqubeIssuesCreateWithFormdataBodyWithResponse(ctx context.Context, body SonarqubeIssuesCreateFormdataRequestBody, reqEditors ...RequestEditorFn) (*SonarqubeIssuesCreateResponse, error)

func (*ClientWithResponses) SonarqubeIssuesCreateWithResponse

func (c *ClientWithResponses) SonarqubeIssuesCreateWithResponse(ctx context.Context, body SonarqubeIssuesCreateJSONRequestBody, reqEditors ...RequestEditorFn) (*SonarqubeIssuesCreateResponse, error)

func (*ClientWithResponses) SonarqubeIssuesDeletePreviewListWithResponse added in v0.2.0

func (c *ClientWithResponses) SonarqubeIssuesDeletePreviewListWithResponse(ctx context.Context, id int, params *SonarqubeIssuesDeletePreviewListParams, reqEditors ...RequestEditorFn) (*SonarqubeIssuesDeletePreviewListResponse, error)

SonarqubeIssuesDeletePreviewListWithResponse request returning *SonarqubeIssuesDeletePreviewListResponse

func (*ClientWithResponses) SonarqubeIssuesDestroyWithResponse

func (c *ClientWithResponses) SonarqubeIssuesDestroyWithResponse(ctx context.Context, id int, reqEditors ...RequestEditorFn) (*SonarqubeIssuesDestroyResponse, error)

SonarqubeIssuesDestroyWithResponse request returning *SonarqubeIssuesDestroyResponse

func (*ClientWithResponses) SonarqubeIssuesListWithResponse

func (c *ClientWithResponses) SonarqubeIssuesListWithResponse(ctx context.Context, params *SonarqubeIssuesListParams, reqEditors ...RequestEditorFn) (*SonarqubeIssuesListResponse, error)

SonarqubeIssuesListWithResponse request returning *SonarqubeIssuesListResponse

func (*ClientWithResponses) SonarqubeIssuesPartialUpdateWithBodyWithResponse

func (c *ClientWithResponses) SonarqubeIssuesPartialUpdateWithBodyWithResponse(ctx context.Context, id int, contentType string, body io.Reader, reqEditors ...RequestEditorFn) (*SonarqubeIssuesPartialUpdateResponse, error)

SonarqubeIssuesPartialUpdateWithBodyWithResponse request with arbitrary body returning *SonarqubeIssuesPartialUpdateResponse

func (*ClientWithResponses) SonarqubeIssuesPartialUpdateWithFormdataBodyWithResponse added in v0.2.0

func (c *ClientWithResponses) SonarqubeIssuesPartialUpdateWithFormdataBodyWithResponse(ctx context.Context, id int, body SonarqubeIssuesPartialUpdateFormdataRequestBody, reqEditors ...RequestEditorFn) (*SonarqubeIssuesPartialUpdateResponse, error)

func (*ClientWithResponses) SonarqubeIssuesPartialUpdateWithResponse

func (c *ClientWithResponses) SonarqubeIssuesPartialUpdateWithResponse(ctx context.Context, id int, body SonarqubeIssuesPartialUpdateJSONRequestBody, reqEditors ...RequestEditorFn) (*SonarqubeIssuesPartialUpdateResponse, error)

func (*ClientWithResponses) SonarqubeIssuesRetrieveWithResponse

func (c *ClientWithResponses) SonarqubeIssuesRetrieveWithResponse(ctx context.Context, id int, reqEditors ...RequestEditorFn) (*SonarqubeIssuesRetrieveResponse, error)

SonarqubeIssuesRetrieveWithResponse request returning *SonarqubeIssuesRetrieveResponse

func (*ClientWithResponses) SonarqubeIssuesUpdateWithBodyWithResponse

func (c *ClientWithResponses) SonarqubeIssuesUpdateWithBodyWithResponse(ctx context.Context, id int, contentType string, body io.Reader, reqEditors ...RequestEditorFn) (*SonarqubeIssuesUpdateResponse, error)

SonarqubeIssuesUpdateWithBodyWithResponse request with arbitrary body returning *SonarqubeIssuesUpdateResponse

func (*ClientWithResponses) SonarqubeIssuesUpdateWithFormdataBodyWithResponse added in v0.2.0

func (c *ClientWithResponses) SonarqubeIssuesUpdateWithFormdataBodyWithResponse(ctx context.Context, id int, body SonarqubeIssuesUpdateFormdataRequestBody, reqEditors ...RequestEditorFn) (*SonarqubeIssuesUpdateResponse, error)

func (*ClientWithResponses) SonarqubeIssuesUpdateWithResponse

func (c *ClientWithResponses) SonarqubeIssuesUpdateWithResponse(ctx context.Context, id int, body SonarqubeIssuesUpdateJSONRequestBody, reqEditors ...RequestEditorFn) (*SonarqubeIssuesUpdateResponse, error)

func (*ClientWithResponses) SonarqubeTransitionsCreateWithBodyWithResponse

func (c *ClientWithResponses) SonarqubeTransitionsCreateWithBodyWithResponse(ctx context.Context, contentType string, body io.Reader, reqEditors ...RequestEditorFn) (*SonarqubeTransitionsCreateResponse, error)

SonarqubeTransitionsCreateWithBodyWithResponse request with arbitrary body returning *SonarqubeTransitionsCreateResponse

func (*ClientWithResponses) SonarqubeTransitionsCreateWithFormdataBodyWithResponse added in v0.2.0

func (c *ClientWithResponses) SonarqubeTransitionsCreateWithFormdataBodyWithResponse(ctx context.Context, body SonarqubeTransitionsCreateFormdataRequestBody, reqEditors ...RequestEditorFn) (*SonarqubeTransitionsCreateResponse, error)

func (*ClientWithResponses) SonarqubeTransitionsCreateWithResponse

func (c *ClientWithResponses) SonarqubeTransitionsCreateWithResponse(ctx context.Context, body SonarqubeTransitionsCreateJSONRequestBody, reqEditors ...RequestEditorFn) (*SonarqubeTransitionsCreateResponse, error)

func (*ClientWithResponses) SonarqubeTransitionsDeletePreviewListWithResponse added in v0.2.0

func (c *ClientWithResponses) SonarqubeTransitionsDeletePreviewListWithResponse(ctx context.Context, id int, params *SonarqubeTransitionsDeletePreviewListParams, reqEditors ...RequestEditorFn) (*SonarqubeTransitionsDeletePreviewListResponse, error)

SonarqubeTransitionsDeletePreviewListWithResponse request returning *SonarqubeTransitionsDeletePreviewListResponse

func (*ClientWithResponses) SonarqubeTransitionsDestroyWithResponse

func (c *ClientWithResponses) SonarqubeTransitionsDestroyWithResponse(ctx context.Context, id int, reqEditors ...RequestEditorFn) (*SonarqubeTransitionsDestroyResponse, error)

SonarqubeTransitionsDestroyWithResponse request returning *SonarqubeTransitionsDestroyResponse

func (*ClientWithResponses) SonarqubeTransitionsListWithResponse

func (c *ClientWithResponses) SonarqubeTransitionsListWithResponse(ctx context.Context, params *SonarqubeTransitionsListParams, reqEditors ...RequestEditorFn) (*SonarqubeTransitionsListResponse, error)

SonarqubeTransitionsListWithResponse request returning *SonarqubeTransitionsListResponse

func (*ClientWithResponses) SonarqubeTransitionsPartialUpdateWithBodyWithResponse

func (c *ClientWithResponses) SonarqubeTransitionsPartialUpdateWithBodyWithResponse(ctx context.Context, id int, contentType string, body io.Reader, reqEditors ...RequestEditorFn) (*SonarqubeTransitionsPartialUpdateResponse, error)

SonarqubeTransitionsPartialUpdateWithBodyWithResponse request with arbitrary body returning *SonarqubeTransitionsPartialUpdateResponse

func (*ClientWithResponses) SonarqubeTransitionsPartialUpdateWithFormdataBodyWithResponse added in v0.2.0

func (c *ClientWithResponses) SonarqubeTransitionsPartialUpdateWithFormdataBodyWithResponse(ctx context.Context, id int, body SonarqubeTransitionsPartialUpdateFormdataRequestBody, reqEditors ...RequestEditorFn) (*SonarqubeTransitionsPartialUpdateResponse, error)

func (*ClientWithResponses) SonarqubeTransitionsPartialUpdateWithResponse

func (c *ClientWithResponses) SonarqubeTransitionsPartialUpdateWithResponse(ctx context.Context, id int, body SonarqubeTransitionsPartialUpdateJSONRequestBody, reqEditors ...RequestEditorFn) (*SonarqubeTransitionsPartialUpdateResponse, error)

func (*ClientWithResponses) SonarqubeTransitionsRetrieveWithResponse

func (c *ClientWithResponses) SonarqubeTransitionsRetrieveWithResponse(ctx context.Context, id int, reqEditors ...RequestEditorFn) (*SonarqubeTransitionsRetrieveResponse, error)

SonarqubeTransitionsRetrieveWithResponse request returning *SonarqubeTransitionsRetrieveResponse

func (*ClientWithResponses) SonarqubeTransitionsUpdateWithBodyWithResponse

func (c *ClientWithResponses) SonarqubeTransitionsUpdateWithBodyWithResponse(ctx context.Context, id int, contentType string, body io.Reader, reqEditors ...RequestEditorFn) (*SonarqubeTransitionsUpdateResponse, error)

SonarqubeTransitionsUpdateWithBodyWithResponse request with arbitrary body returning *SonarqubeTransitionsUpdateResponse

func (*ClientWithResponses) SonarqubeTransitionsUpdateWithFormdataBodyWithResponse added in v0.2.0

func (c *ClientWithResponses) SonarqubeTransitionsUpdateWithFormdataBodyWithResponse(ctx context.Context, id int, body SonarqubeTransitionsUpdateFormdataRequestBody, reqEditors ...RequestEditorFn) (*SonarqubeTransitionsUpdateResponse, error)

func (*ClientWithResponses) SonarqubeTransitionsUpdateWithResponse

func (c *ClientWithResponses) SonarqubeTransitionsUpdateWithResponse(ctx context.Context, id int, body SonarqubeTransitionsUpdateJSONRequestBody, reqEditors ...RequestEditorFn) (*SonarqubeTransitionsUpdateResponse, error)

func (*ClientWithResponses) StubFindingsCreateWithBodyWithResponse

func (c *ClientWithResponses) StubFindingsCreateWithBodyWithResponse(ctx context.Context, contentType string, body io.Reader, reqEditors ...RequestEditorFn) (*StubFindingsCreateResponse, error)

StubFindingsCreateWithBodyWithResponse request with arbitrary body returning *StubFindingsCreateResponse

func (*ClientWithResponses) StubFindingsCreateWithFormdataBodyWithResponse added in v0.2.0

func (c *ClientWithResponses) StubFindingsCreateWithFormdataBodyWithResponse(ctx context.Context, body StubFindingsCreateFormdataRequestBody, reqEditors ...RequestEditorFn) (*StubFindingsCreateResponse, error)

func (*ClientWithResponses) StubFindingsCreateWithResponse

func (c *ClientWithResponses) StubFindingsCreateWithResponse(ctx context.Context, body StubFindingsCreateJSONRequestBody, reqEditors ...RequestEditorFn) (*StubFindingsCreateResponse, error)

func (*ClientWithResponses) StubFindingsDeletePreviewListWithResponse added in v0.2.0

func (c *ClientWithResponses) StubFindingsDeletePreviewListWithResponse(ctx context.Context, id int, params *StubFindingsDeletePreviewListParams, reqEditors ...RequestEditorFn) (*StubFindingsDeletePreviewListResponse, error)

StubFindingsDeletePreviewListWithResponse request returning *StubFindingsDeletePreviewListResponse

func (*ClientWithResponses) StubFindingsDestroyWithResponse

func (c *ClientWithResponses) StubFindingsDestroyWithResponse(ctx context.Context, id int, reqEditors ...RequestEditorFn) (*StubFindingsDestroyResponse, error)

StubFindingsDestroyWithResponse request returning *StubFindingsDestroyResponse

func (*ClientWithResponses) StubFindingsListWithResponse

func (c *ClientWithResponses) StubFindingsListWithResponse(ctx context.Context, params *StubFindingsListParams, reqEditors ...RequestEditorFn) (*StubFindingsListResponse, error)

StubFindingsListWithResponse request returning *StubFindingsListResponse

func (*ClientWithResponses) StubFindingsPartialUpdateWithBodyWithResponse

func (c *ClientWithResponses) StubFindingsPartialUpdateWithBodyWithResponse(ctx context.Context, id int, contentType string, body io.Reader, reqEditors ...RequestEditorFn) (*StubFindingsPartialUpdateResponse, error)

StubFindingsPartialUpdateWithBodyWithResponse request with arbitrary body returning *StubFindingsPartialUpdateResponse

func (*ClientWithResponses) StubFindingsPartialUpdateWithFormdataBodyWithResponse added in v0.2.0

func (c *ClientWithResponses) StubFindingsPartialUpdateWithFormdataBodyWithResponse(ctx context.Context, id int, body StubFindingsPartialUpdateFormdataRequestBody, reqEditors ...RequestEditorFn) (*StubFindingsPartialUpdateResponse, error)

func (*ClientWithResponses) StubFindingsPartialUpdateWithResponse

func (c *ClientWithResponses) StubFindingsPartialUpdateWithResponse(ctx context.Context, id int, body StubFindingsPartialUpdateJSONRequestBody, reqEditors ...RequestEditorFn) (*StubFindingsPartialUpdateResponse, error)

func (*ClientWithResponses) StubFindingsRetrieveWithResponse

func (c *ClientWithResponses) StubFindingsRetrieveWithResponse(ctx context.Context, id int, reqEditors ...RequestEditorFn) (*StubFindingsRetrieveResponse, error)

StubFindingsRetrieveWithResponse request returning *StubFindingsRetrieveResponse

func (*ClientWithResponses) StubFindingsUpdateWithBodyWithResponse

func (c *ClientWithResponses) StubFindingsUpdateWithBodyWithResponse(ctx context.Context, id int, contentType string, body io.Reader, reqEditors ...RequestEditorFn) (*StubFindingsUpdateResponse, error)

StubFindingsUpdateWithBodyWithResponse request with arbitrary body returning *StubFindingsUpdateResponse

func (*ClientWithResponses) StubFindingsUpdateWithFormdataBodyWithResponse added in v0.2.0

func (c *ClientWithResponses) StubFindingsUpdateWithFormdataBodyWithResponse(ctx context.Context, id int, body StubFindingsUpdateFormdataRequestBody, reqEditors ...RequestEditorFn) (*StubFindingsUpdateResponse, error)

func (*ClientWithResponses) StubFindingsUpdateWithResponse

func (c *ClientWithResponses) StubFindingsUpdateWithResponse(ctx context.Context, id int, body StubFindingsUpdateJSONRequestBody, reqEditors ...RequestEditorFn) (*StubFindingsUpdateResponse, error)

func (*ClientWithResponses) SystemSettingsListWithResponse

func (c *ClientWithResponses) SystemSettingsListWithResponse(ctx context.Context, params *SystemSettingsListParams, reqEditors ...RequestEditorFn) (*SystemSettingsListResponse, error)

SystemSettingsListWithResponse request returning *SystemSettingsListResponse

func (*ClientWithResponses) SystemSettingsPartialUpdateWithBodyWithResponse

func (c *ClientWithResponses) SystemSettingsPartialUpdateWithBodyWithResponse(ctx context.Context, id int, contentType string, body io.Reader, reqEditors ...RequestEditorFn) (*SystemSettingsPartialUpdateResponse, error)

SystemSettingsPartialUpdateWithBodyWithResponse request with arbitrary body returning *SystemSettingsPartialUpdateResponse

func (*ClientWithResponses) SystemSettingsPartialUpdateWithFormdataBodyWithResponse added in v0.2.0

func (c *ClientWithResponses) SystemSettingsPartialUpdateWithFormdataBodyWithResponse(ctx context.Context, id int, body SystemSettingsPartialUpdateFormdataRequestBody, reqEditors ...RequestEditorFn) (*SystemSettingsPartialUpdateResponse, error)

func (*ClientWithResponses) SystemSettingsPartialUpdateWithResponse

func (c *ClientWithResponses) SystemSettingsPartialUpdateWithResponse(ctx context.Context, id int, body SystemSettingsPartialUpdateJSONRequestBody, reqEditors ...RequestEditorFn) (*SystemSettingsPartialUpdateResponse, error)

func (*ClientWithResponses) SystemSettingsUpdateWithBodyWithResponse

func (c *ClientWithResponses) SystemSettingsUpdateWithBodyWithResponse(ctx context.Context, id int, contentType string, body io.Reader, reqEditors ...RequestEditorFn) (*SystemSettingsUpdateResponse, error)

SystemSettingsUpdateWithBodyWithResponse request with arbitrary body returning *SystemSettingsUpdateResponse

func (*ClientWithResponses) SystemSettingsUpdateWithFormdataBodyWithResponse added in v0.2.0

func (c *ClientWithResponses) SystemSettingsUpdateWithFormdataBodyWithResponse(ctx context.Context, id int, body SystemSettingsUpdateFormdataRequestBody, reqEditors ...RequestEditorFn) (*SystemSettingsUpdateResponse, error)

func (*ClientWithResponses) SystemSettingsUpdateWithResponse

func (c *ClientWithResponses) SystemSettingsUpdateWithResponse(ctx context.Context, id int, body SystemSettingsUpdateJSONRequestBody, reqEditors ...RequestEditorFn) (*SystemSettingsUpdateResponse, error)

func (*ClientWithResponses) TechnologiesCreateWithBodyWithResponse

func (c *ClientWithResponses) TechnologiesCreateWithBodyWithResponse(ctx context.Context, contentType string, body io.Reader, reqEditors ...RequestEditorFn) (*TechnologiesCreateResponse, error)

TechnologiesCreateWithBodyWithResponse request with arbitrary body returning *TechnologiesCreateResponse

func (*ClientWithResponses) TechnologiesCreateWithFormdataBodyWithResponse added in v0.2.0

func (c *ClientWithResponses) TechnologiesCreateWithFormdataBodyWithResponse(ctx context.Context, body TechnologiesCreateFormdataRequestBody, reqEditors ...RequestEditorFn) (*TechnologiesCreateResponse, error)

func (*ClientWithResponses) TechnologiesCreateWithResponse

func (c *ClientWithResponses) TechnologiesCreateWithResponse(ctx context.Context, body TechnologiesCreateJSONRequestBody, reqEditors ...RequestEditorFn) (*TechnologiesCreateResponse, error)

func (*ClientWithResponses) TechnologiesDeletePreviewListWithResponse added in v0.2.0

func (c *ClientWithResponses) TechnologiesDeletePreviewListWithResponse(ctx context.Context, id int, params *TechnologiesDeletePreviewListParams, reqEditors ...RequestEditorFn) (*TechnologiesDeletePreviewListResponse, error)

TechnologiesDeletePreviewListWithResponse request returning *TechnologiesDeletePreviewListResponse

func (*ClientWithResponses) TechnologiesDestroyWithResponse

func (c *ClientWithResponses) TechnologiesDestroyWithResponse(ctx context.Context, id int, reqEditors ...RequestEditorFn) (*TechnologiesDestroyResponse, error)

TechnologiesDestroyWithResponse request returning *TechnologiesDestroyResponse

func (*ClientWithResponses) TechnologiesListWithResponse

func (c *ClientWithResponses) TechnologiesListWithResponse(ctx context.Context, params *TechnologiesListParams, reqEditors ...RequestEditorFn) (*TechnologiesListResponse, error)

TechnologiesListWithResponse request returning *TechnologiesListResponse

func (*ClientWithResponses) TechnologiesPartialUpdateWithBodyWithResponse

func (c *ClientWithResponses) TechnologiesPartialUpdateWithBodyWithResponse(ctx context.Context, id int, contentType string, body io.Reader, reqEditors ...RequestEditorFn) (*TechnologiesPartialUpdateResponse, error)

TechnologiesPartialUpdateWithBodyWithResponse request with arbitrary body returning *TechnologiesPartialUpdateResponse

func (*ClientWithResponses) TechnologiesPartialUpdateWithFormdataBodyWithResponse added in v0.2.0

func (c *ClientWithResponses) TechnologiesPartialUpdateWithFormdataBodyWithResponse(ctx context.Context, id int, body TechnologiesPartialUpdateFormdataRequestBody, reqEditors ...RequestEditorFn) (*TechnologiesPartialUpdateResponse, error)

func (*ClientWithResponses) TechnologiesPartialUpdateWithResponse

func (c *ClientWithResponses) TechnologiesPartialUpdateWithResponse(ctx context.Context, id int, body TechnologiesPartialUpdateJSONRequestBody, reqEditors ...RequestEditorFn) (*TechnologiesPartialUpdateResponse, error)

func (*ClientWithResponses) TechnologiesRetrieveWithResponse

func (c *ClientWithResponses) TechnologiesRetrieveWithResponse(ctx context.Context, id int, reqEditors ...RequestEditorFn) (*TechnologiesRetrieveResponse, error)

TechnologiesRetrieveWithResponse request returning *TechnologiesRetrieveResponse

func (*ClientWithResponses) TechnologiesUpdateWithBodyWithResponse

func (c *ClientWithResponses) TechnologiesUpdateWithBodyWithResponse(ctx context.Context, id int, contentType string, body io.Reader, reqEditors ...RequestEditorFn) (*TechnologiesUpdateResponse, error)

TechnologiesUpdateWithBodyWithResponse request with arbitrary body returning *TechnologiesUpdateResponse

func (*ClientWithResponses) TechnologiesUpdateWithFormdataBodyWithResponse added in v0.2.0

func (c *ClientWithResponses) TechnologiesUpdateWithFormdataBodyWithResponse(ctx context.Context, id int, body TechnologiesUpdateFormdataRequestBody, reqEditors ...RequestEditorFn) (*TechnologiesUpdateResponse, error)

func (*ClientWithResponses) TechnologiesUpdateWithResponse

func (c *ClientWithResponses) TechnologiesUpdateWithResponse(ctx context.Context, id int, body TechnologiesUpdateJSONRequestBody, reqEditors ...RequestEditorFn) (*TechnologiesUpdateResponse, error)

func (*ClientWithResponses) TestImportsCreateWithBodyWithResponse

func (c *ClientWithResponses) TestImportsCreateWithBodyWithResponse(ctx context.Context, contentType string, body io.Reader, reqEditors ...RequestEditorFn) (*TestImportsCreateResponse, error)

TestImportsCreateWithBodyWithResponse request with arbitrary body returning *TestImportsCreateResponse

func (*ClientWithResponses) TestImportsCreateWithFormdataBodyWithResponse added in v0.2.0

func (c *ClientWithResponses) TestImportsCreateWithFormdataBodyWithResponse(ctx context.Context, body TestImportsCreateFormdataRequestBody, reqEditors ...RequestEditorFn) (*TestImportsCreateResponse, error)

func (*ClientWithResponses) TestImportsCreateWithResponse

func (c *ClientWithResponses) TestImportsCreateWithResponse(ctx context.Context, body TestImportsCreateJSONRequestBody, reqEditors ...RequestEditorFn) (*TestImportsCreateResponse, error)

func (*ClientWithResponses) TestImportsDeletePreviewListWithResponse added in v0.2.0

func (c *ClientWithResponses) TestImportsDeletePreviewListWithResponse(ctx context.Context, id int, params *TestImportsDeletePreviewListParams, reqEditors ...RequestEditorFn) (*TestImportsDeletePreviewListResponse, error)

TestImportsDeletePreviewListWithResponse request returning *TestImportsDeletePreviewListResponse

func (*ClientWithResponses) TestImportsDestroyWithResponse

func (c *ClientWithResponses) TestImportsDestroyWithResponse(ctx context.Context, id int, reqEditors ...RequestEditorFn) (*TestImportsDestroyResponse, error)

TestImportsDestroyWithResponse request returning *TestImportsDestroyResponse

func (*ClientWithResponses) TestImportsListWithResponse

func (c *ClientWithResponses) TestImportsListWithResponse(ctx context.Context, params *TestImportsListParams, reqEditors ...RequestEditorFn) (*TestImportsListResponse, error)

TestImportsListWithResponse request returning *TestImportsListResponse

func (*ClientWithResponses) TestImportsPartialUpdateWithBodyWithResponse

func (c *ClientWithResponses) TestImportsPartialUpdateWithBodyWithResponse(ctx context.Context, id int, contentType string, body io.Reader, reqEditors ...RequestEditorFn) (*TestImportsPartialUpdateResponse, error)

TestImportsPartialUpdateWithBodyWithResponse request with arbitrary body returning *TestImportsPartialUpdateResponse

func (*ClientWithResponses) TestImportsPartialUpdateWithFormdataBodyWithResponse added in v0.2.0

func (c *ClientWithResponses) TestImportsPartialUpdateWithFormdataBodyWithResponse(ctx context.Context, id int, body TestImportsPartialUpdateFormdataRequestBody, reqEditors ...RequestEditorFn) (*TestImportsPartialUpdateResponse, error)

func (*ClientWithResponses) TestImportsPartialUpdateWithResponse

func (c *ClientWithResponses) TestImportsPartialUpdateWithResponse(ctx context.Context, id int, body TestImportsPartialUpdateJSONRequestBody, reqEditors ...RequestEditorFn) (*TestImportsPartialUpdateResponse, error)

func (*ClientWithResponses) TestImportsRetrieveWithResponse

func (c *ClientWithResponses) TestImportsRetrieveWithResponse(ctx context.Context, id int, params *TestImportsRetrieveParams, reqEditors ...RequestEditorFn) (*TestImportsRetrieveResponse, error)

TestImportsRetrieveWithResponse request returning *TestImportsRetrieveResponse

func (*ClientWithResponses) TestImportsUpdateWithBodyWithResponse

func (c *ClientWithResponses) TestImportsUpdateWithBodyWithResponse(ctx context.Context, id int, contentType string, body io.Reader, reqEditors ...RequestEditorFn) (*TestImportsUpdateResponse, error)

TestImportsUpdateWithBodyWithResponse request with arbitrary body returning *TestImportsUpdateResponse

func (*ClientWithResponses) TestImportsUpdateWithFormdataBodyWithResponse added in v0.2.0

func (c *ClientWithResponses) TestImportsUpdateWithFormdataBodyWithResponse(ctx context.Context, id int, body TestImportsUpdateFormdataRequestBody, reqEditors ...RequestEditorFn) (*TestImportsUpdateResponse, error)

func (*ClientWithResponses) TestImportsUpdateWithResponse

func (c *ClientWithResponses) TestImportsUpdateWithResponse(ctx context.Context, id int, body TestImportsUpdateJSONRequestBody, reqEditors ...RequestEditorFn) (*TestImportsUpdateResponse, error)

func (*ClientWithResponses) TestTypesCreateWithBodyWithResponse

func (c *ClientWithResponses) TestTypesCreateWithBodyWithResponse(ctx context.Context, contentType string, body io.Reader, reqEditors ...RequestEditorFn) (*TestTypesCreateResponse, error)

TestTypesCreateWithBodyWithResponse request with arbitrary body returning *TestTypesCreateResponse

func (*ClientWithResponses) TestTypesCreateWithFormdataBodyWithResponse added in v0.2.0

func (c *ClientWithResponses) TestTypesCreateWithFormdataBodyWithResponse(ctx context.Context, body TestTypesCreateFormdataRequestBody, reqEditors ...RequestEditorFn) (*TestTypesCreateResponse, error)

func (*ClientWithResponses) TestTypesCreateWithResponse

func (c *ClientWithResponses) TestTypesCreateWithResponse(ctx context.Context, body TestTypesCreateJSONRequestBody, reqEditors ...RequestEditorFn) (*TestTypesCreateResponse, error)

func (*ClientWithResponses) TestTypesListWithResponse

func (c *ClientWithResponses) TestTypesListWithResponse(ctx context.Context, params *TestTypesListParams, reqEditors ...RequestEditorFn) (*TestTypesListResponse, error)

TestTypesListWithResponse request returning *TestTypesListResponse

func (*ClientWithResponses) TestTypesPartialUpdateWithBodyWithResponse

func (c *ClientWithResponses) TestTypesPartialUpdateWithBodyWithResponse(ctx context.Context, id int, contentType string, body io.Reader, reqEditors ...RequestEditorFn) (*TestTypesPartialUpdateResponse, error)

TestTypesPartialUpdateWithBodyWithResponse request with arbitrary body returning *TestTypesPartialUpdateResponse

func (*ClientWithResponses) TestTypesPartialUpdateWithFormdataBodyWithResponse added in v0.2.0

func (c *ClientWithResponses) TestTypesPartialUpdateWithFormdataBodyWithResponse(ctx context.Context, id int, body TestTypesPartialUpdateFormdataRequestBody, reqEditors ...RequestEditorFn) (*TestTypesPartialUpdateResponse, error)

func (*ClientWithResponses) TestTypesPartialUpdateWithResponse

func (c *ClientWithResponses) TestTypesPartialUpdateWithResponse(ctx context.Context, id int, body TestTypesPartialUpdateJSONRequestBody, reqEditors ...RequestEditorFn) (*TestTypesPartialUpdateResponse, error)

func (*ClientWithResponses) TestTypesRetrieveWithResponse

func (c *ClientWithResponses) TestTypesRetrieveWithResponse(ctx context.Context, id int, reqEditors ...RequestEditorFn) (*TestTypesRetrieveResponse, error)

TestTypesRetrieveWithResponse request returning *TestTypesRetrieveResponse

func (*ClientWithResponses) TestTypesUpdateWithBodyWithResponse

func (c *ClientWithResponses) TestTypesUpdateWithBodyWithResponse(ctx context.Context, id int, contentType string, body io.Reader, reqEditors ...RequestEditorFn) (*TestTypesUpdateResponse, error)

TestTypesUpdateWithBodyWithResponse request with arbitrary body returning *TestTypesUpdateResponse

func (*ClientWithResponses) TestTypesUpdateWithFormdataBodyWithResponse added in v0.2.0

func (c *ClientWithResponses) TestTypesUpdateWithFormdataBodyWithResponse(ctx context.Context, id int, body TestTypesUpdateFormdataRequestBody, reqEditors ...RequestEditorFn) (*TestTypesUpdateResponse, error)

func (*ClientWithResponses) TestTypesUpdateWithResponse

func (c *ClientWithResponses) TestTypesUpdateWithResponse(ctx context.Context, id int, body TestTypesUpdateJSONRequestBody, reqEditors ...RequestEditorFn) (*TestTypesUpdateResponse, error)

func (*ClientWithResponses) TestsAcceptRisksCreateWithBodyWithResponse

func (c *ClientWithResponses) TestsAcceptRisksCreateWithBodyWithResponse(ctx context.Context, id int, contentType string, body io.Reader, reqEditors ...RequestEditorFn) (*TestsAcceptRisksCreateResponse, error)

TestsAcceptRisksCreateWithBodyWithResponse request with arbitrary body returning *TestsAcceptRisksCreateResponse

func (*ClientWithResponses) TestsAcceptRisksCreateWithFormdataBodyWithResponse added in v0.2.0

func (c *ClientWithResponses) TestsAcceptRisksCreateWithFormdataBodyWithResponse(ctx context.Context, id int, body TestsAcceptRisksCreateFormdataRequestBody, reqEditors ...RequestEditorFn) (*TestsAcceptRisksCreateResponse, error)

func (*ClientWithResponses) TestsAcceptRisksCreateWithResponse

func (c *ClientWithResponses) TestsAcceptRisksCreateWithResponse(ctx context.Context, id int, body TestsAcceptRisksCreateJSONRequestBody, reqEditors ...RequestEditorFn) (*TestsAcceptRisksCreateResponse, error)

func (*ClientWithResponses) TestsCreateWithBodyWithResponse

func (c *ClientWithResponses) TestsCreateWithBodyWithResponse(ctx context.Context, contentType string, body io.Reader, reqEditors ...RequestEditorFn) (*TestsCreateResponse, error)

TestsCreateWithBodyWithResponse request with arbitrary body returning *TestsCreateResponse

func (*ClientWithResponses) TestsCreateWithFormdataBodyWithResponse added in v0.2.0

func (c *ClientWithResponses) TestsCreateWithFormdataBodyWithResponse(ctx context.Context, body TestsCreateFormdataRequestBody, reqEditors ...RequestEditorFn) (*TestsCreateResponse, error)

func (*ClientWithResponses) TestsCreateWithResponse

func (c *ClientWithResponses) TestsCreateWithResponse(ctx context.Context, body TestsCreateJSONRequestBody, reqEditors ...RequestEditorFn) (*TestsCreateResponse, error)

func (*ClientWithResponses) TestsDeletePreviewListWithResponse added in v0.2.0

func (c *ClientWithResponses) TestsDeletePreviewListWithResponse(ctx context.Context, id int, params *TestsDeletePreviewListParams, reqEditors ...RequestEditorFn) (*TestsDeletePreviewListResponse, error)

TestsDeletePreviewListWithResponse request returning *TestsDeletePreviewListResponse

func (*ClientWithResponses) TestsDestroyWithResponse

func (c *ClientWithResponses) TestsDestroyWithResponse(ctx context.Context, id int, reqEditors ...RequestEditorFn) (*TestsDestroyResponse, error)

TestsDestroyWithResponse request returning *TestsDestroyResponse

func (*ClientWithResponses) TestsFilesCreateWithBodyWithResponse

func (c *ClientWithResponses) TestsFilesCreateWithBodyWithResponse(ctx context.Context, id int, contentType string, body io.Reader, reqEditors ...RequestEditorFn) (*TestsFilesCreateResponse, error)

TestsFilesCreateWithBodyWithResponse request with arbitrary body returning *TestsFilesCreateResponse

func (*ClientWithResponses) TestsFilesDownloadRetrieveWithResponse added in v0.2.0

func (c *ClientWithResponses) TestsFilesDownloadRetrieveWithResponse(ctx context.Context, id int, fileId string, reqEditors ...RequestEditorFn) (*TestsFilesDownloadRetrieveResponse, error)

TestsFilesDownloadRetrieveWithResponse request returning *TestsFilesDownloadRetrieveResponse

func (*ClientWithResponses) TestsFilesRetrieveWithResponse

func (c *ClientWithResponses) TestsFilesRetrieveWithResponse(ctx context.Context, id int, reqEditors ...RequestEditorFn) (*TestsFilesRetrieveResponse, error)

TestsFilesRetrieveWithResponse request returning *TestsFilesRetrieveResponse

func (*ClientWithResponses) TestsGenerateReportCreateWithBodyWithResponse

func (c *ClientWithResponses) TestsGenerateReportCreateWithBodyWithResponse(ctx context.Context, id int, contentType string, body io.Reader, reqEditors ...RequestEditorFn) (*TestsGenerateReportCreateResponse, error)

TestsGenerateReportCreateWithBodyWithResponse request with arbitrary body returning *TestsGenerateReportCreateResponse

func (*ClientWithResponses) TestsGenerateReportCreateWithFormdataBodyWithResponse added in v0.2.0

func (c *ClientWithResponses) TestsGenerateReportCreateWithFormdataBodyWithResponse(ctx context.Context, id int, body TestsGenerateReportCreateFormdataRequestBody, reqEditors ...RequestEditorFn) (*TestsGenerateReportCreateResponse, error)

func (*ClientWithResponses) TestsGenerateReportCreateWithResponse

func (c *ClientWithResponses) TestsGenerateReportCreateWithResponse(ctx context.Context, id int, body TestsGenerateReportCreateJSONRequestBody, reqEditors ...RequestEditorFn) (*TestsGenerateReportCreateResponse, error)

func (*ClientWithResponses) TestsListWithResponse

func (c *ClientWithResponses) TestsListWithResponse(ctx context.Context, params *TestsListParams, reqEditors ...RequestEditorFn) (*TestsListResponse, error)

TestsListWithResponse request returning *TestsListResponse

func (*ClientWithResponses) TestsNotesCreateWithBodyWithResponse

func (c *ClientWithResponses) TestsNotesCreateWithBodyWithResponse(ctx context.Context, id int, contentType string, body io.Reader, reqEditors ...RequestEditorFn) (*TestsNotesCreateResponse, error)

TestsNotesCreateWithBodyWithResponse request with arbitrary body returning *TestsNotesCreateResponse

func (*ClientWithResponses) TestsNotesCreateWithFormdataBodyWithResponse added in v0.2.0

func (c *ClientWithResponses) TestsNotesCreateWithFormdataBodyWithResponse(ctx context.Context, id int, body TestsNotesCreateFormdataRequestBody, reqEditors ...RequestEditorFn) (*TestsNotesCreateResponse, error)

func (*ClientWithResponses) TestsNotesCreateWithResponse

func (c *ClientWithResponses) TestsNotesCreateWithResponse(ctx context.Context, id int, body TestsNotesCreateJSONRequestBody, reqEditors ...RequestEditorFn) (*TestsNotesCreateResponse, error)

func (*ClientWithResponses) TestsNotesRetrieveWithResponse

func (c *ClientWithResponses) TestsNotesRetrieveWithResponse(ctx context.Context, id int, reqEditors ...RequestEditorFn) (*TestsNotesRetrieveResponse, error)

TestsNotesRetrieveWithResponse request returning *TestsNotesRetrieveResponse

func (*ClientWithResponses) TestsPartialUpdateWithBodyWithResponse

func (c *ClientWithResponses) TestsPartialUpdateWithBodyWithResponse(ctx context.Context, id int, contentType string, body io.Reader, reqEditors ...RequestEditorFn) (*TestsPartialUpdateResponse, error)

TestsPartialUpdateWithBodyWithResponse request with arbitrary body returning *TestsPartialUpdateResponse

func (*ClientWithResponses) TestsPartialUpdateWithFormdataBodyWithResponse added in v0.2.0

func (c *ClientWithResponses) TestsPartialUpdateWithFormdataBodyWithResponse(ctx context.Context, id int, body TestsPartialUpdateFormdataRequestBody, reqEditors ...RequestEditorFn) (*TestsPartialUpdateResponse, error)

func (*ClientWithResponses) TestsPartialUpdateWithResponse

func (c *ClientWithResponses) TestsPartialUpdateWithResponse(ctx context.Context, id int, body TestsPartialUpdateJSONRequestBody, reqEditors ...RequestEditorFn) (*TestsPartialUpdateResponse, error)

func (*ClientWithResponses) TestsRetrieveWithResponse

func (c *ClientWithResponses) TestsRetrieveWithResponse(ctx context.Context, id int, reqEditors ...RequestEditorFn) (*TestsRetrieveResponse, error)

TestsRetrieveWithResponse request returning *TestsRetrieveResponse

func (*ClientWithResponses) TestsUpdateWithBodyWithResponse

func (c *ClientWithResponses) TestsUpdateWithBodyWithResponse(ctx context.Context, id int, contentType string, body io.Reader, reqEditors ...RequestEditorFn) (*TestsUpdateResponse, error)

TestsUpdateWithBodyWithResponse request with arbitrary body returning *TestsUpdateResponse

func (*ClientWithResponses) TestsUpdateWithFormdataBodyWithResponse added in v0.2.0

func (c *ClientWithResponses) TestsUpdateWithFormdataBodyWithResponse(ctx context.Context, id int, body TestsUpdateFormdataRequestBody, reqEditors ...RequestEditorFn) (*TestsUpdateResponse, error)

func (*ClientWithResponses) TestsUpdateWithResponse

func (c *ClientWithResponses) TestsUpdateWithResponse(ctx context.Context, id int, body TestsUpdateJSONRequestBody, reqEditors ...RequestEditorFn) (*TestsUpdateResponse, error)

func (*ClientWithResponses) ToolConfigurationsCreateWithBodyWithResponse

func (c *ClientWithResponses) ToolConfigurationsCreateWithBodyWithResponse(ctx context.Context, contentType string, body io.Reader, reqEditors ...RequestEditorFn) (*ToolConfigurationsCreateResponse, error)

ToolConfigurationsCreateWithBodyWithResponse request with arbitrary body returning *ToolConfigurationsCreateResponse

func (*ClientWithResponses) ToolConfigurationsCreateWithFormdataBodyWithResponse added in v0.2.0

func (c *ClientWithResponses) ToolConfigurationsCreateWithFormdataBodyWithResponse(ctx context.Context, body ToolConfigurationsCreateFormdataRequestBody, reqEditors ...RequestEditorFn) (*ToolConfigurationsCreateResponse, error)

func (*ClientWithResponses) ToolConfigurationsCreateWithResponse

func (c *ClientWithResponses) ToolConfigurationsCreateWithResponse(ctx context.Context, body ToolConfigurationsCreateJSONRequestBody, reqEditors ...RequestEditorFn) (*ToolConfigurationsCreateResponse, error)

func (*ClientWithResponses) ToolConfigurationsDeletePreviewListWithResponse added in v0.2.0

func (c *ClientWithResponses) ToolConfigurationsDeletePreviewListWithResponse(ctx context.Context, id int, params *ToolConfigurationsDeletePreviewListParams, reqEditors ...RequestEditorFn) (*ToolConfigurationsDeletePreviewListResponse, error)

ToolConfigurationsDeletePreviewListWithResponse request returning *ToolConfigurationsDeletePreviewListResponse

func (*ClientWithResponses) ToolConfigurationsDestroyWithResponse

func (c *ClientWithResponses) ToolConfigurationsDestroyWithResponse(ctx context.Context, id int, reqEditors ...RequestEditorFn) (*ToolConfigurationsDestroyResponse, error)

ToolConfigurationsDestroyWithResponse request returning *ToolConfigurationsDestroyResponse

func (*ClientWithResponses) ToolConfigurationsListWithResponse

func (c *ClientWithResponses) ToolConfigurationsListWithResponse(ctx context.Context, params *ToolConfigurationsListParams, reqEditors ...RequestEditorFn) (*ToolConfigurationsListResponse, error)

ToolConfigurationsListWithResponse request returning *ToolConfigurationsListResponse

func (*ClientWithResponses) ToolConfigurationsPartialUpdateWithBodyWithResponse

func (c *ClientWithResponses) ToolConfigurationsPartialUpdateWithBodyWithResponse(ctx context.Context, id int, contentType string, body io.Reader, reqEditors ...RequestEditorFn) (*ToolConfigurationsPartialUpdateResponse, error)

ToolConfigurationsPartialUpdateWithBodyWithResponse request with arbitrary body returning *ToolConfigurationsPartialUpdateResponse

func (*ClientWithResponses) ToolConfigurationsPartialUpdateWithFormdataBodyWithResponse added in v0.2.0

func (c *ClientWithResponses) ToolConfigurationsPartialUpdateWithFormdataBodyWithResponse(ctx context.Context, id int, body ToolConfigurationsPartialUpdateFormdataRequestBody, reqEditors ...RequestEditorFn) (*ToolConfigurationsPartialUpdateResponse, error)

func (*ClientWithResponses) ToolConfigurationsPartialUpdateWithResponse

func (c *ClientWithResponses) ToolConfigurationsPartialUpdateWithResponse(ctx context.Context, id int, body ToolConfigurationsPartialUpdateJSONRequestBody, reqEditors ...RequestEditorFn) (*ToolConfigurationsPartialUpdateResponse, error)

func (*ClientWithResponses) ToolConfigurationsRetrieveWithResponse

func (c *ClientWithResponses) ToolConfigurationsRetrieveWithResponse(ctx context.Context, id int, reqEditors ...RequestEditorFn) (*ToolConfigurationsRetrieveResponse, error)

ToolConfigurationsRetrieveWithResponse request returning *ToolConfigurationsRetrieveResponse

func (*ClientWithResponses) ToolConfigurationsUpdateWithBodyWithResponse

func (c *ClientWithResponses) ToolConfigurationsUpdateWithBodyWithResponse(ctx context.Context, id int, contentType string, body io.Reader, reqEditors ...RequestEditorFn) (*ToolConfigurationsUpdateResponse, error)

ToolConfigurationsUpdateWithBodyWithResponse request with arbitrary body returning *ToolConfigurationsUpdateResponse

func (*ClientWithResponses) ToolConfigurationsUpdateWithFormdataBodyWithResponse added in v0.2.0

func (c *ClientWithResponses) ToolConfigurationsUpdateWithFormdataBodyWithResponse(ctx context.Context, id int, body ToolConfigurationsUpdateFormdataRequestBody, reqEditors ...RequestEditorFn) (*ToolConfigurationsUpdateResponse, error)

func (*ClientWithResponses) ToolConfigurationsUpdateWithResponse

func (c *ClientWithResponses) ToolConfigurationsUpdateWithResponse(ctx context.Context, id int, body ToolConfigurationsUpdateJSONRequestBody, reqEditors ...RequestEditorFn) (*ToolConfigurationsUpdateResponse, error)

func (*ClientWithResponses) ToolProductSettingsCreateWithBodyWithResponse

func (c *ClientWithResponses) ToolProductSettingsCreateWithBodyWithResponse(ctx context.Context, contentType string, body io.Reader, reqEditors ...RequestEditorFn) (*ToolProductSettingsCreateResponse, error)

ToolProductSettingsCreateWithBodyWithResponse request with arbitrary body returning *ToolProductSettingsCreateResponse

func (*ClientWithResponses) ToolProductSettingsCreateWithFormdataBodyWithResponse added in v0.2.0

func (c *ClientWithResponses) ToolProductSettingsCreateWithFormdataBodyWithResponse(ctx context.Context, body ToolProductSettingsCreateFormdataRequestBody, reqEditors ...RequestEditorFn) (*ToolProductSettingsCreateResponse, error)

func (*ClientWithResponses) ToolProductSettingsCreateWithResponse

func (c *ClientWithResponses) ToolProductSettingsCreateWithResponse(ctx context.Context, body ToolProductSettingsCreateJSONRequestBody, reqEditors ...RequestEditorFn) (*ToolProductSettingsCreateResponse, error)

func (*ClientWithResponses) ToolProductSettingsDeletePreviewListWithResponse added in v0.2.0

func (c *ClientWithResponses) ToolProductSettingsDeletePreviewListWithResponse(ctx context.Context, id int, params *ToolProductSettingsDeletePreviewListParams, reqEditors ...RequestEditorFn) (*ToolProductSettingsDeletePreviewListResponse, error)

ToolProductSettingsDeletePreviewListWithResponse request returning *ToolProductSettingsDeletePreviewListResponse

func (*ClientWithResponses) ToolProductSettingsDestroyWithResponse

func (c *ClientWithResponses) ToolProductSettingsDestroyWithResponse(ctx context.Context, id int, reqEditors ...RequestEditorFn) (*ToolProductSettingsDestroyResponse, error)

ToolProductSettingsDestroyWithResponse request returning *ToolProductSettingsDestroyResponse

func (*ClientWithResponses) ToolProductSettingsListWithResponse

func (c *ClientWithResponses) ToolProductSettingsListWithResponse(ctx context.Context, params *ToolProductSettingsListParams, reqEditors ...RequestEditorFn) (*ToolProductSettingsListResponse, error)

ToolProductSettingsListWithResponse request returning *ToolProductSettingsListResponse

func (*ClientWithResponses) ToolProductSettingsPartialUpdateWithBodyWithResponse

func (c *ClientWithResponses) ToolProductSettingsPartialUpdateWithBodyWithResponse(ctx context.Context, id int, contentType string, body io.Reader, reqEditors ...RequestEditorFn) (*ToolProductSettingsPartialUpdateResponse, error)

ToolProductSettingsPartialUpdateWithBodyWithResponse request with arbitrary body returning *ToolProductSettingsPartialUpdateResponse

func (*ClientWithResponses) ToolProductSettingsPartialUpdateWithFormdataBodyWithResponse added in v0.2.0

func (c *ClientWithResponses) ToolProductSettingsPartialUpdateWithFormdataBodyWithResponse(ctx context.Context, id int, body ToolProductSettingsPartialUpdateFormdataRequestBody, reqEditors ...RequestEditorFn) (*ToolProductSettingsPartialUpdateResponse, error)

func (*ClientWithResponses) ToolProductSettingsPartialUpdateWithResponse

func (c *ClientWithResponses) ToolProductSettingsPartialUpdateWithResponse(ctx context.Context, id int, body ToolProductSettingsPartialUpdateJSONRequestBody, reqEditors ...RequestEditorFn) (*ToolProductSettingsPartialUpdateResponse, error)

func (*ClientWithResponses) ToolProductSettingsRetrieveWithResponse

func (c *ClientWithResponses) ToolProductSettingsRetrieveWithResponse(ctx context.Context, id int, reqEditors ...RequestEditorFn) (*ToolProductSettingsRetrieveResponse, error)

ToolProductSettingsRetrieveWithResponse request returning *ToolProductSettingsRetrieveResponse

func (*ClientWithResponses) ToolProductSettingsUpdateWithBodyWithResponse

func (c *ClientWithResponses) ToolProductSettingsUpdateWithBodyWithResponse(ctx context.Context, id int, contentType string, body io.Reader, reqEditors ...RequestEditorFn) (*ToolProductSettingsUpdateResponse, error)

ToolProductSettingsUpdateWithBodyWithResponse request with arbitrary body returning *ToolProductSettingsUpdateResponse

func (*ClientWithResponses) ToolProductSettingsUpdateWithFormdataBodyWithResponse added in v0.2.0

func (c *ClientWithResponses) ToolProductSettingsUpdateWithFormdataBodyWithResponse(ctx context.Context, id int, body ToolProductSettingsUpdateFormdataRequestBody, reqEditors ...RequestEditorFn) (*ToolProductSettingsUpdateResponse, error)

func (*ClientWithResponses) ToolProductSettingsUpdateWithResponse

func (c *ClientWithResponses) ToolProductSettingsUpdateWithResponse(ctx context.Context, id int, body ToolProductSettingsUpdateJSONRequestBody, reqEditors ...RequestEditorFn) (*ToolProductSettingsUpdateResponse, error)

func (*ClientWithResponses) ToolTypesCreateWithBodyWithResponse

func (c *ClientWithResponses) ToolTypesCreateWithBodyWithResponse(ctx context.Context, contentType string, body io.Reader, reqEditors ...RequestEditorFn) (*ToolTypesCreateResponse, error)

ToolTypesCreateWithBodyWithResponse request with arbitrary body returning *ToolTypesCreateResponse

func (*ClientWithResponses) ToolTypesCreateWithFormdataBodyWithResponse added in v0.2.0

func (c *ClientWithResponses) ToolTypesCreateWithFormdataBodyWithResponse(ctx context.Context, body ToolTypesCreateFormdataRequestBody, reqEditors ...RequestEditorFn) (*ToolTypesCreateResponse, error)

func (*ClientWithResponses) ToolTypesCreateWithResponse

func (c *ClientWithResponses) ToolTypesCreateWithResponse(ctx context.Context, body ToolTypesCreateJSONRequestBody, reqEditors ...RequestEditorFn) (*ToolTypesCreateResponse, error)

func (*ClientWithResponses) ToolTypesDeletePreviewListWithResponse added in v0.2.0

func (c *ClientWithResponses) ToolTypesDeletePreviewListWithResponse(ctx context.Context, id int, params *ToolTypesDeletePreviewListParams, reqEditors ...RequestEditorFn) (*ToolTypesDeletePreviewListResponse, error)

ToolTypesDeletePreviewListWithResponse request returning *ToolTypesDeletePreviewListResponse

func (*ClientWithResponses) ToolTypesDestroyWithResponse

func (c *ClientWithResponses) ToolTypesDestroyWithResponse(ctx context.Context, id int, reqEditors ...RequestEditorFn) (*ToolTypesDestroyResponse, error)

ToolTypesDestroyWithResponse request returning *ToolTypesDestroyResponse

func (*ClientWithResponses) ToolTypesListWithResponse

func (c *ClientWithResponses) ToolTypesListWithResponse(ctx context.Context, params *ToolTypesListParams, reqEditors ...RequestEditorFn) (*ToolTypesListResponse, error)

ToolTypesListWithResponse request returning *ToolTypesListResponse

func (*ClientWithResponses) ToolTypesPartialUpdateWithBodyWithResponse

func (c *ClientWithResponses) ToolTypesPartialUpdateWithBodyWithResponse(ctx context.Context, id int, contentType string, body io.Reader, reqEditors ...RequestEditorFn) (*ToolTypesPartialUpdateResponse, error)

ToolTypesPartialUpdateWithBodyWithResponse request with arbitrary body returning *ToolTypesPartialUpdateResponse

func (*ClientWithResponses) ToolTypesPartialUpdateWithFormdataBodyWithResponse added in v0.2.0

func (c *ClientWithResponses) ToolTypesPartialUpdateWithFormdataBodyWithResponse(ctx context.Context, id int, body ToolTypesPartialUpdateFormdataRequestBody, reqEditors ...RequestEditorFn) (*ToolTypesPartialUpdateResponse, error)

func (*ClientWithResponses) ToolTypesPartialUpdateWithResponse

func (c *ClientWithResponses) ToolTypesPartialUpdateWithResponse(ctx context.Context, id int, body ToolTypesPartialUpdateJSONRequestBody, reqEditors ...RequestEditorFn) (*ToolTypesPartialUpdateResponse, error)

func (*ClientWithResponses) ToolTypesRetrieveWithResponse

func (c *ClientWithResponses) ToolTypesRetrieveWithResponse(ctx context.Context, id int, reqEditors ...RequestEditorFn) (*ToolTypesRetrieveResponse, error)

ToolTypesRetrieveWithResponse request returning *ToolTypesRetrieveResponse

func (*ClientWithResponses) ToolTypesUpdateWithBodyWithResponse

func (c *ClientWithResponses) ToolTypesUpdateWithBodyWithResponse(ctx context.Context, id int, contentType string, body io.Reader, reqEditors ...RequestEditorFn) (*ToolTypesUpdateResponse, error)

ToolTypesUpdateWithBodyWithResponse request with arbitrary body returning *ToolTypesUpdateResponse

func (*ClientWithResponses) ToolTypesUpdateWithFormdataBodyWithResponse added in v0.2.0

func (c *ClientWithResponses) ToolTypesUpdateWithFormdataBodyWithResponse(ctx context.Context, id int, body ToolTypesUpdateFormdataRequestBody, reqEditors ...RequestEditorFn) (*ToolTypesUpdateResponse, error)

func (*ClientWithResponses) ToolTypesUpdateWithResponse

func (c *ClientWithResponses) ToolTypesUpdateWithResponse(ctx context.Context, id int, body ToolTypesUpdateJSONRequestBody, reqEditors ...RequestEditorFn) (*ToolTypesUpdateResponse, error)

func (*ClientWithResponses) UserContactInfosCreateWithBodyWithResponse

func (c *ClientWithResponses) UserContactInfosCreateWithBodyWithResponse(ctx context.Context, contentType string, body io.Reader, reqEditors ...RequestEditorFn) (*UserContactInfosCreateResponse, error)

UserContactInfosCreateWithBodyWithResponse request with arbitrary body returning *UserContactInfosCreateResponse

func (*ClientWithResponses) UserContactInfosCreateWithFormdataBodyWithResponse added in v0.2.0

func (c *ClientWithResponses) UserContactInfosCreateWithFormdataBodyWithResponse(ctx context.Context, body UserContactInfosCreateFormdataRequestBody, reqEditors ...RequestEditorFn) (*UserContactInfosCreateResponse, error)

func (*ClientWithResponses) UserContactInfosCreateWithResponse

func (c *ClientWithResponses) UserContactInfosCreateWithResponse(ctx context.Context, body UserContactInfosCreateJSONRequestBody, reqEditors ...RequestEditorFn) (*UserContactInfosCreateResponse, error)

func (*ClientWithResponses) UserContactInfosDeletePreviewListWithResponse added in v0.2.0

func (c *ClientWithResponses) UserContactInfosDeletePreviewListWithResponse(ctx context.Context, id int, params *UserContactInfosDeletePreviewListParams, reqEditors ...RequestEditorFn) (*UserContactInfosDeletePreviewListResponse, error)

UserContactInfosDeletePreviewListWithResponse request returning *UserContactInfosDeletePreviewListResponse

func (*ClientWithResponses) UserContactInfosDestroyWithResponse

func (c *ClientWithResponses) UserContactInfosDestroyWithResponse(ctx context.Context, id int, reqEditors ...RequestEditorFn) (*UserContactInfosDestroyResponse, error)

UserContactInfosDestroyWithResponse request returning *UserContactInfosDestroyResponse

func (*ClientWithResponses) UserContactInfosListWithResponse

func (c *ClientWithResponses) UserContactInfosListWithResponse(ctx context.Context, params *UserContactInfosListParams, reqEditors ...RequestEditorFn) (*UserContactInfosListResponse, error)

UserContactInfosListWithResponse request returning *UserContactInfosListResponse

func (*ClientWithResponses) UserContactInfosPartialUpdateWithBodyWithResponse

func (c *ClientWithResponses) UserContactInfosPartialUpdateWithBodyWithResponse(ctx context.Context, id int, contentType string, body io.Reader, reqEditors ...RequestEditorFn) (*UserContactInfosPartialUpdateResponse, error)

UserContactInfosPartialUpdateWithBodyWithResponse request with arbitrary body returning *UserContactInfosPartialUpdateResponse

func (*ClientWithResponses) UserContactInfosPartialUpdateWithFormdataBodyWithResponse added in v0.2.0

func (c *ClientWithResponses) UserContactInfosPartialUpdateWithFormdataBodyWithResponse(ctx context.Context, id int, body UserContactInfosPartialUpdateFormdataRequestBody, reqEditors ...RequestEditorFn) (*UserContactInfosPartialUpdateResponse, error)

func (*ClientWithResponses) UserContactInfosPartialUpdateWithResponse

func (c *ClientWithResponses) UserContactInfosPartialUpdateWithResponse(ctx context.Context, id int, body UserContactInfosPartialUpdateJSONRequestBody, reqEditors ...RequestEditorFn) (*UserContactInfosPartialUpdateResponse, error)

func (*ClientWithResponses) UserContactInfosRetrieveWithResponse

func (c *ClientWithResponses) UserContactInfosRetrieveWithResponse(ctx context.Context, id int, params *UserContactInfosRetrieveParams, reqEditors ...RequestEditorFn) (*UserContactInfosRetrieveResponse, error)

UserContactInfosRetrieveWithResponse request returning *UserContactInfosRetrieveResponse

func (*ClientWithResponses) UserContactInfosUpdateWithBodyWithResponse

func (c *ClientWithResponses) UserContactInfosUpdateWithBodyWithResponse(ctx context.Context, id int, contentType string, body io.Reader, reqEditors ...RequestEditorFn) (*UserContactInfosUpdateResponse, error)

UserContactInfosUpdateWithBodyWithResponse request with arbitrary body returning *UserContactInfosUpdateResponse

func (*ClientWithResponses) UserContactInfosUpdateWithFormdataBodyWithResponse added in v0.2.0

func (c *ClientWithResponses) UserContactInfosUpdateWithFormdataBodyWithResponse(ctx context.Context, id int, body UserContactInfosUpdateFormdataRequestBody, reqEditors ...RequestEditorFn) (*UserContactInfosUpdateResponse, error)

func (*ClientWithResponses) UserContactInfosUpdateWithResponse

func (c *ClientWithResponses) UserContactInfosUpdateWithResponse(ctx context.Context, id int, body UserContactInfosUpdateJSONRequestBody, reqEditors ...RequestEditorFn) (*UserContactInfosUpdateResponse, error)

func (*ClientWithResponses) UserProfileRetrieveWithResponse

func (c *ClientWithResponses) UserProfileRetrieveWithResponse(ctx context.Context, reqEditors ...RequestEditorFn) (*UserProfileRetrieveResponse, error)

UserProfileRetrieveWithResponse request returning *UserProfileRetrieveResponse

func (*ClientWithResponses) UsersCreateWithBodyWithResponse

func (c *ClientWithResponses) UsersCreateWithBodyWithResponse(ctx context.Context, contentType string, body io.Reader, reqEditors ...RequestEditorFn) (*UsersCreateResponse, error)

UsersCreateWithBodyWithResponse request with arbitrary body returning *UsersCreateResponse

func (*ClientWithResponses) UsersCreateWithFormdataBodyWithResponse added in v0.2.0

func (c *ClientWithResponses) UsersCreateWithFormdataBodyWithResponse(ctx context.Context, body UsersCreateFormdataRequestBody, reqEditors ...RequestEditorFn) (*UsersCreateResponse, error)

func (*ClientWithResponses) UsersCreateWithResponse

func (c *ClientWithResponses) UsersCreateWithResponse(ctx context.Context, body UsersCreateJSONRequestBody, reqEditors ...RequestEditorFn) (*UsersCreateResponse, error)

func (*ClientWithResponses) UsersDeletePreviewListWithResponse added in v0.2.0

func (c *ClientWithResponses) UsersDeletePreviewListWithResponse(ctx context.Context, id int, params *UsersDeletePreviewListParams, reqEditors ...RequestEditorFn) (*UsersDeletePreviewListResponse, error)

UsersDeletePreviewListWithResponse request returning *UsersDeletePreviewListResponse

func (*ClientWithResponses) UsersDestroyWithResponse

func (c *ClientWithResponses) UsersDestroyWithResponse(ctx context.Context, id int, reqEditors ...RequestEditorFn) (*UsersDestroyResponse, error)

UsersDestroyWithResponse request returning *UsersDestroyResponse

func (*ClientWithResponses) UsersListWithResponse

func (c *ClientWithResponses) UsersListWithResponse(ctx context.Context, params *UsersListParams, reqEditors ...RequestEditorFn) (*UsersListResponse, error)

UsersListWithResponse request returning *UsersListResponse

func (*ClientWithResponses) UsersPartialUpdateWithBodyWithResponse

func (c *ClientWithResponses) UsersPartialUpdateWithBodyWithResponse(ctx context.Context, id int, contentType string, body io.Reader, reqEditors ...RequestEditorFn) (*UsersPartialUpdateResponse, error)

UsersPartialUpdateWithBodyWithResponse request with arbitrary body returning *UsersPartialUpdateResponse

func (*ClientWithResponses) UsersPartialUpdateWithFormdataBodyWithResponse added in v0.2.0

func (c *ClientWithResponses) UsersPartialUpdateWithFormdataBodyWithResponse(ctx context.Context, id int, body UsersPartialUpdateFormdataRequestBody, reqEditors ...RequestEditorFn) (*UsersPartialUpdateResponse, error)

func (*ClientWithResponses) UsersPartialUpdateWithResponse

func (c *ClientWithResponses) UsersPartialUpdateWithResponse(ctx context.Context, id int, body UsersPartialUpdateJSONRequestBody, reqEditors ...RequestEditorFn) (*UsersPartialUpdateResponse, error)

func (*ClientWithResponses) UsersRetrieveWithResponse

func (c *ClientWithResponses) UsersRetrieveWithResponse(ctx context.Context, id int, reqEditors ...RequestEditorFn) (*UsersRetrieveResponse, error)

UsersRetrieveWithResponse request returning *UsersRetrieveResponse

func (*ClientWithResponses) UsersUpdateWithBodyWithResponse

func (c *ClientWithResponses) UsersUpdateWithBodyWithResponse(ctx context.Context, id int, contentType string, body io.Reader, reqEditors ...RequestEditorFn) (*UsersUpdateResponse, error)

UsersUpdateWithBodyWithResponse request with arbitrary body returning *UsersUpdateResponse

func (*ClientWithResponses) UsersUpdateWithFormdataBodyWithResponse added in v0.2.0

func (c *ClientWithResponses) UsersUpdateWithFormdataBodyWithResponse(ctx context.Context, id int, body UsersUpdateFormdataRequestBody, reqEditors ...RequestEditorFn) (*UsersUpdateResponse, error)

func (*ClientWithResponses) UsersUpdateWithResponse

func (c *ClientWithResponses) UsersUpdateWithResponse(ctx context.Context, id int, body UsersUpdateJSONRequestBody, reqEditors ...RequestEditorFn) (*UsersUpdateResponse, error)

type ClientWithResponsesInterface

type ClientWithResponsesInterface interface {
	// ApiTokenAuthCreate request with any body
	ApiTokenAuthCreateWithBodyWithResponse(ctx context.Context, contentType string, body io.Reader, reqEditors ...RequestEditorFn) (*ApiTokenAuthCreateResponse, error)

	ApiTokenAuthCreateWithResponse(ctx context.Context, body ApiTokenAuthCreateJSONRequestBody, reqEditors ...RequestEditorFn) (*ApiTokenAuthCreateResponse, error)

	ApiTokenAuthCreateWithFormdataBodyWithResponse(ctx context.Context, body ApiTokenAuthCreateFormdataRequestBody, reqEditors ...RequestEditorFn) (*ApiTokenAuthCreateResponse, error)

	// ConfigurationPermissionsList request
	ConfigurationPermissionsListWithResponse(ctx context.Context, params *ConfigurationPermissionsListParams, reqEditors ...RequestEditorFn) (*ConfigurationPermissionsListResponse, error)

	// ConfigurationPermissionsRetrieve request
	ConfigurationPermissionsRetrieveWithResponse(ctx context.Context, id int, reqEditors ...RequestEditorFn) (*ConfigurationPermissionsRetrieveResponse, error)

	// CredentialMappingsList request
	CredentialMappingsListWithResponse(ctx context.Context, params *CredentialMappingsListParams, reqEditors ...RequestEditorFn) (*CredentialMappingsListResponse, error)

	// CredentialMappingsCreate request with any body
	CredentialMappingsCreateWithBodyWithResponse(ctx context.Context, contentType string, body io.Reader, reqEditors ...RequestEditorFn) (*CredentialMappingsCreateResponse, error)

	CredentialMappingsCreateWithResponse(ctx context.Context, body CredentialMappingsCreateJSONRequestBody, reqEditors ...RequestEditorFn) (*CredentialMappingsCreateResponse, error)

	CredentialMappingsCreateWithFormdataBodyWithResponse(ctx context.Context, body CredentialMappingsCreateFormdataRequestBody, reqEditors ...RequestEditorFn) (*CredentialMappingsCreateResponse, error)

	// CredentialMappingsDestroy request
	CredentialMappingsDestroyWithResponse(ctx context.Context, id int, reqEditors ...RequestEditorFn) (*CredentialMappingsDestroyResponse, error)

	// CredentialMappingsRetrieve request
	CredentialMappingsRetrieveWithResponse(ctx context.Context, id int, reqEditors ...RequestEditorFn) (*CredentialMappingsRetrieveResponse, error)

	// CredentialMappingsPartialUpdate request with any body
	CredentialMappingsPartialUpdateWithBodyWithResponse(ctx context.Context, id int, contentType string, body io.Reader, reqEditors ...RequestEditorFn) (*CredentialMappingsPartialUpdateResponse, error)

	CredentialMappingsPartialUpdateWithResponse(ctx context.Context, id int, body CredentialMappingsPartialUpdateJSONRequestBody, reqEditors ...RequestEditorFn) (*CredentialMappingsPartialUpdateResponse, error)

	CredentialMappingsPartialUpdateWithFormdataBodyWithResponse(ctx context.Context, id int, body CredentialMappingsPartialUpdateFormdataRequestBody, reqEditors ...RequestEditorFn) (*CredentialMappingsPartialUpdateResponse, error)

	// CredentialMappingsUpdate request with any body
	CredentialMappingsUpdateWithBodyWithResponse(ctx context.Context, id int, contentType string, body io.Reader, reqEditors ...RequestEditorFn) (*CredentialMappingsUpdateResponse, error)

	CredentialMappingsUpdateWithResponse(ctx context.Context, id int, body CredentialMappingsUpdateJSONRequestBody, reqEditors ...RequestEditorFn) (*CredentialMappingsUpdateResponse, error)

	CredentialMappingsUpdateWithFormdataBodyWithResponse(ctx context.Context, id int, body CredentialMappingsUpdateFormdataRequestBody, reqEditors ...RequestEditorFn) (*CredentialMappingsUpdateResponse, error)

	// CredentialMappingsDeletePreviewList request
	CredentialMappingsDeletePreviewListWithResponse(ctx context.Context, id int, params *CredentialMappingsDeletePreviewListParams, reqEditors ...RequestEditorFn) (*CredentialMappingsDeletePreviewListResponse, error)

	// CredentialsList request
	CredentialsListWithResponse(ctx context.Context, params *CredentialsListParams, reqEditors ...RequestEditorFn) (*CredentialsListResponse, error)

	// CredentialsCreate request with any body
	CredentialsCreateWithBodyWithResponse(ctx context.Context, contentType string, body io.Reader, reqEditors ...RequestEditorFn) (*CredentialsCreateResponse, error)

	CredentialsCreateWithResponse(ctx context.Context, body CredentialsCreateJSONRequestBody, reqEditors ...RequestEditorFn) (*CredentialsCreateResponse, error)

	CredentialsCreateWithFormdataBodyWithResponse(ctx context.Context, body CredentialsCreateFormdataRequestBody, reqEditors ...RequestEditorFn) (*CredentialsCreateResponse, error)

	// CredentialsDestroy request
	CredentialsDestroyWithResponse(ctx context.Context, id int, reqEditors ...RequestEditorFn) (*CredentialsDestroyResponse, error)

	// CredentialsRetrieve request
	CredentialsRetrieveWithResponse(ctx context.Context, id int, reqEditors ...RequestEditorFn) (*CredentialsRetrieveResponse, error)

	// CredentialsPartialUpdate request with any body
	CredentialsPartialUpdateWithBodyWithResponse(ctx context.Context, id int, contentType string, body io.Reader, reqEditors ...RequestEditorFn) (*CredentialsPartialUpdateResponse, error)

	CredentialsPartialUpdateWithResponse(ctx context.Context, id int, body CredentialsPartialUpdateJSONRequestBody, reqEditors ...RequestEditorFn) (*CredentialsPartialUpdateResponse, error)

	CredentialsPartialUpdateWithFormdataBodyWithResponse(ctx context.Context, id int, body CredentialsPartialUpdateFormdataRequestBody, reqEditors ...RequestEditorFn) (*CredentialsPartialUpdateResponse, error)

	// CredentialsUpdate request with any body
	CredentialsUpdateWithBodyWithResponse(ctx context.Context, id int, contentType string, body io.Reader, reqEditors ...RequestEditorFn) (*CredentialsUpdateResponse, error)

	CredentialsUpdateWithResponse(ctx context.Context, id int, body CredentialsUpdateJSONRequestBody, reqEditors ...RequestEditorFn) (*CredentialsUpdateResponse, error)

	CredentialsUpdateWithFormdataBodyWithResponse(ctx context.Context, id int, body CredentialsUpdateFormdataRequestBody, reqEditors ...RequestEditorFn) (*CredentialsUpdateResponse, error)

	// CredentialsDeletePreviewList request
	CredentialsDeletePreviewListWithResponse(ctx context.Context, id int, params *CredentialsDeletePreviewListParams, reqEditors ...RequestEditorFn) (*CredentialsDeletePreviewListResponse, error)

	// DevelopmentEnvironmentsList request
	DevelopmentEnvironmentsListWithResponse(ctx context.Context, params *DevelopmentEnvironmentsListParams, reqEditors ...RequestEditorFn) (*DevelopmentEnvironmentsListResponse, error)

	// DevelopmentEnvironmentsCreate request with any body
	DevelopmentEnvironmentsCreateWithBodyWithResponse(ctx context.Context, contentType string, body io.Reader, reqEditors ...RequestEditorFn) (*DevelopmentEnvironmentsCreateResponse, error)

	DevelopmentEnvironmentsCreateWithResponse(ctx context.Context, body DevelopmentEnvironmentsCreateJSONRequestBody, reqEditors ...RequestEditorFn) (*DevelopmentEnvironmentsCreateResponse, error)

	DevelopmentEnvironmentsCreateWithFormdataBodyWithResponse(ctx context.Context, body DevelopmentEnvironmentsCreateFormdataRequestBody, reqEditors ...RequestEditorFn) (*DevelopmentEnvironmentsCreateResponse, error)

	// DevelopmentEnvironmentsDestroy request
	DevelopmentEnvironmentsDestroyWithResponse(ctx context.Context, id int, reqEditors ...RequestEditorFn) (*DevelopmentEnvironmentsDestroyResponse, error)

	// DevelopmentEnvironmentsRetrieve request
	DevelopmentEnvironmentsRetrieveWithResponse(ctx context.Context, id int, reqEditors ...RequestEditorFn) (*DevelopmentEnvironmentsRetrieveResponse, error)

	// DevelopmentEnvironmentsPartialUpdate request with any body
	DevelopmentEnvironmentsPartialUpdateWithBodyWithResponse(ctx context.Context, id int, contentType string, body io.Reader, reqEditors ...RequestEditorFn) (*DevelopmentEnvironmentsPartialUpdateResponse, error)

	DevelopmentEnvironmentsPartialUpdateWithResponse(ctx context.Context, id int, body DevelopmentEnvironmentsPartialUpdateJSONRequestBody, reqEditors ...RequestEditorFn) (*DevelopmentEnvironmentsPartialUpdateResponse, error)

	DevelopmentEnvironmentsPartialUpdateWithFormdataBodyWithResponse(ctx context.Context, id int, body DevelopmentEnvironmentsPartialUpdateFormdataRequestBody, reqEditors ...RequestEditorFn) (*DevelopmentEnvironmentsPartialUpdateResponse, error)

	// DevelopmentEnvironmentsUpdate request with any body
	DevelopmentEnvironmentsUpdateWithBodyWithResponse(ctx context.Context, id int, contentType string, body io.Reader, reqEditors ...RequestEditorFn) (*DevelopmentEnvironmentsUpdateResponse, error)

	DevelopmentEnvironmentsUpdateWithResponse(ctx context.Context, id int, body DevelopmentEnvironmentsUpdateJSONRequestBody, reqEditors ...RequestEditorFn) (*DevelopmentEnvironmentsUpdateResponse, error)

	DevelopmentEnvironmentsUpdateWithFormdataBodyWithResponse(ctx context.Context, id int, body DevelopmentEnvironmentsUpdateFormdataRequestBody, reqEditors ...RequestEditorFn) (*DevelopmentEnvironmentsUpdateResponse, error)

	// DevelopmentEnvironmentsDeletePreviewList request
	DevelopmentEnvironmentsDeletePreviewListWithResponse(ctx context.Context, id int, params *DevelopmentEnvironmentsDeletePreviewListParams, reqEditors ...RequestEditorFn) (*DevelopmentEnvironmentsDeletePreviewListResponse, error)

	// DojoGroupMembersList request
	DojoGroupMembersListWithResponse(ctx context.Context, params *DojoGroupMembersListParams, reqEditors ...RequestEditorFn) (*DojoGroupMembersListResponse, error)

	// DojoGroupMembersCreate request with any body
	DojoGroupMembersCreateWithBodyWithResponse(ctx context.Context, contentType string, body io.Reader, reqEditors ...RequestEditorFn) (*DojoGroupMembersCreateResponse, error)

	DojoGroupMembersCreateWithResponse(ctx context.Context, body DojoGroupMembersCreateJSONRequestBody, reqEditors ...RequestEditorFn) (*DojoGroupMembersCreateResponse, error)

	DojoGroupMembersCreateWithFormdataBodyWithResponse(ctx context.Context, body DojoGroupMembersCreateFormdataRequestBody, reqEditors ...RequestEditorFn) (*DojoGroupMembersCreateResponse, error)

	// DojoGroupMembersDestroy request
	DojoGroupMembersDestroyWithResponse(ctx context.Context, id int, reqEditors ...RequestEditorFn) (*DojoGroupMembersDestroyResponse, error)

	// DojoGroupMembersRetrieve request
	DojoGroupMembersRetrieveWithResponse(ctx context.Context, id int, params *DojoGroupMembersRetrieveParams, reqEditors ...RequestEditorFn) (*DojoGroupMembersRetrieveResponse, error)

	// DojoGroupMembersPartialUpdate request with any body
	DojoGroupMembersPartialUpdateWithBodyWithResponse(ctx context.Context, id int, contentType string, body io.Reader, reqEditors ...RequestEditorFn) (*DojoGroupMembersPartialUpdateResponse, error)

	DojoGroupMembersPartialUpdateWithResponse(ctx context.Context, id int, body DojoGroupMembersPartialUpdateJSONRequestBody, reqEditors ...RequestEditorFn) (*DojoGroupMembersPartialUpdateResponse, error)

	DojoGroupMembersPartialUpdateWithFormdataBodyWithResponse(ctx context.Context, id int, body DojoGroupMembersPartialUpdateFormdataRequestBody, reqEditors ...RequestEditorFn) (*DojoGroupMembersPartialUpdateResponse, error)

	// DojoGroupMembersUpdate request with any body
	DojoGroupMembersUpdateWithBodyWithResponse(ctx context.Context, id int, contentType string, body io.Reader, reqEditors ...RequestEditorFn) (*DojoGroupMembersUpdateResponse, error)

	DojoGroupMembersUpdateWithResponse(ctx context.Context, id int, body DojoGroupMembersUpdateJSONRequestBody, reqEditors ...RequestEditorFn) (*DojoGroupMembersUpdateResponse, error)

	DojoGroupMembersUpdateWithFormdataBodyWithResponse(ctx context.Context, id int, body DojoGroupMembersUpdateFormdataRequestBody, reqEditors ...RequestEditorFn) (*DojoGroupMembersUpdateResponse, error)

	// DojoGroupMembersDeletePreviewList request
	DojoGroupMembersDeletePreviewListWithResponse(ctx context.Context, id int, params *DojoGroupMembersDeletePreviewListParams, reqEditors ...RequestEditorFn) (*DojoGroupMembersDeletePreviewListResponse, error)

	// DojoGroupsList request
	DojoGroupsListWithResponse(ctx context.Context, params *DojoGroupsListParams, reqEditors ...RequestEditorFn) (*DojoGroupsListResponse, error)

	// DojoGroupsCreate request with any body
	DojoGroupsCreateWithBodyWithResponse(ctx context.Context, contentType string, body io.Reader, reqEditors ...RequestEditorFn) (*DojoGroupsCreateResponse, error)

	DojoGroupsCreateWithResponse(ctx context.Context, body DojoGroupsCreateJSONRequestBody, reqEditors ...RequestEditorFn) (*DojoGroupsCreateResponse, error)

	DojoGroupsCreateWithFormdataBodyWithResponse(ctx context.Context, body DojoGroupsCreateFormdataRequestBody, reqEditors ...RequestEditorFn) (*DojoGroupsCreateResponse, error)

	// DojoGroupsDestroy request
	DojoGroupsDestroyWithResponse(ctx context.Context, id int, reqEditors ...RequestEditorFn) (*DojoGroupsDestroyResponse, error)

	// DojoGroupsRetrieve request
	DojoGroupsRetrieveWithResponse(ctx context.Context, id int, params *DojoGroupsRetrieveParams, reqEditors ...RequestEditorFn) (*DojoGroupsRetrieveResponse, error)

	// DojoGroupsPartialUpdate request with any body
	DojoGroupsPartialUpdateWithBodyWithResponse(ctx context.Context, id int, contentType string, body io.Reader, reqEditors ...RequestEditorFn) (*DojoGroupsPartialUpdateResponse, error)

	DojoGroupsPartialUpdateWithResponse(ctx context.Context, id int, body DojoGroupsPartialUpdateJSONRequestBody, reqEditors ...RequestEditorFn) (*DojoGroupsPartialUpdateResponse, error)

	DojoGroupsPartialUpdateWithFormdataBodyWithResponse(ctx context.Context, id int, body DojoGroupsPartialUpdateFormdataRequestBody, reqEditors ...RequestEditorFn) (*DojoGroupsPartialUpdateResponse, error)

	// DojoGroupsUpdate request with any body
	DojoGroupsUpdateWithBodyWithResponse(ctx context.Context, id int, contentType string, body io.Reader, reqEditors ...RequestEditorFn) (*DojoGroupsUpdateResponse, error)

	DojoGroupsUpdateWithResponse(ctx context.Context, id int, body DojoGroupsUpdateJSONRequestBody, reqEditors ...RequestEditorFn) (*DojoGroupsUpdateResponse, error)

	DojoGroupsUpdateWithFormdataBodyWithResponse(ctx context.Context, id int, body DojoGroupsUpdateFormdataRequestBody, reqEditors ...RequestEditorFn) (*DojoGroupsUpdateResponse, error)

	// DojoGroupsDeletePreviewList request
	DojoGroupsDeletePreviewListWithResponse(ctx context.Context, id int, params *DojoGroupsDeletePreviewListParams, reqEditors ...RequestEditorFn) (*DojoGroupsDeletePreviewListResponse, error)

	// EndpointMetaImportCreate request with any body
	EndpointMetaImportCreateWithBodyWithResponse(ctx context.Context, contentType string, body io.Reader, reqEditors ...RequestEditorFn) (*EndpointMetaImportCreateResponse, error)

	// EndpointStatusList request
	EndpointStatusListWithResponse(ctx context.Context, params *EndpointStatusListParams, reqEditors ...RequestEditorFn) (*EndpointStatusListResponse, error)

	// EndpointStatusCreate request with any body
	EndpointStatusCreateWithBodyWithResponse(ctx context.Context, contentType string, body io.Reader, reqEditors ...RequestEditorFn) (*EndpointStatusCreateResponse, error)

	EndpointStatusCreateWithResponse(ctx context.Context, body EndpointStatusCreateJSONRequestBody, reqEditors ...RequestEditorFn) (*EndpointStatusCreateResponse, error)

	EndpointStatusCreateWithFormdataBodyWithResponse(ctx context.Context, body EndpointStatusCreateFormdataRequestBody, reqEditors ...RequestEditorFn) (*EndpointStatusCreateResponse, error)

	// EndpointStatusDestroy request
	EndpointStatusDestroyWithResponse(ctx context.Context, id int, reqEditors ...RequestEditorFn) (*EndpointStatusDestroyResponse, error)

	// EndpointStatusRetrieve request
	EndpointStatusRetrieveWithResponse(ctx context.Context, id int, reqEditors ...RequestEditorFn) (*EndpointStatusRetrieveResponse, error)

	// EndpointStatusPartialUpdate request with any body
	EndpointStatusPartialUpdateWithBodyWithResponse(ctx context.Context, id int, contentType string, body io.Reader, reqEditors ...RequestEditorFn) (*EndpointStatusPartialUpdateResponse, error)

	EndpointStatusPartialUpdateWithResponse(ctx context.Context, id int, body EndpointStatusPartialUpdateJSONRequestBody, reqEditors ...RequestEditorFn) (*EndpointStatusPartialUpdateResponse, error)

	EndpointStatusPartialUpdateWithFormdataBodyWithResponse(ctx context.Context, id int, body EndpointStatusPartialUpdateFormdataRequestBody, reqEditors ...RequestEditorFn) (*EndpointStatusPartialUpdateResponse, error)

	// EndpointStatusUpdate request with any body
	EndpointStatusUpdateWithBodyWithResponse(ctx context.Context, id int, contentType string, body io.Reader, reqEditors ...RequestEditorFn) (*EndpointStatusUpdateResponse, error)

	EndpointStatusUpdateWithResponse(ctx context.Context, id int, body EndpointStatusUpdateJSONRequestBody, reqEditors ...RequestEditorFn) (*EndpointStatusUpdateResponse, error)

	EndpointStatusUpdateWithFormdataBodyWithResponse(ctx context.Context, id int, body EndpointStatusUpdateFormdataRequestBody, reqEditors ...RequestEditorFn) (*EndpointStatusUpdateResponse, error)

	// EndpointStatusDeletePreviewList request
	EndpointStatusDeletePreviewListWithResponse(ctx context.Context, id int, params *EndpointStatusDeletePreviewListParams, reqEditors ...RequestEditorFn) (*EndpointStatusDeletePreviewListResponse, error)

	// EndpointsList request
	EndpointsListWithResponse(ctx context.Context, params *EndpointsListParams, reqEditors ...RequestEditorFn) (*EndpointsListResponse, error)

	// EndpointsCreate request with any body
	EndpointsCreateWithBodyWithResponse(ctx context.Context, contentType string, body io.Reader, reqEditors ...RequestEditorFn) (*EndpointsCreateResponse, error)

	EndpointsCreateWithResponse(ctx context.Context, body EndpointsCreateJSONRequestBody, reqEditors ...RequestEditorFn) (*EndpointsCreateResponse, error)

	EndpointsCreateWithFormdataBodyWithResponse(ctx context.Context, body EndpointsCreateFormdataRequestBody, reqEditors ...RequestEditorFn) (*EndpointsCreateResponse, error)

	// EndpointsDestroy request
	EndpointsDestroyWithResponse(ctx context.Context, id int, reqEditors ...RequestEditorFn) (*EndpointsDestroyResponse, error)

	// EndpointsRetrieve request
	EndpointsRetrieveWithResponse(ctx context.Context, id int, reqEditors ...RequestEditorFn) (*EndpointsRetrieveResponse, error)

	// EndpointsPartialUpdate request with any body
	EndpointsPartialUpdateWithBodyWithResponse(ctx context.Context, id int, contentType string, body io.Reader, reqEditors ...RequestEditorFn) (*EndpointsPartialUpdateResponse, error)

	EndpointsPartialUpdateWithResponse(ctx context.Context, id int, body EndpointsPartialUpdateJSONRequestBody, reqEditors ...RequestEditorFn) (*EndpointsPartialUpdateResponse, error)

	EndpointsPartialUpdateWithFormdataBodyWithResponse(ctx context.Context, id int, body EndpointsPartialUpdateFormdataRequestBody, reqEditors ...RequestEditorFn) (*EndpointsPartialUpdateResponse, error)

	// EndpointsUpdate request with any body
	EndpointsUpdateWithBodyWithResponse(ctx context.Context, id int, contentType string, body io.Reader, reqEditors ...RequestEditorFn) (*EndpointsUpdateResponse, error)

	EndpointsUpdateWithResponse(ctx context.Context, id int, body EndpointsUpdateJSONRequestBody, reqEditors ...RequestEditorFn) (*EndpointsUpdateResponse, error)

	EndpointsUpdateWithFormdataBodyWithResponse(ctx context.Context, id int, body EndpointsUpdateFormdataRequestBody, reqEditors ...RequestEditorFn) (*EndpointsUpdateResponse, error)

	// EndpointsDeletePreviewList request
	EndpointsDeletePreviewListWithResponse(ctx context.Context, id int, params *EndpointsDeletePreviewListParams, reqEditors ...RequestEditorFn) (*EndpointsDeletePreviewListResponse, error)

	// EndpointsGenerateReportCreate request with any body
	EndpointsGenerateReportCreateWithBodyWithResponse(ctx context.Context, id int, contentType string, body io.Reader, reqEditors ...RequestEditorFn) (*EndpointsGenerateReportCreateResponse, error)

	EndpointsGenerateReportCreateWithResponse(ctx context.Context, id int, body EndpointsGenerateReportCreateJSONRequestBody, reqEditors ...RequestEditorFn) (*EndpointsGenerateReportCreateResponse, error)

	EndpointsGenerateReportCreateWithFormdataBodyWithResponse(ctx context.Context, id int, body EndpointsGenerateReportCreateFormdataRequestBody, reqEditors ...RequestEditorFn) (*EndpointsGenerateReportCreateResponse, error)

	// EngagementPresetsList request
	EngagementPresetsListWithResponse(ctx context.Context, params *EngagementPresetsListParams, reqEditors ...RequestEditorFn) (*EngagementPresetsListResponse, error)

	// EngagementPresetsCreate request with any body
	EngagementPresetsCreateWithBodyWithResponse(ctx context.Context, contentType string, body io.Reader, reqEditors ...RequestEditorFn) (*EngagementPresetsCreateResponse, error)

	EngagementPresetsCreateWithResponse(ctx context.Context, body EngagementPresetsCreateJSONRequestBody, reqEditors ...RequestEditorFn) (*EngagementPresetsCreateResponse, error)

	EngagementPresetsCreateWithFormdataBodyWithResponse(ctx context.Context, body EngagementPresetsCreateFormdataRequestBody, reqEditors ...RequestEditorFn) (*EngagementPresetsCreateResponse, error)

	// EngagementPresetsDestroy request
	EngagementPresetsDestroyWithResponse(ctx context.Context, id int, reqEditors ...RequestEditorFn) (*EngagementPresetsDestroyResponse, error)

	// EngagementPresetsRetrieve request
	EngagementPresetsRetrieveWithResponse(ctx context.Context, id int, reqEditors ...RequestEditorFn) (*EngagementPresetsRetrieveResponse, error)

	// EngagementPresetsPartialUpdate request with any body
	EngagementPresetsPartialUpdateWithBodyWithResponse(ctx context.Context, id int, contentType string, body io.Reader, reqEditors ...RequestEditorFn) (*EngagementPresetsPartialUpdateResponse, error)

	EngagementPresetsPartialUpdateWithResponse(ctx context.Context, id int, body EngagementPresetsPartialUpdateJSONRequestBody, reqEditors ...RequestEditorFn) (*EngagementPresetsPartialUpdateResponse, error)

	EngagementPresetsPartialUpdateWithFormdataBodyWithResponse(ctx context.Context, id int, body EngagementPresetsPartialUpdateFormdataRequestBody, reqEditors ...RequestEditorFn) (*EngagementPresetsPartialUpdateResponse, error)

	// EngagementPresetsUpdate request with any body
	EngagementPresetsUpdateWithBodyWithResponse(ctx context.Context, id int, contentType string, body io.Reader, reqEditors ...RequestEditorFn) (*EngagementPresetsUpdateResponse, error)

	EngagementPresetsUpdateWithResponse(ctx context.Context, id int, body EngagementPresetsUpdateJSONRequestBody, reqEditors ...RequestEditorFn) (*EngagementPresetsUpdateResponse, error)

	EngagementPresetsUpdateWithFormdataBodyWithResponse(ctx context.Context, id int, body EngagementPresetsUpdateFormdataRequestBody, reqEditors ...RequestEditorFn) (*EngagementPresetsUpdateResponse, error)

	// EngagementPresetsDeletePreviewList request
	EngagementPresetsDeletePreviewListWithResponse(ctx context.Context, id int, params *EngagementPresetsDeletePreviewListParams, reqEditors ...RequestEditorFn) (*EngagementPresetsDeletePreviewListResponse, error)

	// EngagementsList request
	EngagementsListWithResponse(ctx context.Context, params *EngagementsListParams, reqEditors ...RequestEditorFn) (*EngagementsListResponse, error)

	// EngagementsCreate request with any body
	EngagementsCreateWithBodyWithResponse(ctx context.Context, contentType string, body io.Reader, reqEditors ...RequestEditorFn) (*EngagementsCreateResponse, error)

	EngagementsCreateWithResponse(ctx context.Context, body EngagementsCreateJSONRequestBody, reqEditors ...RequestEditorFn) (*EngagementsCreateResponse, error)

	EngagementsCreateWithFormdataBodyWithResponse(ctx context.Context, body EngagementsCreateFormdataRequestBody, reqEditors ...RequestEditorFn) (*EngagementsCreateResponse, error)

	// EngagementsDestroy request
	EngagementsDestroyWithResponse(ctx context.Context, id int, reqEditors ...RequestEditorFn) (*EngagementsDestroyResponse, error)

	// EngagementsRetrieve request
	EngagementsRetrieveWithResponse(ctx context.Context, id int, reqEditors ...RequestEditorFn) (*EngagementsRetrieveResponse, error)

	// EngagementsPartialUpdate request with any body
	EngagementsPartialUpdateWithBodyWithResponse(ctx context.Context, id int, contentType string, body io.Reader, reqEditors ...RequestEditorFn) (*EngagementsPartialUpdateResponse, error)

	EngagementsPartialUpdateWithResponse(ctx context.Context, id int, body EngagementsPartialUpdateJSONRequestBody, reqEditors ...RequestEditorFn) (*EngagementsPartialUpdateResponse, error)

	EngagementsPartialUpdateWithFormdataBodyWithResponse(ctx context.Context, id int, body EngagementsPartialUpdateFormdataRequestBody, reqEditors ...RequestEditorFn) (*EngagementsPartialUpdateResponse, error)

	// EngagementsUpdate request with any body
	EngagementsUpdateWithBodyWithResponse(ctx context.Context, id int, contentType string, body io.Reader, reqEditors ...RequestEditorFn) (*EngagementsUpdateResponse, error)

	EngagementsUpdateWithResponse(ctx context.Context, id int, body EngagementsUpdateJSONRequestBody, reqEditors ...RequestEditorFn) (*EngagementsUpdateResponse, error)

	EngagementsUpdateWithFormdataBodyWithResponse(ctx context.Context, id int, body EngagementsUpdateFormdataRequestBody, reqEditors ...RequestEditorFn) (*EngagementsUpdateResponse, error)

	// EngagementsAcceptRisksCreate request with any body
	EngagementsAcceptRisksCreateWithBodyWithResponse(ctx context.Context, id int, contentType string, body io.Reader, reqEditors ...RequestEditorFn) (*EngagementsAcceptRisksCreateResponse, error)

	EngagementsAcceptRisksCreateWithResponse(ctx context.Context, id int, body EngagementsAcceptRisksCreateJSONRequestBody, reqEditors ...RequestEditorFn) (*EngagementsAcceptRisksCreateResponse, error)

	EngagementsAcceptRisksCreateWithFormdataBodyWithResponse(ctx context.Context, id int, body EngagementsAcceptRisksCreateFormdataRequestBody, reqEditors ...RequestEditorFn) (*EngagementsAcceptRisksCreateResponse, error)

	// EngagementsCloseCreate request
	EngagementsCloseCreateWithResponse(ctx context.Context, id int, reqEditors ...RequestEditorFn) (*EngagementsCloseCreateResponse, error)

	// EngagementsCompleteChecklistRetrieve request
	EngagementsCompleteChecklistRetrieveWithResponse(ctx context.Context, id int, reqEditors ...RequestEditorFn) (*EngagementsCompleteChecklistRetrieveResponse, error)

	// EngagementsCompleteChecklistCreate request with any body
	EngagementsCompleteChecklistCreateWithBodyWithResponse(ctx context.Context, id int, contentType string, body io.Reader, reqEditors ...RequestEditorFn) (*EngagementsCompleteChecklistCreateResponse, error)

	EngagementsCompleteChecklistCreateWithResponse(ctx context.Context, id int, body EngagementsCompleteChecklistCreateJSONRequestBody, reqEditors ...RequestEditorFn) (*EngagementsCompleteChecklistCreateResponse, error)

	EngagementsCompleteChecklistCreateWithFormdataBodyWithResponse(ctx context.Context, id int, body EngagementsCompleteChecklistCreateFormdataRequestBody, reqEditors ...RequestEditorFn) (*EngagementsCompleteChecklistCreateResponse, error)

	// EngagementsDeletePreviewList request
	EngagementsDeletePreviewListWithResponse(ctx context.Context, id int, params *EngagementsDeletePreviewListParams, reqEditors ...RequestEditorFn) (*EngagementsDeletePreviewListResponse, error)

	// EngagementsFilesRetrieve request
	EngagementsFilesRetrieveWithResponse(ctx context.Context, id int, reqEditors ...RequestEditorFn) (*EngagementsFilesRetrieveResponse, error)

	// EngagementsFilesCreate request with any body
	EngagementsFilesCreateWithBodyWithResponse(ctx context.Context, id int, contentType string, body io.Reader, reqEditors ...RequestEditorFn) (*EngagementsFilesCreateResponse, error)

	// EngagementsFilesDownloadRetrieve request
	EngagementsFilesDownloadRetrieveWithResponse(ctx context.Context, id int, fileId string, reqEditors ...RequestEditorFn) (*EngagementsFilesDownloadRetrieveResponse, error)

	// EngagementsGenerateReportCreate request with any body
	EngagementsGenerateReportCreateWithBodyWithResponse(ctx context.Context, id int, contentType string, body io.Reader, reqEditors ...RequestEditorFn) (*EngagementsGenerateReportCreateResponse, error)

	EngagementsGenerateReportCreateWithResponse(ctx context.Context, id int, body EngagementsGenerateReportCreateJSONRequestBody, reqEditors ...RequestEditorFn) (*EngagementsGenerateReportCreateResponse, error)

	EngagementsGenerateReportCreateWithFormdataBodyWithResponse(ctx context.Context, id int, body EngagementsGenerateReportCreateFormdataRequestBody, reqEditors ...RequestEditorFn) (*EngagementsGenerateReportCreateResponse, error)

	// EngagementsNotesRetrieve request
	EngagementsNotesRetrieveWithResponse(ctx context.Context, id int, reqEditors ...RequestEditorFn) (*EngagementsNotesRetrieveResponse, error)

	// EngagementsNotesCreate request with any body
	EngagementsNotesCreateWithBodyWithResponse(ctx context.Context, id int, contentType string, body io.Reader, reqEditors ...RequestEditorFn) (*EngagementsNotesCreateResponse, error)

	EngagementsNotesCreateWithResponse(ctx context.Context, id int, body EngagementsNotesCreateJSONRequestBody, reqEditors ...RequestEditorFn) (*EngagementsNotesCreateResponse, error)

	EngagementsNotesCreateWithFormdataBodyWithResponse(ctx context.Context, id int, body EngagementsNotesCreateFormdataRequestBody, reqEditors ...RequestEditorFn) (*EngagementsNotesCreateResponse, error)

	// EngagementsReopenCreate request
	EngagementsReopenCreateWithResponse(ctx context.Context, id int, reqEditors ...RequestEditorFn) (*EngagementsReopenCreateResponse, error)

	// FindingTemplatesList request
	FindingTemplatesListWithResponse(ctx context.Context, params *FindingTemplatesListParams, reqEditors ...RequestEditorFn) (*FindingTemplatesListResponse, error)

	// FindingTemplatesCreate request with any body
	FindingTemplatesCreateWithBodyWithResponse(ctx context.Context, contentType string, body io.Reader, reqEditors ...RequestEditorFn) (*FindingTemplatesCreateResponse, error)

	FindingTemplatesCreateWithResponse(ctx context.Context, body FindingTemplatesCreateJSONRequestBody, reqEditors ...RequestEditorFn) (*FindingTemplatesCreateResponse, error)

	FindingTemplatesCreateWithFormdataBodyWithResponse(ctx context.Context, body FindingTemplatesCreateFormdataRequestBody, reqEditors ...RequestEditorFn) (*FindingTemplatesCreateResponse, error)

	// FindingTemplatesDestroy request
	FindingTemplatesDestroyWithResponse(ctx context.Context, id int, reqEditors ...RequestEditorFn) (*FindingTemplatesDestroyResponse, error)

	// FindingTemplatesRetrieve request
	FindingTemplatesRetrieveWithResponse(ctx context.Context, id int, reqEditors ...RequestEditorFn) (*FindingTemplatesRetrieveResponse, error)

	// FindingTemplatesPartialUpdate request with any body
	FindingTemplatesPartialUpdateWithBodyWithResponse(ctx context.Context, id int, contentType string, body io.Reader, reqEditors ...RequestEditorFn) (*FindingTemplatesPartialUpdateResponse, error)

	FindingTemplatesPartialUpdateWithResponse(ctx context.Context, id int, body FindingTemplatesPartialUpdateJSONRequestBody, reqEditors ...RequestEditorFn) (*FindingTemplatesPartialUpdateResponse, error)

	FindingTemplatesPartialUpdateWithFormdataBodyWithResponse(ctx context.Context, id int, body FindingTemplatesPartialUpdateFormdataRequestBody, reqEditors ...RequestEditorFn) (*FindingTemplatesPartialUpdateResponse, error)

	// FindingTemplatesUpdate request with any body
	FindingTemplatesUpdateWithBodyWithResponse(ctx context.Context, id int, contentType string, body io.Reader, reqEditors ...RequestEditorFn) (*FindingTemplatesUpdateResponse, error)

	FindingTemplatesUpdateWithResponse(ctx context.Context, id int, body FindingTemplatesUpdateJSONRequestBody, reqEditors ...RequestEditorFn) (*FindingTemplatesUpdateResponse, error)

	FindingTemplatesUpdateWithFormdataBodyWithResponse(ctx context.Context, id int, body FindingTemplatesUpdateFormdataRequestBody, reqEditors ...RequestEditorFn) (*FindingTemplatesUpdateResponse, error)

	// FindingTemplatesDeletePreviewList request
	FindingTemplatesDeletePreviewListWithResponse(ctx context.Context, id int, params *FindingTemplatesDeletePreviewListParams, reqEditors ...RequestEditorFn) (*FindingTemplatesDeletePreviewListResponse, error)

	// FindingsList request
	FindingsListWithResponse(ctx context.Context, params *FindingsListParams, reqEditors ...RequestEditorFn) (*FindingsListResponse, error)

	// FindingsCreate request with any body
	FindingsCreateWithBodyWithResponse(ctx context.Context, contentType string, body io.Reader, reqEditors ...RequestEditorFn) (*FindingsCreateResponse, error)

	FindingsCreateWithResponse(ctx context.Context, body FindingsCreateJSONRequestBody, reqEditors ...RequestEditorFn) (*FindingsCreateResponse, error)

	FindingsCreateWithFormdataBodyWithResponse(ctx context.Context, body FindingsCreateFormdataRequestBody, reqEditors ...RequestEditorFn) (*FindingsCreateResponse, error)

	// FindingsAcceptRisksCreate request with any body
	FindingsAcceptRisksCreateWithBodyWithResponse(ctx context.Context, params *FindingsAcceptRisksCreateParams, contentType string, body io.Reader, reqEditors ...RequestEditorFn) (*FindingsAcceptRisksCreateResponse, error)

	FindingsAcceptRisksCreateWithResponse(ctx context.Context, params *FindingsAcceptRisksCreateParams, body FindingsAcceptRisksCreateJSONRequestBody, reqEditors ...RequestEditorFn) (*FindingsAcceptRisksCreateResponse, error)

	FindingsAcceptRisksCreateWithFormdataBodyWithResponse(ctx context.Context, params *FindingsAcceptRisksCreateParams, body FindingsAcceptRisksCreateFormdataRequestBody, reqEditors ...RequestEditorFn) (*FindingsAcceptRisksCreateResponse, error)

	// FindingsGenerateReportCreate request with any body
	FindingsGenerateReportCreateWithBodyWithResponse(ctx context.Context, contentType string, body io.Reader, reqEditors ...RequestEditorFn) (*FindingsGenerateReportCreateResponse, error)

	FindingsGenerateReportCreateWithResponse(ctx context.Context, body FindingsGenerateReportCreateJSONRequestBody, reqEditors ...RequestEditorFn) (*FindingsGenerateReportCreateResponse, error)

	FindingsGenerateReportCreateWithFormdataBodyWithResponse(ctx context.Context, body FindingsGenerateReportCreateFormdataRequestBody, reqEditors ...RequestEditorFn) (*FindingsGenerateReportCreateResponse, error)

	// FindingsDestroy request
	FindingsDestroyWithResponse(ctx context.Context, id int, reqEditors ...RequestEditorFn) (*FindingsDestroyResponse, error)

	// FindingsRetrieve request
	FindingsRetrieveWithResponse(ctx context.Context, id int, params *FindingsRetrieveParams, reqEditors ...RequestEditorFn) (*FindingsRetrieveResponse, error)

	// FindingsPartialUpdate request with any body
	FindingsPartialUpdateWithBodyWithResponse(ctx context.Context, id int, contentType string, body io.Reader, reqEditors ...RequestEditorFn) (*FindingsPartialUpdateResponse, error)

	FindingsPartialUpdateWithResponse(ctx context.Context, id int, body FindingsPartialUpdateJSONRequestBody, reqEditors ...RequestEditorFn) (*FindingsPartialUpdateResponse, error)

	FindingsPartialUpdateWithFormdataBodyWithResponse(ctx context.Context, id int, body FindingsPartialUpdateFormdataRequestBody, reqEditors ...RequestEditorFn) (*FindingsPartialUpdateResponse, error)

	// FindingsUpdate request with any body
	FindingsUpdateWithBodyWithResponse(ctx context.Context, id int, contentType string, body io.Reader, reqEditors ...RequestEditorFn) (*FindingsUpdateResponse, error)

	FindingsUpdateWithResponse(ctx context.Context, id int, body FindingsUpdateJSONRequestBody, reqEditors ...RequestEditorFn) (*FindingsUpdateResponse, error)

	FindingsUpdateWithFormdataBodyWithResponse(ctx context.Context, id int, body FindingsUpdateFormdataRequestBody, reqEditors ...RequestEditorFn) (*FindingsUpdateResponse, error)

	// FindingsCloseCreate request with any body
	FindingsCloseCreateWithBodyWithResponse(ctx context.Context, id int, contentType string, body io.Reader, reqEditors ...RequestEditorFn) (*FindingsCloseCreateResponse, error)

	FindingsCloseCreateWithResponse(ctx context.Context, id int, body FindingsCloseCreateJSONRequestBody, reqEditors ...RequestEditorFn) (*FindingsCloseCreateResponse, error)

	FindingsCloseCreateWithFormdataBodyWithResponse(ctx context.Context, id int, body FindingsCloseCreateFormdataRequestBody, reqEditors ...RequestEditorFn) (*FindingsCloseCreateResponse, error)

	// FindingsDeletePreviewList request
	FindingsDeletePreviewListWithResponse(ctx context.Context, id int, params *FindingsDeletePreviewListParams, reqEditors ...RequestEditorFn) (*FindingsDeletePreviewListResponse, error)

	// FindingsDuplicateList request
	FindingsDuplicateListWithResponse(ctx context.Context, id int, reqEditors ...RequestEditorFn) (*FindingsDuplicateListResponse, error)

	// FindingsDuplicateResetCreate request
	FindingsDuplicateResetCreateWithResponse(ctx context.Context, id int, reqEditors ...RequestEditorFn) (*FindingsDuplicateResetCreateResponse, error)

	// FindingsFilesRetrieve request
	FindingsFilesRetrieveWithResponse(ctx context.Context, id int, reqEditors ...RequestEditorFn) (*FindingsFilesRetrieveResponse, error)

	// FindingsFilesCreate request with any body
	FindingsFilesCreateWithBodyWithResponse(ctx context.Context, id int, contentType string, body io.Reader, reqEditors ...RequestEditorFn) (*FindingsFilesCreateResponse, error)

	// FindingsFilesDownloadRetrieve request
	FindingsFilesDownloadRetrieveWithResponse(ctx context.Context, id int, fileId string, reqEditors ...RequestEditorFn) (*FindingsFilesDownloadRetrieveResponse, error)

	// FindingsMetadataDestroy request
	FindingsMetadataDestroyWithResponse(ctx context.Context, id int, params *FindingsMetadataDestroyParams, reqEditors ...RequestEditorFn) (*FindingsMetadataDestroyResponse, error)

	// FindingsMetadataList request
	FindingsMetadataListWithResponse(ctx context.Context, id int, reqEditors ...RequestEditorFn) (*FindingsMetadataListResponse, error)

	// FindingsMetadataCreate request with any body
	FindingsMetadataCreateWithBodyWithResponse(ctx context.Context, id int, contentType string, body io.Reader, reqEditors ...RequestEditorFn) (*FindingsMetadataCreateResponse, error)

	FindingsMetadataCreateWithResponse(ctx context.Context, id int, body FindingsMetadataCreateJSONRequestBody, reqEditors ...RequestEditorFn) (*FindingsMetadataCreateResponse, error)

	FindingsMetadataCreateWithFormdataBodyWithResponse(ctx context.Context, id int, body FindingsMetadataCreateFormdataRequestBody, reqEditors ...RequestEditorFn) (*FindingsMetadataCreateResponse, error)

	// FindingsMetadataUpdate request with any body
	FindingsMetadataUpdateWithBodyWithResponse(ctx context.Context, id int, contentType string, body io.Reader, reqEditors ...RequestEditorFn) (*FindingsMetadataUpdateResponse, error)

	FindingsMetadataUpdateWithResponse(ctx context.Context, id int, body FindingsMetadataUpdateJSONRequestBody, reqEditors ...RequestEditorFn) (*FindingsMetadataUpdateResponse, error)

	FindingsMetadataUpdateWithFormdataBodyWithResponse(ctx context.Context, id int, body FindingsMetadataUpdateFormdataRequestBody, reqEditors ...RequestEditorFn) (*FindingsMetadataUpdateResponse, error)

	// FindingsNotesRetrieve request
	FindingsNotesRetrieveWithResponse(ctx context.Context, id int, reqEditors ...RequestEditorFn) (*FindingsNotesRetrieveResponse, error)

	// FindingsNotesCreate request with any body
	FindingsNotesCreateWithBodyWithResponse(ctx context.Context, id int, contentType string, body io.Reader, reqEditors ...RequestEditorFn) (*FindingsNotesCreateResponse, error)

	FindingsNotesCreateWithResponse(ctx context.Context, id int, body FindingsNotesCreateJSONRequestBody, reqEditors ...RequestEditorFn) (*FindingsNotesCreateResponse, error)

	FindingsNotesCreateWithFormdataBodyWithResponse(ctx context.Context, id int, body FindingsNotesCreateFormdataRequestBody, reqEditors ...RequestEditorFn) (*FindingsNotesCreateResponse, error)

	// FindingsOriginalCreate request
	FindingsOriginalCreateWithResponse(ctx context.Context, id int, newFid int, reqEditors ...RequestEditorFn) (*FindingsOriginalCreateResponse, error)

	// FindingsRemoveNotePartialUpdate request with any body
	FindingsRemoveNotePartialUpdateWithBodyWithResponse(ctx context.Context, id int, contentType string, body io.Reader, reqEditors ...RequestEditorFn) (*FindingsRemoveNotePartialUpdateResponse, error)

	FindingsRemoveNotePartialUpdateWithResponse(ctx context.Context, id int, body FindingsRemoveNotePartialUpdateJSONRequestBody, reqEditors ...RequestEditorFn) (*FindingsRemoveNotePartialUpdateResponse, error)

	FindingsRemoveNotePartialUpdateWithFormdataBodyWithResponse(ctx context.Context, id int, body FindingsRemoveNotePartialUpdateFormdataRequestBody, reqEditors ...RequestEditorFn) (*FindingsRemoveNotePartialUpdateResponse, error)

	// FindingsRemoveTagsPartialUpdate request with any body
	FindingsRemoveTagsPartialUpdateWithBodyWithResponse(ctx context.Context, id int, contentType string, body io.Reader, reqEditors ...RequestEditorFn) (*FindingsRemoveTagsPartialUpdateResponse, error)

	FindingsRemoveTagsPartialUpdateWithResponse(ctx context.Context, id int, body FindingsRemoveTagsPartialUpdateJSONRequestBody, reqEditors ...RequestEditorFn) (*FindingsRemoveTagsPartialUpdateResponse, error)

	FindingsRemoveTagsPartialUpdateWithFormdataBodyWithResponse(ctx context.Context, id int, body FindingsRemoveTagsPartialUpdateFormdataRequestBody, reqEditors ...RequestEditorFn) (*FindingsRemoveTagsPartialUpdateResponse, error)

	// FindingsRemoveTagsUpdate request with any body
	FindingsRemoveTagsUpdateWithBodyWithResponse(ctx context.Context, id int, contentType string, body io.Reader, reqEditors ...RequestEditorFn) (*FindingsRemoveTagsUpdateResponse, error)

	FindingsRemoveTagsUpdateWithResponse(ctx context.Context, id int, body FindingsRemoveTagsUpdateJSONRequestBody, reqEditors ...RequestEditorFn) (*FindingsRemoveTagsUpdateResponse, error)

	FindingsRemoveTagsUpdateWithFormdataBodyWithResponse(ctx context.Context, id int, body FindingsRemoveTagsUpdateFormdataRequestBody, reqEditors ...RequestEditorFn) (*FindingsRemoveTagsUpdateResponse, error)

	// FindingsRequestResponseRetrieve request
	FindingsRequestResponseRetrieveWithResponse(ctx context.Context, id int, reqEditors ...RequestEditorFn) (*FindingsRequestResponseRetrieveResponse, error)

	// FindingsRequestResponseCreate request with any body
	FindingsRequestResponseCreateWithBodyWithResponse(ctx context.Context, id int, contentType string, body io.Reader, reqEditors ...RequestEditorFn) (*FindingsRequestResponseCreateResponse, error)

	FindingsRequestResponseCreateWithResponse(ctx context.Context, id int, body FindingsRequestResponseCreateJSONRequestBody, reqEditors ...RequestEditorFn) (*FindingsRequestResponseCreateResponse, error)

	FindingsRequestResponseCreateWithFormdataBodyWithResponse(ctx context.Context, id int, body FindingsRequestResponseCreateFormdataRequestBody, reqEditors ...RequestEditorFn) (*FindingsRequestResponseCreateResponse, error)

	// FindingsTagsRetrieve request
	FindingsTagsRetrieveWithResponse(ctx context.Context, id int, reqEditors ...RequestEditorFn) (*FindingsTagsRetrieveResponse, error)

	// FindingsTagsCreate request with any body
	FindingsTagsCreateWithBodyWithResponse(ctx context.Context, id int, contentType string, body io.Reader, reqEditors ...RequestEditorFn) (*FindingsTagsCreateResponse, error)

	FindingsTagsCreateWithResponse(ctx context.Context, id int, body FindingsTagsCreateJSONRequestBody, reqEditors ...RequestEditorFn) (*FindingsTagsCreateResponse, error)

	FindingsTagsCreateWithFormdataBodyWithResponse(ctx context.Context, id int, body FindingsTagsCreateFormdataRequestBody, reqEditors ...RequestEditorFn) (*FindingsTagsCreateResponse, error)

	// GlobalRolesList request
	GlobalRolesListWithResponse(ctx context.Context, params *GlobalRolesListParams, reqEditors ...RequestEditorFn) (*GlobalRolesListResponse, error)

	// GlobalRolesCreate request with any body
	GlobalRolesCreateWithBodyWithResponse(ctx context.Context, contentType string, body io.Reader, reqEditors ...RequestEditorFn) (*GlobalRolesCreateResponse, error)

	GlobalRolesCreateWithResponse(ctx context.Context, body GlobalRolesCreateJSONRequestBody, reqEditors ...RequestEditorFn) (*GlobalRolesCreateResponse, error)

	GlobalRolesCreateWithFormdataBodyWithResponse(ctx context.Context, body GlobalRolesCreateFormdataRequestBody, reqEditors ...RequestEditorFn) (*GlobalRolesCreateResponse, error)

	// GlobalRolesDestroy request
	GlobalRolesDestroyWithResponse(ctx context.Context, id int, reqEditors ...RequestEditorFn) (*GlobalRolesDestroyResponse, error)

	// GlobalRolesRetrieve request
	GlobalRolesRetrieveWithResponse(ctx context.Context, id int, reqEditors ...RequestEditorFn) (*GlobalRolesRetrieveResponse, error)

	// GlobalRolesPartialUpdate request with any body
	GlobalRolesPartialUpdateWithBodyWithResponse(ctx context.Context, id int, contentType string, body io.Reader, reqEditors ...RequestEditorFn) (*GlobalRolesPartialUpdateResponse, error)

	GlobalRolesPartialUpdateWithResponse(ctx context.Context, id int, body GlobalRolesPartialUpdateJSONRequestBody, reqEditors ...RequestEditorFn) (*GlobalRolesPartialUpdateResponse, error)

	GlobalRolesPartialUpdateWithFormdataBodyWithResponse(ctx context.Context, id int, body GlobalRolesPartialUpdateFormdataRequestBody, reqEditors ...RequestEditorFn) (*GlobalRolesPartialUpdateResponse, error)

	// GlobalRolesUpdate request with any body
	GlobalRolesUpdateWithBodyWithResponse(ctx context.Context, id int, contentType string, body io.Reader, reqEditors ...RequestEditorFn) (*GlobalRolesUpdateResponse, error)

	GlobalRolesUpdateWithResponse(ctx context.Context, id int, body GlobalRolesUpdateJSONRequestBody, reqEditors ...RequestEditorFn) (*GlobalRolesUpdateResponse, error)

	GlobalRolesUpdateWithFormdataBodyWithResponse(ctx context.Context, id int, body GlobalRolesUpdateFormdataRequestBody, reqEditors ...RequestEditorFn) (*GlobalRolesUpdateResponse, error)

	// GlobalRolesDeletePreviewList request
	GlobalRolesDeletePreviewListWithResponse(ctx context.Context, id int, params *GlobalRolesDeletePreviewListParams, reqEditors ...RequestEditorFn) (*GlobalRolesDeletePreviewListResponse, error)

	// ImportLanguagesCreate request with any body
	ImportLanguagesCreateWithBodyWithResponse(ctx context.Context, contentType string, body io.Reader, reqEditors ...RequestEditorFn) (*ImportLanguagesCreateResponse, error)

	// ImportScanCreate request with any body
	ImportScanCreateWithBodyWithResponse(ctx context.Context, contentType string, body io.Reader, reqEditors ...RequestEditorFn) (*ImportScanCreateResponse, error)

	// JiraConfigurationsList request
	JiraConfigurationsListWithResponse(ctx context.Context, params *JiraConfigurationsListParams, reqEditors ...RequestEditorFn) (*JiraConfigurationsListResponse, error)

	// JiraConfigurationsCreate request with any body
	JiraConfigurationsCreateWithBodyWithResponse(ctx context.Context, contentType string, body io.Reader, reqEditors ...RequestEditorFn) (*JiraConfigurationsCreateResponse, error)

	JiraConfigurationsCreateWithResponse(ctx context.Context, body JiraConfigurationsCreateJSONRequestBody, reqEditors ...RequestEditorFn) (*JiraConfigurationsCreateResponse, error)

	JiraConfigurationsCreateWithFormdataBodyWithResponse(ctx context.Context, body JiraConfigurationsCreateFormdataRequestBody, reqEditors ...RequestEditorFn) (*JiraConfigurationsCreateResponse, error)

	// JiraConfigurationsDestroy request
	JiraConfigurationsDestroyWithResponse(ctx context.Context, id int, reqEditors ...RequestEditorFn) (*JiraConfigurationsDestroyResponse, error)

	// JiraConfigurationsRetrieve request
	JiraConfigurationsRetrieveWithResponse(ctx context.Context, id int, reqEditors ...RequestEditorFn) (*JiraConfigurationsRetrieveResponse, error)

	// JiraConfigurationsPartialUpdate request with any body
	JiraConfigurationsPartialUpdateWithBodyWithResponse(ctx context.Context, id int, contentType string, body io.Reader, reqEditors ...RequestEditorFn) (*JiraConfigurationsPartialUpdateResponse, error)

	JiraConfigurationsPartialUpdateWithResponse(ctx context.Context, id int, body JiraConfigurationsPartialUpdateJSONRequestBody, reqEditors ...RequestEditorFn) (*JiraConfigurationsPartialUpdateResponse, error)

	JiraConfigurationsPartialUpdateWithFormdataBodyWithResponse(ctx context.Context, id int, body JiraConfigurationsPartialUpdateFormdataRequestBody, reqEditors ...RequestEditorFn) (*JiraConfigurationsPartialUpdateResponse, error)

	// JiraConfigurationsUpdate request with any body
	JiraConfigurationsUpdateWithBodyWithResponse(ctx context.Context, id int, contentType string, body io.Reader, reqEditors ...RequestEditorFn) (*JiraConfigurationsUpdateResponse, error)

	JiraConfigurationsUpdateWithResponse(ctx context.Context, id int, body JiraConfigurationsUpdateJSONRequestBody, reqEditors ...RequestEditorFn) (*JiraConfigurationsUpdateResponse, error)

	JiraConfigurationsUpdateWithFormdataBodyWithResponse(ctx context.Context, id int, body JiraConfigurationsUpdateFormdataRequestBody, reqEditors ...RequestEditorFn) (*JiraConfigurationsUpdateResponse, error)

	// JiraConfigurationsDeletePreviewList request
	JiraConfigurationsDeletePreviewListWithResponse(ctx context.Context, id int, params *JiraConfigurationsDeletePreviewListParams, reqEditors ...RequestEditorFn) (*JiraConfigurationsDeletePreviewListResponse, error)

	// JiraFindingMappingsList request
	JiraFindingMappingsListWithResponse(ctx context.Context, params *JiraFindingMappingsListParams, reqEditors ...RequestEditorFn) (*JiraFindingMappingsListResponse, error)

	// JiraFindingMappingsCreate request with any body
	JiraFindingMappingsCreateWithBodyWithResponse(ctx context.Context, contentType string, body io.Reader, reqEditors ...RequestEditorFn) (*JiraFindingMappingsCreateResponse, error)

	JiraFindingMappingsCreateWithResponse(ctx context.Context, body JiraFindingMappingsCreateJSONRequestBody, reqEditors ...RequestEditorFn) (*JiraFindingMappingsCreateResponse, error)

	JiraFindingMappingsCreateWithFormdataBodyWithResponse(ctx context.Context, body JiraFindingMappingsCreateFormdataRequestBody, reqEditors ...RequestEditorFn) (*JiraFindingMappingsCreateResponse, error)

	// JiraFindingMappingsDestroy request
	JiraFindingMappingsDestroyWithResponse(ctx context.Context, id int, reqEditors ...RequestEditorFn) (*JiraFindingMappingsDestroyResponse, error)

	// JiraFindingMappingsRetrieve request
	JiraFindingMappingsRetrieveWithResponse(ctx context.Context, id int, reqEditors ...RequestEditorFn) (*JiraFindingMappingsRetrieveResponse, error)

	// JiraFindingMappingsPartialUpdate request with any body
	JiraFindingMappingsPartialUpdateWithBodyWithResponse(ctx context.Context, id int, contentType string, body io.Reader, reqEditors ...RequestEditorFn) (*JiraFindingMappingsPartialUpdateResponse, error)

	JiraFindingMappingsPartialUpdateWithResponse(ctx context.Context, id int, body JiraFindingMappingsPartialUpdateJSONRequestBody, reqEditors ...RequestEditorFn) (*JiraFindingMappingsPartialUpdateResponse, error)

	JiraFindingMappingsPartialUpdateWithFormdataBodyWithResponse(ctx context.Context, id int, body JiraFindingMappingsPartialUpdateFormdataRequestBody, reqEditors ...RequestEditorFn) (*JiraFindingMappingsPartialUpdateResponse, error)

	// JiraFindingMappingsUpdate request with any body
	JiraFindingMappingsUpdateWithBodyWithResponse(ctx context.Context, id int, contentType string, body io.Reader, reqEditors ...RequestEditorFn) (*JiraFindingMappingsUpdateResponse, error)

	JiraFindingMappingsUpdateWithResponse(ctx context.Context, id int, body JiraFindingMappingsUpdateJSONRequestBody, reqEditors ...RequestEditorFn) (*JiraFindingMappingsUpdateResponse, error)

	JiraFindingMappingsUpdateWithFormdataBodyWithResponse(ctx context.Context, id int, body JiraFindingMappingsUpdateFormdataRequestBody, reqEditors ...RequestEditorFn) (*JiraFindingMappingsUpdateResponse, error)

	// JiraFindingMappingsDeletePreviewList request
	JiraFindingMappingsDeletePreviewListWithResponse(ctx context.Context, id int, params *JiraFindingMappingsDeletePreviewListParams, reqEditors ...RequestEditorFn) (*JiraFindingMappingsDeletePreviewListResponse, error)

	// JiraInstancesList request
	JiraInstancesListWithResponse(ctx context.Context, params *JiraInstancesListParams, reqEditors ...RequestEditorFn) (*JiraInstancesListResponse, error)

	// JiraInstancesCreate request with any body
	JiraInstancesCreateWithBodyWithResponse(ctx context.Context, contentType string, body io.Reader, reqEditors ...RequestEditorFn) (*JiraInstancesCreateResponse, error)

	JiraInstancesCreateWithResponse(ctx context.Context, body JiraInstancesCreateJSONRequestBody, reqEditors ...RequestEditorFn) (*JiraInstancesCreateResponse, error)

	JiraInstancesCreateWithFormdataBodyWithResponse(ctx context.Context, body JiraInstancesCreateFormdataRequestBody, reqEditors ...RequestEditorFn) (*JiraInstancesCreateResponse, error)

	// JiraInstancesDestroy request
	JiraInstancesDestroyWithResponse(ctx context.Context, id int, reqEditors ...RequestEditorFn) (*JiraInstancesDestroyResponse, error)

	// JiraInstancesRetrieve request
	JiraInstancesRetrieveWithResponse(ctx context.Context, id int, reqEditors ...RequestEditorFn) (*JiraInstancesRetrieveResponse, error)

	// JiraInstancesPartialUpdate request with any body
	JiraInstancesPartialUpdateWithBodyWithResponse(ctx context.Context, id int, contentType string, body io.Reader, reqEditors ...RequestEditorFn) (*JiraInstancesPartialUpdateResponse, error)

	JiraInstancesPartialUpdateWithResponse(ctx context.Context, id int, body JiraInstancesPartialUpdateJSONRequestBody, reqEditors ...RequestEditorFn) (*JiraInstancesPartialUpdateResponse, error)

	JiraInstancesPartialUpdateWithFormdataBodyWithResponse(ctx context.Context, id int, body JiraInstancesPartialUpdateFormdataRequestBody, reqEditors ...RequestEditorFn) (*JiraInstancesPartialUpdateResponse, error)

	// JiraInstancesUpdate request with any body
	JiraInstancesUpdateWithBodyWithResponse(ctx context.Context, id int, contentType string, body io.Reader, reqEditors ...RequestEditorFn) (*JiraInstancesUpdateResponse, error)

	JiraInstancesUpdateWithResponse(ctx context.Context, id int, body JiraInstancesUpdateJSONRequestBody, reqEditors ...RequestEditorFn) (*JiraInstancesUpdateResponse, error)

	JiraInstancesUpdateWithFormdataBodyWithResponse(ctx context.Context, id int, body JiraInstancesUpdateFormdataRequestBody, reqEditors ...RequestEditorFn) (*JiraInstancesUpdateResponse, error)

	// JiraInstancesDeletePreviewList request
	JiraInstancesDeletePreviewListWithResponse(ctx context.Context, id int, params *JiraInstancesDeletePreviewListParams, reqEditors ...RequestEditorFn) (*JiraInstancesDeletePreviewListResponse, error)

	// JiraProductConfigurationsList request
	JiraProductConfigurationsListWithResponse(ctx context.Context, params *JiraProductConfigurationsListParams, reqEditors ...RequestEditorFn) (*JiraProductConfigurationsListResponse, error)

	// JiraProductConfigurationsCreate request with any body
	JiraProductConfigurationsCreateWithBodyWithResponse(ctx context.Context, contentType string, body io.Reader, reqEditors ...RequestEditorFn) (*JiraProductConfigurationsCreateResponse, error)

	JiraProductConfigurationsCreateWithResponse(ctx context.Context, body JiraProductConfigurationsCreateJSONRequestBody, reqEditors ...RequestEditorFn) (*JiraProductConfigurationsCreateResponse, error)

	JiraProductConfigurationsCreateWithFormdataBodyWithResponse(ctx context.Context, body JiraProductConfigurationsCreateFormdataRequestBody, reqEditors ...RequestEditorFn) (*JiraProductConfigurationsCreateResponse, error)

	// JiraProductConfigurationsDestroy request
	JiraProductConfigurationsDestroyWithResponse(ctx context.Context, id int, reqEditors ...RequestEditorFn) (*JiraProductConfigurationsDestroyResponse, error)

	// JiraProductConfigurationsRetrieve request
	JiraProductConfigurationsRetrieveWithResponse(ctx context.Context, id int, reqEditors ...RequestEditorFn) (*JiraProductConfigurationsRetrieveResponse, error)

	// JiraProductConfigurationsPartialUpdate request with any body
	JiraProductConfigurationsPartialUpdateWithBodyWithResponse(ctx context.Context, id int, contentType string, body io.Reader, reqEditors ...RequestEditorFn) (*JiraProductConfigurationsPartialUpdateResponse, error)

	JiraProductConfigurationsPartialUpdateWithResponse(ctx context.Context, id int, body JiraProductConfigurationsPartialUpdateJSONRequestBody, reqEditors ...RequestEditorFn) (*JiraProductConfigurationsPartialUpdateResponse, error)

	JiraProductConfigurationsPartialUpdateWithFormdataBodyWithResponse(ctx context.Context, id int, body JiraProductConfigurationsPartialUpdateFormdataRequestBody, reqEditors ...RequestEditorFn) (*JiraProductConfigurationsPartialUpdateResponse, error)

	// JiraProductConfigurationsUpdate request with any body
	JiraProductConfigurationsUpdateWithBodyWithResponse(ctx context.Context, id int, contentType string, body io.Reader, reqEditors ...RequestEditorFn) (*JiraProductConfigurationsUpdateResponse, error)

	JiraProductConfigurationsUpdateWithResponse(ctx context.Context, id int, body JiraProductConfigurationsUpdateJSONRequestBody, reqEditors ...RequestEditorFn) (*JiraProductConfigurationsUpdateResponse, error)

	JiraProductConfigurationsUpdateWithFormdataBodyWithResponse(ctx context.Context, id int, body JiraProductConfigurationsUpdateFormdataRequestBody, reqEditors ...RequestEditorFn) (*JiraProductConfigurationsUpdateResponse, error)

	// JiraProductConfigurationsDeletePreviewList request
	JiraProductConfigurationsDeletePreviewListWithResponse(ctx context.Context, id int, params *JiraProductConfigurationsDeletePreviewListParams, reqEditors ...RequestEditorFn) (*JiraProductConfigurationsDeletePreviewListResponse, error)

	// JiraProjectsList request
	JiraProjectsListWithResponse(ctx context.Context, params *JiraProjectsListParams, reqEditors ...RequestEditorFn) (*JiraProjectsListResponse, error)

	// JiraProjectsCreate request with any body
	JiraProjectsCreateWithBodyWithResponse(ctx context.Context, contentType string, body io.Reader, reqEditors ...RequestEditorFn) (*JiraProjectsCreateResponse, error)

	JiraProjectsCreateWithResponse(ctx context.Context, body JiraProjectsCreateJSONRequestBody, reqEditors ...RequestEditorFn) (*JiraProjectsCreateResponse, error)

	JiraProjectsCreateWithFormdataBodyWithResponse(ctx context.Context, body JiraProjectsCreateFormdataRequestBody, reqEditors ...RequestEditorFn) (*JiraProjectsCreateResponse, error)

	// JiraProjectsDestroy request
	JiraProjectsDestroyWithResponse(ctx context.Context, id int, reqEditors ...RequestEditorFn) (*JiraProjectsDestroyResponse, error)

	// JiraProjectsRetrieve request
	JiraProjectsRetrieveWithResponse(ctx context.Context, id int, reqEditors ...RequestEditorFn) (*JiraProjectsRetrieveResponse, error)

	// JiraProjectsPartialUpdate request with any body
	JiraProjectsPartialUpdateWithBodyWithResponse(ctx context.Context, id int, contentType string, body io.Reader, reqEditors ...RequestEditorFn) (*JiraProjectsPartialUpdateResponse, error)

	JiraProjectsPartialUpdateWithResponse(ctx context.Context, id int, body JiraProjectsPartialUpdateJSONRequestBody, reqEditors ...RequestEditorFn) (*JiraProjectsPartialUpdateResponse, error)

	JiraProjectsPartialUpdateWithFormdataBodyWithResponse(ctx context.Context, id int, body JiraProjectsPartialUpdateFormdataRequestBody, reqEditors ...RequestEditorFn) (*JiraProjectsPartialUpdateResponse, error)

	// JiraProjectsUpdate request with any body
	JiraProjectsUpdateWithBodyWithResponse(ctx context.Context, id int, contentType string, body io.Reader, reqEditors ...RequestEditorFn) (*JiraProjectsUpdateResponse, error)

	JiraProjectsUpdateWithResponse(ctx context.Context, id int, body JiraProjectsUpdateJSONRequestBody, reqEditors ...RequestEditorFn) (*JiraProjectsUpdateResponse, error)

	JiraProjectsUpdateWithFormdataBodyWithResponse(ctx context.Context, id int, body JiraProjectsUpdateFormdataRequestBody, reqEditors ...RequestEditorFn) (*JiraProjectsUpdateResponse, error)

	// JiraProjectsDeletePreviewList request
	JiraProjectsDeletePreviewListWithResponse(ctx context.Context, id int, params *JiraProjectsDeletePreviewListParams, reqEditors ...RequestEditorFn) (*JiraProjectsDeletePreviewListResponse, error)

	// LanguageTypesList request
	LanguageTypesListWithResponse(ctx context.Context, params *LanguageTypesListParams, reqEditors ...RequestEditorFn) (*LanguageTypesListResponse, error)

	// LanguageTypesCreate request with any body
	LanguageTypesCreateWithBodyWithResponse(ctx context.Context, contentType string, body io.Reader, reqEditors ...RequestEditorFn) (*LanguageTypesCreateResponse, error)

	LanguageTypesCreateWithResponse(ctx context.Context, body LanguageTypesCreateJSONRequestBody, reqEditors ...RequestEditorFn) (*LanguageTypesCreateResponse, error)

	LanguageTypesCreateWithFormdataBodyWithResponse(ctx context.Context, body LanguageTypesCreateFormdataRequestBody, reqEditors ...RequestEditorFn) (*LanguageTypesCreateResponse, error)

	// LanguageTypesDestroy request
	LanguageTypesDestroyWithResponse(ctx context.Context, id int, reqEditors ...RequestEditorFn) (*LanguageTypesDestroyResponse, error)

	// LanguageTypesRetrieve request
	LanguageTypesRetrieveWithResponse(ctx context.Context, id int, reqEditors ...RequestEditorFn) (*LanguageTypesRetrieveResponse, error)

	// LanguageTypesPartialUpdate request with any body
	LanguageTypesPartialUpdateWithBodyWithResponse(ctx context.Context, id int, contentType string, body io.Reader, reqEditors ...RequestEditorFn) (*LanguageTypesPartialUpdateResponse, error)

	LanguageTypesPartialUpdateWithResponse(ctx context.Context, id int, body LanguageTypesPartialUpdateJSONRequestBody, reqEditors ...RequestEditorFn) (*LanguageTypesPartialUpdateResponse, error)

	LanguageTypesPartialUpdateWithFormdataBodyWithResponse(ctx context.Context, id int, body LanguageTypesPartialUpdateFormdataRequestBody, reqEditors ...RequestEditorFn) (*LanguageTypesPartialUpdateResponse, error)

	// LanguageTypesUpdate request with any body
	LanguageTypesUpdateWithBodyWithResponse(ctx context.Context, id int, contentType string, body io.Reader, reqEditors ...RequestEditorFn) (*LanguageTypesUpdateResponse, error)

	LanguageTypesUpdateWithResponse(ctx context.Context, id int, body LanguageTypesUpdateJSONRequestBody, reqEditors ...RequestEditorFn) (*LanguageTypesUpdateResponse, error)

	LanguageTypesUpdateWithFormdataBodyWithResponse(ctx context.Context, id int, body LanguageTypesUpdateFormdataRequestBody, reqEditors ...RequestEditorFn) (*LanguageTypesUpdateResponse, error)

	// LanguageTypesDeletePreviewList request
	LanguageTypesDeletePreviewListWithResponse(ctx context.Context, id int, params *LanguageTypesDeletePreviewListParams, reqEditors ...RequestEditorFn) (*LanguageTypesDeletePreviewListResponse, error)

	// LanguagesList request
	LanguagesListWithResponse(ctx context.Context, params *LanguagesListParams, reqEditors ...RequestEditorFn) (*LanguagesListResponse, error)

	// LanguagesCreate request with any body
	LanguagesCreateWithBodyWithResponse(ctx context.Context, contentType string, body io.Reader, reqEditors ...RequestEditorFn) (*LanguagesCreateResponse, error)

	LanguagesCreateWithResponse(ctx context.Context, body LanguagesCreateJSONRequestBody, reqEditors ...RequestEditorFn) (*LanguagesCreateResponse, error)

	LanguagesCreateWithFormdataBodyWithResponse(ctx context.Context, body LanguagesCreateFormdataRequestBody, reqEditors ...RequestEditorFn) (*LanguagesCreateResponse, error)

	// LanguagesDestroy request
	LanguagesDestroyWithResponse(ctx context.Context, id int, reqEditors ...RequestEditorFn) (*LanguagesDestroyResponse, error)

	// LanguagesRetrieve request
	LanguagesRetrieveWithResponse(ctx context.Context, id int, params *LanguagesRetrieveParams, reqEditors ...RequestEditorFn) (*LanguagesRetrieveResponse, error)

	// LanguagesPartialUpdate request with any body
	LanguagesPartialUpdateWithBodyWithResponse(ctx context.Context, id int, contentType string, body io.Reader, reqEditors ...RequestEditorFn) (*LanguagesPartialUpdateResponse, error)

	LanguagesPartialUpdateWithResponse(ctx context.Context, id int, body LanguagesPartialUpdateJSONRequestBody, reqEditors ...RequestEditorFn) (*LanguagesPartialUpdateResponse, error)

	LanguagesPartialUpdateWithFormdataBodyWithResponse(ctx context.Context, id int, body LanguagesPartialUpdateFormdataRequestBody, reqEditors ...RequestEditorFn) (*LanguagesPartialUpdateResponse, error)

	// LanguagesUpdate request with any body
	LanguagesUpdateWithBodyWithResponse(ctx context.Context, id int, contentType string, body io.Reader, reqEditors ...RequestEditorFn) (*LanguagesUpdateResponse, error)

	LanguagesUpdateWithResponse(ctx context.Context, id int, body LanguagesUpdateJSONRequestBody, reqEditors ...RequestEditorFn) (*LanguagesUpdateResponse, error)

	LanguagesUpdateWithFormdataBodyWithResponse(ctx context.Context, id int, body LanguagesUpdateFormdataRequestBody, reqEditors ...RequestEditorFn) (*LanguagesUpdateResponse, error)

	// LanguagesDeletePreviewList request
	LanguagesDeletePreviewListWithResponse(ctx context.Context, id int, params *LanguagesDeletePreviewListParams, reqEditors ...RequestEditorFn) (*LanguagesDeletePreviewListResponse, error)

	// MetadataList request
	MetadataListWithResponse(ctx context.Context, params *MetadataListParams, reqEditors ...RequestEditorFn) (*MetadataListResponse, error)

	// MetadataCreate request with any body
	MetadataCreateWithBodyWithResponse(ctx context.Context, contentType string, body io.Reader, reqEditors ...RequestEditorFn) (*MetadataCreateResponse, error)

	MetadataCreateWithResponse(ctx context.Context, body MetadataCreateJSONRequestBody, reqEditors ...RequestEditorFn) (*MetadataCreateResponse, error)

	MetadataCreateWithFormdataBodyWithResponse(ctx context.Context, body MetadataCreateFormdataRequestBody, reqEditors ...RequestEditorFn) (*MetadataCreateResponse, error)

	// MetadataDestroy request
	MetadataDestroyWithResponse(ctx context.Context, id int, reqEditors ...RequestEditorFn) (*MetadataDestroyResponse, error)

	// MetadataRetrieve request
	MetadataRetrieveWithResponse(ctx context.Context, id int, params *MetadataRetrieveParams, reqEditors ...RequestEditorFn) (*MetadataRetrieveResponse, error)

	// MetadataPartialUpdate request with any body
	MetadataPartialUpdateWithBodyWithResponse(ctx context.Context, id int, contentType string, body io.Reader, reqEditors ...RequestEditorFn) (*MetadataPartialUpdateResponse, error)

	MetadataPartialUpdateWithResponse(ctx context.Context, id int, body MetadataPartialUpdateJSONRequestBody, reqEditors ...RequestEditorFn) (*MetadataPartialUpdateResponse, error)

	MetadataPartialUpdateWithFormdataBodyWithResponse(ctx context.Context, id int, body MetadataPartialUpdateFormdataRequestBody, reqEditors ...RequestEditorFn) (*MetadataPartialUpdateResponse, error)

	// MetadataUpdate request with any body
	MetadataUpdateWithBodyWithResponse(ctx context.Context, id int, contentType string, body io.Reader, reqEditors ...RequestEditorFn) (*MetadataUpdateResponse, error)

	MetadataUpdateWithResponse(ctx context.Context, id int, body MetadataUpdateJSONRequestBody, reqEditors ...RequestEditorFn) (*MetadataUpdateResponse, error)

	MetadataUpdateWithFormdataBodyWithResponse(ctx context.Context, id int, body MetadataUpdateFormdataRequestBody, reqEditors ...RequestEditorFn) (*MetadataUpdateResponse, error)

	// MetadataDeletePreviewList request
	MetadataDeletePreviewListWithResponse(ctx context.Context, id int, params *MetadataDeletePreviewListParams, reqEditors ...RequestEditorFn) (*MetadataDeletePreviewListResponse, error)

	// NetworkLocationsList request
	NetworkLocationsListWithResponse(ctx context.Context, params *NetworkLocationsListParams, reqEditors ...RequestEditorFn) (*NetworkLocationsListResponse, error)

	// NetworkLocationsCreate request with any body
	NetworkLocationsCreateWithBodyWithResponse(ctx context.Context, contentType string, body io.Reader, reqEditors ...RequestEditorFn) (*NetworkLocationsCreateResponse, error)

	NetworkLocationsCreateWithResponse(ctx context.Context, body NetworkLocationsCreateJSONRequestBody, reqEditors ...RequestEditorFn) (*NetworkLocationsCreateResponse, error)

	NetworkLocationsCreateWithFormdataBodyWithResponse(ctx context.Context, body NetworkLocationsCreateFormdataRequestBody, reqEditors ...RequestEditorFn) (*NetworkLocationsCreateResponse, error)

	// NetworkLocationsDestroy request
	NetworkLocationsDestroyWithResponse(ctx context.Context, id int, reqEditors ...RequestEditorFn) (*NetworkLocationsDestroyResponse, error)

	// NetworkLocationsRetrieve request
	NetworkLocationsRetrieveWithResponse(ctx context.Context, id int, reqEditors ...RequestEditorFn) (*NetworkLocationsRetrieveResponse, error)

	// NetworkLocationsPartialUpdate request with any body
	NetworkLocationsPartialUpdateWithBodyWithResponse(ctx context.Context, id int, contentType string, body io.Reader, reqEditors ...RequestEditorFn) (*NetworkLocationsPartialUpdateResponse, error)

	NetworkLocationsPartialUpdateWithResponse(ctx context.Context, id int, body NetworkLocationsPartialUpdateJSONRequestBody, reqEditors ...RequestEditorFn) (*NetworkLocationsPartialUpdateResponse, error)

	NetworkLocationsPartialUpdateWithFormdataBodyWithResponse(ctx context.Context, id int, body NetworkLocationsPartialUpdateFormdataRequestBody, reqEditors ...RequestEditorFn) (*NetworkLocationsPartialUpdateResponse, error)

	// NetworkLocationsUpdate request with any body
	NetworkLocationsUpdateWithBodyWithResponse(ctx context.Context, id int, contentType string, body io.Reader, reqEditors ...RequestEditorFn) (*NetworkLocationsUpdateResponse, error)

	NetworkLocationsUpdateWithResponse(ctx context.Context, id int, body NetworkLocationsUpdateJSONRequestBody, reqEditors ...RequestEditorFn) (*NetworkLocationsUpdateResponse, error)

	NetworkLocationsUpdateWithFormdataBodyWithResponse(ctx context.Context, id int, body NetworkLocationsUpdateFormdataRequestBody, reqEditors ...RequestEditorFn) (*NetworkLocationsUpdateResponse, error)

	// NetworkLocationsDeletePreviewList request
	NetworkLocationsDeletePreviewListWithResponse(ctx context.Context, id int, params *NetworkLocationsDeletePreviewListParams, reqEditors ...RequestEditorFn) (*NetworkLocationsDeletePreviewListResponse, error)

	// NoteTypeList request
	NoteTypeListWithResponse(ctx context.Context, params *NoteTypeListParams, reqEditors ...RequestEditorFn) (*NoteTypeListResponse, error)

	// NoteTypeCreate request with any body
	NoteTypeCreateWithBodyWithResponse(ctx context.Context, contentType string, body io.Reader, reqEditors ...RequestEditorFn) (*NoteTypeCreateResponse, error)

	NoteTypeCreateWithResponse(ctx context.Context, body NoteTypeCreateJSONRequestBody, reqEditors ...RequestEditorFn) (*NoteTypeCreateResponse, error)

	NoteTypeCreateWithFormdataBodyWithResponse(ctx context.Context, body NoteTypeCreateFormdataRequestBody, reqEditors ...RequestEditorFn) (*NoteTypeCreateResponse, error)

	// NoteTypeDestroy request
	NoteTypeDestroyWithResponse(ctx context.Context, id int, reqEditors ...RequestEditorFn) (*NoteTypeDestroyResponse, error)

	// NoteTypeRetrieve request
	NoteTypeRetrieveWithResponse(ctx context.Context, id int, reqEditors ...RequestEditorFn) (*NoteTypeRetrieveResponse, error)

	// NoteTypePartialUpdate request with any body
	NoteTypePartialUpdateWithBodyWithResponse(ctx context.Context, id int, contentType string, body io.Reader, reqEditors ...RequestEditorFn) (*NoteTypePartialUpdateResponse, error)

	NoteTypePartialUpdateWithResponse(ctx context.Context, id int, body NoteTypePartialUpdateJSONRequestBody, reqEditors ...RequestEditorFn) (*NoteTypePartialUpdateResponse, error)

	NoteTypePartialUpdateWithFormdataBodyWithResponse(ctx context.Context, id int, body NoteTypePartialUpdateFormdataRequestBody, reqEditors ...RequestEditorFn) (*NoteTypePartialUpdateResponse, error)

	// NoteTypeUpdate request with any body
	NoteTypeUpdateWithBodyWithResponse(ctx context.Context, id int, contentType string, body io.Reader, reqEditors ...RequestEditorFn) (*NoteTypeUpdateResponse, error)

	NoteTypeUpdateWithResponse(ctx context.Context, id int, body NoteTypeUpdateJSONRequestBody, reqEditors ...RequestEditorFn) (*NoteTypeUpdateResponse, error)

	NoteTypeUpdateWithFormdataBodyWithResponse(ctx context.Context, id int, body NoteTypeUpdateFormdataRequestBody, reqEditors ...RequestEditorFn) (*NoteTypeUpdateResponse, error)

	// NoteTypeDeletePreviewList request
	NoteTypeDeletePreviewListWithResponse(ctx context.Context, id int, params *NoteTypeDeletePreviewListParams, reqEditors ...RequestEditorFn) (*NoteTypeDeletePreviewListResponse, error)

	// NotesList request
	NotesListWithResponse(ctx context.Context, params *NotesListParams, reqEditors ...RequestEditorFn) (*NotesListResponse, error)

	// NotesRetrieve request
	NotesRetrieveWithResponse(ctx context.Context, id int, reqEditors ...RequestEditorFn) (*NotesRetrieveResponse, error)

	// NotesPartialUpdate request with any body
	NotesPartialUpdateWithBodyWithResponse(ctx context.Context, id int, contentType string, body io.Reader, reqEditors ...RequestEditorFn) (*NotesPartialUpdateResponse, error)

	NotesPartialUpdateWithResponse(ctx context.Context, id int, body NotesPartialUpdateJSONRequestBody, reqEditors ...RequestEditorFn) (*NotesPartialUpdateResponse, error)

	NotesPartialUpdateWithFormdataBodyWithResponse(ctx context.Context, id int, body NotesPartialUpdateFormdataRequestBody, reqEditors ...RequestEditorFn) (*NotesPartialUpdateResponse, error)

	// NotesUpdate request with any body
	NotesUpdateWithBodyWithResponse(ctx context.Context, id int, contentType string, body io.Reader, reqEditors ...RequestEditorFn) (*NotesUpdateResponse, error)

	NotesUpdateWithResponse(ctx context.Context, id int, body NotesUpdateJSONRequestBody, reqEditors ...RequestEditorFn) (*NotesUpdateResponse, error)

	NotesUpdateWithFormdataBodyWithResponse(ctx context.Context, id int, body NotesUpdateFormdataRequestBody, reqEditors ...RequestEditorFn) (*NotesUpdateResponse, error)

	// NotificationsList request
	NotificationsListWithResponse(ctx context.Context, params *NotificationsListParams, reqEditors ...RequestEditorFn) (*NotificationsListResponse, error)

	// NotificationsCreate request with any body
	NotificationsCreateWithBodyWithResponse(ctx context.Context, contentType string, body io.Reader, reqEditors ...RequestEditorFn) (*NotificationsCreateResponse, error)

	NotificationsCreateWithResponse(ctx context.Context, body NotificationsCreateJSONRequestBody, reqEditors ...RequestEditorFn) (*NotificationsCreateResponse, error)

	NotificationsCreateWithFormdataBodyWithResponse(ctx context.Context, body NotificationsCreateFormdataRequestBody, reqEditors ...RequestEditorFn) (*NotificationsCreateResponse, error)

	// NotificationsDestroy request
	NotificationsDestroyWithResponse(ctx context.Context, id int, reqEditors ...RequestEditorFn) (*NotificationsDestroyResponse, error)

	// NotificationsRetrieve request
	NotificationsRetrieveWithResponse(ctx context.Context, id int, params *NotificationsRetrieveParams, reqEditors ...RequestEditorFn) (*NotificationsRetrieveResponse, error)

	// NotificationsPartialUpdate request with any body
	NotificationsPartialUpdateWithBodyWithResponse(ctx context.Context, id int, contentType string, body io.Reader, reqEditors ...RequestEditorFn) (*NotificationsPartialUpdateResponse, error)

	NotificationsPartialUpdateWithResponse(ctx context.Context, id int, body NotificationsPartialUpdateJSONRequestBody, reqEditors ...RequestEditorFn) (*NotificationsPartialUpdateResponse, error)

	NotificationsPartialUpdateWithFormdataBodyWithResponse(ctx context.Context, id int, body NotificationsPartialUpdateFormdataRequestBody, reqEditors ...RequestEditorFn) (*NotificationsPartialUpdateResponse, error)

	// NotificationsUpdate request with any body
	NotificationsUpdateWithBodyWithResponse(ctx context.Context, id int, contentType string, body io.Reader, reqEditors ...RequestEditorFn) (*NotificationsUpdateResponse, error)

	NotificationsUpdateWithResponse(ctx context.Context, id int, body NotificationsUpdateJSONRequestBody, reqEditors ...RequestEditorFn) (*NotificationsUpdateResponse, error)

	NotificationsUpdateWithFormdataBodyWithResponse(ctx context.Context, id int, body NotificationsUpdateFormdataRequestBody, reqEditors ...RequestEditorFn) (*NotificationsUpdateResponse, error)

	// NotificationsDeletePreviewList request
	NotificationsDeletePreviewListWithResponse(ctx context.Context, id int, params *NotificationsDeletePreviewListParams, reqEditors ...RequestEditorFn) (*NotificationsDeletePreviewListResponse, error)

	// Oa3SchemaRetrieve request
	Oa3SchemaRetrieveWithResponse(ctx context.Context, params *Oa3SchemaRetrieveParams, reqEditors ...RequestEditorFn) (*Oa3SchemaRetrieveResponse, error)

	// ProductApiScanConfigurationsList request
	ProductApiScanConfigurationsListWithResponse(ctx context.Context, params *ProductApiScanConfigurationsListParams, reqEditors ...RequestEditorFn) (*ProductApiScanConfigurationsListResponse, error)

	// ProductApiScanConfigurationsCreate request with any body
	ProductApiScanConfigurationsCreateWithBodyWithResponse(ctx context.Context, contentType string, body io.Reader, reqEditors ...RequestEditorFn) (*ProductApiScanConfigurationsCreateResponse, error)

	ProductApiScanConfigurationsCreateWithResponse(ctx context.Context, body ProductApiScanConfigurationsCreateJSONRequestBody, reqEditors ...RequestEditorFn) (*ProductApiScanConfigurationsCreateResponse, error)

	ProductApiScanConfigurationsCreateWithFormdataBodyWithResponse(ctx context.Context, body ProductApiScanConfigurationsCreateFormdataRequestBody, reqEditors ...RequestEditorFn) (*ProductApiScanConfigurationsCreateResponse, error)

	// ProductApiScanConfigurationsDestroy request
	ProductApiScanConfigurationsDestroyWithResponse(ctx context.Context, id int, reqEditors ...RequestEditorFn) (*ProductApiScanConfigurationsDestroyResponse, error)

	// ProductApiScanConfigurationsRetrieve request
	ProductApiScanConfigurationsRetrieveWithResponse(ctx context.Context, id int, reqEditors ...RequestEditorFn) (*ProductApiScanConfigurationsRetrieveResponse, error)

	// ProductApiScanConfigurationsPartialUpdate request with any body
	ProductApiScanConfigurationsPartialUpdateWithBodyWithResponse(ctx context.Context, id int, contentType string, body io.Reader, reqEditors ...RequestEditorFn) (*ProductApiScanConfigurationsPartialUpdateResponse, error)

	ProductApiScanConfigurationsPartialUpdateWithResponse(ctx context.Context, id int, body ProductApiScanConfigurationsPartialUpdateJSONRequestBody, reqEditors ...RequestEditorFn) (*ProductApiScanConfigurationsPartialUpdateResponse, error)

	ProductApiScanConfigurationsPartialUpdateWithFormdataBodyWithResponse(ctx context.Context, id int, body ProductApiScanConfigurationsPartialUpdateFormdataRequestBody, reqEditors ...RequestEditorFn) (*ProductApiScanConfigurationsPartialUpdateResponse, error)

	// ProductApiScanConfigurationsUpdate request with any body
	ProductApiScanConfigurationsUpdateWithBodyWithResponse(ctx context.Context, id int, contentType string, body io.Reader, reqEditors ...RequestEditorFn) (*ProductApiScanConfigurationsUpdateResponse, error)

	ProductApiScanConfigurationsUpdateWithResponse(ctx context.Context, id int, body ProductApiScanConfigurationsUpdateJSONRequestBody, reqEditors ...RequestEditorFn) (*ProductApiScanConfigurationsUpdateResponse, error)

	ProductApiScanConfigurationsUpdateWithFormdataBodyWithResponse(ctx context.Context, id int, body ProductApiScanConfigurationsUpdateFormdataRequestBody, reqEditors ...RequestEditorFn) (*ProductApiScanConfigurationsUpdateResponse, error)

	// ProductApiScanConfigurationsDeletePreviewList request
	ProductApiScanConfigurationsDeletePreviewListWithResponse(ctx context.Context, id int, params *ProductApiScanConfigurationsDeletePreviewListParams, reqEditors ...RequestEditorFn) (*ProductApiScanConfigurationsDeletePreviewListResponse, error)

	// ProductGroupsList request
	ProductGroupsListWithResponse(ctx context.Context, params *ProductGroupsListParams, reqEditors ...RequestEditorFn) (*ProductGroupsListResponse, error)

	// ProductGroupsCreate request with any body
	ProductGroupsCreateWithBodyWithResponse(ctx context.Context, contentType string, body io.Reader, reqEditors ...RequestEditorFn) (*ProductGroupsCreateResponse, error)

	ProductGroupsCreateWithResponse(ctx context.Context, body ProductGroupsCreateJSONRequestBody, reqEditors ...RequestEditorFn) (*ProductGroupsCreateResponse, error)

	ProductGroupsCreateWithFormdataBodyWithResponse(ctx context.Context, body ProductGroupsCreateFormdataRequestBody, reqEditors ...RequestEditorFn) (*ProductGroupsCreateResponse, error)

	// ProductGroupsDestroy request
	ProductGroupsDestroyWithResponse(ctx context.Context, id int, reqEditors ...RequestEditorFn) (*ProductGroupsDestroyResponse, error)

	// ProductGroupsRetrieve request
	ProductGroupsRetrieveWithResponse(ctx context.Context, id int, params *ProductGroupsRetrieveParams, reqEditors ...RequestEditorFn) (*ProductGroupsRetrieveResponse, error)

	// ProductGroupsPartialUpdate request
	ProductGroupsPartialUpdateWithResponse(ctx context.Context, id int, reqEditors ...RequestEditorFn) (*ProductGroupsPartialUpdateResponse, error)

	// ProductGroupsUpdate request with any body
	ProductGroupsUpdateWithBodyWithResponse(ctx context.Context, id int, contentType string, body io.Reader, reqEditors ...RequestEditorFn) (*ProductGroupsUpdateResponse, error)

	ProductGroupsUpdateWithResponse(ctx context.Context, id int, body ProductGroupsUpdateJSONRequestBody, reqEditors ...RequestEditorFn) (*ProductGroupsUpdateResponse, error)

	ProductGroupsUpdateWithFormdataBodyWithResponse(ctx context.Context, id int, body ProductGroupsUpdateFormdataRequestBody, reqEditors ...RequestEditorFn) (*ProductGroupsUpdateResponse, error)

	// ProductGroupsDeletePreviewList request
	ProductGroupsDeletePreviewListWithResponse(ctx context.Context, id int, params *ProductGroupsDeletePreviewListParams, reqEditors ...RequestEditorFn) (*ProductGroupsDeletePreviewListResponse, error)

	// ProductMembersList request
	ProductMembersListWithResponse(ctx context.Context, params *ProductMembersListParams, reqEditors ...RequestEditorFn) (*ProductMembersListResponse, error)

	// ProductMembersCreate request with any body
	ProductMembersCreateWithBodyWithResponse(ctx context.Context, contentType string, body io.Reader, reqEditors ...RequestEditorFn) (*ProductMembersCreateResponse, error)

	ProductMembersCreateWithResponse(ctx context.Context, body ProductMembersCreateJSONRequestBody, reqEditors ...RequestEditorFn) (*ProductMembersCreateResponse, error)

	ProductMembersCreateWithFormdataBodyWithResponse(ctx context.Context, body ProductMembersCreateFormdataRequestBody, reqEditors ...RequestEditorFn) (*ProductMembersCreateResponse, error)

	// ProductMembersDestroy request
	ProductMembersDestroyWithResponse(ctx context.Context, id int, reqEditors ...RequestEditorFn) (*ProductMembersDestroyResponse, error)

	// ProductMembersRetrieve request
	ProductMembersRetrieveWithResponse(ctx context.Context, id int, params *ProductMembersRetrieveParams, reqEditors ...RequestEditorFn) (*ProductMembersRetrieveResponse, error)

	// ProductMembersPartialUpdate request
	ProductMembersPartialUpdateWithResponse(ctx context.Context, id int, reqEditors ...RequestEditorFn) (*ProductMembersPartialUpdateResponse, error)

	// ProductMembersUpdate request with any body
	ProductMembersUpdateWithBodyWithResponse(ctx context.Context, id int, contentType string, body io.Reader, reqEditors ...RequestEditorFn) (*ProductMembersUpdateResponse, error)

	ProductMembersUpdateWithResponse(ctx context.Context, id int, body ProductMembersUpdateJSONRequestBody, reqEditors ...RequestEditorFn) (*ProductMembersUpdateResponse, error)

	ProductMembersUpdateWithFormdataBodyWithResponse(ctx context.Context, id int, body ProductMembersUpdateFormdataRequestBody, reqEditors ...RequestEditorFn) (*ProductMembersUpdateResponse, error)

	// ProductMembersDeletePreviewList request
	ProductMembersDeletePreviewListWithResponse(ctx context.Context, id int, params *ProductMembersDeletePreviewListParams, reqEditors ...RequestEditorFn) (*ProductMembersDeletePreviewListResponse, error)

	// ProductTypeGroupsList request
	ProductTypeGroupsListWithResponse(ctx context.Context, params *ProductTypeGroupsListParams, reqEditors ...RequestEditorFn) (*ProductTypeGroupsListResponse, error)

	// ProductTypeGroupsCreate request with any body
	ProductTypeGroupsCreateWithBodyWithResponse(ctx context.Context, contentType string, body io.Reader, reqEditors ...RequestEditorFn) (*ProductTypeGroupsCreateResponse, error)

	ProductTypeGroupsCreateWithResponse(ctx context.Context, body ProductTypeGroupsCreateJSONRequestBody, reqEditors ...RequestEditorFn) (*ProductTypeGroupsCreateResponse, error)

	ProductTypeGroupsCreateWithFormdataBodyWithResponse(ctx context.Context, body ProductTypeGroupsCreateFormdataRequestBody, reqEditors ...RequestEditorFn) (*ProductTypeGroupsCreateResponse, error)

	// ProductTypeGroupsDestroy request
	ProductTypeGroupsDestroyWithResponse(ctx context.Context, id int, reqEditors ...RequestEditorFn) (*ProductTypeGroupsDestroyResponse, error)

	// ProductTypeGroupsRetrieve request
	ProductTypeGroupsRetrieveWithResponse(ctx context.Context, id int, params *ProductTypeGroupsRetrieveParams, reqEditors ...RequestEditorFn) (*ProductTypeGroupsRetrieveResponse, error)

	// ProductTypeGroupsPartialUpdate request
	ProductTypeGroupsPartialUpdateWithResponse(ctx context.Context, id int, reqEditors ...RequestEditorFn) (*ProductTypeGroupsPartialUpdateResponse, error)

	// ProductTypeGroupsUpdate request with any body
	ProductTypeGroupsUpdateWithBodyWithResponse(ctx context.Context, id int, contentType string, body io.Reader, reqEditors ...RequestEditorFn) (*ProductTypeGroupsUpdateResponse, error)

	ProductTypeGroupsUpdateWithResponse(ctx context.Context, id int, body ProductTypeGroupsUpdateJSONRequestBody, reqEditors ...RequestEditorFn) (*ProductTypeGroupsUpdateResponse, error)

	ProductTypeGroupsUpdateWithFormdataBodyWithResponse(ctx context.Context, id int, body ProductTypeGroupsUpdateFormdataRequestBody, reqEditors ...RequestEditorFn) (*ProductTypeGroupsUpdateResponse, error)

	// ProductTypeGroupsDeletePreviewList request
	ProductTypeGroupsDeletePreviewListWithResponse(ctx context.Context, id int, params *ProductTypeGroupsDeletePreviewListParams, reqEditors ...RequestEditorFn) (*ProductTypeGroupsDeletePreviewListResponse, error)

	// ProductTypeMembersList request
	ProductTypeMembersListWithResponse(ctx context.Context, params *ProductTypeMembersListParams, reqEditors ...RequestEditorFn) (*ProductTypeMembersListResponse, error)

	// ProductTypeMembersCreate request with any body
	ProductTypeMembersCreateWithBodyWithResponse(ctx context.Context, contentType string, body io.Reader, reqEditors ...RequestEditorFn) (*ProductTypeMembersCreateResponse, error)

	ProductTypeMembersCreateWithResponse(ctx context.Context, body ProductTypeMembersCreateJSONRequestBody, reqEditors ...RequestEditorFn) (*ProductTypeMembersCreateResponse, error)

	ProductTypeMembersCreateWithFormdataBodyWithResponse(ctx context.Context, body ProductTypeMembersCreateFormdataRequestBody, reqEditors ...RequestEditorFn) (*ProductTypeMembersCreateResponse, error)

	// ProductTypeMembersDestroy request
	ProductTypeMembersDestroyWithResponse(ctx context.Context, id int, reqEditors ...RequestEditorFn) (*ProductTypeMembersDestroyResponse, error)

	// ProductTypeMembersRetrieve request
	ProductTypeMembersRetrieveWithResponse(ctx context.Context, id int, params *ProductTypeMembersRetrieveParams, reqEditors ...RequestEditorFn) (*ProductTypeMembersRetrieveResponse, error)

	// ProductTypeMembersPartialUpdate request
	ProductTypeMembersPartialUpdateWithResponse(ctx context.Context, id int, reqEditors ...RequestEditorFn) (*ProductTypeMembersPartialUpdateResponse, error)

	// ProductTypeMembersUpdate request with any body
	ProductTypeMembersUpdateWithBodyWithResponse(ctx context.Context, id int, contentType string, body io.Reader, reqEditors ...RequestEditorFn) (*ProductTypeMembersUpdateResponse, error)

	ProductTypeMembersUpdateWithResponse(ctx context.Context, id int, body ProductTypeMembersUpdateJSONRequestBody, reqEditors ...RequestEditorFn) (*ProductTypeMembersUpdateResponse, error)

	ProductTypeMembersUpdateWithFormdataBodyWithResponse(ctx context.Context, id int, body ProductTypeMembersUpdateFormdataRequestBody, reqEditors ...RequestEditorFn) (*ProductTypeMembersUpdateResponse, error)

	// ProductTypeMembersDeletePreviewList request
	ProductTypeMembersDeletePreviewListWithResponse(ctx context.Context, id int, params *ProductTypeMembersDeletePreviewListParams, reqEditors ...RequestEditorFn) (*ProductTypeMembersDeletePreviewListResponse, error)

	// ProductTypesList request
	ProductTypesListWithResponse(ctx context.Context, params *ProductTypesListParams, reqEditors ...RequestEditorFn) (*ProductTypesListResponse, error)

	// ProductTypesCreate request with any body
	ProductTypesCreateWithBodyWithResponse(ctx context.Context, contentType string, body io.Reader, reqEditors ...RequestEditorFn) (*ProductTypesCreateResponse, error)

	ProductTypesCreateWithResponse(ctx context.Context, body ProductTypesCreateJSONRequestBody, reqEditors ...RequestEditorFn) (*ProductTypesCreateResponse, error)

	ProductTypesCreateWithFormdataBodyWithResponse(ctx context.Context, body ProductTypesCreateFormdataRequestBody, reqEditors ...RequestEditorFn) (*ProductTypesCreateResponse, error)

	// ProductTypesDestroy request
	ProductTypesDestroyWithResponse(ctx context.Context, id int, reqEditors ...RequestEditorFn) (*ProductTypesDestroyResponse, error)

	// ProductTypesRetrieve request
	ProductTypesRetrieveWithResponse(ctx context.Context, id int, params *ProductTypesRetrieveParams, reqEditors ...RequestEditorFn) (*ProductTypesRetrieveResponse, error)

	// ProductTypesPartialUpdate request with any body
	ProductTypesPartialUpdateWithBodyWithResponse(ctx context.Context, id int, contentType string, body io.Reader, reqEditors ...RequestEditorFn) (*ProductTypesPartialUpdateResponse, error)

	ProductTypesPartialUpdateWithResponse(ctx context.Context, id int, body ProductTypesPartialUpdateJSONRequestBody, reqEditors ...RequestEditorFn) (*ProductTypesPartialUpdateResponse, error)

	ProductTypesPartialUpdateWithFormdataBodyWithResponse(ctx context.Context, id int, body ProductTypesPartialUpdateFormdataRequestBody, reqEditors ...RequestEditorFn) (*ProductTypesPartialUpdateResponse, error)

	// ProductTypesUpdate request with any body
	ProductTypesUpdateWithBodyWithResponse(ctx context.Context, id int, contentType string, body io.Reader, reqEditors ...RequestEditorFn) (*ProductTypesUpdateResponse, error)

	ProductTypesUpdateWithResponse(ctx context.Context, id int, body ProductTypesUpdateJSONRequestBody, reqEditors ...RequestEditorFn) (*ProductTypesUpdateResponse, error)

	ProductTypesUpdateWithFormdataBodyWithResponse(ctx context.Context, id int, body ProductTypesUpdateFormdataRequestBody, reqEditors ...RequestEditorFn) (*ProductTypesUpdateResponse, error)

	// ProductTypesDeletePreviewList request
	ProductTypesDeletePreviewListWithResponse(ctx context.Context, id int, params *ProductTypesDeletePreviewListParams, reqEditors ...RequestEditorFn) (*ProductTypesDeletePreviewListResponse, error)

	// ProductTypesGenerateReportCreate request with any body
	ProductTypesGenerateReportCreateWithBodyWithResponse(ctx context.Context, id int, contentType string, body io.Reader, reqEditors ...RequestEditorFn) (*ProductTypesGenerateReportCreateResponse, error)

	ProductTypesGenerateReportCreateWithResponse(ctx context.Context, id int, body ProductTypesGenerateReportCreateJSONRequestBody, reqEditors ...RequestEditorFn) (*ProductTypesGenerateReportCreateResponse, error)

	ProductTypesGenerateReportCreateWithFormdataBodyWithResponse(ctx context.Context, id int, body ProductTypesGenerateReportCreateFormdataRequestBody, reqEditors ...RequestEditorFn) (*ProductTypesGenerateReportCreateResponse, error)

	// ProductsList request
	ProductsListWithResponse(ctx context.Context, params *ProductsListParams, reqEditors ...RequestEditorFn) (*ProductsListResponse, error)

	// ProductsCreate request with any body
	ProductsCreateWithBodyWithResponse(ctx context.Context, contentType string, body io.Reader, reqEditors ...RequestEditorFn) (*ProductsCreateResponse, error)

	ProductsCreateWithResponse(ctx context.Context, body ProductsCreateJSONRequestBody, reqEditors ...RequestEditorFn) (*ProductsCreateResponse, error)

	ProductsCreateWithFormdataBodyWithResponse(ctx context.Context, body ProductsCreateFormdataRequestBody, reqEditors ...RequestEditorFn) (*ProductsCreateResponse, error)

	// ProductsDestroy request
	ProductsDestroyWithResponse(ctx context.Context, id int, reqEditors ...RequestEditorFn) (*ProductsDestroyResponse, error)

	// ProductsRetrieve request
	ProductsRetrieveWithResponse(ctx context.Context, id int, params *ProductsRetrieveParams, reqEditors ...RequestEditorFn) (*ProductsRetrieveResponse, error)

	// ProductsPartialUpdate request with any body
	ProductsPartialUpdateWithBodyWithResponse(ctx context.Context, id int, contentType string, body io.Reader, reqEditors ...RequestEditorFn) (*ProductsPartialUpdateResponse, error)

	ProductsPartialUpdateWithResponse(ctx context.Context, id int, body ProductsPartialUpdateJSONRequestBody, reqEditors ...RequestEditorFn) (*ProductsPartialUpdateResponse, error)

	ProductsPartialUpdateWithFormdataBodyWithResponse(ctx context.Context, id int, body ProductsPartialUpdateFormdataRequestBody, reqEditors ...RequestEditorFn) (*ProductsPartialUpdateResponse, error)

	// ProductsUpdate request with any body
	ProductsUpdateWithBodyWithResponse(ctx context.Context, id int, contentType string, body io.Reader, reqEditors ...RequestEditorFn) (*ProductsUpdateResponse, error)

	ProductsUpdateWithResponse(ctx context.Context, id int, body ProductsUpdateJSONRequestBody, reqEditors ...RequestEditorFn) (*ProductsUpdateResponse, error)

	ProductsUpdateWithFormdataBodyWithResponse(ctx context.Context, id int, body ProductsUpdateFormdataRequestBody, reqEditors ...RequestEditorFn) (*ProductsUpdateResponse, error)

	// ProductsDeletePreviewList request
	ProductsDeletePreviewListWithResponse(ctx context.Context, id int, params *ProductsDeletePreviewListParams, reqEditors ...RequestEditorFn) (*ProductsDeletePreviewListResponse, error)

	// ProductsGenerateReportCreate request with any body
	ProductsGenerateReportCreateWithBodyWithResponse(ctx context.Context, id int, contentType string, body io.Reader, reqEditors ...RequestEditorFn) (*ProductsGenerateReportCreateResponse, error)

	ProductsGenerateReportCreateWithResponse(ctx context.Context, id int, body ProductsGenerateReportCreateJSONRequestBody, reqEditors ...RequestEditorFn) (*ProductsGenerateReportCreateResponse, error)

	ProductsGenerateReportCreateWithFormdataBodyWithResponse(ctx context.Context, id int, body ProductsGenerateReportCreateFormdataRequestBody, reqEditors ...RequestEditorFn) (*ProductsGenerateReportCreateResponse, error)

	// QuestionnaireAnsweredQuestionnairesList request
	QuestionnaireAnsweredQuestionnairesListWithResponse(ctx context.Context, params *QuestionnaireAnsweredQuestionnairesListParams, reqEditors ...RequestEditorFn) (*QuestionnaireAnsweredQuestionnairesListResponse, error)

	// QuestionnaireAnsweredQuestionnairesRetrieve request
	QuestionnaireAnsweredQuestionnairesRetrieveWithResponse(ctx context.Context, id int, reqEditors ...RequestEditorFn) (*QuestionnaireAnsweredQuestionnairesRetrieveResponse, error)

	// QuestionnaireAnswersList request
	QuestionnaireAnswersListWithResponse(ctx context.Context, params *QuestionnaireAnswersListParams, reqEditors ...RequestEditorFn) (*QuestionnaireAnswersListResponse, error)

	// QuestionnaireAnswersRetrieve request
	QuestionnaireAnswersRetrieveWithResponse(ctx context.Context, id int, reqEditors ...RequestEditorFn) (*QuestionnaireAnswersRetrieveResponse, error)

	// QuestionnaireEngagementQuestionnairesList request
	QuestionnaireEngagementQuestionnairesListWithResponse(ctx context.Context, params *QuestionnaireEngagementQuestionnairesListParams, reqEditors ...RequestEditorFn) (*QuestionnaireEngagementQuestionnairesListResponse, error)

	// QuestionnaireEngagementQuestionnairesRetrieve request
	QuestionnaireEngagementQuestionnairesRetrieveWithResponse(ctx context.Context, id int, reqEditors ...RequestEditorFn) (*QuestionnaireEngagementQuestionnairesRetrieveResponse, error)

	// QuestionnaireGeneralQuestionnairesList request
	QuestionnaireGeneralQuestionnairesListWithResponse(ctx context.Context, params *QuestionnaireGeneralQuestionnairesListParams, reqEditors ...RequestEditorFn) (*QuestionnaireGeneralQuestionnairesListResponse, error)

	// QuestionnaireGeneralQuestionnairesRetrieve request
	QuestionnaireGeneralQuestionnairesRetrieveWithResponse(ctx context.Context, id int, reqEditors ...RequestEditorFn) (*QuestionnaireGeneralQuestionnairesRetrieveResponse, error)

	// QuestionnaireQuestionsList request
	QuestionnaireQuestionsListWithResponse(ctx context.Context, params *QuestionnaireQuestionsListParams, reqEditors ...RequestEditorFn) (*QuestionnaireQuestionsListResponse, error)

	// QuestionnaireQuestionsRetrieve request
	QuestionnaireQuestionsRetrieveWithResponse(ctx context.Context, id int, reqEditors ...RequestEditorFn) (*QuestionnaireQuestionsRetrieveResponse, error)

	// RegulationsList request
	RegulationsListWithResponse(ctx context.Context, params *RegulationsListParams, reqEditors ...RequestEditorFn) (*RegulationsListResponse, error)

	// RegulationsCreate request with any body
	RegulationsCreateWithBodyWithResponse(ctx context.Context, contentType string, body io.Reader, reqEditors ...RequestEditorFn) (*RegulationsCreateResponse, error)

	RegulationsCreateWithResponse(ctx context.Context, body RegulationsCreateJSONRequestBody, reqEditors ...RequestEditorFn) (*RegulationsCreateResponse, error)

	RegulationsCreateWithFormdataBodyWithResponse(ctx context.Context, body RegulationsCreateFormdataRequestBody, reqEditors ...RequestEditorFn) (*RegulationsCreateResponse, error)

	// RegulationsDestroy request
	RegulationsDestroyWithResponse(ctx context.Context, id int, reqEditors ...RequestEditorFn) (*RegulationsDestroyResponse, error)

	// RegulationsRetrieve request
	RegulationsRetrieveWithResponse(ctx context.Context, id int, reqEditors ...RequestEditorFn) (*RegulationsRetrieveResponse, error)

	// RegulationsPartialUpdate request with any body
	RegulationsPartialUpdateWithBodyWithResponse(ctx context.Context, id int, contentType string, body io.Reader, reqEditors ...RequestEditorFn) (*RegulationsPartialUpdateResponse, error)

	RegulationsPartialUpdateWithResponse(ctx context.Context, id int, body RegulationsPartialUpdateJSONRequestBody, reqEditors ...RequestEditorFn) (*RegulationsPartialUpdateResponse, error)

	RegulationsPartialUpdateWithFormdataBodyWithResponse(ctx context.Context, id int, body RegulationsPartialUpdateFormdataRequestBody, reqEditors ...RequestEditorFn) (*RegulationsPartialUpdateResponse, error)

	// RegulationsUpdate request with any body
	RegulationsUpdateWithBodyWithResponse(ctx context.Context, id int, contentType string, body io.Reader, reqEditors ...RequestEditorFn) (*RegulationsUpdateResponse, error)

	RegulationsUpdateWithResponse(ctx context.Context, id int, body RegulationsUpdateJSONRequestBody, reqEditors ...RequestEditorFn) (*RegulationsUpdateResponse, error)

	RegulationsUpdateWithFormdataBodyWithResponse(ctx context.Context, id int, body RegulationsUpdateFormdataRequestBody, reqEditors ...RequestEditorFn) (*RegulationsUpdateResponse, error)

	// RegulationsDeletePreviewList request
	RegulationsDeletePreviewListWithResponse(ctx context.Context, id int, params *RegulationsDeletePreviewListParams, reqEditors ...RequestEditorFn) (*RegulationsDeletePreviewListResponse, error)

	// ReimportScanCreate request with any body
	ReimportScanCreateWithBodyWithResponse(ctx context.Context, contentType string, body io.Reader, reqEditors ...RequestEditorFn) (*ReimportScanCreateResponse, error)

	// RiskAcceptanceList request
	RiskAcceptanceListWithResponse(ctx context.Context, params *RiskAcceptanceListParams, reqEditors ...RequestEditorFn) (*RiskAcceptanceListResponse, error)

	// RiskAcceptanceDestroy request
	RiskAcceptanceDestroyWithResponse(ctx context.Context, id int, reqEditors ...RequestEditorFn) (*RiskAcceptanceDestroyResponse, error)

	// RiskAcceptanceRetrieve request
	RiskAcceptanceRetrieveWithResponse(ctx context.Context, id int, reqEditors ...RequestEditorFn) (*RiskAcceptanceRetrieveResponse, error)

	// RiskAcceptanceDeletePreviewList request
	RiskAcceptanceDeletePreviewListWithResponse(ctx context.Context, id int, params *RiskAcceptanceDeletePreviewListParams, reqEditors ...RequestEditorFn) (*RiskAcceptanceDeletePreviewListResponse, error)

	// RiskAcceptanceDownloadProofRetrieve request
	RiskAcceptanceDownloadProofRetrieveWithResponse(ctx context.Context, id int, reqEditors ...RequestEditorFn) (*RiskAcceptanceDownloadProofRetrieveResponse, error)

	// RolesList request
	RolesListWithResponse(ctx context.Context, params *RolesListParams, reqEditors ...RequestEditorFn) (*RolesListResponse, error)

	// RolesRetrieve request
	RolesRetrieveWithResponse(ctx context.Context, id int, reqEditors ...RequestEditorFn) (*RolesRetrieveResponse, error)

	// SlaConfigurationsList request
	SlaConfigurationsListWithResponse(ctx context.Context, params *SlaConfigurationsListParams, reqEditors ...RequestEditorFn) (*SlaConfigurationsListResponse, error)

	// SlaConfigurationsCreate request with any body
	SlaConfigurationsCreateWithBodyWithResponse(ctx context.Context, contentType string, body io.Reader, reqEditors ...RequestEditorFn) (*SlaConfigurationsCreateResponse, error)

	SlaConfigurationsCreateWithResponse(ctx context.Context, body SlaConfigurationsCreateJSONRequestBody, reqEditors ...RequestEditorFn) (*SlaConfigurationsCreateResponse, error)

	SlaConfigurationsCreateWithFormdataBodyWithResponse(ctx context.Context, body SlaConfigurationsCreateFormdataRequestBody, reqEditors ...RequestEditorFn) (*SlaConfigurationsCreateResponse, error)

	// SlaConfigurationsDestroy request
	SlaConfigurationsDestroyWithResponse(ctx context.Context, id int, reqEditors ...RequestEditorFn) (*SlaConfigurationsDestroyResponse, error)

	// SlaConfigurationsRetrieve request
	SlaConfigurationsRetrieveWithResponse(ctx context.Context, id int, reqEditors ...RequestEditorFn) (*SlaConfigurationsRetrieveResponse, error)

	// SlaConfigurationsPartialUpdate request with any body
	SlaConfigurationsPartialUpdateWithBodyWithResponse(ctx context.Context, id int, contentType string, body io.Reader, reqEditors ...RequestEditorFn) (*SlaConfigurationsPartialUpdateResponse, error)

	SlaConfigurationsPartialUpdateWithResponse(ctx context.Context, id int, body SlaConfigurationsPartialUpdateJSONRequestBody, reqEditors ...RequestEditorFn) (*SlaConfigurationsPartialUpdateResponse, error)

	SlaConfigurationsPartialUpdateWithFormdataBodyWithResponse(ctx context.Context, id int, body SlaConfigurationsPartialUpdateFormdataRequestBody, reqEditors ...RequestEditorFn) (*SlaConfigurationsPartialUpdateResponse, error)

	// SlaConfigurationsUpdate request with any body
	SlaConfigurationsUpdateWithBodyWithResponse(ctx context.Context, id int, contentType string, body io.Reader, reqEditors ...RequestEditorFn) (*SlaConfigurationsUpdateResponse, error)

	SlaConfigurationsUpdateWithResponse(ctx context.Context, id int, body SlaConfigurationsUpdateJSONRequestBody, reqEditors ...RequestEditorFn) (*SlaConfigurationsUpdateResponse, error)

	SlaConfigurationsUpdateWithFormdataBodyWithResponse(ctx context.Context, id int, body SlaConfigurationsUpdateFormdataRequestBody, reqEditors ...RequestEditorFn) (*SlaConfigurationsUpdateResponse, error)

	// SonarqubeIssuesList request
	SonarqubeIssuesListWithResponse(ctx context.Context, params *SonarqubeIssuesListParams, reqEditors ...RequestEditorFn) (*SonarqubeIssuesListResponse, error)

	// SonarqubeIssuesCreate request with any body
	SonarqubeIssuesCreateWithBodyWithResponse(ctx context.Context, contentType string, body io.Reader, reqEditors ...RequestEditorFn) (*SonarqubeIssuesCreateResponse, error)

	SonarqubeIssuesCreateWithResponse(ctx context.Context, body SonarqubeIssuesCreateJSONRequestBody, reqEditors ...RequestEditorFn) (*SonarqubeIssuesCreateResponse, error)

	SonarqubeIssuesCreateWithFormdataBodyWithResponse(ctx context.Context, body SonarqubeIssuesCreateFormdataRequestBody, reqEditors ...RequestEditorFn) (*SonarqubeIssuesCreateResponse, error)

	// SonarqubeIssuesDestroy request
	SonarqubeIssuesDestroyWithResponse(ctx context.Context, id int, reqEditors ...RequestEditorFn) (*SonarqubeIssuesDestroyResponse, error)

	// SonarqubeIssuesRetrieve request
	SonarqubeIssuesRetrieveWithResponse(ctx context.Context, id int, reqEditors ...RequestEditorFn) (*SonarqubeIssuesRetrieveResponse, error)

	// SonarqubeIssuesPartialUpdate request with any body
	SonarqubeIssuesPartialUpdateWithBodyWithResponse(ctx context.Context, id int, contentType string, body io.Reader, reqEditors ...RequestEditorFn) (*SonarqubeIssuesPartialUpdateResponse, error)

	SonarqubeIssuesPartialUpdateWithResponse(ctx context.Context, id int, body SonarqubeIssuesPartialUpdateJSONRequestBody, reqEditors ...RequestEditorFn) (*SonarqubeIssuesPartialUpdateResponse, error)

	SonarqubeIssuesPartialUpdateWithFormdataBodyWithResponse(ctx context.Context, id int, body SonarqubeIssuesPartialUpdateFormdataRequestBody, reqEditors ...RequestEditorFn) (*SonarqubeIssuesPartialUpdateResponse, error)

	// SonarqubeIssuesUpdate request with any body
	SonarqubeIssuesUpdateWithBodyWithResponse(ctx context.Context, id int, contentType string, body io.Reader, reqEditors ...RequestEditorFn) (*SonarqubeIssuesUpdateResponse, error)

	SonarqubeIssuesUpdateWithResponse(ctx context.Context, id int, body SonarqubeIssuesUpdateJSONRequestBody, reqEditors ...RequestEditorFn) (*SonarqubeIssuesUpdateResponse, error)

	SonarqubeIssuesUpdateWithFormdataBodyWithResponse(ctx context.Context, id int, body SonarqubeIssuesUpdateFormdataRequestBody, reqEditors ...RequestEditorFn) (*SonarqubeIssuesUpdateResponse, error)

	// SonarqubeIssuesDeletePreviewList request
	SonarqubeIssuesDeletePreviewListWithResponse(ctx context.Context, id int, params *SonarqubeIssuesDeletePreviewListParams, reqEditors ...RequestEditorFn) (*SonarqubeIssuesDeletePreviewListResponse, error)

	// SonarqubeTransitionsList request
	SonarqubeTransitionsListWithResponse(ctx context.Context, params *SonarqubeTransitionsListParams, reqEditors ...RequestEditorFn) (*SonarqubeTransitionsListResponse, error)

	// SonarqubeTransitionsCreate request with any body
	SonarqubeTransitionsCreateWithBodyWithResponse(ctx context.Context, contentType string, body io.Reader, reqEditors ...RequestEditorFn) (*SonarqubeTransitionsCreateResponse, error)

	SonarqubeTransitionsCreateWithResponse(ctx context.Context, body SonarqubeTransitionsCreateJSONRequestBody, reqEditors ...RequestEditorFn) (*SonarqubeTransitionsCreateResponse, error)

	SonarqubeTransitionsCreateWithFormdataBodyWithResponse(ctx context.Context, body SonarqubeTransitionsCreateFormdataRequestBody, reqEditors ...RequestEditorFn) (*SonarqubeTransitionsCreateResponse, error)

	// SonarqubeTransitionsDestroy request
	SonarqubeTransitionsDestroyWithResponse(ctx context.Context, id int, reqEditors ...RequestEditorFn) (*SonarqubeTransitionsDestroyResponse, error)

	// SonarqubeTransitionsRetrieve request
	SonarqubeTransitionsRetrieveWithResponse(ctx context.Context, id int, reqEditors ...RequestEditorFn) (*SonarqubeTransitionsRetrieveResponse, error)

	// SonarqubeTransitionsPartialUpdate request with any body
	SonarqubeTransitionsPartialUpdateWithBodyWithResponse(ctx context.Context, id int, contentType string, body io.Reader, reqEditors ...RequestEditorFn) (*SonarqubeTransitionsPartialUpdateResponse, error)

	SonarqubeTransitionsPartialUpdateWithResponse(ctx context.Context, id int, body SonarqubeTransitionsPartialUpdateJSONRequestBody, reqEditors ...RequestEditorFn) (*SonarqubeTransitionsPartialUpdateResponse, error)

	SonarqubeTransitionsPartialUpdateWithFormdataBodyWithResponse(ctx context.Context, id int, body SonarqubeTransitionsPartialUpdateFormdataRequestBody, reqEditors ...RequestEditorFn) (*SonarqubeTransitionsPartialUpdateResponse, error)

	// SonarqubeTransitionsUpdate request with any body
	SonarqubeTransitionsUpdateWithBodyWithResponse(ctx context.Context, id int, contentType string, body io.Reader, reqEditors ...RequestEditorFn) (*SonarqubeTransitionsUpdateResponse, error)

	SonarqubeTransitionsUpdateWithResponse(ctx context.Context, id int, body SonarqubeTransitionsUpdateJSONRequestBody, reqEditors ...RequestEditorFn) (*SonarqubeTransitionsUpdateResponse, error)

	SonarqubeTransitionsUpdateWithFormdataBodyWithResponse(ctx context.Context, id int, body SonarqubeTransitionsUpdateFormdataRequestBody, reqEditors ...RequestEditorFn) (*SonarqubeTransitionsUpdateResponse, error)

	// SonarqubeTransitionsDeletePreviewList request
	SonarqubeTransitionsDeletePreviewListWithResponse(ctx context.Context, id int, params *SonarqubeTransitionsDeletePreviewListParams, reqEditors ...RequestEditorFn) (*SonarqubeTransitionsDeletePreviewListResponse, error)

	// StubFindingsList request
	StubFindingsListWithResponse(ctx context.Context, params *StubFindingsListParams, reqEditors ...RequestEditorFn) (*StubFindingsListResponse, error)

	// StubFindingsCreate request with any body
	StubFindingsCreateWithBodyWithResponse(ctx context.Context, contentType string, body io.Reader, reqEditors ...RequestEditorFn) (*StubFindingsCreateResponse, error)

	StubFindingsCreateWithResponse(ctx context.Context, body StubFindingsCreateJSONRequestBody, reqEditors ...RequestEditorFn) (*StubFindingsCreateResponse, error)

	StubFindingsCreateWithFormdataBodyWithResponse(ctx context.Context, body StubFindingsCreateFormdataRequestBody, reqEditors ...RequestEditorFn) (*StubFindingsCreateResponse, error)

	// StubFindingsDestroy request
	StubFindingsDestroyWithResponse(ctx context.Context, id int, reqEditors ...RequestEditorFn) (*StubFindingsDestroyResponse, error)

	// StubFindingsRetrieve request
	StubFindingsRetrieveWithResponse(ctx context.Context, id int, reqEditors ...RequestEditorFn) (*StubFindingsRetrieveResponse, error)

	// StubFindingsPartialUpdate request with any body
	StubFindingsPartialUpdateWithBodyWithResponse(ctx context.Context, id int, contentType string, body io.Reader, reqEditors ...RequestEditorFn) (*StubFindingsPartialUpdateResponse, error)

	StubFindingsPartialUpdateWithResponse(ctx context.Context, id int, body StubFindingsPartialUpdateJSONRequestBody, reqEditors ...RequestEditorFn) (*StubFindingsPartialUpdateResponse, error)

	StubFindingsPartialUpdateWithFormdataBodyWithResponse(ctx context.Context, id int, body StubFindingsPartialUpdateFormdataRequestBody, reqEditors ...RequestEditorFn) (*StubFindingsPartialUpdateResponse, error)

	// StubFindingsUpdate request with any body
	StubFindingsUpdateWithBodyWithResponse(ctx context.Context, id int, contentType string, body io.Reader, reqEditors ...RequestEditorFn) (*StubFindingsUpdateResponse, error)

	StubFindingsUpdateWithResponse(ctx context.Context, id int, body StubFindingsUpdateJSONRequestBody, reqEditors ...RequestEditorFn) (*StubFindingsUpdateResponse, error)

	StubFindingsUpdateWithFormdataBodyWithResponse(ctx context.Context, id int, body StubFindingsUpdateFormdataRequestBody, reqEditors ...RequestEditorFn) (*StubFindingsUpdateResponse, error)

	// StubFindingsDeletePreviewList request
	StubFindingsDeletePreviewListWithResponse(ctx context.Context, id int, params *StubFindingsDeletePreviewListParams, reqEditors ...RequestEditorFn) (*StubFindingsDeletePreviewListResponse, error)

	// SystemSettingsList request
	SystemSettingsListWithResponse(ctx context.Context, params *SystemSettingsListParams, reqEditors ...RequestEditorFn) (*SystemSettingsListResponse, error)

	// SystemSettingsPartialUpdate request with any body
	SystemSettingsPartialUpdateWithBodyWithResponse(ctx context.Context, id int, contentType string, body io.Reader, reqEditors ...RequestEditorFn) (*SystemSettingsPartialUpdateResponse, error)

	SystemSettingsPartialUpdateWithResponse(ctx context.Context, id int, body SystemSettingsPartialUpdateJSONRequestBody, reqEditors ...RequestEditorFn) (*SystemSettingsPartialUpdateResponse, error)

	SystemSettingsPartialUpdateWithFormdataBodyWithResponse(ctx context.Context, id int, body SystemSettingsPartialUpdateFormdataRequestBody, reqEditors ...RequestEditorFn) (*SystemSettingsPartialUpdateResponse, error)

	// SystemSettingsUpdate request with any body
	SystemSettingsUpdateWithBodyWithResponse(ctx context.Context, id int, contentType string, body io.Reader, reqEditors ...RequestEditorFn) (*SystemSettingsUpdateResponse, error)

	SystemSettingsUpdateWithResponse(ctx context.Context, id int, body SystemSettingsUpdateJSONRequestBody, reqEditors ...RequestEditorFn) (*SystemSettingsUpdateResponse, error)

	SystemSettingsUpdateWithFormdataBodyWithResponse(ctx context.Context, id int, body SystemSettingsUpdateFormdataRequestBody, reqEditors ...RequestEditorFn) (*SystemSettingsUpdateResponse, error)

	// TechnologiesList request
	TechnologiesListWithResponse(ctx context.Context, params *TechnologiesListParams, reqEditors ...RequestEditorFn) (*TechnologiesListResponse, error)

	// TechnologiesCreate request with any body
	TechnologiesCreateWithBodyWithResponse(ctx context.Context, contentType string, body io.Reader, reqEditors ...RequestEditorFn) (*TechnologiesCreateResponse, error)

	TechnologiesCreateWithResponse(ctx context.Context, body TechnologiesCreateJSONRequestBody, reqEditors ...RequestEditorFn) (*TechnologiesCreateResponse, error)

	TechnologiesCreateWithFormdataBodyWithResponse(ctx context.Context, body TechnologiesCreateFormdataRequestBody, reqEditors ...RequestEditorFn) (*TechnologiesCreateResponse, error)

	// TechnologiesDestroy request
	TechnologiesDestroyWithResponse(ctx context.Context, id int, reqEditors ...RequestEditorFn) (*TechnologiesDestroyResponse, error)

	// TechnologiesRetrieve request
	TechnologiesRetrieveWithResponse(ctx context.Context, id int, reqEditors ...RequestEditorFn) (*TechnologiesRetrieveResponse, error)

	// TechnologiesPartialUpdate request with any body
	TechnologiesPartialUpdateWithBodyWithResponse(ctx context.Context, id int, contentType string, body io.Reader, reqEditors ...RequestEditorFn) (*TechnologiesPartialUpdateResponse, error)

	TechnologiesPartialUpdateWithResponse(ctx context.Context, id int, body TechnologiesPartialUpdateJSONRequestBody, reqEditors ...RequestEditorFn) (*TechnologiesPartialUpdateResponse, error)

	TechnologiesPartialUpdateWithFormdataBodyWithResponse(ctx context.Context, id int, body TechnologiesPartialUpdateFormdataRequestBody, reqEditors ...RequestEditorFn) (*TechnologiesPartialUpdateResponse, error)

	// TechnologiesUpdate request with any body
	TechnologiesUpdateWithBodyWithResponse(ctx context.Context, id int, contentType string, body io.Reader, reqEditors ...RequestEditorFn) (*TechnologiesUpdateResponse, error)

	TechnologiesUpdateWithResponse(ctx context.Context, id int, body TechnologiesUpdateJSONRequestBody, reqEditors ...RequestEditorFn) (*TechnologiesUpdateResponse, error)

	TechnologiesUpdateWithFormdataBodyWithResponse(ctx context.Context, id int, body TechnologiesUpdateFormdataRequestBody, reqEditors ...RequestEditorFn) (*TechnologiesUpdateResponse, error)

	// TechnologiesDeletePreviewList request
	TechnologiesDeletePreviewListWithResponse(ctx context.Context, id int, params *TechnologiesDeletePreviewListParams, reqEditors ...RequestEditorFn) (*TechnologiesDeletePreviewListResponse, error)

	// TestImportsList request
	TestImportsListWithResponse(ctx context.Context, params *TestImportsListParams, reqEditors ...RequestEditorFn) (*TestImportsListResponse, error)

	// TestImportsCreate request with any body
	TestImportsCreateWithBodyWithResponse(ctx context.Context, contentType string, body io.Reader, reqEditors ...RequestEditorFn) (*TestImportsCreateResponse, error)

	TestImportsCreateWithResponse(ctx context.Context, body TestImportsCreateJSONRequestBody, reqEditors ...RequestEditorFn) (*TestImportsCreateResponse, error)

	TestImportsCreateWithFormdataBodyWithResponse(ctx context.Context, body TestImportsCreateFormdataRequestBody, reqEditors ...RequestEditorFn) (*TestImportsCreateResponse, error)

	// TestImportsDestroy request
	TestImportsDestroyWithResponse(ctx context.Context, id int, reqEditors ...RequestEditorFn) (*TestImportsDestroyResponse, error)

	// TestImportsRetrieve request
	TestImportsRetrieveWithResponse(ctx context.Context, id int, params *TestImportsRetrieveParams, reqEditors ...RequestEditorFn) (*TestImportsRetrieveResponse, error)

	// TestImportsPartialUpdate request with any body
	TestImportsPartialUpdateWithBodyWithResponse(ctx context.Context, id int, contentType string, body io.Reader, reqEditors ...RequestEditorFn) (*TestImportsPartialUpdateResponse, error)

	TestImportsPartialUpdateWithResponse(ctx context.Context, id int, body TestImportsPartialUpdateJSONRequestBody, reqEditors ...RequestEditorFn) (*TestImportsPartialUpdateResponse, error)

	TestImportsPartialUpdateWithFormdataBodyWithResponse(ctx context.Context, id int, body TestImportsPartialUpdateFormdataRequestBody, reqEditors ...RequestEditorFn) (*TestImportsPartialUpdateResponse, error)

	// TestImportsUpdate request with any body
	TestImportsUpdateWithBodyWithResponse(ctx context.Context, id int, contentType string, body io.Reader, reqEditors ...RequestEditorFn) (*TestImportsUpdateResponse, error)

	TestImportsUpdateWithResponse(ctx context.Context, id int, body TestImportsUpdateJSONRequestBody, reqEditors ...RequestEditorFn) (*TestImportsUpdateResponse, error)

	TestImportsUpdateWithFormdataBodyWithResponse(ctx context.Context, id int, body TestImportsUpdateFormdataRequestBody, reqEditors ...RequestEditorFn) (*TestImportsUpdateResponse, error)

	// TestImportsDeletePreviewList request
	TestImportsDeletePreviewListWithResponse(ctx context.Context, id int, params *TestImportsDeletePreviewListParams, reqEditors ...RequestEditorFn) (*TestImportsDeletePreviewListResponse, error)

	// TestTypesList request
	TestTypesListWithResponse(ctx context.Context, params *TestTypesListParams, reqEditors ...RequestEditorFn) (*TestTypesListResponse, error)

	// TestTypesCreate request with any body
	TestTypesCreateWithBodyWithResponse(ctx context.Context, contentType string, body io.Reader, reqEditors ...RequestEditorFn) (*TestTypesCreateResponse, error)

	TestTypesCreateWithResponse(ctx context.Context, body TestTypesCreateJSONRequestBody, reqEditors ...RequestEditorFn) (*TestTypesCreateResponse, error)

	TestTypesCreateWithFormdataBodyWithResponse(ctx context.Context, body TestTypesCreateFormdataRequestBody, reqEditors ...RequestEditorFn) (*TestTypesCreateResponse, error)

	// TestTypesRetrieve request
	TestTypesRetrieveWithResponse(ctx context.Context, id int, reqEditors ...RequestEditorFn) (*TestTypesRetrieveResponse, error)

	// TestTypesPartialUpdate request with any body
	TestTypesPartialUpdateWithBodyWithResponse(ctx context.Context, id int, contentType string, body io.Reader, reqEditors ...RequestEditorFn) (*TestTypesPartialUpdateResponse, error)

	TestTypesPartialUpdateWithResponse(ctx context.Context, id int, body TestTypesPartialUpdateJSONRequestBody, reqEditors ...RequestEditorFn) (*TestTypesPartialUpdateResponse, error)

	TestTypesPartialUpdateWithFormdataBodyWithResponse(ctx context.Context, id int, body TestTypesPartialUpdateFormdataRequestBody, reqEditors ...RequestEditorFn) (*TestTypesPartialUpdateResponse, error)

	// TestTypesUpdate request with any body
	TestTypesUpdateWithBodyWithResponse(ctx context.Context, id int, contentType string, body io.Reader, reqEditors ...RequestEditorFn) (*TestTypesUpdateResponse, error)

	TestTypesUpdateWithResponse(ctx context.Context, id int, body TestTypesUpdateJSONRequestBody, reqEditors ...RequestEditorFn) (*TestTypesUpdateResponse, error)

	TestTypesUpdateWithFormdataBodyWithResponse(ctx context.Context, id int, body TestTypesUpdateFormdataRequestBody, reqEditors ...RequestEditorFn) (*TestTypesUpdateResponse, error)

	// TestsList request
	TestsListWithResponse(ctx context.Context, params *TestsListParams, reqEditors ...RequestEditorFn) (*TestsListResponse, error)

	// TestsCreate request with any body
	TestsCreateWithBodyWithResponse(ctx context.Context, contentType string, body io.Reader, reqEditors ...RequestEditorFn) (*TestsCreateResponse, error)

	TestsCreateWithResponse(ctx context.Context, body TestsCreateJSONRequestBody, reqEditors ...RequestEditorFn) (*TestsCreateResponse, error)

	TestsCreateWithFormdataBodyWithResponse(ctx context.Context, body TestsCreateFormdataRequestBody, reqEditors ...RequestEditorFn) (*TestsCreateResponse, error)

	// TestsDestroy request
	TestsDestroyWithResponse(ctx context.Context, id int, reqEditors ...RequestEditorFn) (*TestsDestroyResponse, error)

	// TestsRetrieve request
	TestsRetrieveWithResponse(ctx context.Context, id int, reqEditors ...RequestEditorFn) (*TestsRetrieveResponse, error)

	// TestsPartialUpdate request with any body
	TestsPartialUpdateWithBodyWithResponse(ctx context.Context, id int, contentType string, body io.Reader, reqEditors ...RequestEditorFn) (*TestsPartialUpdateResponse, error)

	TestsPartialUpdateWithResponse(ctx context.Context, id int, body TestsPartialUpdateJSONRequestBody, reqEditors ...RequestEditorFn) (*TestsPartialUpdateResponse, error)

	TestsPartialUpdateWithFormdataBodyWithResponse(ctx context.Context, id int, body TestsPartialUpdateFormdataRequestBody, reqEditors ...RequestEditorFn) (*TestsPartialUpdateResponse, error)

	// TestsUpdate request with any body
	TestsUpdateWithBodyWithResponse(ctx context.Context, id int, contentType string, body io.Reader, reqEditors ...RequestEditorFn) (*TestsUpdateResponse, error)

	TestsUpdateWithResponse(ctx context.Context, id int, body TestsUpdateJSONRequestBody, reqEditors ...RequestEditorFn) (*TestsUpdateResponse, error)

	TestsUpdateWithFormdataBodyWithResponse(ctx context.Context, id int, body TestsUpdateFormdataRequestBody, reqEditors ...RequestEditorFn) (*TestsUpdateResponse, error)

	// TestsAcceptRisksCreate request with any body
	TestsAcceptRisksCreateWithBodyWithResponse(ctx context.Context, id int, contentType string, body io.Reader, reqEditors ...RequestEditorFn) (*TestsAcceptRisksCreateResponse, error)

	TestsAcceptRisksCreateWithResponse(ctx context.Context, id int, body TestsAcceptRisksCreateJSONRequestBody, reqEditors ...RequestEditorFn) (*TestsAcceptRisksCreateResponse, error)

	TestsAcceptRisksCreateWithFormdataBodyWithResponse(ctx context.Context, id int, body TestsAcceptRisksCreateFormdataRequestBody, reqEditors ...RequestEditorFn) (*TestsAcceptRisksCreateResponse, error)

	// TestsDeletePreviewList request
	TestsDeletePreviewListWithResponse(ctx context.Context, id int, params *TestsDeletePreviewListParams, reqEditors ...RequestEditorFn) (*TestsDeletePreviewListResponse, error)

	// TestsFilesRetrieve request
	TestsFilesRetrieveWithResponse(ctx context.Context, id int, reqEditors ...RequestEditorFn) (*TestsFilesRetrieveResponse, error)

	// TestsFilesCreate request with any body
	TestsFilesCreateWithBodyWithResponse(ctx context.Context, id int, contentType string, body io.Reader, reqEditors ...RequestEditorFn) (*TestsFilesCreateResponse, error)

	// TestsFilesDownloadRetrieve request
	TestsFilesDownloadRetrieveWithResponse(ctx context.Context, id int, fileId string, reqEditors ...RequestEditorFn) (*TestsFilesDownloadRetrieveResponse, error)

	// TestsGenerateReportCreate request with any body
	TestsGenerateReportCreateWithBodyWithResponse(ctx context.Context, id int, contentType string, body io.Reader, reqEditors ...RequestEditorFn) (*TestsGenerateReportCreateResponse, error)

	TestsGenerateReportCreateWithResponse(ctx context.Context, id int, body TestsGenerateReportCreateJSONRequestBody, reqEditors ...RequestEditorFn) (*TestsGenerateReportCreateResponse, error)

	TestsGenerateReportCreateWithFormdataBodyWithResponse(ctx context.Context, id int, body TestsGenerateReportCreateFormdataRequestBody, reqEditors ...RequestEditorFn) (*TestsGenerateReportCreateResponse, error)

	// TestsNotesRetrieve request
	TestsNotesRetrieveWithResponse(ctx context.Context, id int, reqEditors ...RequestEditorFn) (*TestsNotesRetrieveResponse, error)

	// TestsNotesCreate request with any body
	TestsNotesCreateWithBodyWithResponse(ctx context.Context, id int, contentType string, body io.Reader, reqEditors ...RequestEditorFn) (*TestsNotesCreateResponse, error)

	TestsNotesCreateWithResponse(ctx context.Context, id int, body TestsNotesCreateJSONRequestBody, reqEditors ...RequestEditorFn) (*TestsNotesCreateResponse, error)

	TestsNotesCreateWithFormdataBodyWithResponse(ctx context.Context, id int, body TestsNotesCreateFormdataRequestBody, reqEditors ...RequestEditorFn) (*TestsNotesCreateResponse, error)

	// ToolConfigurationsList request
	ToolConfigurationsListWithResponse(ctx context.Context, params *ToolConfigurationsListParams, reqEditors ...RequestEditorFn) (*ToolConfigurationsListResponse, error)

	// ToolConfigurationsCreate request with any body
	ToolConfigurationsCreateWithBodyWithResponse(ctx context.Context, contentType string, body io.Reader, reqEditors ...RequestEditorFn) (*ToolConfigurationsCreateResponse, error)

	ToolConfigurationsCreateWithResponse(ctx context.Context, body ToolConfigurationsCreateJSONRequestBody, reqEditors ...RequestEditorFn) (*ToolConfigurationsCreateResponse, error)

	ToolConfigurationsCreateWithFormdataBodyWithResponse(ctx context.Context, body ToolConfigurationsCreateFormdataRequestBody, reqEditors ...RequestEditorFn) (*ToolConfigurationsCreateResponse, error)

	// ToolConfigurationsDestroy request
	ToolConfigurationsDestroyWithResponse(ctx context.Context, id int, reqEditors ...RequestEditorFn) (*ToolConfigurationsDestroyResponse, error)

	// ToolConfigurationsRetrieve request
	ToolConfigurationsRetrieveWithResponse(ctx context.Context, id int, reqEditors ...RequestEditorFn) (*ToolConfigurationsRetrieveResponse, error)

	// ToolConfigurationsPartialUpdate request with any body
	ToolConfigurationsPartialUpdateWithBodyWithResponse(ctx context.Context, id int, contentType string, body io.Reader, reqEditors ...RequestEditorFn) (*ToolConfigurationsPartialUpdateResponse, error)

	ToolConfigurationsPartialUpdateWithResponse(ctx context.Context, id int, body ToolConfigurationsPartialUpdateJSONRequestBody, reqEditors ...RequestEditorFn) (*ToolConfigurationsPartialUpdateResponse, error)

	ToolConfigurationsPartialUpdateWithFormdataBodyWithResponse(ctx context.Context, id int, body ToolConfigurationsPartialUpdateFormdataRequestBody, reqEditors ...RequestEditorFn) (*ToolConfigurationsPartialUpdateResponse, error)

	// ToolConfigurationsUpdate request with any body
	ToolConfigurationsUpdateWithBodyWithResponse(ctx context.Context, id int, contentType string, body io.Reader, reqEditors ...RequestEditorFn) (*ToolConfigurationsUpdateResponse, error)

	ToolConfigurationsUpdateWithResponse(ctx context.Context, id int, body ToolConfigurationsUpdateJSONRequestBody, reqEditors ...RequestEditorFn) (*ToolConfigurationsUpdateResponse, error)

	ToolConfigurationsUpdateWithFormdataBodyWithResponse(ctx context.Context, id int, body ToolConfigurationsUpdateFormdataRequestBody, reqEditors ...RequestEditorFn) (*ToolConfigurationsUpdateResponse, error)

	// ToolConfigurationsDeletePreviewList request
	ToolConfigurationsDeletePreviewListWithResponse(ctx context.Context, id int, params *ToolConfigurationsDeletePreviewListParams, reqEditors ...RequestEditorFn) (*ToolConfigurationsDeletePreviewListResponse, error)

	// ToolProductSettingsList request
	ToolProductSettingsListWithResponse(ctx context.Context, params *ToolProductSettingsListParams, reqEditors ...RequestEditorFn) (*ToolProductSettingsListResponse, error)

	// ToolProductSettingsCreate request with any body
	ToolProductSettingsCreateWithBodyWithResponse(ctx context.Context, contentType string, body io.Reader, reqEditors ...RequestEditorFn) (*ToolProductSettingsCreateResponse, error)

	ToolProductSettingsCreateWithResponse(ctx context.Context, body ToolProductSettingsCreateJSONRequestBody, reqEditors ...RequestEditorFn) (*ToolProductSettingsCreateResponse, error)

	ToolProductSettingsCreateWithFormdataBodyWithResponse(ctx context.Context, body ToolProductSettingsCreateFormdataRequestBody, reqEditors ...RequestEditorFn) (*ToolProductSettingsCreateResponse, error)

	// ToolProductSettingsDestroy request
	ToolProductSettingsDestroyWithResponse(ctx context.Context, id int, reqEditors ...RequestEditorFn) (*ToolProductSettingsDestroyResponse, error)

	// ToolProductSettingsRetrieve request
	ToolProductSettingsRetrieveWithResponse(ctx context.Context, id int, reqEditors ...RequestEditorFn) (*ToolProductSettingsRetrieveResponse, error)

	// ToolProductSettingsPartialUpdate request with any body
	ToolProductSettingsPartialUpdateWithBodyWithResponse(ctx context.Context, id int, contentType string, body io.Reader, reqEditors ...RequestEditorFn) (*ToolProductSettingsPartialUpdateResponse, error)

	ToolProductSettingsPartialUpdateWithResponse(ctx context.Context, id int, body ToolProductSettingsPartialUpdateJSONRequestBody, reqEditors ...RequestEditorFn) (*ToolProductSettingsPartialUpdateResponse, error)

	ToolProductSettingsPartialUpdateWithFormdataBodyWithResponse(ctx context.Context, id int, body ToolProductSettingsPartialUpdateFormdataRequestBody, reqEditors ...RequestEditorFn) (*ToolProductSettingsPartialUpdateResponse, error)

	// ToolProductSettingsUpdate request with any body
	ToolProductSettingsUpdateWithBodyWithResponse(ctx context.Context, id int, contentType string, body io.Reader, reqEditors ...RequestEditorFn) (*ToolProductSettingsUpdateResponse, error)

	ToolProductSettingsUpdateWithResponse(ctx context.Context, id int, body ToolProductSettingsUpdateJSONRequestBody, reqEditors ...RequestEditorFn) (*ToolProductSettingsUpdateResponse, error)

	ToolProductSettingsUpdateWithFormdataBodyWithResponse(ctx context.Context, id int, body ToolProductSettingsUpdateFormdataRequestBody, reqEditors ...RequestEditorFn) (*ToolProductSettingsUpdateResponse, error)

	// ToolProductSettingsDeletePreviewList request
	ToolProductSettingsDeletePreviewListWithResponse(ctx context.Context, id int, params *ToolProductSettingsDeletePreviewListParams, reqEditors ...RequestEditorFn) (*ToolProductSettingsDeletePreviewListResponse, error)

	// ToolTypesList request
	ToolTypesListWithResponse(ctx context.Context, params *ToolTypesListParams, reqEditors ...RequestEditorFn) (*ToolTypesListResponse, error)

	// ToolTypesCreate request with any body
	ToolTypesCreateWithBodyWithResponse(ctx context.Context, contentType string, body io.Reader, reqEditors ...RequestEditorFn) (*ToolTypesCreateResponse, error)

	ToolTypesCreateWithResponse(ctx context.Context, body ToolTypesCreateJSONRequestBody, reqEditors ...RequestEditorFn) (*ToolTypesCreateResponse, error)

	ToolTypesCreateWithFormdataBodyWithResponse(ctx context.Context, body ToolTypesCreateFormdataRequestBody, reqEditors ...RequestEditorFn) (*ToolTypesCreateResponse, error)

	// ToolTypesDestroy request
	ToolTypesDestroyWithResponse(ctx context.Context, id int, reqEditors ...RequestEditorFn) (*ToolTypesDestroyResponse, error)

	// ToolTypesRetrieve request
	ToolTypesRetrieveWithResponse(ctx context.Context, id int, reqEditors ...RequestEditorFn) (*ToolTypesRetrieveResponse, error)

	// ToolTypesPartialUpdate request with any body
	ToolTypesPartialUpdateWithBodyWithResponse(ctx context.Context, id int, contentType string, body io.Reader, reqEditors ...RequestEditorFn) (*ToolTypesPartialUpdateResponse, error)

	ToolTypesPartialUpdateWithResponse(ctx context.Context, id int, body ToolTypesPartialUpdateJSONRequestBody, reqEditors ...RequestEditorFn) (*ToolTypesPartialUpdateResponse, error)

	ToolTypesPartialUpdateWithFormdataBodyWithResponse(ctx context.Context, id int, body ToolTypesPartialUpdateFormdataRequestBody, reqEditors ...RequestEditorFn) (*ToolTypesPartialUpdateResponse, error)

	// ToolTypesUpdate request with any body
	ToolTypesUpdateWithBodyWithResponse(ctx context.Context, id int, contentType string, body io.Reader, reqEditors ...RequestEditorFn) (*ToolTypesUpdateResponse, error)

	ToolTypesUpdateWithResponse(ctx context.Context, id int, body ToolTypesUpdateJSONRequestBody, reqEditors ...RequestEditorFn) (*ToolTypesUpdateResponse, error)

	ToolTypesUpdateWithFormdataBodyWithResponse(ctx context.Context, id int, body ToolTypesUpdateFormdataRequestBody, reqEditors ...RequestEditorFn) (*ToolTypesUpdateResponse, error)

	// ToolTypesDeletePreviewList request
	ToolTypesDeletePreviewListWithResponse(ctx context.Context, id int, params *ToolTypesDeletePreviewListParams, reqEditors ...RequestEditorFn) (*ToolTypesDeletePreviewListResponse, error)

	// UserContactInfosList request
	UserContactInfosListWithResponse(ctx context.Context, params *UserContactInfosListParams, reqEditors ...RequestEditorFn) (*UserContactInfosListResponse, error)

	// UserContactInfosCreate request with any body
	UserContactInfosCreateWithBodyWithResponse(ctx context.Context, contentType string, body io.Reader, reqEditors ...RequestEditorFn) (*UserContactInfosCreateResponse, error)

	UserContactInfosCreateWithResponse(ctx context.Context, body UserContactInfosCreateJSONRequestBody, reqEditors ...RequestEditorFn) (*UserContactInfosCreateResponse, error)

	UserContactInfosCreateWithFormdataBodyWithResponse(ctx context.Context, body UserContactInfosCreateFormdataRequestBody, reqEditors ...RequestEditorFn) (*UserContactInfosCreateResponse, error)

	// UserContactInfosDestroy request
	UserContactInfosDestroyWithResponse(ctx context.Context, id int, reqEditors ...RequestEditorFn) (*UserContactInfosDestroyResponse, error)

	// UserContactInfosRetrieve request
	UserContactInfosRetrieveWithResponse(ctx context.Context, id int, params *UserContactInfosRetrieveParams, reqEditors ...RequestEditorFn) (*UserContactInfosRetrieveResponse, error)

	// UserContactInfosPartialUpdate request with any body
	UserContactInfosPartialUpdateWithBodyWithResponse(ctx context.Context, id int, contentType string, body io.Reader, reqEditors ...RequestEditorFn) (*UserContactInfosPartialUpdateResponse, error)

	UserContactInfosPartialUpdateWithResponse(ctx context.Context, id int, body UserContactInfosPartialUpdateJSONRequestBody, reqEditors ...RequestEditorFn) (*UserContactInfosPartialUpdateResponse, error)

	UserContactInfosPartialUpdateWithFormdataBodyWithResponse(ctx context.Context, id int, body UserContactInfosPartialUpdateFormdataRequestBody, reqEditors ...RequestEditorFn) (*UserContactInfosPartialUpdateResponse, error)

	// UserContactInfosUpdate request with any body
	UserContactInfosUpdateWithBodyWithResponse(ctx context.Context, id int, contentType string, body io.Reader, reqEditors ...RequestEditorFn) (*UserContactInfosUpdateResponse, error)

	UserContactInfosUpdateWithResponse(ctx context.Context, id int, body UserContactInfosUpdateJSONRequestBody, reqEditors ...RequestEditorFn) (*UserContactInfosUpdateResponse, error)

	UserContactInfosUpdateWithFormdataBodyWithResponse(ctx context.Context, id int, body UserContactInfosUpdateFormdataRequestBody, reqEditors ...RequestEditorFn) (*UserContactInfosUpdateResponse, error)

	// UserContactInfosDeletePreviewList request
	UserContactInfosDeletePreviewListWithResponse(ctx context.Context, id int, params *UserContactInfosDeletePreviewListParams, reqEditors ...RequestEditorFn) (*UserContactInfosDeletePreviewListResponse, error)

	// UserProfileRetrieve request
	UserProfileRetrieveWithResponse(ctx context.Context, reqEditors ...RequestEditorFn) (*UserProfileRetrieveResponse, error)

	// UsersList request
	UsersListWithResponse(ctx context.Context, params *UsersListParams, reqEditors ...RequestEditorFn) (*UsersListResponse, error)

	// UsersCreate request with any body
	UsersCreateWithBodyWithResponse(ctx context.Context, contentType string, body io.Reader, reqEditors ...RequestEditorFn) (*UsersCreateResponse, error)

	UsersCreateWithResponse(ctx context.Context, body UsersCreateJSONRequestBody, reqEditors ...RequestEditorFn) (*UsersCreateResponse, error)

	UsersCreateWithFormdataBodyWithResponse(ctx context.Context, body UsersCreateFormdataRequestBody, reqEditors ...RequestEditorFn) (*UsersCreateResponse, error)

	// UsersDestroy request
	UsersDestroyWithResponse(ctx context.Context, id int, reqEditors ...RequestEditorFn) (*UsersDestroyResponse, error)

	// UsersRetrieve request
	UsersRetrieveWithResponse(ctx context.Context, id int, reqEditors ...RequestEditorFn) (*UsersRetrieveResponse, error)

	// UsersPartialUpdate request with any body
	UsersPartialUpdateWithBodyWithResponse(ctx context.Context, id int, contentType string, body io.Reader, reqEditors ...RequestEditorFn) (*UsersPartialUpdateResponse, error)

	UsersPartialUpdateWithResponse(ctx context.Context, id int, body UsersPartialUpdateJSONRequestBody, reqEditors ...RequestEditorFn) (*UsersPartialUpdateResponse, error)

	UsersPartialUpdateWithFormdataBodyWithResponse(ctx context.Context, id int, body UsersPartialUpdateFormdataRequestBody, reqEditors ...RequestEditorFn) (*UsersPartialUpdateResponse, error)

	// UsersUpdate request with any body
	UsersUpdateWithBodyWithResponse(ctx context.Context, id int, contentType string, body io.Reader, reqEditors ...RequestEditorFn) (*UsersUpdateResponse, error)

	UsersUpdateWithResponse(ctx context.Context, id int, body UsersUpdateJSONRequestBody, reqEditors ...RequestEditorFn) (*UsersUpdateResponse, error)

	UsersUpdateWithFormdataBodyWithResponse(ctx context.Context, id int, body UsersUpdateFormdataRequestBody, reqEditors ...RequestEditorFn) (*UsersUpdateResponse, error)

	// UsersDeletePreviewList request
	UsersDeletePreviewListWithResponse(ctx context.Context, id int, params *UsersDeletePreviewListParams, reqEditors ...RequestEditorFn) (*UsersDeletePreviewListResponse, error)
}

ClientWithResponsesInterface is the interface specification for the client with responses above.

type ConfigurationPermission added in v0.2.0

type ConfigurationPermission struct {
	Codename string `json:"codename"`
	Id       *int   `json:"id,omitempty"`
	Name     string `json:"name"`
}

ConfigurationPermission defines model for ConfigurationPermission.

type ConfigurationPermissionsListParams added in v0.2.0

type ConfigurationPermissionsListParams struct {
	Codename *string `form:"codename,omitempty" json:"codename,omitempty"`
	Id       *int    `form:"id,omitempty" json:"id,omitempty"`

	// Limit Number of results to return per page.
	Limit *int    `form:"limit,omitempty" json:"limit,omitempty"`
	Name  *string `form:"name,omitempty" json:"name,omitempty"`

	// Offset The initial index from which to return the results.
	Offset *int `form:"offset,omitempty" json:"offset,omitempty"`
}

ConfigurationPermissionsListParams defines parameters for ConfigurationPermissionsList.

type ConfigurationPermissionsListResponse added in v0.2.0

type ConfigurationPermissionsListResponse struct {
	Body         []byte
	HTTPResponse *http.Response
	JSON200      *PaginatedConfigurationPermissionList
}

func ParseConfigurationPermissionsListResponse added in v0.2.0

func ParseConfigurationPermissionsListResponse(rsp *http.Response) (*ConfigurationPermissionsListResponse, error)

ParseConfigurationPermissionsListResponse parses an HTTP response from a ConfigurationPermissionsListWithResponse call

func (ConfigurationPermissionsListResponse) Status added in v0.2.0

Status returns HTTPResponse.Status

func (ConfigurationPermissionsListResponse) StatusCode added in v0.2.0

StatusCode returns HTTPResponse.StatusCode

type ConfigurationPermissionsRetrieveResponse added in v0.2.0

type ConfigurationPermissionsRetrieveResponse struct {
	Body         []byte
	HTTPResponse *http.Response
	JSON200      *ConfigurationPermission
}

func ParseConfigurationPermissionsRetrieveResponse added in v0.2.0

func ParseConfigurationPermissionsRetrieveResponse(rsp *http.Response) (*ConfigurationPermissionsRetrieveResponse, error)

ParseConfigurationPermissionsRetrieveResponse parses an HTTP response from a ConfigurationPermissionsRetrieveWithResponse call

func (ConfigurationPermissionsRetrieveResponse) Status added in v0.2.0

Status returns HTTPResponse.Status

func (ConfigurationPermissionsRetrieveResponse) StatusCode added in v0.2.0

StatusCode returns HTTPResponse.StatusCode

type Credential added in v0.2.0

type Credential struct {
	// Authentication * `Form` - Form Authentication
	// * `SSO` - SSO Redirect
	Authentication *CredentialAuthentication `json:"authentication,omitempty"`
	Description    *string                   `json:"description"`
	Environment    int                       `json:"environment"`

	// HttpAuthentication * `Basic` - Basic
	// * `NTLM` - NTLM
	HttpAuthentication *CredentialHttpAuthentication `json:"http_authentication"`
	Id                 *int                          `json:"id,omitempty"`
	IsValid            *bool                         `json:"is_valid,omitempty"`
	LoginRegex         *string                       `json:"login_regex"`
	LogoutRegex        *string                       `json:"logout_regex"`
	Name               string                        `json:"name"`
	Notes              *[]int                        `json:"notes,omitempty"`
	Role               string                        `json:"role"`
	Url                string                        `json:"url"`
	Username           string                        `json:"username"`
}

Credential defines model for Credential.

type CredentialAuthentication added in v0.2.0

type CredentialAuthentication string

CredentialAuthentication * `Form` - Form Authentication * `SSO` - SSO Redirect

const (
	CredentialAuthenticationForm CredentialAuthentication = "Form"
	CredentialAuthenticationSSO  CredentialAuthentication = "SSO"
)

Defines values for CredentialAuthentication.

type CredentialHttpAuthentication added in v0.2.0

type CredentialHttpAuthentication string

CredentialHttpAuthentication * `Basic` - Basic * `NTLM` - NTLM

const (
	CredentialHttpAuthenticationBasic CredentialHttpAuthentication = "Basic"
	CredentialHttpAuthenticationEmpty CredentialHttpAuthentication = ""
	CredentialHttpAuthenticationNTLM  CredentialHttpAuthentication = "NTLM"
	CredentialHttpAuthenticationNil   CredentialHttpAuthentication = "<nil>"
)

Defines values for CredentialHttpAuthentication.

type CredentialMapping added in v0.2.0

type CredentialMapping struct {
	CredId          int     `json:"cred_id"`
	Engagement      *int    `json:"engagement"`
	Finding         *int    `json:"finding"`
	Id              *int    `json:"id,omitempty"`
	IsAuthnProvider *bool   `json:"is_authn_provider,omitempty"`
	Product         *int    `json:"product"`
	Test            *int    `json:"test"`
	Url             *string `json:"url"`
}

CredentialMapping defines model for CredentialMapping.

type CredentialMappingRequest added in v0.2.0

type CredentialMappingRequest struct {
	CredId          int     `json:"cred_id"`
	Engagement      *int    `json:"engagement"`
	Finding         *int    `json:"finding"`
	IsAuthnProvider *bool   `json:"is_authn_provider,omitempty"`
	Product         *int    `json:"product"`
	Test            *int    `json:"test"`
	Url             *string `json:"url"`
}

CredentialMappingRequest defines model for CredentialMappingRequest.

type CredentialMappingsCreateFormdataRequestBody added in v0.2.0

type CredentialMappingsCreateFormdataRequestBody = CredentialMappingRequest

CredentialMappingsCreateFormdataRequestBody defines body for CredentialMappingsCreate for application/x-www-form-urlencoded ContentType.

type CredentialMappingsCreateJSONRequestBody added in v0.2.0

type CredentialMappingsCreateJSONRequestBody = CredentialMappingRequest

CredentialMappingsCreateJSONRequestBody defines body for CredentialMappingsCreate for application/json ContentType.

type CredentialMappingsCreateMultipartRequestBody added in v0.2.0

type CredentialMappingsCreateMultipartRequestBody = CredentialMappingRequest

CredentialMappingsCreateMultipartRequestBody defines body for CredentialMappingsCreate for multipart/form-data ContentType.

type CredentialMappingsCreateResponse added in v0.2.0

type CredentialMappingsCreateResponse struct {
	Body         []byte
	HTTPResponse *http.Response
	JSON201      *CredentialMapping
}

func ParseCredentialMappingsCreateResponse added in v0.2.0

func ParseCredentialMappingsCreateResponse(rsp *http.Response) (*CredentialMappingsCreateResponse, error)

ParseCredentialMappingsCreateResponse parses an HTTP response from a CredentialMappingsCreateWithResponse call

func (CredentialMappingsCreateResponse) Status added in v0.2.0

Status returns HTTPResponse.Status

func (CredentialMappingsCreateResponse) StatusCode added in v0.2.0

func (r CredentialMappingsCreateResponse) StatusCode() int

StatusCode returns HTTPResponse.StatusCode

type CredentialMappingsDeletePreviewListParams added in v0.2.0

type CredentialMappingsDeletePreviewListParams struct {
	// Limit Number of results to return per page.
	Limit *int `form:"limit,omitempty" json:"limit,omitempty"`

	// Offset The initial index from which to return the results.
	Offset *int `form:"offset,omitempty" json:"offset,omitempty"`
}

CredentialMappingsDeletePreviewListParams defines parameters for CredentialMappingsDeletePreviewList.

type CredentialMappingsDeletePreviewListResponse added in v0.2.0

type CredentialMappingsDeletePreviewListResponse struct {
	Body         []byte
	HTTPResponse *http.Response
	JSON200      *PaginatedDeletePreviewList
}

func ParseCredentialMappingsDeletePreviewListResponse added in v0.2.0

func ParseCredentialMappingsDeletePreviewListResponse(rsp *http.Response) (*CredentialMappingsDeletePreviewListResponse, error)

ParseCredentialMappingsDeletePreviewListResponse parses an HTTP response from a CredentialMappingsDeletePreviewListWithResponse call

func (CredentialMappingsDeletePreviewListResponse) Status added in v0.2.0

Status returns HTTPResponse.Status

func (CredentialMappingsDeletePreviewListResponse) StatusCode added in v0.2.0

StatusCode returns HTTPResponse.StatusCode

type CredentialMappingsDestroyResponse added in v0.2.0

type CredentialMappingsDestroyResponse struct {
	Body         []byte
	HTTPResponse *http.Response
}

func ParseCredentialMappingsDestroyResponse added in v0.2.0

func ParseCredentialMappingsDestroyResponse(rsp *http.Response) (*CredentialMappingsDestroyResponse, error)

ParseCredentialMappingsDestroyResponse parses an HTTP response from a CredentialMappingsDestroyWithResponse call

func (CredentialMappingsDestroyResponse) Status added in v0.2.0

Status returns HTTPResponse.Status

func (CredentialMappingsDestroyResponse) StatusCode added in v0.2.0

func (r CredentialMappingsDestroyResponse) StatusCode() int

StatusCode returns HTTPResponse.StatusCode

type CredentialMappingsListParams added in v0.2.0

type CredentialMappingsListParams struct {
	CredId          *int  `form:"cred_id,omitempty" json:"cred_id,omitempty"`
	Engagement      *int  `form:"engagement,omitempty" json:"engagement,omitempty"`
	Finding         *int  `form:"finding,omitempty" json:"finding,omitempty"`
	IsAuthnProvider *bool `form:"is_authn_provider,omitempty" json:"is_authn_provider,omitempty"`

	// Limit Number of results to return per page.
	Limit *int `form:"limit,omitempty" json:"limit,omitempty"`

	// Offset The initial index from which to return the results.
	Offset  *int    `form:"offset,omitempty" json:"offset,omitempty"`
	Product *int    `form:"product,omitempty" json:"product,omitempty"`
	Test    *int    `form:"test,omitempty" json:"test,omitempty"`
	Url     *string `form:"url,omitempty" json:"url,omitempty"`
}

CredentialMappingsListParams defines parameters for CredentialMappingsList.

type CredentialMappingsListResponse added in v0.2.0

type CredentialMappingsListResponse struct {
	Body         []byte
	HTTPResponse *http.Response
	JSON200      *PaginatedCredentialMappingList
}

func ParseCredentialMappingsListResponse added in v0.2.0

func ParseCredentialMappingsListResponse(rsp *http.Response) (*CredentialMappingsListResponse, error)

ParseCredentialMappingsListResponse parses an HTTP response from a CredentialMappingsListWithResponse call

func (CredentialMappingsListResponse) Status added in v0.2.0

Status returns HTTPResponse.Status

func (CredentialMappingsListResponse) StatusCode added in v0.2.0

func (r CredentialMappingsListResponse) StatusCode() int

StatusCode returns HTTPResponse.StatusCode

type CredentialMappingsPartialUpdateFormdataRequestBody added in v0.2.0

type CredentialMappingsPartialUpdateFormdataRequestBody = PatchedCredentialMappingRequest

CredentialMappingsPartialUpdateFormdataRequestBody defines body for CredentialMappingsPartialUpdate for application/x-www-form-urlencoded ContentType.

type CredentialMappingsPartialUpdateJSONRequestBody added in v0.2.0

type CredentialMappingsPartialUpdateJSONRequestBody = PatchedCredentialMappingRequest

CredentialMappingsPartialUpdateJSONRequestBody defines body for CredentialMappingsPartialUpdate for application/json ContentType.

type CredentialMappingsPartialUpdateMultipartRequestBody added in v0.2.0

type CredentialMappingsPartialUpdateMultipartRequestBody = PatchedCredentialMappingRequest

CredentialMappingsPartialUpdateMultipartRequestBody defines body for CredentialMappingsPartialUpdate for multipart/form-data ContentType.

type CredentialMappingsPartialUpdateResponse added in v0.2.0

type CredentialMappingsPartialUpdateResponse struct {
	Body         []byte
	HTTPResponse *http.Response
	JSON200      *CredentialMapping
}

func ParseCredentialMappingsPartialUpdateResponse added in v0.2.0

func ParseCredentialMappingsPartialUpdateResponse(rsp *http.Response) (*CredentialMappingsPartialUpdateResponse, error)

ParseCredentialMappingsPartialUpdateResponse parses an HTTP response from a CredentialMappingsPartialUpdateWithResponse call

func (CredentialMappingsPartialUpdateResponse) Status added in v0.2.0

Status returns HTTPResponse.Status

func (CredentialMappingsPartialUpdateResponse) StatusCode added in v0.2.0

StatusCode returns HTTPResponse.StatusCode

type CredentialMappingsRetrieveResponse added in v0.2.0

type CredentialMappingsRetrieveResponse struct {
	Body         []byte
	HTTPResponse *http.Response
	JSON200      *CredentialMapping
}

func ParseCredentialMappingsRetrieveResponse added in v0.2.0

func ParseCredentialMappingsRetrieveResponse(rsp *http.Response) (*CredentialMappingsRetrieveResponse, error)

ParseCredentialMappingsRetrieveResponse parses an HTTP response from a CredentialMappingsRetrieveWithResponse call

func (CredentialMappingsRetrieveResponse) Status added in v0.2.0

Status returns HTTPResponse.Status

func (CredentialMappingsRetrieveResponse) StatusCode added in v0.2.0

func (r CredentialMappingsRetrieveResponse) StatusCode() int

StatusCode returns HTTPResponse.StatusCode

type CredentialMappingsUpdateFormdataRequestBody added in v0.2.0

type CredentialMappingsUpdateFormdataRequestBody = CredentialMappingRequest

CredentialMappingsUpdateFormdataRequestBody defines body for CredentialMappingsUpdate for application/x-www-form-urlencoded ContentType.

type CredentialMappingsUpdateJSONRequestBody added in v0.2.0

type CredentialMappingsUpdateJSONRequestBody = CredentialMappingRequest

CredentialMappingsUpdateJSONRequestBody defines body for CredentialMappingsUpdate for application/json ContentType.

type CredentialMappingsUpdateMultipartRequestBody added in v0.2.0

type CredentialMappingsUpdateMultipartRequestBody = CredentialMappingRequest

CredentialMappingsUpdateMultipartRequestBody defines body for CredentialMappingsUpdate for multipart/form-data ContentType.

type CredentialMappingsUpdateResponse added in v0.2.0

type CredentialMappingsUpdateResponse struct {
	Body         []byte
	HTTPResponse *http.Response
	JSON200      *CredentialMapping
}

func ParseCredentialMappingsUpdateResponse added in v0.2.0

func ParseCredentialMappingsUpdateResponse(rsp *http.Response) (*CredentialMappingsUpdateResponse, error)

ParseCredentialMappingsUpdateResponse parses an HTTP response from a CredentialMappingsUpdateWithResponse call

func (CredentialMappingsUpdateResponse) Status added in v0.2.0

Status returns HTTPResponse.Status

func (CredentialMappingsUpdateResponse) StatusCode added in v0.2.0

func (r CredentialMappingsUpdateResponse) StatusCode() int

StatusCode returns HTTPResponse.StatusCode

type CredentialRequest added in v0.2.0

type CredentialRequest struct {
	// Authentication * `Form` - Form Authentication
	// * `SSO` - SSO Redirect
	Authentication *CredentialRequestAuthentication `json:"authentication,omitempty"`
	Description    *string                          `json:"description"`
	Environment    int                              `json:"environment"`

	// HttpAuthentication * `Basic` - Basic
	// * `NTLM` - NTLM
	HttpAuthentication *CredentialRequestHttpAuthentication `json:"http_authentication"`
	IsValid            *bool                                `json:"is_valid,omitempty"`
	LoginRegex         *string                              `json:"login_regex"`
	LogoutRegex        *string                              `json:"logout_regex"`
	Name               string                               `json:"name"`
	Role               string                               `json:"role"`
	Url                string                               `json:"url"`
	Username           string                               `json:"username"`
}

CredentialRequest defines model for CredentialRequest.

type CredentialRequestAuthentication added in v0.2.0

type CredentialRequestAuthentication string

CredentialRequestAuthentication * `Form` - Form Authentication * `SSO` - SSO Redirect

const (
	CredentialRequestAuthenticationForm CredentialRequestAuthentication = "Form"
	CredentialRequestAuthenticationSSO  CredentialRequestAuthentication = "SSO"
)

Defines values for CredentialRequestAuthentication.

type CredentialRequestHttpAuthentication added in v0.2.0

type CredentialRequestHttpAuthentication string

CredentialRequestHttpAuthentication * `Basic` - Basic * `NTLM` - NTLM

const (
	CredentialRequestHttpAuthenticationBasic CredentialRequestHttpAuthentication = "Basic"
	CredentialRequestHttpAuthenticationEmpty CredentialRequestHttpAuthentication = ""
	CredentialRequestHttpAuthenticationNTLM  CredentialRequestHttpAuthentication = "NTLM"
	CredentialRequestHttpAuthenticationNil   CredentialRequestHttpAuthentication = "<nil>"
)

Defines values for CredentialRequestHttpAuthentication.

type CredentialsCreateFormdataRequestBody added in v0.2.0

type CredentialsCreateFormdataRequestBody = CredentialRequest

CredentialsCreateFormdataRequestBody defines body for CredentialsCreate for application/x-www-form-urlencoded ContentType.

type CredentialsCreateJSONRequestBody added in v0.2.0

type CredentialsCreateJSONRequestBody = CredentialRequest

CredentialsCreateJSONRequestBody defines body for CredentialsCreate for application/json ContentType.

type CredentialsCreateMultipartRequestBody added in v0.2.0

type CredentialsCreateMultipartRequestBody = CredentialRequest

CredentialsCreateMultipartRequestBody defines body for CredentialsCreate for multipart/form-data ContentType.

type CredentialsCreateResponse added in v0.2.0

type CredentialsCreateResponse struct {
	Body         []byte
	HTTPResponse *http.Response
	JSON201      *Credential
}

func ParseCredentialsCreateResponse added in v0.2.0

func ParseCredentialsCreateResponse(rsp *http.Response) (*CredentialsCreateResponse, error)

ParseCredentialsCreateResponse parses an HTTP response from a CredentialsCreateWithResponse call

func (CredentialsCreateResponse) Status added in v0.2.0

func (r CredentialsCreateResponse) Status() string

Status returns HTTPResponse.Status

func (CredentialsCreateResponse) StatusCode added in v0.2.0

func (r CredentialsCreateResponse) StatusCode() int

StatusCode returns HTTPResponse.StatusCode

type CredentialsDeletePreviewListParams added in v0.2.0

type CredentialsDeletePreviewListParams struct {
	// Limit Number of results to return per page.
	Limit *int `form:"limit,omitempty" json:"limit,omitempty"`

	// Offset The initial index from which to return the results.
	Offset *int `form:"offset,omitempty" json:"offset,omitempty"`
}

CredentialsDeletePreviewListParams defines parameters for CredentialsDeletePreviewList.

type CredentialsDeletePreviewListResponse added in v0.2.0

type CredentialsDeletePreviewListResponse struct {
	Body         []byte
	HTTPResponse *http.Response
	JSON200      *PaginatedDeletePreviewList
}

func ParseCredentialsDeletePreviewListResponse added in v0.2.0

func ParseCredentialsDeletePreviewListResponse(rsp *http.Response) (*CredentialsDeletePreviewListResponse, error)

ParseCredentialsDeletePreviewListResponse parses an HTTP response from a CredentialsDeletePreviewListWithResponse call

func (CredentialsDeletePreviewListResponse) Status added in v0.2.0

Status returns HTTPResponse.Status

func (CredentialsDeletePreviewListResponse) StatusCode added in v0.2.0

StatusCode returns HTTPResponse.StatusCode

type CredentialsDestroyResponse added in v0.2.0

type CredentialsDestroyResponse struct {
	Body         []byte
	HTTPResponse *http.Response
}

func ParseCredentialsDestroyResponse added in v0.2.0

func ParseCredentialsDestroyResponse(rsp *http.Response) (*CredentialsDestroyResponse, error)

ParseCredentialsDestroyResponse parses an HTTP response from a CredentialsDestroyWithResponse call

func (CredentialsDestroyResponse) Status added in v0.2.0

Status returns HTTPResponse.Status

func (CredentialsDestroyResponse) StatusCode added in v0.2.0

func (r CredentialsDestroyResponse) StatusCode() int

StatusCode returns HTTPResponse.StatusCode

type CredentialsListParams added in v0.2.0

type CredentialsListParams struct {
	// Limit Number of results to return per page.
	Limit *int `form:"limit,omitempty" json:"limit,omitempty"`

	// Offset The initial index from which to return the results.
	Offset *int `form:"offset,omitempty" json:"offset,omitempty"`
}

CredentialsListParams defines parameters for CredentialsList.

type CredentialsListResponse added in v0.2.0

type CredentialsListResponse struct {
	Body         []byte
	HTTPResponse *http.Response
	JSON200      *PaginatedCredentialList
}

func ParseCredentialsListResponse added in v0.2.0

func ParseCredentialsListResponse(rsp *http.Response) (*CredentialsListResponse, error)

ParseCredentialsListResponse parses an HTTP response from a CredentialsListWithResponse call

func (CredentialsListResponse) Status added in v0.2.0

func (r CredentialsListResponse) Status() string

Status returns HTTPResponse.Status

func (CredentialsListResponse) StatusCode added in v0.2.0

func (r CredentialsListResponse) StatusCode() int

StatusCode returns HTTPResponse.StatusCode

type CredentialsPartialUpdateFormdataRequestBody added in v0.2.0

type CredentialsPartialUpdateFormdataRequestBody = PatchedCredentialRequest

CredentialsPartialUpdateFormdataRequestBody defines body for CredentialsPartialUpdate for application/x-www-form-urlencoded ContentType.

type CredentialsPartialUpdateJSONRequestBody added in v0.2.0

type CredentialsPartialUpdateJSONRequestBody = PatchedCredentialRequest

CredentialsPartialUpdateJSONRequestBody defines body for CredentialsPartialUpdate for application/json ContentType.

type CredentialsPartialUpdateMultipartRequestBody added in v0.2.0

type CredentialsPartialUpdateMultipartRequestBody = PatchedCredentialRequest

CredentialsPartialUpdateMultipartRequestBody defines body for CredentialsPartialUpdate for multipart/form-data ContentType.

type CredentialsPartialUpdateResponse added in v0.2.0

type CredentialsPartialUpdateResponse struct {
	Body         []byte
	HTTPResponse *http.Response
	JSON200      *Credential
}

func ParseCredentialsPartialUpdateResponse added in v0.2.0

func ParseCredentialsPartialUpdateResponse(rsp *http.Response) (*CredentialsPartialUpdateResponse, error)

ParseCredentialsPartialUpdateResponse parses an HTTP response from a CredentialsPartialUpdateWithResponse call

func (CredentialsPartialUpdateResponse) Status added in v0.2.0

Status returns HTTPResponse.Status

func (CredentialsPartialUpdateResponse) StatusCode added in v0.2.0

func (r CredentialsPartialUpdateResponse) StatusCode() int

StatusCode returns HTTPResponse.StatusCode

type CredentialsRetrieveResponse added in v0.2.0

type CredentialsRetrieveResponse struct {
	Body         []byte
	HTTPResponse *http.Response
	JSON200      *Credential
}

func ParseCredentialsRetrieveResponse added in v0.2.0

func ParseCredentialsRetrieveResponse(rsp *http.Response) (*CredentialsRetrieveResponse, error)

ParseCredentialsRetrieveResponse parses an HTTP response from a CredentialsRetrieveWithResponse call

func (CredentialsRetrieveResponse) Status added in v0.2.0

Status returns HTTPResponse.Status

func (CredentialsRetrieveResponse) StatusCode added in v0.2.0

func (r CredentialsRetrieveResponse) StatusCode() int

StatusCode returns HTTPResponse.StatusCode

type CredentialsUpdateFormdataRequestBody added in v0.2.0

type CredentialsUpdateFormdataRequestBody = CredentialRequest

CredentialsUpdateFormdataRequestBody defines body for CredentialsUpdate for application/x-www-form-urlencoded ContentType.

type CredentialsUpdateJSONRequestBody added in v0.2.0

type CredentialsUpdateJSONRequestBody = CredentialRequest

CredentialsUpdateJSONRequestBody defines body for CredentialsUpdate for application/json ContentType.

type CredentialsUpdateMultipartRequestBody added in v0.2.0

type CredentialsUpdateMultipartRequestBody = CredentialRequest

CredentialsUpdateMultipartRequestBody defines body for CredentialsUpdate for multipart/form-data ContentType.

type CredentialsUpdateResponse added in v0.2.0

type CredentialsUpdateResponse struct {
	Body         []byte
	HTTPResponse *http.Response
	JSON200      *Credential
}

func ParseCredentialsUpdateResponse added in v0.2.0

func ParseCredentialsUpdateResponse(rsp *http.Response) (*CredentialsUpdateResponse, error)

ParseCredentialsUpdateResponse parses an HTTP response from a CredentialsUpdateWithResponse call

func (CredentialsUpdateResponse) Status added in v0.2.0

func (r CredentialsUpdateResponse) Status() string

Status returns HTTPResponse.Status

func (CredentialsUpdateResponse) StatusCode added in v0.2.0

func (r CredentialsUpdateResponse) StatusCode() int

StatusCode returns HTTPResponse.StatusCode

type DeletePreview added in v0.2.0

type DeletePreview struct {
	Id    *int    `json:"id"`
	Model *string `json:"model,omitempty"`
	Name  *string `json:"name,omitempty"`
}

DeletePreview defines model for DeletePreview.

type DeltaStatistics

type DeltaStatistics struct {
	Closed        SeverityStatusStatistics `json:"closed"`
	Created       SeverityStatusStatistics `json:"created"`
	LeftUntouched SeverityStatusStatistics `json:"left untouched"`
	Reactivated   SeverityStatusStatistics `json:"reactivated"`
}

DeltaStatistics defines model for DeltaStatistics.

type DevelopmentEnvironment

type DevelopmentEnvironment struct {
	Id   *int   `json:"id,omitempty"`
	Name string `json:"name"`
}

DevelopmentEnvironment defines model for DevelopmentEnvironment.

type DevelopmentEnvironmentRequest added in v0.2.0

type DevelopmentEnvironmentRequest struct {
	Name string `json:"name"`
}

DevelopmentEnvironmentRequest defines model for DevelopmentEnvironmentRequest.

type DevelopmentEnvironmentsCreateFormdataRequestBody added in v0.2.0

type DevelopmentEnvironmentsCreateFormdataRequestBody = DevelopmentEnvironmentRequest

DevelopmentEnvironmentsCreateFormdataRequestBody defines body for DevelopmentEnvironmentsCreate for application/x-www-form-urlencoded ContentType.

type DevelopmentEnvironmentsCreateJSONRequestBody

type DevelopmentEnvironmentsCreateJSONRequestBody = DevelopmentEnvironmentRequest

DevelopmentEnvironmentsCreateJSONRequestBody defines body for DevelopmentEnvironmentsCreate for application/json ContentType.

type DevelopmentEnvironmentsCreateMultipartRequestBody added in v0.2.0

type DevelopmentEnvironmentsCreateMultipartRequestBody = DevelopmentEnvironmentRequest

DevelopmentEnvironmentsCreateMultipartRequestBody defines body for DevelopmentEnvironmentsCreate for multipart/form-data ContentType.

type DevelopmentEnvironmentsCreateResponse

type DevelopmentEnvironmentsCreateResponse struct {
	Body         []byte
	HTTPResponse *http.Response
	JSON201      *DevelopmentEnvironment
}

func ParseDevelopmentEnvironmentsCreateResponse

func ParseDevelopmentEnvironmentsCreateResponse(rsp *http.Response) (*DevelopmentEnvironmentsCreateResponse, error)

ParseDevelopmentEnvironmentsCreateResponse parses an HTTP response from a DevelopmentEnvironmentsCreateWithResponse call

func (DevelopmentEnvironmentsCreateResponse) Status

Status returns HTTPResponse.Status

func (DevelopmentEnvironmentsCreateResponse) StatusCode

StatusCode returns HTTPResponse.StatusCode

type DevelopmentEnvironmentsDeletePreviewListParams added in v0.2.0

type DevelopmentEnvironmentsDeletePreviewListParams struct {
	// Limit Number of results to return per page.
	Limit *int `form:"limit,omitempty" json:"limit,omitempty"`

	// Offset The initial index from which to return the results.
	Offset *int `form:"offset,omitempty" json:"offset,omitempty"`
}

DevelopmentEnvironmentsDeletePreviewListParams defines parameters for DevelopmentEnvironmentsDeletePreviewList.

type DevelopmentEnvironmentsDeletePreviewListResponse added in v0.2.0

type DevelopmentEnvironmentsDeletePreviewListResponse struct {
	Body         []byte
	HTTPResponse *http.Response
	JSON200      *PaginatedDeletePreviewList
}

func ParseDevelopmentEnvironmentsDeletePreviewListResponse added in v0.2.0

func ParseDevelopmentEnvironmentsDeletePreviewListResponse(rsp *http.Response) (*DevelopmentEnvironmentsDeletePreviewListResponse, error)

ParseDevelopmentEnvironmentsDeletePreviewListResponse parses an HTTP response from a DevelopmentEnvironmentsDeletePreviewListWithResponse call

func (DevelopmentEnvironmentsDeletePreviewListResponse) Status added in v0.2.0

Status returns HTTPResponse.Status

func (DevelopmentEnvironmentsDeletePreviewListResponse) StatusCode added in v0.2.0

StatusCode returns HTTPResponse.StatusCode

type DevelopmentEnvironmentsDestroyResponse

type DevelopmentEnvironmentsDestroyResponse struct {
	Body         []byte
	HTTPResponse *http.Response
}

func ParseDevelopmentEnvironmentsDestroyResponse

func ParseDevelopmentEnvironmentsDestroyResponse(rsp *http.Response) (*DevelopmentEnvironmentsDestroyResponse, error)

ParseDevelopmentEnvironmentsDestroyResponse parses an HTTP response from a DevelopmentEnvironmentsDestroyWithResponse call

func (DevelopmentEnvironmentsDestroyResponse) Status

Status returns HTTPResponse.Status

func (DevelopmentEnvironmentsDestroyResponse) StatusCode

StatusCode returns HTTPResponse.StatusCode

type DevelopmentEnvironmentsListParams

type DevelopmentEnvironmentsListParams struct {
	// Limit Number of results to return per page.
	Limit *int `form:"limit,omitempty" json:"limit,omitempty"`

	// Offset The initial index from which to return the results.
	Offset *int `form:"offset,omitempty" json:"offset,omitempty"`
}

DevelopmentEnvironmentsListParams defines parameters for DevelopmentEnvironmentsList.

type DevelopmentEnvironmentsListResponse

type DevelopmentEnvironmentsListResponse struct {
	Body         []byte
	HTTPResponse *http.Response
	JSON200      *PaginatedDevelopmentEnvironmentList
}

func ParseDevelopmentEnvironmentsListResponse

func ParseDevelopmentEnvironmentsListResponse(rsp *http.Response) (*DevelopmentEnvironmentsListResponse, error)

ParseDevelopmentEnvironmentsListResponse parses an HTTP response from a DevelopmentEnvironmentsListWithResponse call

func (DevelopmentEnvironmentsListResponse) Status

Status returns HTTPResponse.Status

func (DevelopmentEnvironmentsListResponse) StatusCode

StatusCode returns HTTPResponse.StatusCode

type DevelopmentEnvironmentsPartialUpdateFormdataRequestBody added in v0.2.0

type DevelopmentEnvironmentsPartialUpdateFormdataRequestBody = PatchedDevelopmentEnvironmentRequest

DevelopmentEnvironmentsPartialUpdateFormdataRequestBody defines body for DevelopmentEnvironmentsPartialUpdate for application/x-www-form-urlencoded ContentType.

type DevelopmentEnvironmentsPartialUpdateJSONRequestBody

type DevelopmentEnvironmentsPartialUpdateJSONRequestBody = PatchedDevelopmentEnvironmentRequest

DevelopmentEnvironmentsPartialUpdateJSONRequestBody defines body for DevelopmentEnvironmentsPartialUpdate for application/json ContentType.

type DevelopmentEnvironmentsPartialUpdateMultipartRequestBody added in v0.2.0

type DevelopmentEnvironmentsPartialUpdateMultipartRequestBody = PatchedDevelopmentEnvironmentRequest

DevelopmentEnvironmentsPartialUpdateMultipartRequestBody defines body for DevelopmentEnvironmentsPartialUpdate for multipart/form-data ContentType.

type DevelopmentEnvironmentsPartialUpdateResponse

type DevelopmentEnvironmentsPartialUpdateResponse struct {
	Body         []byte
	HTTPResponse *http.Response
	JSON200      *DevelopmentEnvironment
}

func ParseDevelopmentEnvironmentsPartialUpdateResponse

func ParseDevelopmentEnvironmentsPartialUpdateResponse(rsp *http.Response) (*DevelopmentEnvironmentsPartialUpdateResponse, error)

ParseDevelopmentEnvironmentsPartialUpdateResponse parses an HTTP response from a DevelopmentEnvironmentsPartialUpdateWithResponse call

func (DevelopmentEnvironmentsPartialUpdateResponse) Status

Status returns HTTPResponse.Status

func (DevelopmentEnvironmentsPartialUpdateResponse) StatusCode

StatusCode returns HTTPResponse.StatusCode

type DevelopmentEnvironmentsRetrieveResponse

type DevelopmentEnvironmentsRetrieveResponse struct {
	Body         []byte
	HTTPResponse *http.Response
	JSON200      *DevelopmentEnvironment
}

func ParseDevelopmentEnvironmentsRetrieveResponse

func ParseDevelopmentEnvironmentsRetrieveResponse(rsp *http.Response) (*DevelopmentEnvironmentsRetrieveResponse, error)

ParseDevelopmentEnvironmentsRetrieveResponse parses an HTTP response from a DevelopmentEnvironmentsRetrieveWithResponse call

func (DevelopmentEnvironmentsRetrieveResponse) Status

Status returns HTTPResponse.Status

func (DevelopmentEnvironmentsRetrieveResponse) StatusCode

StatusCode returns HTTPResponse.StatusCode

type DevelopmentEnvironmentsUpdateFormdataRequestBody added in v0.2.0

type DevelopmentEnvironmentsUpdateFormdataRequestBody = DevelopmentEnvironmentRequest

DevelopmentEnvironmentsUpdateFormdataRequestBody defines body for DevelopmentEnvironmentsUpdate for application/x-www-form-urlencoded ContentType.

type DevelopmentEnvironmentsUpdateJSONRequestBody

type DevelopmentEnvironmentsUpdateJSONRequestBody = DevelopmentEnvironmentRequest

DevelopmentEnvironmentsUpdateJSONRequestBody defines body for DevelopmentEnvironmentsUpdate for application/json ContentType.

type DevelopmentEnvironmentsUpdateMultipartRequestBody added in v0.2.0

type DevelopmentEnvironmentsUpdateMultipartRequestBody = DevelopmentEnvironmentRequest

DevelopmentEnvironmentsUpdateMultipartRequestBody defines body for DevelopmentEnvironmentsUpdate for multipart/form-data ContentType.

type DevelopmentEnvironmentsUpdateResponse

type DevelopmentEnvironmentsUpdateResponse struct {
	Body         []byte
	HTTPResponse *http.Response
	JSON200      *DevelopmentEnvironment
}

func ParseDevelopmentEnvironmentsUpdateResponse

func ParseDevelopmentEnvironmentsUpdateResponse(rsp *http.Response) (*DevelopmentEnvironmentsUpdateResponse, error)

ParseDevelopmentEnvironmentsUpdateResponse parses an HTTP response from a DevelopmentEnvironmentsUpdateWithResponse call

func (DevelopmentEnvironmentsUpdateResponse) Status

Status returns HTTPResponse.Status

func (DevelopmentEnvironmentsUpdateResponse) StatusCode

StatusCode returns HTTPResponse.StatusCode

type DojoGroup

type DojoGroup struct {
	ConfigurationPermissions *[]int  `json:"configuration_permissions,omitempty"`
	Description              *string `json:"description"`
	Id                       *int    `json:"id,omitempty"`
	Name                     string  `json:"name"`
	Prefetch                 *struct {
		ProductGroups     *map[string]Product     `json:"product_groups,omitempty"`
		ProductTypeGroups *map[string]ProductType `json:"product_type_groups,omitempty"`
		Users             *map[string]UserStub    `json:"users,omitempty"`
	} `json:"prefetch,omitempty"`

	// SocialProvider Group imported from a social provider.
	//
	// * `AzureAD` - AzureAD
	SocialProvider *DojoGroupSocialProvider `json:"social_provider"`
	Users          *[]int                   `json:"users,omitempty"`
}

DojoGroup defines model for DojoGroup.

type DojoGroupMember

type DojoGroupMember struct {
	Group    int  `json:"group"`
	Id       *int `json:"id,omitempty"`
	Prefetch *struct {
		Group *map[string]DojoGroup `json:"group,omitempty"`
		Role  *map[string]Role      `json:"role,omitempty"`
		User  *map[string]UserStub  `json:"user,omitempty"`
	} `json:"prefetch,omitempty"`

	// Role This role determines the permissions of the user to manage the group.
	Role int `json:"role"`
	User int `json:"user"`
}

DojoGroupMember defines model for DojoGroupMember.

type DojoGroupMemberRequest added in v0.2.0

type DojoGroupMemberRequest struct {
	Group int `json:"group"`

	// Role This role determines the permissions of the user to manage the group.
	Role int `json:"role"`
	User int `json:"user"`
}

DojoGroupMemberRequest defines model for DojoGroupMemberRequest.

type DojoGroupMembersCreateFormdataRequestBody added in v0.2.0

type DojoGroupMembersCreateFormdataRequestBody = DojoGroupMemberRequest

DojoGroupMembersCreateFormdataRequestBody defines body for DojoGroupMembersCreate for application/x-www-form-urlencoded ContentType.

type DojoGroupMembersCreateJSONRequestBody

type DojoGroupMembersCreateJSONRequestBody = DojoGroupMemberRequest

DojoGroupMembersCreateJSONRequestBody defines body for DojoGroupMembersCreate for application/json ContentType.

type DojoGroupMembersCreateMultipartRequestBody added in v0.2.0

type DojoGroupMembersCreateMultipartRequestBody = DojoGroupMemberRequest

DojoGroupMembersCreateMultipartRequestBody defines body for DojoGroupMembersCreate for multipart/form-data ContentType.

type DojoGroupMembersCreateResponse

type DojoGroupMembersCreateResponse struct {
	Body         []byte
	HTTPResponse *http.Response
	JSON201      *DojoGroupMember
}

func ParseDojoGroupMembersCreateResponse

func ParseDojoGroupMembersCreateResponse(rsp *http.Response) (*DojoGroupMembersCreateResponse, error)

ParseDojoGroupMembersCreateResponse parses an HTTP response from a DojoGroupMembersCreateWithResponse call

func (DojoGroupMembersCreateResponse) Status

Status returns HTTPResponse.Status

func (DojoGroupMembersCreateResponse) StatusCode

func (r DojoGroupMembersCreateResponse) StatusCode() int

StatusCode returns HTTPResponse.StatusCode

type DojoGroupMembersDeletePreviewListParams added in v0.2.0

type DojoGroupMembersDeletePreviewListParams struct {
	// Limit Number of results to return per page.
	Limit *int `form:"limit,omitempty" json:"limit,omitempty"`

	// Offset The initial index from which to return the results.
	Offset *int `form:"offset,omitempty" json:"offset,omitempty"`
}

DojoGroupMembersDeletePreviewListParams defines parameters for DojoGroupMembersDeletePreviewList.

type DojoGroupMembersDeletePreviewListResponse added in v0.2.0

type DojoGroupMembersDeletePreviewListResponse struct {
	Body         []byte
	HTTPResponse *http.Response
	JSON200      *PaginatedDeletePreviewList
}

func ParseDojoGroupMembersDeletePreviewListResponse added in v0.2.0

func ParseDojoGroupMembersDeletePreviewListResponse(rsp *http.Response) (*DojoGroupMembersDeletePreviewListResponse, error)

ParseDojoGroupMembersDeletePreviewListResponse parses an HTTP response from a DojoGroupMembersDeletePreviewListWithResponse call

func (DojoGroupMembersDeletePreviewListResponse) Status added in v0.2.0

Status returns HTTPResponse.Status

func (DojoGroupMembersDeletePreviewListResponse) StatusCode added in v0.2.0

StatusCode returns HTTPResponse.StatusCode

type DojoGroupMembersDestroyResponse

type DojoGroupMembersDestroyResponse struct {
	Body         []byte
	HTTPResponse *http.Response
}

func ParseDojoGroupMembersDestroyResponse

func ParseDojoGroupMembersDestroyResponse(rsp *http.Response) (*DojoGroupMembersDestroyResponse, error)

ParseDojoGroupMembersDestroyResponse parses an HTTP response from a DojoGroupMembersDestroyWithResponse call

func (DojoGroupMembersDestroyResponse) Status

Status returns HTTPResponse.Status

func (DojoGroupMembersDestroyResponse) StatusCode

func (r DojoGroupMembersDestroyResponse) StatusCode() int

StatusCode returns HTTPResponse.StatusCode

type DojoGroupMembersListParams

type DojoGroupMembersListParams struct {
	GroupId *int `form:"group_id,omitempty" json:"group_id,omitempty"`
	Id      *int `form:"id,omitempty" json:"id,omitempty"`

	// Limit Number of results to return per page.
	Limit *int `form:"limit,omitempty" json:"limit,omitempty"`

	// Offset The initial index from which to return the results.
	Offset *int `form:"offset,omitempty" json:"offset,omitempty"`

	// Prefetch List of fields for which to prefetch model instances and add those to the response
	Prefetch *[]DojoGroupMembersListParamsPrefetch `form:"prefetch,omitempty" json:"prefetch,omitempty"`
	UserId   *int                                  `form:"user_id,omitempty" json:"user_id,omitempty"`
}

DojoGroupMembersListParams defines parameters for DojoGroupMembersList.

type DojoGroupMembersListParamsPrefetch

type DojoGroupMembersListParamsPrefetch string

DojoGroupMembersListParamsPrefetch defines parameters for DojoGroupMembersList.

const (
	DojoGroupMembersListParamsPrefetchGroup DojoGroupMembersListParamsPrefetch = "group"
	DojoGroupMembersListParamsPrefetchRole  DojoGroupMembersListParamsPrefetch = "role"
	DojoGroupMembersListParamsPrefetchUser  DojoGroupMembersListParamsPrefetch = "user"
)

Defines values for DojoGroupMembersListParamsPrefetch.

type DojoGroupMembersListResponse

type DojoGroupMembersListResponse struct {
	Body         []byte
	HTTPResponse *http.Response
	JSON200      *PaginatedDojoGroupMemberList
}

func ParseDojoGroupMembersListResponse

func ParseDojoGroupMembersListResponse(rsp *http.Response) (*DojoGroupMembersListResponse, error)

ParseDojoGroupMembersListResponse parses an HTTP response from a DojoGroupMembersListWithResponse call

func (DojoGroupMembersListResponse) Status

Status returns HTTPResponse.Status

func (DojoGroupMembersListResponse) StatusCode

func (r DojoGroupMembersListResponse) StatusCode() int

StatusCode returns HTTPResponse.StatusCode

type DojoGroupMembersPartialUpdateFormdataRequestBody added in v0.2.0

type DojoGroupMembersPartialUpdateFormdataRequestBody = PatchedDojoGroupMemberRequest

DojoGroupMembersPartialUpdateFormdataRequestBody defines body for DojoGroupMembersPartialUpdate for application/x-www-form-urlencoded ContentType.

type DojoGroupMembersPartialUpdateJSONRequestBody

type DojoGroupMembersPartialUpdateJSONRequestBody = PatchedDojoGroupMemberRequest

DojoGroupMembersPartialUpdateJSONRequestBody defines body for DojoGroupMembersPartialUpdate for application/json ContentType.

type DojoGroupMembersPartialUpdateMultipartRequestBody added in v0.2.0

type DojoGroupMembersPartialUpdateMultipartRequestBody = PatchedDojoGroupMemberRequest

DojoGroupMembersPartialUpdateMultipartRequestBody defines body for DojoGroupMembersPartialUpdate for multipart/form-data ContentType.

type DojoGroupMembersPartialUpdateResponse

type DojoGroupMembersPartialUpdateResponse struct {
	Body         []byte
	HTTPResponse *http.Response
	JSON200      *DojoGroupMember
}

func ParseDojoGroupMembersPartialUpdateResponse

func ParseDojoGroupMembersPartialUpdateResponse(rsp *http.Response) (*DojoGroupMembersPartialUpdateResponse, error)

ParseDojoGroupMembersPartialUpdateResponse parses an HTTP response from a DojoGroupMembersPartialUpdateWithResponse call

func (DojoGroupMembersPartialUpdateResponse) Status

Status returns HTTPResponse.Status

func (DojoGroupMembersPartialUpdateResponse) StatusCode

StatusCode returns HTTPResponse.StatusCode

type DojoGroupMembersRetrieveParams

type DojoGroupMembersRetrieveParams struct {
	// Prefetch List of fields for which to prefetch model instances and add those to the response
	Prefetch *[]DojoGroupMembersRetrieveParamsPrefetch `form:"prefetch,omitempty" json:"prefetch,omitempty"`
}

DojoGroupMembersRetrieveParams defines parameters for DojoGroupMembersRetrieve.

type DojoGroupMembersRetrieveParamsPrefetch

type DojoGroupMembersRetrieveParamsPrefetch string

DojoGroupMembersRetrieveParamsPrefetch defines parameters for DojoGroupMembersRetrieve.

const (
	DojoGroupMembersRetrieveParamsPrefetchGroup DojoGroupMembersRetrieveParamsPrefetch = "group"
	DojoGroupMembersRetrieveParamsPrefetchRole  DojoGroupMembersRetrieveParamsPrefetch = "role"
	DojoGroupMembersRetrieveParamsPrefetchUser  DojoGroupMembersRetrieveParamsPrefetch = "user"
)

Defines values for DojoGroupMembersRetrieveParamsPrefetch.

type DojoGroupMembersRetrieveResponse

type DojoGroupMembersRetrieveResponse struct {
	Body         []byte
	HTTPResponse *http.Response
	JSON200      *DojoGroupMember
}

func ParseDojoGroupMembersRetrieveResponse

func ParseDojoGroupMembersRetrieveResponse(rsp *http.Response) (*DojoGroupMembersRetrieveResponse, error)

ParseDojoGroupMembersRetrieveResponse parses an HTTP response from a DojoGroupMembersRetrieveWithResponse call

func (DojoGroupMembersRetrieveResponse) Status

Status returns HTTPResponse.Status

func (DojoGroupMembersRetrieveResponse) StatusCode

func (r DojoGroupMembersRetrieveResponse) StatusCode() int

StatusCode returns HTTPResponse.StatusCode

type DojoGroupMembersUpdateFormdataRequestBody added in v0.2.0

type DojoGroupMembersUpdateFormdataRequestBody = DojoGroupMemberRequest

DojoGroupMembersUpdateFormdataRequestBody defines body for DojoGroupMembersUpdate for application/x-www-form-urlencoded ContentType.

type DojoGroupMembersUpdateJSONRequestBody

type DojoGroupMembersUpdateJSONRequestBody = DojoGroupMemberRequest

DojoGroupMembersUpdateJSONRequestBody defines body for DojoGroupMembersUpdate for application/json ContentType.

type DojoGroupMembersUpdateMultipartRequestBody added in v0.2.0

type DojoGroupMembersUpdateMultipartRequestBody = DojoGroupMemberRequest

DojoGroupMembersUpdateMultipartRequestBody defines body for DojoGroupMembersUpdate for multipart/form-data ContentType.

type DojoGroupMembersUpdateResponse

type DojoGroupMembersUpdateResponse struct {
	Body         []byte
	HTTPResponse *http.Response
	JSON200      *DojoGroupMember
}

func ParseDojoGroupMembersUpdateResponse

func ParseDojoGroupMembersUpdateResponse(rsp *http.Response) (*DojoGroupMembersUpdateResponse, error)

ParseDojoGroupMembersUpdateResponse parses an HTTP response from a DojoGroupMembersUpdateWithResponse call

func (DojoGroupMembersUpdateResponse) Status

Status returns HTTPResponse.Status

func (DojoGroupMembersUpdateResponse) StatusCode

func (r DojoGroupMembersUpdateResponse) StatusCode() int

StatusCode returns HTTPResponse.StatusCode

type DojoGroupRequest added in v0.2.0

type DojoGroupRequest struct {
	ConfigurationPermissions *[]int  `json:"configuration_permissions,omitempty"`
	Description              *string `json:"description"`
	Name                     string  `json:"name"`

	// SocialProvider Group imported from a social provider.
	//
	// * `AzureAD` - AzureAD
	SocialProvider *DojoGroupRequestSocialProvider `json:"social_provider"`
}

DojoGroupRequest defines model for DojoGroupRequest.

type DojoGroupRequestSocialProvider added in v0.2.0

type DojoGroupRequestSocialProvider string

DojoGroupRequestSocialProvider Group imported from a social provider.

* `AzureAD` - AzureAD

const (
	DojoGroupRequestSocialProviderAzureAD DojoGroupRequestSocialProvider = "AzureAD"
	DojoGroupRequestSocialProviderEmpty   DojoGroupRequestSocialProvider = ""
	DojoGroupRequestSocialProviderNil     DojoGroupRequestSocialProvider = "<nil>"
)

Defines values for DojoGroupRequestSocialProvider.

type DojoGroupSocialProvider added in v0.2.0

type DojoGroupSocialProvider string

DojoGroupSocialProvider Group imported from a social provider.

* `AzureAD` - AzureAD

const (
	DojoGroupSocialProviderAzureAD DojoGroupSocialProvider = "AzureAD"
	DojoGroupSocialProviderEmpty   DojoGroupSocialProvider = ""
	DojoGroupSocialProviderNil     DojoGroupSocialProvider = "<nil>"
)

Defines values for DojoGroupSocialProvider.

type DojoGroupsCreateFormdataRequestBody added in v0.2.0

type DojoGroupsCreateFormdataRequestBody = DojoGroupRequest

DojoGroupsCreateFormdataRequestBody defines body for DojoGroupsCreate for application/x-www-form-urlencoded ContentType.

type DojoGroupsCreateJSONRequestBody

type DojoGroupsCreateJSONRequestBody = DojoGroupRequest

DojoGroupsCreateJSONRequestBody defines body for DojoGroupsCreate for application/json ContentType.

type DojoGroupsCreateMultipartRequestBody added in v0.2.0

type DojoGroupsCreateMultipartRequestBody = DojoGroupRequest

DojoGroupsCreateMultipartRequestBody defines body for DojoGroupsCreate for multipart/form-data ContentType.

type DojoGroupsCreateResponse

type DojoGroupsCreateResponse struct {
	Body         []byte
	HTTPResponse *http.Response
	JSON201      *DojoGroup
}

func ParseDojoGroupsCreateResponse

func ParseDojoGroupsCreateResponse(rsp *http.Response) (*DojoGroupsCreateResponse, error)

ParseDojoGroupsCreateResponse parses an HTTP response from a DojoGroupsCreateWithResponse call

func (DojoGroupsCreateResponse) Status

func (r DojoGroupsCreateResponse) Status() string

Status returns HTTPResponse.Status

func (DojoGroupsCreateResponse) StatusCode

func (r DojoGroupsCreateResponse) StatusCode() int

StatusCode returns HTTPResponse.StatusCode

type DojoGroupsDeletePreviewListParams added in v0.2.0

type DojoGroupsDeletePreviewListParams struct {
	// Limit Number of results to return per page.
	Limit *int `form:"limit,omitempty" json:"limit,omitempty"`

	// Offset The initial index from which to return the results.
	Offset *int `form:"offset,omitempty" json:"offset,omitempty"`
}

DojoGroupsDeletePreviewListParams defines parameters for DojoGroupsDeletePreviewList.

type DojoGroupsDeletePreviewListResponse added in v0.2.0

type DojoGroupsDeletePreviewListResponse struct {
	Body         []byte
	HTTPResponse *http.Response
	JSON200      *PaginatedDeletePreviewList
}

func ParseDojoGroupsDeletePreviewListResponse added in v0.2.0

func ParseDojoGroupsDeletePreviewListResponse(rsp *http.Response) (*DojoGroupsDeletePreviewListResponse, error)

ParseDojoGroupsDeletePreviewListResponse parses an HTTP response from a DojoGroupsDeletePreviewListWithResponse call

func (DojoGroupsDeletePreviewListResponse) Status added in v0.2.0

Status returns HTTPResponse.Status

func (DojoGroupsDeletePreviewListResponse) StatusCode added in v0.2.0

StatusCode returns HTTPResponse.StatusCode

type DojoGroupsDestroyResponse

type DojoGroupsDestroyResponse struct {
	Body         []byte
	HTTPResponse *http.Response
}

func ParseDojoGroupsDestroyResponse

func ParseDojoGroupsDestroyResponse(rsp *http.Response) (*DojoGroupsDestroyResponse, error)

ParseDojoGroupsDestroyResponse parses an HTTP response from a DojoGroupsDestroyWithResponse call

func (DojoGroupsDestroyResponse) Status

func (r DojoGroupsDestroyResponse) Status() string

Status returns HTTPResponse.Status

func (DojoGroupsDestroyResponse) StatusCode

func (r DojoGroupsDestroyResponse) StatusCode() int

StatusCode returns HTTPResponse.StatusCode

type DojoGroupsListParams

type DojoGroupsListParams struct {
	Id *int `form:"id,omitempty" json:"id,omitempty"`

	// Limit Number of results to return per page.
	Limit *int    `form:"limit,omitempty" json:"limit,omitempty"`
	Name  *string `form:"name,omitempty" json:"name,omitempty"`

	// Offset The initial index from which to return the results.
	Offset *int `form:"offset,omitempty" json:"offset,omitempty"`

	// Prefetch List of fields for which to prefetch model instances and add those to the response
	Prefetch *[]DojoGroupsListParamsPrefetch `form:"prefetch,omitempty" json:"prefetch,omitempty"`

	// SocialProvider Group imported from a social provider.
	//
	// * `AzureAD` - AzureAD
	SocialProvider *DojoGroupsListParamsSocialProvider `form:"social_provider,omitempty" json:"social_provider,omitempty"`
}

DojoGroupsListParams defines parameters for DojoGroupsList.

type DojoGroupsListParamsPrefetch

type DojoGroupsListParamsPrefetch string

DojoGroupsListParamsPrefetch defines parameters for DojoGroupsList.

const (
	DojoGroupsListParamsPrefetchProductGroups     DojoGroupsListParamsPrefetch = "product_groups"
	DojoGroupsListParamsPrefetchProductTypeGroups DojoGroupsListParamsPrefetch = "product_type_groups"
	DojoGroupsListParamsPrefetchUsers             DojoGroupsListParamsPrefetch = "users"
)

Defines values for DojoGroupsListParamsPrefetch.

type DojoGroupsListParamsSocialProvider added in v0.2.0

type DojoGroupsListParamsSocialProvider string

DojoGroupsListParamsSocialProvider defines parameters for DojoGroupsList.

const (
	AzureAD DojoGroupsListParamsSocialProvider = "AzureAD"
)

Defines values for DojoGroupsListParamsSocialProvider.

type DojoGroupsListResponse

type DojoGroupsListResponse struct {
	Body         []byte
	HTTPResponse *http.Response
	JSON200      *PaginatedDojoGroupList
}

func ParseDojoGroupsListResponse

func ParseDojoGroupsListResponse(rsp *http.Response) (*DojoGroupsListResponse, error)

ParseDojoGroupsListResponse parses an HTTP response from a DojoGroupsListWithResponse call

func (DojoGroupsListResponse) Status

func (r DojoGroupsListResponse) Status() string

Status returns HTTPResponse.Status

func (DojoGroupsListResponse) StatusCode

func (r DojoGroupsListResponse) StatusCode() int

StatusCode returns HTTPResponse.StatusCode

type DojoGroupsPartialUpdateFormdataRequestBody added in v0.2.0

type DojoGroupsPartialUpdateFormdataRequestBody = PatchedDojoGroupRequest

DojoGroupsPartialUpdateFormdataRequestBody defines body for DojoGroupsPartialUpdate for application/x-www-form-urlencoded ContentType.

type DojoGroupsPartialUpdateJSONRequestBody

type DojoGroupsPartialUpdateJSONRequestBody = PatchedDojoGroupRequest

DojoGroupsPartialUpdateJSONRequestBody defines body for DojoGroupsPartialUpdate for application/json ContentType.

type DojoGroupsPartialUpdateMultipartRequestBody added in v0.2.0

type DojoGroupsPartialUpdateMultipartRequestBody = PatchedDojoGroupRequest

DojoGroupsPartialUpdateMultipartRequestBody defines body for DojoGroupsPartialUpdate for multipart/form-data ContentType.

type DojoGroupsPartialUpdateResponse

type DojoGroupsPartialUpdateResponse struct {
	Body         []byte
	HTTPResponse *http.Response
	JSON200      *DojoGroup
}

func ParseDojoGroupsPartialUpdateResponse

func ParseDojoGroupsPartialUpdateResponse(rsp *http.Response) (*DojoGroupsPartialUpdateResponse, error)

ParseDojoGroupsPartialUpdateResponse parses an HTTP response from a DojoGroupsPartialUpdateWithResponse call

func (DojoGroupsPartialUpdateResponse) Status

Status returns HTTPResponse.Status

func (DojoGroupsPartialUpdateResponse) StatusCode

func (r DojoGroupsPartialUpdateResponse) StatusCode() int

StatusCode returns HTTPResponse.StatusCode

type DojoGroupsRetrieveParams

type DojoGroupsRetrieveParams struct {
	// Prefetch List of fields for which to prefetch model instances and add those to the response
	Prefetch *[]DojoGroupsRetrieveParamsPrefetch `form:"prefetch,omitempty" json:"prefetch,omitempty"`
}

DojoGroupsRetrieveParams defines parameters for DojoGroupsRetrieve.

type DojoGroupsRetrieveParamsPrefetch

type DojoGroupsRetrieveParamsPrefetch string

DojoGroupsRetrieveParamsPrefetch defines parameters for DojoGroupsRetrieve.

const (
	DojoGroupsRetrieveParamsPrefetchProductGroups     DojoGroupsRetrieveParamsPrefetch = "product_groups"
	DojoGroupsRetrieveParamsPrefetchProductTypeGroups DojoGroupsRetrieveParamsPrefetch = "product_type_groups"
	DojoGroupsRetrieveParamsPrefetchUsers             DojoGroupsRetrieveParamsPrefetch = "users"
)

Defines values for DojoGroupsRetrieveParamsPrefetch.

type DojoGroupsRetrieveResponse

type DojoGroupsRetrieveResponse struct {
	Body         []byte
	HTTPResponse *http.Response
	JSON200      *DojoGroup
}

func ParseDojoGroupsRetrieveResponse

func ParseDojoGroupsRetrieveResponse(rsp *http.Response) (*DojoGroupsRetrieveResponse, error)

ParseDojoGroupsRetrieveResponse parses an HTTP response from a DojoGroupsRetrieveWithResponse call

func (DojoGroupsRetrieveResponse) Status

Status returns HTTPResponse.Status

func (DojoGroupsRetrieveResponse) StatusCode

func (r DojoGroupsRetrieveResponse) StatusCode() int

StatusCode returns HTTPResponse.StatusCode

type DojoGroupsUpdateFormdataRequestBody added in v0.2.0

type DojoGroupsUpdateFormdataRequestBody = DojoGroupRequest

DojoGroupsUpdateFormdataRequestBody defines body for DojoGroupsUpdate for application/x-www-form-urlencoded ContentType.

type DojoGroupsUpdateJSONRequestBody

type DojoGroupsUpdateJSONRequestBody = DojoGroupRequest

DojoGroupsUpdateJSONRequestBody defines body for DojoGroupsUpdate for application/json ContentType.

type DojoGroupsUpdateMultipartRequestBody added in v0.2.0

type DojoGroupsUpdateMultipartRequestBody = DojoGroupRequest

DojoGroupsUpdateMultipartRequestBody defines body for DojoGroupsUpdate for multipart/form-data ContentType.

type DojoGroupsUpdateResponse

type DojoGroupsUpdateResponse struct {
	Body         []byte
	HTTPResponse *http.Response
	JSON200      *DojoGroup
}

func ParseDojoGroupsUpdateResponse

func ParseDojoGroupsUpdateResponse(rsp *http.Response) (*DojoGroupsUpdateResponse, error)

ParseDojoGroupsUpdateResponse parses an HTTP response from a DojoGroupsUpdateWithResponse call

func (DojoGroupsUpdateResponse) Status

func (r DojoGroupsUpdateResponse) Status() string

Status returns HTTPResponse.Status

func (DojoGroupsUpdateResponse) StatusCode

func (r DojoGroupsUpdateResponse) StatusCode() int

StatusCode returns HTTPResponse.StatusCode

type EchoRouter

type EchoRouter interface {
	CONNECT(path string, h echo.HandlerFunc, m ...echo.MiddlewareFunc) *echo.Route
	DELETE(path string, h echo.HandlerFunc, m ...echo.MiddlewareFunc) *echo.Route
	GET(path string, h echo.HandlerFunc, m ...echo.MiddlewareFunc) *echo.Route
	HEAD(path string, h echo.HandlerFunc, m ...echo.MiddlewareFunc) *echo.Route
	OPTIONS(path string, h echo.HandlerFunc, m ...echo.MiddlewareFunc) *echo.Route
	PATCH(path string, h echo.HandlerFunc, m ...echo.MiddlewareFunc) *echo.Route
	POST(path string, h echo.HandlerFunc, m ...echo.MiddlewareFunc) *echo.Route
	PUT(path string, h echo.HandlerFunc, m ...echo.MiddlewareFunc) *echo.Route
	TRACE(path string, h echo.HandlerFunc, m ...echo.MiddlewareFunc) *echo.Route
}

This is a simple interface which specifies echo.Route addition functions which are present on both echo.Echo and echo.Group, since we want to allow using either of them for path registration

type Endpoint

type Endpoint struct {
	EndpointParams *[]int `json:"endpoint_params,omitempty"`
	Findings       *[]int `json:"findings,omitempty"`

	// Fragment The fragment identifier which follows the hash mark. The hash mark should be omitted. For example 'section-13', 'paragraph-2'.
	Fragment *string `json:"fragment"`

	// Host The host name or IP address. It must not include the port number. For example '127.0.0.1', 'localhost', 'yourdomain.com'.
	Host *string `json:"host"`
	Id   *int    `json:"id,omitempty"`

	// Path The location of the resource, it must not start with a '/'. For example endpoint/420/edit
	Path *string `json:"path"`

	// Port The network port associated with the endpoint.
	Port    *int `json:"port"`
	Product *int `json:"product"`

	// Protocol The communication protocol/scheme such as 'http', 'ftp', 'dns', etc.
	Protocol *string `json:"protocol"`

	// Query The query string, the question mark should be omitted.For example 'group=4&team=8'
	Query *string   `json:"query"`
	Tags  *[]string `json:"tags,omitempty"`

	// Userinfo User info as 'alice', 'bob', etc.
	Userinfo *string `json:"userinfo"`
}

Endpoint defines model for Endpoint.

type EndpointMetaImportCreateMultipartRequestBody added in v0.2.0

type EndpointMetaImportCreateMultipartRequestBody = EndpointMetaImporterRequest

EndpointMetaImportCreateMultipartRequestBody defines body for EndpointMetaImportCreate for multipart/form-data ContentType.

type EndpointMetaImportCreateResponse

type EndpointMetaImportCreateResponse struct {
	Body         []byte
	HTTPResponse *http.Response
	JSON201      *EndpointMetaImporter
}

func ParseEndpointMetaImportCreateResponse

func ParseEndpointMetaImportCreateResponse(rsp *http.Response) (*EndpointMetaImportCreateResponse, error)

ParseEndpointMetaImportCreateResponse parses an HTTP response from a EndpointMetaImportCreateWithResponse call

func (EndpointMetaImportCreateResponse) Status

Status returns HTTPResponse.Status

func (EndpointMetaImportCreateResponse) StatusCode

func (r EndpointMetaImportCreateResponse) StatusCode() int

StatusCode returns HTTPResponse.StatusCode

type EndpointMetaImporter

type EndpointMetaImporter struct {
	CreateDojoMeta  *bool   `json:"create_dojo_meta,omitempty"`
	CreateEndpoints *bool   `json:"create_endpoints,omitempty"`
	CreateTags      *bool   `json:"create_tags,omitempty"`
	File            string  `json:"file"`
	Product         *int    `json:"product,omitempty"`
	ProductId       *int    `json:"product_id,omitempty"`
	ProductName     *string `json:"product_name,omitempty"`
}

EndpointMetaImporter defines model for EndpointMetaImporter.

type EndpointMetaImporterRequest added in v0.2.0

type EndpointMetaImporterRequest struct {
	CreateDojoMeta  *bool              `json:"create_dojo_meta,omitempty"`
	CreateEndpoints *bool              `json:"create_endpoints,omitempty"`
	CreateTags      *bool              `json:"create_tags,omitempty"`
	File            openapi_types.File `json:"file"`
	Product         *int               `json:"product,omitempty"`
	ProductName     *string            `json:"product_name,omitempty"`
}

EndpointMetaImporterRequest defines model for EndpointMetaImporterRequest.

type EndpointRequest added in v0.2.0

type EndpointRequest struct {
	// Fragment The fragment identifier which follows the hash mark. The hash mark should be omitted. For example 'section-13', 'paragraph-2'.
	Fragment *string `json:"fragment"`

	// Host The host name or IP address. It must not include the port number. For example '127.0.0.1', 'localhost', 'yourdomain.com'.
	Host *string `json:"host"`

	// Path The location of the resource, it must not start with a '/'. For example endpoint/420/edit
	Path *string `json:"path"`

	// Port The network port associated with the endpoint.
	Port    *int `json:"port"`
	Product *int `json:"product"`

	// Protocol The communication protocol/scheme such as 'http', 'ftp', 'dns', etc.
	Protocol *string `json:"protocol"`

	// Query The query string, the question mark should be omitted.For example 'group=4&team=8'
	Query *string   `json:"query"`
	Tags  *[]string `json:"tags,omitempty"`

	// Userinfo User info as 'alice', 'bob', etc.
	Userinfo *string `json:"userinfo"`
}

EndpointRequest defines model for EndpointRequest.

type EndpointStatus

type EndpointStatus struct {
	Date          *openapi_types.Date `json:"date,omitempty"`
	Endpoint      int                 `json:"endpoint"`
	FalsePositive *bool               `json:"false_positive,omitempty"`
	Finding       int                 `json:"finding"`
	Id            *int                `json:"id,omitempty"`
	LastModified  *time.Time          `json:"last_modified"`
	Mitigated     *bool               `json:"mitigated,omitempty"`
	MitigatedBy   *int                `json:"mitigated_by"`
	MitigatedTime *time.Time          `json:"mitigated_time"`
	OutOfScope    *bool               `json:"out_of_scope,omitempty"`
	RiskAccepted  *bool               `json:"risk_accepted,omitempty"`
}

EndpointStatus defines model for EndpointStatus.

type EndpointStatusCreateFormdataRequestBody added in v0.2.0

type EndpointStatusCreateFormdataRequestBody = EndpointStatusRequest

EndpointStatusCreateFormdataRequestBody defines body for EndpointStatusCreate for application/x-www-form-urlencoded ContentType.

type EndpointStatusCreateJSONRequestBody

type EndpointStatusCreateJSONRequestBody = EndpointStatusRequest

EndpointStatusCreateJSONRequestBody defines body for EndpointStatusCreate for application/json ContentType.

type EndpointStatusCreateMultipartRequestBody added in v0.2.0

type EndpointStatusCreateMultipartRequestBody = EndpointStatusRequest

EndpointStatusCreateMultipartRequestBody defines body for EndpointStatusCreate for multipart/form-data ContentType.

type EndpointStatusCreateResponse

type EndpointStatusCreateResponse struct {
	Body         []byte
	HTTPResponse *http.Response
	JSON201      *EndpointStatus
}

func ParseEndpointStatusCreateResponse

func ParseEndpointStatusCreateResponse(rsp *http.Response) (*EndpointStatusCreateResponse, error)

ParseEndpointStatusCreateResponse parses an HTTP response from a EndpointStatusCreateWithResponse call

func (EndpointStatusCreateResponse) Status

Status returns HTTPResponse.Status

func (EndpointStatusCreateResponse) StatusCode

func (r EndpointStatusCreateResponse) StatusCode() int

StatusCode returns HTTPResponse.StatusCode

type EndpointStatusDeletePreviewListParams added in v0.2.0

type EndpointStatusDeletePreviewListParams struct {
	// Limit Number of results to return per page.
	Limit *int `form:"limit,omitempty" json:"limit,omitempty"`

	// Offset The initial index from which to return the results.
	Offset *int `form:"offset,omitempty" json:"offset,omitempty"`
}

EndpointStatusDeletePreviewListParams defines parameters for EndpointStatusDeletePreviewList.

type EndpointStatusDeletePreviewListResponse added in v0.2.0

type EndpointStatusDeletePreviewListResponse struct {
	Body         []byte
	HTTPResponse *http.Response
	JSON200      *PaginatedDeletePreviewList
}

func ParseEndpointStatusDeletePreviewListResponse added in v0.2.0

func ParseEndpointStatusDeletePreviewListResponse(rsp *http.Response) (*EndpointStatusDeletePreviewListResponse, error)

ParseEndpointStatusDeletePreviewListResponse parses an HTTP response from a EndpointStatusDeletePreviewListWithResponse call

func (EndpointStatusDeletePreviewListResponse) Status added in v0.2.0

Status returns HTTPResponse.Status

func (EndpointStatusDeletePreviewListResponse) StatusCode added in v0.2.0

StatusCode returns HTTPResponse.StatusCode

type EndpointStatusDestroyResponse

type EndpointStatusDestroyResponse struct {
	Body         []byte
	HTTPResponse *http.Response
}

func ParseEndpointStatusDestroyResponse

func ParseEndpointStatusDestroyResponse(rsp *http.Response) (*EndpointStatusDestroyResponse, error)

ParseEndpointStatusDestroyResponse parses an HTTP response from a EndpointStatusDestroyWithResponse call

func (EndpointStatusDestroyResponse) Status

Status returns HTTPResponse.Status

func (EndpointStatusDestroyResponse) StatusCode

func (r EndpointStatusDestroyResponse) StatusCode() int

StatusCode returns HTTPResponse.StatusCode

type EndpointStatusListParams

type EndpointStatusListParams struct {
	Endpoint      *int  `form:"endpoint,omitempty" json:"endpoint,omitempty"`
	FalsePositive *bool `form:"false_positive,omitempty" json:"false_positive,omitempty"`
	Finding       *int  `form:"finding,omitempty" json:"finding,omitempty"`

	// Limit Number of results to return per page.
	Limit       *int  `form:"limit,omitempty" json:"limit,omitempty"`
	Mitigated   *bool `form:"mitigated,omitempty" json:"mitigated,omitempty"`
	MitigatedBy *int  `form:"mitigated_by,omitempty" json:"mitigated_by,omitempty"`

	// Offset The initial index from which to return the results.
	Offset       *int  `form:"offset,omitempty" json:"offset,omitempty"`
	OutOfScope   *bool `form:"out_of_scope,omitempty" json:"out_of_scope,omitempty"`
	RiskAccepted *bool `form:"risk_accepted,omitempty" json:"risk_accepted,omitempty"`
}

EndpointStatusListParams defines parameters for EndpointStatusList.

type EndpointStatusListResponse

type EndpointStatusListResponse struct {
	Body         []byte
	HTTPResponse *http.Response
	JSON200      *PaginatedEndpointStatusList
}

func ParseEndpointStatusListResponse

func ParseEndpointStatusListResponse(rsp *http.Response) (*EndpointStatusListResponse, error)

ParseEndpointStatusListResponse parses an HTTP response from a EndpointStatusListWithResponse call

func (EndpointStatusListResponse) Status

Status returns HTTPResponse.Status

func (EndpointStatusListResponse) StatusCode

func (r EndpointStatusListResponse) StatusCode() int

StatusCode returns HTTPResponse.StatusCode

type EndpointStatusPartialUpdateFormdataRequestBody added in v0.2.0

type EndpointStatusPartialUpdateFormdataRequestBody = PatchedEndpointStatusRequest

EndpointStatusPartialUpdateFormdataRequestBody defines body for EndpointStatusPartialUpdate for application/x-www-form-urlencoded ContentType.

type EndpointStatusPartialUpdateJSONRequestBody

type EndpointStatusPartialUpdateJSONRequestBody = PatchedEndpointStatusRequest

EndpointStatusPartialUpdateJSONRequestBody defines body for EndpointStatusPartialUpdate for application/json ContentType.

type EndpointStatusPartialUpdateMultipartRequestBody added in v0.2.0

type EndpointStatusPartialUpdateMultipartRequestBody = PatchedEndpointStatusRequest

EndpointStatusPartialUpdateMultipartRequestBody defines body for EndpointStatusPartialUpdate for multipart/form-data ContentType.

type EndpointStatusPartialUpdateResponse

type EndpointStatusPartialUpdateResponse struct {
	Body         []byte
	HTTPResponse *http.Response
	JSON200      *EndpointStatus
}

func ParseEndpointStatusPartialUpdateResponse

func ParseEndpointStatusPartialUpdateResponse(rsp *http.Response) (*EndpointStatusPartialUpdateResponse, error)

ParseEndpointStatusPartialUpdateResponse parses an HTTP response from a EndpointStatusPartialUpdateWithResponse call

func (EndpointStatusPartialUpdateResponse) Status

Status returns HTTPResponse.Status

func (EndpointStatusPartialUpdateResponse) StatusCode

StatusCode returns HTTPResponse.StatusCode

type EndpointStatusRequest added in v0.2.0

type EndpointStatusRequest struct {
	Date          *openapi_types.Date `json:"date,omitempty"`
	Endpoint      int                 `json:"endpoint"`
	FalsePositive *bool               `json:"false_positive,omitempty"`
	Finding       int                 `json:"finding"`
	Mitigated     *bool               `json:"mitigated,omitempty"`
	MitigatedBy   *int                `json:"mitigated_by"`
	OutOfScope    *bool               `json:"out_of_scope,omitempty"`
	RiskAccepted  *bool               `json:"risk_accepted,omitempty"`
}

EndpointStatusRequest defines model for EndpointStatusRequest.

type EndpointStatusRetrieveResponse

type EndpointStatusRetrieveResponse struct {
	Body         []byte
	HTTPResponse *http.Response
	JSON200      *EndpointStatus
}

func ParseEndpointStatusRetrieveResponse

func ParseEndpointStatusRetrieveResponse(rsp *http.Response) (*EndpointStatusRetrieveResponse, error)

ParseEndpointStatusRetrieveResponse parses an HTTP response from a EndpointStatusRetrieveWithResponse call

func (EndpointStatusRetrieveResponse) Status

Status returns HTTPResponse.Status

func (EndpointStatusRetrieveResponse) StatusCode

func (r EndpointStatusRetrieveResponse) StatusCode() int

StatusCode returns HTTPResponse.StatusCode

type EndpointStatusUpdateFormdataRequestBody added in v0.2.0

type EndpointStatusUpdateFormdataRequestBody = EndpointStatusRequest

EndpointStatusUpdateFormdataRequestBody defines body for EndpointStatusUpdate for application/x-www-form-urlencoded ContentType.

type EndpointStatusUpdateJSONRequestBody

type EndpointStatusUpdateJSONRequestBody = EndpointStatusRequest

EndpointStatusUpdateJSONRequestBody defines body for EndpointStatusUpdate for application/json ContentType.

type EndpointStatusUpdateMultipartRequestBody added in v0.2.0

type EndpointStatusUpdateMultipartRequestBody = EndpointStatusRequest

EndpointStatusUpdateMultipartRequestBody defines body for EndpointStatusUpdate for multipart/form-data ContentType.

type EndpointStatusUpdateResponse

type EndpointStatusUpdateResponse struct {
	Body         []byte
	HTTPResponse *http.Response
	JSON200      *EndpointStatus
}

func ParseEndpointStatusUpdateResponse

func ParseEndpointStatusUpdateResponse(rsp *http.Response) (*EndpointStatusUpdateResponse, error)

ParseEndpointStatusUpdateResponse parses an HTTP response from a EndpointStatusUpdateWithResponse call

func (EndpointStatusUpdateResponse) Status

Status returns HTTPResponse.Status

func (EndpointStatusUpdateResponse) StatusCode

func (r EndpointStatusUpdateResponse) StatusCode() int

StatusCode returns HTTPResponse.StatusCode

type EndpointsCreateFormdataRequestBody added in v0.2.0

type EndpointsCreateFormdataRequestBody = EndpointRequest

EndpointsCreateFormdataRequestBody defines body for EndpointsCreate for application/x-www-form-urlencoded ContentType.

type EndpointsCreateJSONRequestBody

type EndpointsCreateJSONRequestBody = EndpointRequest

EndpointsCreateJSONRequestBody defines body for EndpointsCreate for application/json ContentType.

type EndpointsCreateMultipartRequestBody added in v0.2.0

type EndpointsCreateMultipartRequestBody = EndpointRequest

EndpointsCreateMultipartRequestBody defines body for EndpointsCreate for multipart/form-data ContentType.

type EndpointsCreateResponse

type EndpointsCreateResponse struct {
	Body         []byte
	HTTPResponse *http.Response
	JSON201      *Endpoint
}

func ParseEndpointsCreateResponse

func ParseEndpointsCreateResponse(rsp *http.Response) (*EndpointsCreateResponse, error)

ParseEndpointsCreateResponse parses an HTTP response from a EndpointsCreateWithResponse call

func (EndpointsCreateResponse) Status

func (r EndpointsCreateResponse) Status() string

Status returns HTTPResponse.Status

func (EndpointsCreateResponse) StatusCode

func (r EndpointsCreateResponse) StatusCode() int

StatusCode returns HTTPResponse.StatusCode

type EndpointsDeletePreviewListParams added in v0.2.0

type EndpointsDeletePreviewListParams struct {
	// Limit Number of results to return per page.
	Limit *int `form:"limit,omitempty" json:"limit,omitempty"`

	// Offset The initial index from which to return the results.
	Offset *int `form:"offset,omitempty" json:"offset,omitempty"`
}

EndpointsDeletePreviewListParams defines parameters for EndpointsDeletePreviewList.

type EndpointsDeletePreviewListResponse added in v0.2.0

type EndpointsDeletePreviewListResponse struct {
	Body         []byte
	HTTPResponse *http.Response
	JSON200      *PaginatedDeletePreviewList
}

func ParseEndpointsDeletePreviewListResponse added in v0.2.0

func ParseEndpointsDeletePreviewListResponse(rsp *http.Response) (*EndpointsDeletePreviewListResponse, error)

ParseEndpointsDeletePreviewListResponse parses an HTTP response from a EndpointsDeletePreviewListWithResponse call

func (EndpointsDeletePreviewListResponse) Status added in v0.2.0

Status returns HTTPResponse.Status

func (EndpointsDeletePreviewListResponse) StatusCode added in v0.2.0

func (r EndpointsDeletePreviewListResponse) StatusCode() int

StatusCode returns HTTPResponse.StatusCode

type EndpointsDestroyResponse

type EndpointsDestroyResponse struct {
	Body         []byte
	HTTPResponse *http.Response
}

func ParseEndpointsDestroyResponse

func ParseEndpointsDestroyResponse(rsp *http.Response) (*EndpointsDestroyResponse, error)

ParseEndpointsDestroyResponse parses an HTTP response from a EndpointsDestroyWithResponse call

func (EndpointsDestroyResponse) Status

func (r EndpointsDestroyResponse) Status() string

Status returns HTTPResponse.Status

func (EndpointsDestroyResponse) StatusCode

func (r EndpointsDestroyResponse) StatusCode() int

StatusCode returns HTTPResponse.StatusCode

type EndpointsGenerateReportCreateFormdataRequestBody added in v0.2.0

type EndpointsGenerateReportCreateFormdataRequestBody = ReportGenerateOptionRequest

EndpointsGenerateReportCreateFormdataRequestBody defines body for EndpointsGenerateReportCreate for application/x-www-form-urlencoded ContentType.

type EndpointsGenerateReportCreateJSONRequestBody

type EndpointsGenerateReportCreateJSONRequestBody = ReportGenerateOptionRequest

EndpointsGenerateReportCreateJSONRequestBody defines body for EndpointsGenerateReportCreate for application/json ContentType.

type EndpointsGenerateReportCreateMultipartRequestBody added in v0.2.0

type EndpointsGenerateReportCreateMultipartRequestBody = ReportGenerateOptionRequest

EndpointsGenerateReportCreateMultipartRequestBody defines body for EndpointsGenerateReportCreate for multipart/form-data ContentType.

type EndpointsGenerateReportCreateResponse

type EndpointsGenerateReportCreateResponse struct {
	Body         []byte
	HTTPResponse *http.Response
	JSON200      *ReportGenerate
}

func ParseEndpointsGenerateReportCreateResponse

func ParseEndpointsGenerateReportCreateResponse(rsp *http.Response) (*EndpointsGenerateReportCreateResponse, error)

ParseEndpointsGenerateReportCreateResponse parses an HTTP response from a EndpointsGenerateReportCreateWithResponse call

func (EndpointsGenerateReportCreateResponse) Status

Status returns HTTPResponse.Status

func (EndpointsGenerateReportCreateResponse) StatusCode

StatusCode returns HTTPResponse.StatusCode

type EndpointsListParams

type EndpointsListParams struct {
	Fragment *string `form:"fragment,omitempty" json:"fragment,omitempty"`
	Host     *string `form:"host,omitempty" json:"host,omitempty"`
	Id       *int    `form:"id,omitempty" json:"id,omitempty"`

	// Limit Number of results to return per page.
	Limit *int `form:"limit,omitempty" json:"limit,omitempty"`

	// NotTag Not Tag name contains
	NotTag *string `form:"not_tag,omitempty" json:"not_tag,omitempty"`

	// NotTags Comma seperated list of exact tags not present on model
	NotTags *[]string `form:"not_tags,omitempty" json:"not_tags,omitempty"`

	// O Ordering
	//
	// * `host` - Host
	// * `-host` - Host (descending)
	// * `product` - Product
	// * `-product` - Product (descending)
	O *[]EndpointsListParamsO `form:"o,omitempty" json:"o,omitempty"`

	// Offset The initial index from which to return the results.
	Offset   *int    `form:"offset,omitempty" json:"offset,omitempty"`
	Path     *string `form:"path,omitempty" json:"path,omitempty"`
	Port     *int    `form:"port,omitempty" json:"port,omitempty"`
	Product  *int    `form:"product,omitempty" json:"product,omitempty"`
	Protocol *string `form:"protocol,omitempty" json:"protocol,omitempty"`
	Query    *string `form:"query,omitempty" json:"query,omitempty"`

	// Tag Tag name contains
	Tag *string `form:"tag,omitempty" json:"tag,omitempty"`

	// Tags Comma seperated list of exact tags
	Tags     *[]string `form:"tags,omitempty" json:"tags,omitempty"`
	Userinfo *string   `form:"userinfo,omitempty" json:"userinfo,omitempty"`
}

EndpointsListParams defines parameters for EndpointsList.

type EndpointsListParamsO

type EndpointsListParamsO string

EndpointsListParamsO defines parameters for EndpointsList.

const (
	EndpointsListParamsOHost         EndpointsListParamsO = "host"
	EndpointsListParamsOMinusHost    EndpointsListParamsO = "-host"
	EndpointsListParamsOMinusProduct EndpointsListParamsO = "-product"
	EndpointsListParamsOProduct      EndpointsListParamsO = "product"
)

Defines values for EndpointsListParamsO.

type EndpointsListResponse

type EndpointsListResponse struct {
	Body         []byte
	HTTPResponse *http.Response
	JSON200      *PaginatedEndpointList
}

func ParseEndpointsListResponse

func ParseEndpointsListResponse(rsp *http.Response) (*EndpointsListResponse, error)

ParseEndpointsListResponse parses an HTTP response from a EndpointsListWithResponse call

func (EndpointsListResponse) Status

func (r EndpointsListResponse) Status() string

Status returns HTTPResponse.Status

func (EndpointsListResponse) StatusCode

func (r EndpointsListResponse) StatusCode() int

StatusCode returns HTTPResponse.StatusCode

type EndpointsPartialUpdateFormdataRequestBody added in v0.2.0

type EndpointsPartialUpdateFormdataRequestBody = PatchedEndpointRequest

EndpointsPartialUpdateFormdataRequestBody defines body for EndpointsPartialUpdate for application/x-www-form-urlencoded ContentType.

type EndpointsPartialUpdateJSONRequestBody

type EndpointsPartialUpdateJSONRequestBody = PatchedEndpointRequest

EndpointsPartialUpdateJSONRequestBody defines body for EndpointsPartialUpdate for application/json ContentType.

type EndpointsPartialUpdateMultipartRequestBody added in v0.2.0

type EndpointsPartialUpdateMultipartRequestBody = PatchedEndpointRequest

EndpointsPartialUpdateMultipartRequestBody defines body for EndpointsPartialUpdate for multipart/form-data ContentType.

type EndpointsPartialUpdateResponse

type EndpointsPartialUpdateResponse struct {
	Body         []byte
	HTTPResponse *http.Response
	JSON200      *Endpoint
}

func ParseEndpointsPartialUpdateResponse

func ParseEndpointsPartialUpdateResponse(rsp *http.Response) (*EndpointsPartialUpdateResponse, error)

ParseEndpointsPartialUpdateResponse parses an HTTP response from a EndpointsPartialUpdateWithResponse call

func (EndpointsPartialUpdateResponse) Status

Status returns HTTPResponse.Status

func (EndpointsPartialUpdateResponse) StatusCode

func (r EndpointsPartialUpdateResponse) StatusCode() int

StatusCode returns HTTPResponse.StatusCode

type EndpointsRetrieveResponse

type EndpointsRetrieveResponse struct {
	Body         []byte
	HTTPResponse *http.Response
	JSON200      *Endpoint
}

func ParseEndpointsRetrieveResponse

func ParseEndpointsRetrieveResponse(rsp *http.Response) (*EndpointsRetrieveResponse, error)

ParseEndpointsRetrieveResponse parses an HTTP response from a EndpointsRetrieveWithResponse call

func (EndpointsRetrieveResponse) Status

func (r EndpointsRetrieveResponse) Status() string

Status returns HTTPResponse.Status

func (EndpointsRetrieveResponse) StatusCode

func (r EndpointsRetrieveResponse) StatusCode() int

StatusCode returns HTTPResponse.StatusCode

type EndpointsUpdateFormdataRequestBody added in v0.2.0

type EndpointsUpdateFormdataRequestBody = EndpointRequest

EndpointsUpdateFormdataRequestBody defines body for EndpointsUpdate for application/x-www-form-urlencoded ContentType.

type EndpointsUpdateJSONRequestBody

type EndpointsUpdateJSONRequestBody = EndpointRequest

EndpointsUpdateJSONRequestBody defines body for EndpointsUpdate for application/json ContentType.

type EndpointsUpdateMultipartRequestBody added in v0.2.0

type EndpointsUpdateMultipartRequestBody = EndpointRequest

EndpointsUpdateMultipartRequestBody defines body for EndpointsUpdate for multipart/form-data ContentType.

type EndpointsUpdateResponse

type EndpointsUpdateResponse struct {
	Body         []byte
	HTTPResponse *http.Response
	JSON200      *Endpoint
}

func ParseEndpointsUpdateResponse

func ParseEndpointsUpdateResponse(rsp *http.Response) (*EndpointsUpdateResponse, error)

ParseEndpointsUpdateResponse parses an HTTP response from a EndpointsUpdateWithResponse call

func (EndpointsUpdateResponse) Status

func (r EndpointsUpdateResponse) Status() string

Status returns HTTPResponse.Status

func (EndpointsUpdateResponse) StatusCode

func (r EndpointsUpdateResponse) StatusCode() int

StatusCode returns HTTPResponse.StatusCode

type Engagement

type Engagement struct {
	Active  *bool `json:"active,omitempty"`
	ApiTest *bool `json:"api_test,omitempty"`

	// BranchTag Tag or branch of the product the engagement tested.
	BranchTag *string `json:"branch_tag"`

	// BuildId Build ID of the product the engagement tested.
	BuildId *string `json:"build_id"`

	// BuildServer Build server responsible for CI/CD test
	BuildServer *int  `json:"build_server"`
	CheckList   *bool `json:"check_list,omitempty"`

	// CommitHash Commit hash from repo
	CommitHash *string    `json:"commit_hash"`
	Created    *time.Time `json:"created"`

	// DeduplicationOnEngagement If enabled deduplication will only mark a finding in this engagement as duplicate of another finding if both findings are in this engagement. If disabled, deduplication is on the product level.
	DeduplicationOnEngagement *bool   `json:"deduplication_on_engagement,omitempty"`
	Description               *string `json:"description"`
	DoneTesting               *bool   `json:"done_testing,omitempty"`

	// EngagementType * `Interactive` - Interactive
	// * `CI/CD` - CI/CD
	EngagementType *EngagementEngagementType `json:"engagement_type"`
	Files          *[]File                   `json:"files,omitempty"`
	FirstContacted *openapi_types.Date       `json:"first_contacted"`
	Id             *int                      `json:"id,omitempty"`
	Lead           *int                      `json:"lead"`
	Name           *string                   `json:"name"`
	Notes          *[]Note                   `json:"notes,omitempty"`

	// OrchestrationEngine Orchestration service responsible for CI/CD test
	OrchestrationEngine *int  `json:"orchestration_engine"`
	PenTest             *bool `json:"pen_test,omitempty"`

	// Preset Settings and notes for performing this engagement.
	Preset         *int    `json:"preset"`
	Product        int     `json:"product"`
	Progress       *string `json:"progress,omitempty"`
	Reason         *string `json:"reason"`
	ReportType     *int    `json:"report_type"`
	Requester      *int    `json:"requester"`
	RiskAcceptance *[]int  `json:"risk_acceptance,omitempty"`

	// SourceCodeManagementServer Source code server for CI/CD test
	SourceCodeManagementServer *int `json:"source_code_management_server"`

	// SourceCodeManagementUri Resource link to source code
	SourceCodeManagementUri *string `json:"source_code_management_uri"`

	// Status * `Not Started` - Not Started
	// * `Blocked` - Blocked
	// * `Cancelled` - Cancelled
	// * `Completed` - Completed
	// * `In Progress` - In Progress
	// * `On Hold` - On Hold
	// * `Waiting for Resource` - Waiting for Resource
	Status       *EngagementStatus  `json:"status"`
	Tags         *[]string          `json:"tags,omitempty"`
	TargetEnd    openapi_types.Date `json:"target_end"`
	TargetStart  openapi_types.Date `json:"target_start"`
	TestStrategy *string            `json:"test_strategy"`
	ThreatModel  *bool              `json:"threat_model,omitempty"`
	TmodelPath   *string            `json:"tmodel_path"`

	// Tracker Link to epic or ticket system with changes to version.
	Tracker *string    `json:"tracker"`
	Updated *time.Time `json:"updated"`

	// Version Version of the product the engagement tested.
	Version *string `json:"version"`
}

Engagement defines model for Engagement.

type EngagementCheckList added in v0.2.0

type EngagementCheckList struct {
	AuthIssues                      *[]int  `json:"auth_issues,omitempty"`
	Authentication                  *string `json:"authentication,omitempty"`
	AuthorIssues                    *[]int  `json:"author_issues,omitempty"`
	AuthorizationAndAccessControl   *string `json:"authorization_and_access_control,omitempty"`
	ConfigIssues                    *[]int  `json:"config_issues,omitempty"`
	ConfigurationManagement         *string `json:"configuration_management,omitempty"`
	CryptoIssues                    *[]int  `json:"crypto_issues,omitempty"`
	DataInputSanitizationValidation *string `json:"data_input_sanitization_validation,omitempty"`
	DataIssues                      *[]int  `json:"data_issues,omitempty"`
	EncryptionCrypto                *string `json:"encryption_crypto,omitempty"`
	Engagement                      *int    `json:"engagement,omitempty"`
	Id                              *int    `json:"id,omitempty"`
	Other                           *string `json:"other,omitempty"`
	OtherIssues                     *[]int  `json:"other_issues,omitempty"`
	SensitiveData                   *string `json:"sensitive_data,omitempty"`
	SensitiveIssues                 *[]int  `json:"sensitive_issues,omitempty"`
	SessionIssues                   *[]int  `json:"session_issues,omitempty"`
	SessionManagement               *string `json:"session_management,omitempty"`
}

EngagementCheckList defines model for EngagementCheckList.

type EngagementCheckListRequest added in v0.2.0

type EngagementCheckListRequest struct {
	AuthIssues                      *[]int  `json:"auth_issues,omitempty"`
	Authentication                  *string `json:"authentication,omitempty"`
	AuthorIssues                    *[]int  `json:"author_issues,omitempty"`
	AuthorizationAndAccessControl   *string `json:"authorization_and_access_control,omitempty"`
	ConfigIssues                    *[]int  `json:"config_issues,omitempty"`
	ConfigurationManagement         *string `json:"configuration_management,omitempty"`
	CryptoIssues                    *[]int  `json:"crypto_issues,omitempty"`
	DataInputSanitizationValidation *string `json:"data_input_sanitization_validation,omitempty"`
	DataIssues                      *[]int  `json:"data_issues,omitempty"`
	EncryptionCrypto                *string `json:"encryption_crypto,omitempty"`
	Other                           *string `json:"other,omitempty"`
	OtherIssues                     *[]int  `json:"other_issues,omitempty"`
	SensitiveData                   *string `json:"sensitive_data,omitempty"`
	SensitiveIssues                 *[]int  `json:"sensitive_issues,omitempty"`
	SessionIssues                   *[]int  `json:"session_issues,omitempty"`
	SessionManagement               *string `json:"session_management,omitempty"`
}

EngagementCheckListRequest defines model for EngagementCheckListRequest.

type EngagementEngagementType

type EngagementEngagementType string

EngagementEngagementType * `Interactive` - Interactive * `CI/CD` - CI/CD

const (
	EngagementEngagementTypeCICD        EngagementEngagementType = "CI/CD"
	EngagementEngagementTypeInteractive EngagementEngagementType = "Interactive"
	EngagementEngagementTypeNil         EngagementEngagementType = "<nil>"
)

Defines values for EngagementEngagementType.

type EngagementPresets

type EngagementPresets struct {
	Created          *time.Time `json:"created,omitempty"`
	Id               *int       `json:"id,omitempty"`
	NetworkLocations *[]int     `json:"network_locations,omitempty"`

	// Notes Description of what needs to be tested or setting up environment for testing
	Notes   *string `json:"notes"`
	Product int     `json:"product"`

	// Scope Scope of Engagement testing, IP's/Resources/URL's)
	Scope    *string `json:"scope,omitempty"`
	TestType *[]int  `json:"test_type,omitempty"`

	// Title Brief description of preset.
	Title *string `json:"title,omitempty"`
}

EngagementPresets defines model for EngagementPresets.

type EngagementPresetsCreateFormdataRequestBody added in v0.2.0

type EngagementPresetsCreateFormdataRequestBody = EngagementPresetsRequest

EngagementPresetsCreateFormdataRequestBody defines body for EngagementPresetsCreate for application/x-www-form-urlencoded ContentType.

type EngagementPresetsCreateJSONRequestBody

type EngagementPresetsCreateJSONRequestBody = EngagementPresetsRequest

EngagementPresetsCreateJSONRequestBody defines body for EngagementPresetsCreate for application/json ContentType.

type EngagementPresetsCreateMultipartRequestBody added in v0.2.0

type EngagementPresetsCreateMultipartRequestBody = EngagementPresetsRequest

EngagementPresetsCreateMultipartRequestBody defines body for EngagementPresetsCreate for multipart/form-data ContentType.

type EngagementPresetsCreateResponse

type EngagementPresetsCreateResponse struct {
	Body         []byte
	HTTPResponse *http.Response
	JSON201      *EngagementPresets
}

func ParseEngagementPresetsCreateResponse

func ParseEngagementPresetsCreateResponse(rsp *http.Response) (*EngagementPresetsCreateResponse, error)

ParseEngagementPresetsCreateResponse parses an HTTP response from a EngagementPresetsCreateWithResponse call

func (EngagementPresetsCreateResponse) Status

Status returns HTTPResponse.Status

func (EngagementPresetsCreateResponse) StatusCode

func (r EngagementPresetsCreateResponse) StatusCode() int

StatusCode returns HTTPResponse.StatusCode

type EngagementPresetsDeletePreviewListParams added in v0.2.0

type EngagementPresetsDeletePreviewListParams struct {
	// Limit Number of results to return per page.
	Limit *int `form:"limit,omitempty" json:"limit,omitempty"`

	// Offset The initial index from which to return the results.
	Offset *int `form:"offset,omitempty" json:"offset,omitempty"`
}

EngagementPresetsDeletePreviewListParams defines parameters for EngagementPresetsDeletePreviewList.

type EngagementPresetsDeletePreviewListResponse added in v0.2.0

type EngagementPresetsDeletePreviewListResponse struct {
	Body         []byte
	HTTPResponse *http.Response
	JSON200      *PaginatedDeletePreviewList
}

func ParseEngagementPresetsDeletePreviewListResponse added in v0.2.0

func ParseEngagementPresetsDeletePreviewListResponse(rsp *http.Response) (*EngagementPresetsDeletePreviewListResponse, error)

ParseEngagementPresetsDeletePreviewListResponse parses an HTTP response from a EngagementPresetsDeletePreviewListWithResponse call

func (EngagementPresetsDeletePreviewListResponse) Status added in v0.2.0

Status returns HTTPResponse.Status

func (EngagementPresetsDeletePreviewListResponse) StatusCode added in v0.2.0

StatusCode returns HTTPResponse.StatusCode

type EngagementPresetsDestroyResponse

type EngagementPresetsDestroyResponse struct {
	Body         []byte
	HTTPResponse *http.Response
}

func ParseEngagementPresetsDestroyResponse

func ParseEngagementPresetsDestroyResponse(rsp *http.Response) (*EngagementPresetsDestroyResponse, error)

ParseEngagementPresetsDestroyResponse parses an HTTP response from a EngagementPresetsDestroyWithResponse call

func (EngagementPresetsDestroyResponse) Status

Status returns HTTPResponse.Status

func (EngagementPresetsDestroyResponse) StatusCode

func (r EngagementPresetsDestroyResponse) StatusCode() int

StatusCode returns HTTPResponse.StatusCode

type EngagementPresetsListParams

type EngagementPresetsListParams struct {
	Id *int `form:"id,omitempty" json:"id,omitempty"`

	// Limit Number of results to return per page.
	Limit *int `form:"limit,omitempty" json:"limit,omitempty"`

	// Offset The initial index from which to return the results.
	Offset  *int    `form:"offset,omitempty" json:"offset,omitempty"`
	Product *int    `form:"product,omitempty" json:"product,omitempty"`
	Title   *string `form:"title,omitempty" json:"title,omitempty"`
}

EngagementPresetsListParams defines parameters for EngagementPresetsList.

type EngagementPresetsListResponse

type EngagementPresetsListResponse struct {
	Body         []byte
	HTTPResponse *http.Response
	JSON200      *PaginatedEngagementPresetsList
}

func ParseEngagementPresetsListResponse

func ParseEngagementPresetsListResponse(rsp *http.Response) (*EngagementPresetsListResponse, error)

ParseEngagementPresetsListResponse parses an HTTP response from a EngagementPresetsListWithResponse call

func (EngagementPresetsListResponse) Status

Status returns HTTPResponse.Status

func (EngagementPresetsListResponse) StatusCode

func (r EngagementPresetsListResponse) StatusCode() int

StatusCode returns HTTPResponse.StatusCode

type EngagementPresetsPartialUpdateFormdataRequestBody added in v0.2.0

type EngagementPresetsPartialUpdateFormdataRequestBody = PatchedEngagementPresetsRequest

EngagementPresetsPartialUpdateFormdataRequestBody defines body for EngagementPresetsPartialUpdate for application/x-www-form-urlencoded ContentType.

type EngagementPresetsPartialUpdateJSONRequestBody

type EngagementPresetsPartialUpdateJSONRequestBody = PatchedEngagementPresetsRequest

EngagementPresetsPartialUpdateJSONRequestBody defines body for EngagementPresetsPartialUpdate for application/json ContentType.

type EngagementPresetsPartialUpdateMultipartRequestBody added in v0.2.0

type EngagementPresetsPartialUpdateMultipartRequestBody = PatchedEngagementPresetsRequest

EngagementPresetsPartialUpdateMultipartRequestBody defines body for EngagementPresetsPartialUpdate for multipart/form-data ContentType.

type EngagementPresetsPartialUpdateResponse

type EngagementPresetsPartialUpdateResponse struct {
	Body         []byte
	HTTPResponse *http.Response
	JSON200      *EngagementPresets
}

func ParseEngagementPresetsPartialUpdateResponse

func ParseEngagementPresetsPartialUpdateResponse(rsp *http.Response) (*EngagementPresetsPartialUpdateResponse, error)

ParseEngagementPresetsPartialUpdateResponse parses an HTTP response from a EngagementPresetsPartialUpdateWithResponse call

func (EngagementPresetsPartialUpdateResponse) Status

Status returns HTTPResponse.Status

func (EngagementPresetsPartialUpdateResponse) StatusCode

StatusCode returns HTTPResponse.StatusCode

type EngagementPresetsRequest added in v0.2.0

type EngagementPresetsRequest struct {
	NetworkLocations *[]int `json:"network_locations,omitempty"`

	// Notes Description of what needs to be tested or setting up environment for testing
	Notes   *string `json:"notes"`
	Product int     `json:"product"`

	// Scope Scope of Engagement testing, IP's/Resources/URL's)
	Scope    *string `json:"scope,omitempty"`
	TestType *[]int  `json:"test_type,omitempty"`

	// Title Brief description of preset.
	Title *string `json:"title,omitempty"`
}

EngagementPresetsRequest defines model for EngagementPresetsRequest.

type EngagementPresetsRetrieveResponse

type EngagementPresetsRetrieveResponse struct {
	Body         []byte
	HTTPResponse *http.Response
	JSON200      *EngagementPresets
}

func ParseEngagementPresetsRetrieveResponse

func ParseEngagementPresetsRetrieveResponse(rsp *http.Response) (*EngagementPresetsRetrieveResponse, error)

ParseEngagementPresetsRetrieveResponse parses an HTTP response from a EngagementPresetsRetrieveWithResponse call

func (EngagementPresetsRetrieveResponse) Status

Status returns HTTPResponse.Status

func (EngagementPresetsRetrieveResponse) StatusCode

func (r EngagementPresetsRetrieveResponse) StatusCode() int

StatusCode returns HTTPResponse.StatusCode

type EngagementPresetsUpdateFormdataRequestBody added in v0.2.0

type EngagementPresetsUpdateFormdataRequestBody = EngagementPresetsRequest

EngagementPresetsUpdateFormdataRequestBody defines body for EngagementPresetsUpdate for application/x-www-form-urlencoded ContentType.

type EngagementPresetsUpdateJSONRequestBody

type EngagementPresetsUpdateJSONRequestBody = EngagementPresetsRequest

EngagementPresetsUpdateJSONRequestBody defines body for EngagementPresetsUpdate for application/json ContentType.

type EngagementPresetsUpdateMultipartRequestBody added in v0.2.0

type EngagementPresetsUpdateMultipartRequestBody = EngagementPresetsRequest

EngagementPresetsUpdateMultipartRequestBody defines body for EngagementPresetsUpdate for multipart/form-data ContentType.

type EngagementPresetsUpdateResponse

type EngagementPresetsUpdateResponse struct {
	Body         []byte
	HTTPResponse *http.Response
	JSON200      *EngagementPresets
}

func ParseEngagementPresetsUpdateResponse

func ParseEngagementPresetsUpdateResponse(rsp *http.Response) (*EngagementPresetsUpdateResponse, error)

ParseEngagementPresetsUpdateResponse parses an HTTP response from a EngagementPresetsUpdateWithResponse call

func (EngagementPresetsUpdateResponse) Status

Status returns HTTPResponse.Status

func (EngagementPresetsUpdateResponse) StatusCode

func (r EngagementPresetsUpdateResponse) StatusCode() int

StatusCode returns HTTPResponse.StatusCode

type EngagementRequest added in v0.2.0

type EngagementRequest struct {
	ApiTest *bool `json:"api_test,omitempty"`

	// BranchTag Tag or branch of the product the engagement tested.
	BranchTag *string `json:"branch_tag"`

	// BuildId Build ID of the product the engagement tested.
	BuildId *string `json:"build_id"`

	// BuildServer Build server responsible for CI/CD test
	BuildServer *int  `json:"build_server"`
	CheckList   *bool `json:"check_list,omitempty"`

	// CommitHash Commit hash from repo
	CommitHash *string `json:"commit_hash"`

	// DeduplicationOnEngagement If enabled deduplication will only mark a finding in this engagement as duplicate of another finding if both findings are in this engagement. If disabled, deduplication is on the product level.
	DeduplicationOnEngagement *bool   `json:"deduplication_on_engagement,omitempty"`
	Description               *string `json:"description"`

	// EngagementType * `Interactive` - Interactive
	// * `CI/CD` - CI/CD
	EngagementType *EngagementRequestEngagementType `json:"engagement_type"`
	FirstContacted *openapi_types.Date              `json:"first_contacted"`
	Lead           *int                             `json:"lead"`
	Name           *string                          `json:"name"`

	// OrchestrationEngine Orchestration service responsible for CI/CD test
	OrchestrationEngine *int  `json:"orchestration_engine"`
	PenTest             *bool `json:"pen_test,omitempty"`

	// Preset Settings and notes for performing this engagement.
	Preset     *int    `json:"preset"`
	Product    int     `json:"product"`
	Reason     *string `json:"reason"`
	ReportType *int    `json:"report_type"`
	Requester  *int    `json:"requester"`

	// SourceCodeManagementServer Source code server for CI/CD test
	SourceCodeManagementServer *int `json:"source_code_management_server"`

	// SourceCodeManagementUri Resource link to source code
	SourceCodeManagementUri *string `json:"source_code_management_uri"`

	// Status * `Not Started` - Not Started
	// * `Blocked` - Blocked
	// * `Cancelled` - Cancelled
	// * `Completed` - Completed
	// * `In Progress` - In Progress
	// * `On Hold` - On Hold
	// * `Waiting for Resource` - Waiting for Resource
	Status       *EngagementRequestStatus `json:"status"`
	Tags         *[]string                `json:"tags,omitempty"`
	TargetEnd    openapi_types.Date       `json:"target_end"`
	TargetStart  openapi_types.Date       `json:"target_start"`
	TestStrategy *string                  `json:"test_strategy"`
	ThreatModel  *bool                    `json:"threat_model,omitempty"`

	// Tracker Link to epic or ticket system with changes to version.
	Tracker *string `json:"tracker"`

	// Version Version of the product the engagement tested.
	Version *string `json:"version"`
}

EngagementRequest defines model for EngagementRequest.

type EngagementRequestEngagementType added in v0.2.0

type EngagementRequestEngagementType string

EngagementRequestEngagementType * `Interactive` - Interactive * `CI/CD` - CI/CD

const (
	EngagementRequestEngagementTypeCICD        EngagementRequestEngagementType = "CI/CD"
	EngagementRequestEngagementTypeInteractive EngagementRequestEngagementType = "Interactive"
	EngagementRequestEngagementTypeNil         EngagementRequestEngagementType = "<nil>"
)

Defines values for EngagementRequestEngagementType.

type EngagementRequestStatus added in v0.2.0

type EngagementRequestStatus string

EngagementRequestStatus * `Not Started` - Not Started * `Blocked` - Blocked * `Cancelled` - Cancelled * `Completed` - Completed * `In Progress` - In Progress * `On Hold` - On Hold * `Waiting for Resource` - Waiting for Resource

const (
	EngagementRequestStatusBlocked            EngagementRequestStatus = "Blocked"
	EngagementRequestStatusCancelled          EngagementRequestStatus = "Cancelled"
	EngagementRequestStatusCompleted          EngagementRequestStatus = "Completed"
	EngagementRequestStatusInProgress         EngagementRequestStatus = "In Progress"
	EngagementRequestStatusNil                EngagementRequestStatus = "<nil>"
	EngagementRequestStatusNotStarted         EngagementRequestStatus = "Not Started"
	EngagementRequestStatusOnHold             EngagementRequestStatus = "On Hold"
	EngagementRequestStatusWaitingForResource EngagementRequestStatus = "Waiting for Resource"
)

Defines values for EngagementRequestStatus.

type EngagementStatus

type EngagementStatus string

EngagementStatus * `Not Started` - Not Started * `Blocked` - Blocked * `Cancelled` - Cancelled * `Completed` - Completed * `In Progress` - In Progress * `On Hold` - On Hold * `Waiting for Resource` - Waiting for Resource

const (
	EngagementStatusBlocked            EngagementStatus = "Blocked"
	EngagementStatusCancelled          EngagementStatus = "Cancelled"
	EngagementStatusCompleted          EngagementStatus = "Completed"
	EngagementStatusInProgress         EngagementStatus = "In Progress"
	EngagementStatusNil                EngagementStatus = "<nil>"
	EngagementStatusNotStarted         EngagementStatus = "Not Started"
	EngagementStatusOnHold             EngagementStatus = "On Hold"
	EngagementStatusWaitingForResource EngagementStatus = "Waiting for Resource"
)

Defines values for EngagementStatus.

type EngagementToFiles

type EngagementToFiles struct {
	EngagementId *int   `json:"engagement_id"`
	Files        []File `json:"files"`
}

EngagementToFiles defines model for EngagementToFiles.

type EngagementToNotes

type EngagementToNotes struct {
	EngagementId *int   `json:"engagement_id"`
	Notes        []Note `json:"notes"`
}

EngagementToNotes defines model for EngagementToNotes.

type EngagementsAcceptRisksCreateFormdataBody added in v0.2.0

type EngagementsAcceptRisksCreateFormdataBody = struct {
}

EngagementsAcceptRisksCreateFormdataBody defines parameters for EngagementsAcceptRisksCreate.

type EngagementsAcceptRisksCreateFormdataRequestBody added in v0.2.0

type EngagementsAcceptRisksCreateFormdataRequestBody = EngagementsAcceptRisksCreateFormdataBody

EngagementsAcceptRisksCreateFormdataRequestBody defines body for EngagementsAcceptRisksCreate for application/x-www-form-urlencoded ContentType.

type EngagementsAcceptRisksCreateJSONBody

type EngagementsAcceptRisksCreateJSONBody = []AcceptedRiskRequest

EngagementsAcceptRisksCreateJSONBody defines parameters for EngagementsAcceptRisksCreate.

type EngagementsAcceptRisksCreateJSONRequestBody

type EngagementsAcceptRisksCreateJSONRequestBody = EngagementsAcceptRisksCreateJSONBody

EngagementsAcceptRisksCreateJSONRequestBody defines body for EngagementsAcceptRisksCreate for application/json ContentType.

type EngagementsAcceptRisksCreateMultipartBody added in v0.2.0

type EngagementsAcceptRisksCreateMultipartBody = []AcceptedRiskRequest

EngagementsAcceptRisksCreateMultipartBody defines parameters for EngagementsAcceptRisksCreate.

type EngagementsAcceptRisksCreateMultipartRequestBody added in v0.2.0

type EngagementsAcceptRisksCreateMultipartRequestBody = EngagementsAcceptRisksCreateMultipartBody

EngagementsAcceptRisksCreateMultipartRequestBody defines body for EngagementsAcceptRisksCreate for multipart/form-data ContentType.

type EngagementsAcceptRisksCreateResponse

type EngagementsAcceptRisksCreateResponse struct {
	Body         []byte
	HTTPResponse *http.Response
	JSON201      *[]RiskAcceptance
}

func ParseEngagementsAcceptRisksCreateResponse

func ParseEngagementsAcceptRisksCreateResponse(rsp *http.Response) (*EngagementsAcceptRisksCreateResponse, error)

ParseEngagementsAcceptRisksCreateResponse parses an HTTP response from a EngagementsAcceptRisksCreateWithResponse call

func (EngagementsAcceptRisksCreateResponse) Status

Status returns HTTPResponse.Status

func (EngagementsAcceptRisksCreateResponse) StatusCode

StatusCode returns HTTPResponse.StatusCode

type EngagementsCloseCreateResponse

type EngagementsCloseCreateResponse struct {
	Body         []byte
	HTTPResponse *http.Response
}

func ParseEngagementsCloseCreateResponse

func ParseEngagementsCloseCreateResponse(rsp *http.Response) (*EngagementsCloseCreateResponse, error)

ParseEngagementsCloseCreateResponse parses an HTTP response from a EngagementsCloseCreateWithResponse call

func (EngagementsCloseCreateResponse) Status

Status returns HTTPResponse.Status

func (EngagementsCloseCreateResponse) StatusCode

func (r EngagementsCloseCreateResponse) StatusCode() int

StatusCode returns HTTPResponse.StatusCode

type EngagementsCompleteChecklistCreateFormdataRequestBody added in v0.2.0

type EngagementsCompleteChecklistCreateFormdataRequestBody = EngagementCheckListRequest

EngagementsCompleteChecklistCreateFormdataRequestBody defines body for EngagementsCompleteChecklistCreate for application/x-www-form-urlencoded ContentType.

type EngagementsCompleteChecklistCreateJSONRequestBody added in v0.2.0

type EngagementsCompleteChecklistCreateJSONRequestBody = EngagementCheckListRequest

EngagementsCompleteChecklistCreateJSONRequestBody defines body for EngagementsCompleteChecklistCreate for application/json ContentType.

type EngagementsCompleteChecklistCreateMultipartRequestBody added in v0.2.0

type EngagementsCompleteChecklistCreateMultipartRequestBody = EngagementCheckListRequest

EngagementsCompleteChecklistCreateMultipartRequestBody defines body for EngagementsCompleteChecklistCreate for multipart/form-data ContentType.

type EngagementsCompleteChecklistCreateResponse added in v0.2.0

type EngagementsCompleteChecklistCreateResponse struct {
	Body         []byte
	HTTPResponse *http.Response
	JSON201      *EngagementCheckList
}

func ParseEngagementsCompleteChecklistCreateResponse added in v0.2.0

func ParseEngagementsCompleteChecklistCreateResponse(rsp *http.Response) (*EngagementsCompleteChecklistCreateResponse, error)

ParseEngagementsCompleteChecklistCreateResponse parses an HTTP response from a EngagementsCompleteChecklistCreateWithResponse call

func (EngagementsCompleteChecklistCreateResponse) Status added in v0.2.0

Status returns HTTPResponse.Status

func (EngagementsCompleteChecklistCreateResponse) StatusCode added in v0.2.0

StatusCode returns HTTPResponse.StatusCode

type EngagementsCompleteChecklistRetrieveResponse added in v0.2.0

type EngagementsCompleteChecklistRetrieveResponse struct {
	Body         []byte
	HTTPResponse *http.Response
	JSON200      *Engagement
}

func ParseEngagementsCompleteChecklistRetrieveResponse added in v0.2.0

func ParseEngagementsCompleteChecklistRetrieveResponse(rsp *http.Response) (*EngagementsCompleteChecklistRetrieveResponse, error)

ParseEngagementsCompleteChecklistRetrieveResponse parses an HTTP response from a EngagementsCompleteChecklistRetrieveWithResponse call

func (EngagementsCompleteChecklistRetrieveResponse) Status added in v0.2.0

Status returns HTTPResponse.Status

func (EngagementsCompleteChecklistRetrieveResponse) StatusCode added in v0.2.0

StatusCode returns HTTPResponse.StatusCode

type EngagementsCreateFormdataRequestBody added in v0.2.0

type EngagementsCreateFormdataRequestBody = EngagementRequest

EngagementsCreateFormdataRequestBody defines body for EngagementsCreate for application/x-www-form-urlencoded ContentType.

type EngagementsCreateJSONRequestBody

type EngagementsCreateJSONRequestBody = EngagementRequest

EngagementsCreateJSONRequestBody defines body for EngagementsCreate for application/json ContentType.

type EngagementsCreateMultipartRequestBody added in v0.2.0

type EngagementsCreateMultipartRequestBody = EngagementRequest

EngagementsCreateMultipartRequestBody defines body for EngagementsCreate for multipart/form-data ContentType.

type EngagementsCreateResponse

type EngagementsCreateResponse struct {
	Body         []byte
	HTTPResponse *http.Response
	JSON201      *Engagement
}

func ParseEngagementsCreateResponse

func ParseEngagementsCreateResponse(rsp *http.Response) (*EngagementsCreateResponse, error)

ParseEngagementsCreateResponse parses an HTTP response from a EngagementsCreateWithResponse call

func (EngagementsCreateResponse) Status

func (r EngagementsCreateResponse) Status() string

Status returns HTTPResponse.Status

func (EngagementsCreateResponse) StatusCode

func (r EngagementsCreateResponse) StatusCode() int

StatusCode returns HTTPResponse.StatusCode

type EngagementsDeletePreviewListParams added in v0.2.0

type EngagementsDeletePreviewListParams struct {
	// Limit Number of results to return per page.
	Limit *int `form:"limit,omitempty" json:"limit,omitempty"`

	// Offset The initial index from which to return the results.
	Offset *int `form:"offset,omitempty" json:"offset,omitempty"`
}

EngagementsDeletePreviewListParams defines parameters for EngagementsDeletePreviewList.

type EngagementsDeletePreviewListResponse added in v0.2.0

type EngagementsDeletePreviewListResponse struct {
	Body         []byte
	HTTPResponse *http.Response
	JSON200      *PaginatedDeletePreviewList
}

func ParseEngagementsDeletePreviewListResponse added in v0.2.0

func ParseEngagementsDeletePreviewListResponse(rsp *http.Response) (*EngagementsDeletePreviewListResponse, error)

ParseEngagementsDeletePreviewListResponse parses an HTTP response from a EngagementsDeletePreviewListWithResponse call

func (EngagementsDeletePreviewListResponse) Status added in v0.2.0

Status returns HTTPResponse.Status

func (EngagementsDeletePreviewListResponse) StatusCode added in v0.2.0

StatusCode returns HTTPResponse.StatusCode

type EngagementsDestroyResponse

type EngagementsDestroyResponse struct {
	Body         []byte
	HTTPResponse *http.Response
}

func ParseEngagementsDestroyResponse

func ParseEngagementsDestroyResponse(rsp *http.Response) (*EngagementsDestroyResponse, error)

ParseEngagementsDestroyResponse parses an HTTP response from a EngagementsDestroyWithResponse call

func (EngagementsDestroyResponse) Status

Status returns HTTPResponse.Status

func (EngagementsDestroyResponse) StatusCode

func (r EngagementsDestroyResponse) StatusCode() int

StatusCode returns HTTPResponse.StatusCode

type EngagementsFilesCreateMultipartRequestBody added in v0.2.0

type EngagementsFilesCreateMultipartRequestBody = AddNewFileOptionRequest

EngagementsFilesCreateMultipartRequestBody defines body for EngagementsFilesCreate for multipart/form-data ContentType.

type EngagementsFilesCreateResponse

type EngagementsFilesCreateResponse struct {
	Body         []byte
	HTTPResponse *http.Response
	JSON201      *File
}

func ParseEngagementsFilesCreateResponse

func ParseEngagementsFilesCreateResponse(rsp *http.Response) (*EngagementsFilesCreateResponse, error)

ParseEngagementsFilesCreateResponse parses an HTTP response from a EngagementsFilesCreateWithResponse call

func (EngagementsFilesCreateResponse) Status

Status returns HTTPResponse.Status

func (EngagementsFilesCreateResponse) StatusCode

func (r EngagementsFilesCreateResponse) StatusCode() int

StatusCode returns HTTPResponse.StatusCode

type EngagementsFilesDownloadRetrieveResponse added in v0.2.0

type EngagementsFilesDownloadRetrieveResponse struct {
	Body         []byte
	HTTPResponse *http.Response
	JSON200      *RawFile
}

func ParseEngagementsFilesDownloadRetrieveResponse added in v0.2.0

func ParseEngagementsFilesDownloadRetrieveResponse(rsp *http.Response) (*EngagementsFilesDownloadRetrieveResponse, error)

ParseEngagementsFilesDownloadRetrieveResponse parses an HTTP response from a EngagementsFilesDownloadRetrieveWithResponse call

func (EngagementsFilesDownloadRetrieveResponse) Status added in v0.2.0

Status returns HTTPResponse.Status

func (EngagementsFilesDownloadRetrieveResponse) StatusCode added in v0.2.0

StatusCode returns HTTPResponse.StatusCode

type EngagementsFilesRetrieveResponse

type EngagementsFilesRetrieveResponse struct {
	Body         []byte
	HTTPResponse *http.Response
	JSON200      *EngagementToFiles
}

func ParseEngagementsFilesRetrieveResponse

func ParseEngagementsFilesRetrieveResponse(rsp *http.Response) (*EngagementsFilesRetrieveResponse, error)

ParseEngagementsFilesRetrieveResponse parses an HTTP response from a EngagementsFilesRetrieveWithResponse call

func (EngagementsFilesRetrieveResponse) Status

Status returns HTTPResponse.Status

func (EngagementsFilesRetrieveResponse) StatusCode

func (r EngagementsFilesRetrieveResponse) StatusCode() int

StatusCode returns HTTPResponse.StatusCode

type EngagementsGenerateReportCreateFormdataRequestBody added in v0.2.0

type EngagementsGenerateReportCreateFormdataRequestBody = ReportGenerateOptionRequest

EngagementsGenerateReportCreateFormdataRequestBody defines body for EngagementsGenerateReportCreate for application/x-www-form-urlencoded ContentType.

type EngagementsGenerateReportCreateJSONRequestBody

type EngagementsGenerateReportCreateJSONRequestBody = ReportGenerateOptionRequest

EngagementsGenerateReportCreateJSONRequestBody defines body for EngagementsGenerateReportCreate for application/json ContentType.

type EngagementsGenerateReportCreateMultipartRequestBody added in v0.2.0

type EngagementsGenerateReportCreateMultipartRequestBody = ReportGenerateOptionRequest

EngagementsGenerateReportCreateMultipartRequestBody defines body for EngagementsGenerateReportCreate for multipart/form-data ContentType.

type EngagementsGenerateReportCreateResponse

type EngagementsGenerateReportCreateResponse struct {
	Body         []byte
	HTTPResponse *http.Response
	JSON200      *ReportGenerate
}

func ParseEngagementsGenerateReportCreateResponse

func ParseEngagementsGenerateReportCreateResponse(rsp *http.Response) (*EngagementsGenerateReportCreateResponse, error)

ParseEngagementsGenerateReportCreateResponse parses an HTTP response from a EngagementsGenerateReportCreateWithResponse call

func (EngagementsGenerateReportCreateResponse) Status

Status returns HTTPResponse.Status

func (EngagementsGenerateReportCreateResponse) StatusCode

StatusCode returns HTTPResponse.StatusCode

type EngagementsListParams

type EngagementsListParams struct {
	Active  *bool `form:"active,omitempty" json:"active,omitempty"`
	ApiTest *bool `form:"api_test,omitempty" json:"api_test,omitempty"`
	Id      *int  `form:"id,omitempty" json:"id,omitempty"`

	// Limit Number of results to return per page.
	Limit *int    `form:"limit,omitempty" json:"limit,omitempty"`
	Name  *string `form:"name,omitempty" json:"name,omitempty"`

	// NotProductTagsName Comma seperated list of exact tags not present on product
	NotProductTagsName *[]string `form:"not_product__tags__name,omitempty" json:"not_product__tags__name,omitempty"`

	// NotTag Not Tag name contains
	NotTag *string `form:"not_tag,omitempty" json:"not_tag,omitempty"`

	// NotTags Comma seperated list of exact tags not present on model
	NotTags *[]string `form:"not_tags,omitempty" json:"not_tags,omitempty"`

	// O Ordering
	//
	// * `name` - Engagement Name
	// * `-name` - Engagement Name (descending)
	// * `version` - Version
	// * `-version` - Version (descending)
	// * `target_start` - Target start
	// * `-target_start` - Target start (descending)
	// * `target_end` - Target end
	// * `-target_end` - Target end (descending)
	// * `status` - Status
	// * `-status` - Status (descending)
	// * `lead` - Lead
	// * `-lead` - Lead (descending)
	// * `created` - Created
	// * `-created` - Created (descending)
	// * `updated` - Updated
	// * `-updated` - Updated (descending)
	O *[]EngagementsListParamsO `form:"o,omitempty" json:"o,omitempty"`

	// Offset The initial index from which to return the results.
	Offset  *int  `form:"offset,omitempty" json:"offset,omitempty"`
	PenTest *bool `form:"pen_test,omitempty" json:"pen_test,omitempty"`
	Product *int  `form:"product,omitempty" json:"product,omitempty"`

	// ProductProdType Multiple values may be separated by commas.
	ProductProdType *[]int `form:"product__prod_type,omitempty" json:"product__prod_type,omitempty"`

	// ProductTagsName Comma seperated list of exact tags present on product
	ProductTagsName *[]string `form:"product__tags__name,omitempty" json:"product__tags__name,omitempty"`
	ReportType      *int      `form:"report_type,omitempty" json:"report_type,omitempty"`
	Requester       *int      `form:"requester,omitempty" json:"requester,omitempty"`

	// Status * `Not Started` - Not Started
	// * `Blocked` - Blocked
	// * `Cancelled` - Cancelled
	// * `Completed` - Completed
	// * `In Progress` - In Progress
	// * `On Hold` - On Hold
	// * `Waiting for Resource` - Waiting for Resource
	Status *EngagementsListParamsStatus `form:"status,omitempty" json:"status,omitempty"`

	// Tag Tag name contains
	Tag *string `form:"tag,omitempty" json:"tag,omitempty"`

	// Tags Comma seperated list of exact tags
	Tags        *[]string           `form:"tags,omitempty" json:"tags,omitempty"`
	TargetEnd   *openapi_types.Date `form:"target_end,omitempty" json:"target_end,omitempty"`
	TargetStart *openapi_types.Date `form:"target_start,omitempty" json:"target_start,omitempty"`
	ThreatModel *bool               `form:"threat_model,omitempty" json:"threat_model,omitempty"`
	Updated     *time.Time          `form:"updated,omitempty" json:"updated,omitempty"`
	Version     *string             `form:"version,omitempty" json:"version,omitempty"`
}

EngagementsListParams defines parameters for EngagementsList.

type EngagementsListParamsO

type EngagementsListParamsO string

EngagementsListParamsO defines parameters for EngagementsList.

const (
	EngagementsListParamsOCreated          EngagementsListParamsO = "created"
	EngagementsListParamsOLead             EngagementsListParamsO = "lead"
	EngagementsListParamsOMinusCreated     EngagementsListParamsO = "-created"
	EngagementsListParamsOMinusLead        EngagementsListParamsO = "-lead"
	EngagementsListParamsOMinusName        EngagementsListParamsO = "-name"
	EngagementsListParamsOMinusStatus      EngagementsListParamsO = "-status"
	EngagementsListParamsOMinusTargetEnd   EngagementsListParamsO = "-target_end"
	EngagementsListParamsOMinusTargetStart EngagementsListParamsO = "-target_start"
	EngagementsListParamsOMinusUpdated     EngagementsListParamsO = "-updated"
	EngagementsListParamsOMinusVersion     EngagementsListParamsO = "-version"
	EngagementsListParamsOName             EngagementsListParamsO = "name"
	EngagementsListParamsOStatus           EngagementsListParamsO = "status"
	EngagementsListParamsOTargetEnd        EngagementsListParamsO = "target_end"
	EngagementsListParamsOTargetStart      EngagementsListParamsO = "target_start"
	EngagementsListParamsOUpdated          EngagementsListParamsO = "updated"
	EngagementsListParamsOVersion          EngagementsListParamsO = "version"
)

Defines values for EngagementsListParamsO.

type EngagementsListParamsStatus

type EngagementsListParamsStatus string

EngagementsListParamsStatus defines parameters for EngagementsList.

const (
	Blocked            EngagementsListParamsStatus = "Blocked"
	Cancelled          EngagementsListParamsStatus = "Cancelled"
	Completed          EngagementsListParamsStatus = "Completed"
	InProgress         EngagementsListParamsStatus = "In Progress"
	NotStarted         EngagementsListParamsStatus = "Not Started"
	OnHold             EngagementsListParamsStatus = "On Hold"
	WaitingForResource EngagementsListParamsStatus = "Waiting for Resource"
)

Defines values for EngagementsListParamsStatus.

type EngagementsListResponse

type EngagementsListResponse struct {
	Body         []byte
	HTTPResponse *http.Response
	JSON200      *PaginatedEngagementList
}

func ParseEngagementsListResponse

func ParseEngagementsListResponse(rsp *http.Response) (*EngagementsListResponse, error)

ParseEngagementsListResponse parses an HTTP response from a EngagementsListWithResponse call

func (EngagementsListResponse) Status

func (r EngagementsListResponse) Status() string

Status returns HTTPResponse.Status

func (EngagementsListResponse) StatusCode

func (r EngagementsListResponse) StatusCode() int

StatusCode returns HTTPResponse.StatusCode

type EngagementsNotesCreateFormdataRequestBody added in v0.2.0

type EngagementsNotesCreateFormdataRequestBody = AddNewNoteOptionRequest

EngagementsNotesCreateFormdataRequestBody defines body for EngagementsNotesCreate for application/x-www-form-urlencoded ContentType.

type EngagementsNotesCreateJSONRequestBody

type EngagementsNotesCreateJSONRequestBody = AddNewNoteOptionRequest

EngagementsNotesCreateJSONRequestBody defines body for EngagementsNotesCreate for application/json ContentType.

type EngagementsNotesCreateMultipartRequestBody added in v0.2.0

type EngagementsNotesCreateMultipartRequestBody = AddNewNoteOptionRequest

EngagementsNotesCreateMultipartRequestBody defines body for EngagementsNotesCreate for multipart/form-data ContentType.

type EngagementsNotesCreateResponse

type EngagementsNotesCreateResponse struct {
	Body         []byte
	HTTPResponse *http.Response
	JSON201      *Note
}

func ParseEngagementsNotesCreateResponse

func ParseEngagementsNotesCreateResponse(rsp *http.Response) (*EngagementsNotesCreateResponse, error)

ParseEngagementsNotesCreateResponse parses an HTTP response from a EngagementsNotesCreateWithResponse call

func (EngagementsNotesCreateResponse) Status

Status returns HTTPResponse.Status

func (EngagementsNotesCreateResponse) StatusCode

func (r EngagementsNotesCreateResponse) StatusCode() int

StatusCode returns HTTPResponse.StatusCode

type EngagementsNotesRetrieveResponse

type EngagementsNotesRetrieveResponse struct {
	Body         []byte
	HTTPResponse *http.Response
	JSON200      *EngagementToNotes
}

func ParseEngagementsNotesRetrieveResponse

func ParseEngagementsNotesRetrieveResponse(rsp *http.Response) (*EngagementsNotesRetrieveResponse, error)

ParseEngagementsNotesRetrieveResponse parses an HTTP response from a EngagementsNotesRetrieveWithResponse call

func (EngagementsNotesRetrieveResponse) Status

Status returns HTTPResponse.Status

func (EngagementsNotesRetrieveResponse) StatusCode

func (r EngagementsNotesRetrieveResponse) StatusCode() int

StatusCode returns HTTPResponse.StatusCode

type EngagementsPartialUpdateFormdataRequestBody added in v0.2.0

type EngagementsPartialUpdateFormdataRequestBody = PatchedEngagementRequest

EngagementsPartialUpdateFormdataRequestBody defines body for EngagementsPartialUpdate for application/x-www-form-urlencoded ContentType.

type EngagementsPartialUpdateJSONRequestBody

type EngagementsPartialUpdateJSONRequestBody = PatchedEngagementRequest

EngagementsPartialUpdateJSONRequestBody defines body for EngagementsPartialUpdate for application/json ContentType.

type EngagementsPartialUpdateMultipartRequestBody added in v0.2.0

type EngagementsPartialUpdateMultipartRequestBody = PatchedEngagementRequest

EngagementsPartialUpdateMultipartRequestBody defines body for EngagementsPartialUpdate for multipart/form-data ContentType.

type EngagementsPartialUpdateResponse

type EngagementsPartialUpdateResponse struct {
	Body         []byte
	HTTPResponse *http.Response
	JSON200      *Engagement
}

func ParseEngagementsPartialUpdateResponse

func ParseEngagementsPartialUpdateResponse(rsp *http.Response) (*EngagementsPartialUpdateResponse, error)

ParseEngagementsPartialUpdateResponse parses an HTTP response from a EngagementsPartialUpdateWithResponse call

func (EngagementsPartialUpdateResponse) Status

Status returns HTTPResponse.Status

func (EngagementsPartialUpdateResponse) StatusCode

func (r EngagementsPartialUpdateResponse) StatusCode() int

StatusCode returns HTTPResponse.StatusCode

type EngagementsReopenCreateResponse

type EngagementsReopenCreateResponse struct {
	Body         []byte
	HTTPResponse *http.Response
}

func ParseEngagementsReopenCreateResponse

func ParseEngagementsReopenCreateResponse(rsp *http.Response) (*EngagementsReopenCreateResponse, error)

ParseEngagementsReopenCreateResponse parses an HTTP response from a EngagementsReopenCreateWithResponse call

func (EngagementsReopenCreateResponse) Status

Status returns HTTPResponse.Status

func (EngagementsReopenCreateResponse) StatusCode

func (r EngagementsReopenCreateResponse) StatusCode() int

StatusCode returns HTTPResponse.StatusCode

type EngagementsRetrieveResponse

type EngagementsRetrieveResponse struct {
	Body         []byte
	HTTPResponse *http.Response
	JSON200      *Engagement
}

func ParseEngagementsRetrieveResponse

func ParseEngagementsRetrieveResponse(rsp *http.Response) (*EngagementsRetrieveResponse, error)

ParseEngagementsRetrieveResponse parses an HTTP response from a EngagementsRetrieveWithResponse call

func (EngagementsRetrieveResponse) Status

Status returns HTTPResponse.Status

func (EngagementsRetrieveResponse) StatusCode

func (r EngagementsRetrieveResponse) StatusCode() int

StatusCode returns HTTPResponse.StatusCode

type EngagementsUpdateFormdataRequestBody added in v0.2.0

type EngagementsUpdateFormdataRequestBody = EngagementRequest

EngagementsUpdateFormdataRequestBody defines body for EngagementsUpdate for application/x-www-form-urlencoded ContentType.

type EngagementsUpdateJSONRequestBody

type EngagementsUpdateJSONRequestBody = EngagementRequest

EngagementsUpdateJSONRequestBody defines body for EngagementsUpdate for application/json ContentType.

type EngagementsUpdateMultipartRequestBody added in v0.2.0

type EngagementsUpdateMultipartRequestBody = EngagementRequest

EngagementsUpdateMultipartRequestBody defines body for EngagementsUpdate for multipart/form-data ContentType.

type EngagementsUpdateResponse

type EngagementsUpdateResponse struct {
	Body         []byte
	HTTPResponse *http.Response
	JSON200      *Engagement
}

func ParseEngagementsUpdateResponse

func ParseEngagementsUpdateResponse(rsp *http.Response) (*EngagementsUpdateResponse, error)

ParseEngagementsUpdateResponse parses an HTTP response from a EngagementsUpdateWithResponse call

func (EngagementsUpdateResponse) Status

func (r EngagementsUpdateResponse) Status() string

Status returns HTTPResponse.Status

func (EngagementsUpdateResponse) StatusCode

func (r EngagementsUpdateResponse) StatusCode() int

StatusCode returns HTTPResponse.StatusCode

type ExecutiveSummary

type ExecutiveSummary struct {
	EngagementName        string             `json:"engagement_name"`
	EngagementTargetEnd   openapi_types.Date `json:"engagement_target_end"`
	EngagementTargetStart openapi_types.Date `json:"engagement_target_start"`
	TestEnvironmentName   string             `json:"test_environment_name"`
	TestStrategyRef       string             `json:"test_strategy_ref"`
	TestTargetEnd         time.Time          `json:"test_target_end"`
	TestTargetStart       time.Time          `json:"test_target_start"`
	TestTypeName          string             `json:"test_type_name"`
	TotalFindings         int                `json:"total_findings"`
}

ExecutiveSummary defines model for ExecutiveSummary.

type File

type File struct {
	File  string `json:"file"`
	Id    *int   `json:"id,omitempty"`
	Title string `json:"title"`
}

File defines model for File.

type Finding

type Finding struct {
	AcceptedRisks *[]RiskAcceptance `json:"accepted_risks,omitempty"`

	// Active Denotes if this flaw is active or not.
	Active *bool `json:"active,omitempty"`
	Age    *int  `json:"age,omitempty"`

	// ComponentName Name of the affected component (library name, part of a system, ...).
	ComponentName *string `json:"component_name"`

	// ComponentVersion Version of the affected component.
	ComponentVersion *string `json:"component_version"`

	// Created The date the finding was created inside DefectDojo.
	Created *time.Time `json:"created"`

	// Cvssv3 Common Vulnerability Scoring System version 3 (CVSSv3) score associated with this flaw.
	Cvssv3 *string `json:"cvssv3"`

	// Cvssv3Score Numerical CVSSv3 score for the vulnerability. If the vector is given, the score is updated while saving the finding
	Cvssv3Score *float64 `json:"cvssv3_score"`

	// Cwe The CWE number associated with this flaw.
	Cwe *int `json:"cwe"`

	// Date The date the flaw was discovered.
	Date *openapi_types.Date `json:"date,omitempty"`

	// DefectReviewRequestedBy Documents who requested a defect review for this flaw.
	DefectReviewRequestedBy *int `json:"defect_review_requested_by"`

	// Description Longer more descriptive information about the flaw.
	Description   string  `json:"description"`
	DisplayStatus *string `json:"display_status,omitempty"`

	// Duplicate Denotes if this flaw is a duplicate of other flaws reported.
	Duplicate *bool `json:"duplicate,omitempty"`

	// DuplicateFinding Link to the original finding if this finding is a duplicate.
	DuplicateFinding *int `json:"duplicate_finding"`

	// DynamicFinding Flaw has been detected from a Dynamic Application Security Testing tool (DAST).
	DynamicFinding *bool `json:"dynamic_finding,omitempty"`

	// EffortForFixing Effort for fixing / remediating the vulnerability (Low, Medium, High)
	EffortForFixing *string `json:"effort_for_fixing"`

	// Endpoints The hosts within the product that are susceptible to this flaw. + The status of the endpoint associated with this flaw (Vulnerable, Mitigated, ...).
	Endpoints *[]int `json:"endpoints,omitempty"`

	// FalseP Denotes if this flaw has been deemed a false positive by the tester.
	FalseP *bool `json:"false_p,omitempty"`

	// FilePath Identified file(s) containing the flaw.
	FilePath *string `json:"file_path"`

	// Files Files(s) related to the flaw.
	Files         *[]int          `json:"files,omitempty"`
	FindingGroups *[]FindingGroup `json:"finding_groups,omitempty"`
	FindingMeta   *[]FindingMeta  `json:"finding_meta,omitempty"`

	// FoundBy The name of the scanner that identified the flaw.
	FoundBy *[]int `json:"found_by,omitempty"`

	// HashCode A hash over a configurable set of fields that is used for findings deduplication.
	HashCode *string `json:"hash_code"`
	Id       *int    `json:"id,omitempty"`

	// Impact Text describing the impact this flaw has on systems, products, enterprise, etc.
	Impact *string `json:"impact"`

	// IsMitigated Denotes if this flaw has been fixed.
	IsMitigated  *bool      `json:"is_mitigated,omitempty"`
	JiraChange   *time.Time `json:"jira_change,omitempty"`
	JiraCreation *time.Time `json:"jira_creation,omitempty"`

	// LastReviewed Provides the date the flaw was last 'touched' by a tester.
	LastReviewed *time.Time `json:"last_reviewed"`

	// LastReviewedBy Provides the person who last reviewed the flaw.
	LastReviewedBy *int `json:"last_reviewed_by"`

	// LastStatusUpdate Timestamp of latest status update (change in status related fields).
	LastStatusUpdate *time.Time `json:"last_status_update"`

	// Line Source line number of the attack vector.
	Line *int `json:"line"`

	// Mitigated Denotes if this flaw has been fixed by storing the date it was fixed.
	Mitigated *time.Time `json:"mitigated"`

	// MitigatedBy Documents who has marked this flaw as fixed.
	MitigatedBy *int `json:"mitigated_by"`

	// Mitigation Text describing how to best fix the flaw.
	Mitigation *string `json:"mitigation"`

	// NbOccurences Number of occurences in the source tool when several vulnerabilites were found and aggregated by the scanner.
	NbOccurences *int    `json:"nb_occurences"`
	Notes        *[]Note `json:"notes,omitempty"`

	// NumericalSeverity The numerical representation of the severity (S0, S1, S2, S3, S4).
	NumericalSeverity string `json:"numerical_severity"`

	// OutOfScope Denotes if this flaw falls outside the scope of the test and/or engagement.
	OutOfScope *bool `json:"out_of_scope,omitempty"`

	// Param Parameter used to trigger the issue (DAST).
	Param *string `json:"param"`

	// Payload Payload used to attack the service / application and trigger the bug / problem.
	Payload *string `json:"payload"`

	// PlannedRemediationDate The date the flaw is expected to be remediated.
	PlannedRemediationDate *openapi_types.Date `json:"planned_remediation_date"`

	// PlannedRemediationVersion The target version when the vulnerability should be fixed / remediated
	PlannedRemediationVersion *string `json:"planned_remediation_version"`
	Prefetch                  *struct {
		AuthIssues              *map[string]EngagementCheckList `json:"auth_issues,omitempty"`
		AuthorIssues            *map[string]EngagementCheckList `json:"author_issues,omitempty"`
		ConfigIssues            *map[string]EngagementCheckList `json:"config_issues,omitempty"`
		CryptoIssues            *map[string]EngagementCheckList `json:"crypto_issues,omitempty"`
		DataIssues              *map[string]EngagementCheckList `json:"data_issues,omitempty"`
		DefectReviewRequestedBy *map[string]UserStub            `json:"defect_review_requested_by,omitempty"`
		DuplicateFinding        *map[string]Finding             `json:"duplicate_finding,omitempty"`
		EndpointSet             *map[string]Endpoint            `json:"endpoint_set,omitempty"`
		Endpoints               *map[string]Endpoint            `json:"endpoints,omitempty"`
		Files                   *map[string]RawFile             `json:"files,omitempty"`
		FindingGroupSet         *map[string]FindingGroup        `json:"finding_group_set,omitempty"`
		FoundBy                 *map[string]TestType            `json:"found_by,omitempty"`
		LastReviewedBy          *map[string]UserStub            `json:"last_reviewed_by,omitempty"`
		MitigatedBy             *map[string]UserStub            `json:"mitigated_by,omitempty"`
		Notes                   *map[string]Note                `json:"notes,omitempty"`
		OtherIssues             *map[string]EngagementCheckList `json:"other_issues,omitempty"`
		Reporter                *map[string]UserStub            `json:"reporter,omitempty"`
		ReviewRequestedBy       *map[string]UserStub            `json:"review_requested_by,omitempty"`
		Reviewers               *map[string]UserStub            `json:"reviewers,omitempty"`
		RiskAcceptanceSet       *map[string]RiskAcceptance      `json:"risk_acceptance_set,omitempty"`
		SensitiveIssues         *map[string]EngagementCheckList `json:"sensitive_issues,omitempty"`
		SessionIssues           *map[string]EngagementCheckList `json:"session_issues,omitempty"`
		SonarqubeIssue          *map[string]SonarqubeIssue      `json:"sonarqube_issue,omitempty"`
		Test                    *map[string]Test                `json:"test,omitempty"`
		TestImportSet           *map[string]TestImport          `json:"test_import_set,omitempty"`
	} `json:"prefetch,omitempty"`

	// PublishDate Date when this vulnerability was made publicly available.
	PublishDate *openapi_types.Date `json:"publish_date"`
	PushToJira  *bool               `json:"push_to_jira,omitempty"`

	// References The external documentation available for this flaw.
	References    *string               `json:"references"`
	RelatedFields *FindingRelatedFields `json:"related_fields,omitempty"`

	// Reporter Documents who reported the flaw.
	Reporter        *int                    `json:"reporter,omitempty"`
	RequestResponse *BurpRawRequestResponse `json:"request_response,omitempty"`

	// ReviewRequestedBy Documents who requested a review for this finding.
	ReviewRequestedBy *int `json:"review_requested_by"`

	// Reviewers Documents who reviewed the flaw.
	Reviewers *[]int `json:"reviewers,omitempty"`

	// RiskAccepted Denotes if this finding has been marked as an accepted risk.
	RiskAccepted *bool `json:"risk_accepted,omitempty"`

	// SastSinkObject Sink object (variable, function...) of the attack vector.
	SastSinkObject *string `json:"sast_sink_object"`

	// SastSourceFilePath Source file path of the attack vector.
	SastSourceFilePath *string `json:"sast_source_file_path"`

	// SastSourceLine Source line number of the attack vector.
	SastSourceLine *int `json:"sast_source_line"`

	// SastSourceObject Source object (variable, function...) of the attack vector.
	SastSourceObject *string `json:"sast_source_object"`

	// ScannerConfidence Confidence level of vulnerability which is supplied by the scanner.
	ScannerConfidence *int `json:"scanner_confidence"`

	// Service A service is a self-contained piece of functionality within a Product. This is an optional field which is used in deduplication of findings when set.
	Service *string `json:"service"`

	// Severity The severity level of this flaw (Critical, High, Medium, Low, Informational).
	Severity string `json:"severity"`

	// SeverityJustification Text describing why a certain severity was associated with this flaw.
	SeverityJustification *string `json:"severity_justification"`
	SlaDaysRemaining      *int    `json:"sla_days_remaining,omitempty"`

	// SlaStartDate (readonly)The date used as start date for SLA calculation. Set by expiring risk acceptances. Empty by default, causing a fallback to 'date'.
	SlaStartDate *openapi_types.Date `json:"sla_start_date"`

	// SonarqubeIssue The SonarQube issue associated with this finding.
	SonarqubeIssue *int `json:"sonarqube_issue"`

	// StaticFinding Flaw has been detected from a Static Application Security Testing tool (SAST).
	StaticFinding *bool `json:"static_finding,omitempty"`

	// StepsToReproduce Text describing the steps that must be followed in order to reproduce the flaw / bug.
	StepsToReproduce *string   `json:"steps_to_reproduce"`
	Tags             *[]string `json:"tags,omitempty"`

	// Test The test that is associated with this flaw.
	Test     *int `json:"test,omitempty"`
	ThreadId *int `json:"thread_id,omitempty"`

	// Title A short description of the flaw.
	Title string `json:"title"`

	// UnderDefectReview Denotes if this finding is under defect review.
	UnderDefectReview *bool `json:"under_defect_review,omitempty"`

	// UnderReview Denotes is this flaw is currently being reviewed.
	UnderReview *bool `json:"under_review,omitempty"`

	// UniqueIdFromTool Vulnerability technical id from the source tool. Allows to track unique vulnerabilities.
	UniqueIdFromTool *string `json:"unique_id_from_tool"`

	// Url External reference that provides more information about this flaw.
	Url *string `json:"url"`

	// Verified Denotes if this flaw has been manually verified by the tester.
	Verified *bool `json:"verified,omitempty"`

	// VulnIdFromTool Non-unique technical id from the source tool associated with the vulnerability type.
	VulnIdFromTool   *string            `json:"vuln_id_from_tool"`
	VulnerabilityIds *[]VulnerabilityId `json:"vulnerability_ids,omitempty"`
}

Finding defines model for Finding.

type FindingClose added in v0.2.0

type FindingClose struct {
	Duplicate   *bool      `json:"duplicate,omitempty"`
	FalseP      *bool      `json:"false_p,omitempty"`
	IsMitigated *bool      `json:"is_mitigated,omitempty"`
	Mitigated   *time.Time `json:"mitigated,omitempty"`
	OutOfScope  *bool      `json:"out_of_scope,omitempty"`
}

FindingClose defines model for FindingClose.

type FindingCloseRequest added in v0.2.0

type FindingCloseRequest struct {
	Duplicate   *bool      `json:"duplicate,omitempty"`
	FalseP      *bool      `json:"false_p,omitempty"`
	IsMitigated *bool      `json:"is_mitigated,omitempty"`
	Mitigated   *time.Time `json:"mitigated,omitempty"`
	OutOfScope  *bool      `json:"out_of_scope,omitempty"`
}

FindingCloseRequest defines model for FindingCloseRequest.

type FindingCreate

type FindingCreate struct {
	// Active Denotes if this flaw is active or not.
	Active bool `json:"active"`

	// ComponentName Name of the affected component (library name, part of a system, ...).
	ComponentName *string `json:"component_name"`

	// ComponentVersion Version of the affected component.
	ComponentVersion *string `json:"component_version"`

	// Created The date the finding was created inside DefectDojo.
	Created *time.Time `json:"created"`

	// Cvssv3 Common Vulnerability Scoring System version 3 (CVSSv3) score associated with this flaw.
	Cvssv3 *string `json:"cvssv3"`

	// Cvssv3Score Numerical CVSSv3 score for the vulnerability. If the vector is given, the score is updated while saving the finding
	Cvssv3Score *float64 `json:"cvssv3_score"`

	// Cwe The CWE number associated with this flaw.
	Cwe *int `json:"cwe"`

	// Date The date the flaw was discovered.
	Date *openapi_types.Date `json:"date,omitempty"`

	// DefectReviewRequestedBy Documents who requested a defect review for this flaw.
	DefectReviewRequestedBy *int `json:"defect_review_requested_by"`

	// Description Longer more descriptive information about the flaw.
	Description string `json:"description"`

	// Duplicate Denotes if this flaw is a duplicate of other flaws reported.
	Duplicate *bool `json:"duplicate,omitempty"`

	// DuplicateFinding Link to the original finding if this finding is a duplicate.
	DuplicateFinding *int `json:"duplicate_finding"`

	// DynamicFinding Flaw has been detected from a Dynamic Application Security Testing tool (DAST).
	DynamicFinding *bool `json:"dynamic_finding,omitempty"`

	// EffortForFixing Effort for fixing / remediating the vulnerability (Low, Medium, High)
	EffortForFixing *string `json:"effort_for_fixing"`

	// Endpoints The hosts within the product that are susceptible to this flaw. + The status of the endpoint associated with this flaw (Vulnerable, Mitigated, ...).
	Endpoints *[]int `json:"endpoints,omitempty"`

	// FalseP Denotes if this flaw has been deemed a false positive by the tester.
	FalseP *bool `json:"false_p,omitempty"`

	// FilePath Identified file(s) containing the flaw.
	FilePath *string `json:"file_path"`

	// Files Files(s) related to the flaw.
	Files   *[]int `json:"files,omitempty"`
	FoundBy []int  `json:"found_by"`

	// HashCode A hash over a configurable set of fields that is used for findings deduplication.
	HashCode *string `json:"hash_code"`
	Id       *int    `json:"id,omitempty"`

	// Impact Text describing the impact this flaw has on systems, products, enterprise, etc.
	Impact *string `json:"impact"`

	// IsMitigated Denotes if this flaw has been fixed.
	IsMitigated *bool `json:"is_mitigated,omitempty"`

	// LastReviewed Provides the date the flaw was last 'touched' by a tester.
	LastReviewed *time.Time `json:"last_reviewed"`

	// LastReviewedBy Provides the person who last reviewed the flaw.
	LastReviewedBy *int `json:"last_reviewed_by"`

	// LastStatusUpdate Timestamp of latest status update (change in status related fields).
	LastStatusUpdate *time.Time `json:"last_status_update"`

	// Line Source line number of the attack vector.
	Line *int `json:"line"`

	// Mitigated Denotes if this flaw has been fixed by storing the date it was fixed.
	Mitigated *time.Time `json:"mitigated"`

	// MitigatedBy Documents who has marked this flaw as fixed.
	MitigatedBy *int `json:"mitigated_by"`

	// Mitigation Text describing how to best fix the flaw.
	Mitigation *string `json:"mitigation"`

	// NbOccurences Number of occurences in the source tool when several vulnerabilites were found and aggregated by the scanner.
	NbOccurences *int   `json:"nb_occurences"`
	Notes        *[]int `json:"notes,omitempty"`

	// NumericalSeverity The numerical representation of the severity (S0, S1, S2, S3, S4).
	NumericalSeverity string `json:"numerical_severity"`

	// OutOfScope Denotes if this flaw falls outside the scope of the test and/or engagement.
	OutOfScope *bool `json:"out_of_scope,omitempty"`

	// Param Parameter used to trigger the issue (DAST).
	Param *string `json:"param"`

	// Payload Payload used to attack the service / application and trigger the bug / problem.
	Payload *string `json:"payload"`

	// PlannedRemediationDate The date the flaw is expected to be remediated.
	PlannedRemediationDate *openapi_types.Date `json:"planned_remediation_date"`

	// PlannedRemediationVersion The target version when the vulnerability should be fixed / remediated
	PlannedRemediationVersion *string `json:"planned_remediation_version"`

	// PublishDate Date when this vulnerability was made publicly available.
	PublishDate *openapi_types.Date `json:"publish_date"`
	PushToJira  *bool               `json:"push_to_jira,omitempty"`

	// References The external documentation available for this flaw.
	References *string `json:"references"`
	Reporter   *int    `json:"reporter,omitempty"`

	// ReviewRequestedBy Documents who requested a review for this finding.
	ReviewRequestedBy *int `json:"review_requested_by"`

	// Reviewers Documents who reviewed the flaw.
	Reviewers *[]int `json:"reviewers,omitempty"`

	// RiskAccepted Denotes if this finding has been marked as an accepted risk.
	RiskAccepted *bool `json:"risk_accepted,omitempty"`

	// SastSinkObject Sink object (variable, function...) of the attack vector.
	SastSinkObject *string `json:"sast_sink_object"`

	// SastSourceFilePath Source file path of the attack vector.
	SastSourceFilePath *string `json:"sast_source_file_path"`

	// SastSourceLine Source line number of the attack vector.
	SastSourceLine *int `json:"sast_source_line"`

	// SastSourceObject Source object (variable, function...) of the attack vector.
	SastSourceObject *string `json:"sast_source_object"`

	// ScannerConfidence Confidence level of vulnerability which is supplied by the scanner.
	ScannerConfidence *int `json:"scanner_confidence"`

	// Service A service is a self-contained piece of functionality within a Product. This is an optional field which is used in deduplication of findings when set.
	Service *string `json:"service"`

	// Severity The severity level of this flaw (Critical, High, Medium, Low, Informational).
	Severity string `json:"severity"`

	// SeverityJustification Text describing why a certain severity was associated with this flaw.
	SeverityJustification *string `json:"severity_justification"`

	// SlaStartDate (readonly)The date used as start date for SLA calculation. Set by expiring risk acceptances. Empty by default, causing a fallback to 'date'.
	SlaStartDate *openapi_types.Date `json:"sla_start_date"`

	// SonarqubeIssue The SonarQube issue associated with this finding.
	SonarqubeIssue *int `json:"sonarqube_issue"`

	// StaticFinding Flaw has been detected from a Static Application Security Testing tool (SAST).
	StaticFinding *bool `json:"static_finding,omitempty"`

	// StepsToReproduce Text describing the steps that must be followed in order to reproduce the flaw / bug.
	StepsToReproduce *string   `json:"steps_to_reproduce"`
	Tags             *[]string `json:"tags,omitempty"`
	Test             int       `json:"test"`
	ThreadId         *int      `json:"thread_id,omitempty"`

	// Title A short description of the flaw.
	Title string `json:"title"`

	// UnderDefectReview Denotes if this finding is under defect review.
	UnderDefectReview *bool `json:"under_defect_review,omitempty"`

	// UnderReview Denotes is this flaw is currently being reviewed.
	UnderReview *bool `json:"under_review,omitempty"`

	// UniqueIdFromTool Vulnerability technical id from the source tool. Allows to track unique vulnerabilities.
	UniqueIdFromTool *string `json:"unique_id_from_tool"`
	Url              *string `json:"url"`

	// Verified Denotes if this flaw has been manually verified by the tester.
	Verified bool `json:"verified"`

	// VulnIdFromTool Non-unique technical id from the source tool associated with the vulnerability type.
	VulnIdFromTool   *string            `json:"vuln_id_from_tool"`
	VulnerabilityIds *[]VulnerabilityId `json:"vulnerability_ids,omitempty"`
}

FindingCreate defines model for FindingCreate.

type FindingCreateRequest added in v0.2.0

type FindingCreateRequest struct {
	// Active Denotes if this flaw is active or not.
	Active bool `json:"active"`

	// ComponentName Name of the affected component (library name, part of a system, ...).
	ComponentName *string `json:"component_name"`

	// ComponentVersion Version of the affected component.
	ComponentVersion *string `json:"component_version"`

	// Cvssv3 Common Vulnerability Scoring System version 3 (CVSSv3) score associated with this flaw.
	Cvssv3 *string `json:"cvssv3"`

	// Cvssv3Score Numerical CVSSv3 score for the vulnerability. If the vector is given, the score is updated while saving the finding
	Cvssv3Score *float64 `json:"cvssv3_score"`

	// Cwe The CWE number associated with this flaw.
	Cwe *int `json:"cwe"`

	// Date The date the flaw was discovered.
	Date *openapi_types.Date `json:"date,omitempty"`

	// DefectReviewRequestedBy Documents who requested a defect review for this flaw.
	DefectReviewRequestedBy *int `json:"defect_review_requested_by"`

	// Description Longer more descriptive information about the flaw.
	Description string `json:"description"`

	// Duplicate Denotes if this flaw is a duplicate of other flaws reported.
	Duplicate *bool `json:"duplicate,omitempty"`

	// DynamicFinding Flaw has been detected from a Dynamic Application Security Testing tool (DAST).
	DynamicFinding *bool `json:"dynamic_finding,omitempty"`

	// EffortForFixing Effort for fixing / remediating the vulnerability (Low, Medium, High)
	EffortForFixing *string `json:"effort_for_fixing"`

	// FalseP Denotes if this flaw has been deemed a false positive by the tester.
	FalseP *bool `json:"false_p,omitempty"`

	// FilePath Identified file(s) containing the flaw.
	FilePath *string `json:"file_path"`
	FoundBy  []int   `json:"found_by"`

	// Impact Text describing the impact this flaw has on systems, products, enterprise, etc.
	Impact *string `json:"impact"`

	// IsMitigated Denotes if this flaw has been fixed.
	IsMitigated *bool `json:"is_mitigated,omitempty"`

	// Line Source line number of the attack vector.
	Line *int `json:"line"`

	// Mitigation Text describing how to best fix the flaw.
	Mitigation *string `json:"mitigation"`

	// NbOccurences Number of occurences in the source tool when several vulnerabilites were found and aggregated by the scanner.
	NbOccurences *int `json:"nb_occurences"`

	// NumericalSeverity The numerical representation of the severity (S0, S1, S2, S3, S4).
	NumericalSeverity string `json:"numerical_severity"`

	// OutOfScope Denotes if this flaw falls outside the scope of the test and/or engagement.
	OutOfScope *bool `json:"out_of_scope,omitempty"`

	// PlannedRemediationDate The date the flaw is expected to be remediated.
	PlannedRemediationDate *openapi_types.Date `json:"planned_remediation_date"`

	// PlannedRemediationVersion The target version when the vulnerability should be fixed / remediated
	PlannedRemediationVersion *string `json:"planned_remediation_version"`

	// PublishDate Date when this vulnerability was made publicly available.
	PublishDate *openapi_types.Date `json:"publish_date"`
	PushToJira  *bool               `json:"push_to_jira,omitempty"`

	// References The external documentation available for this flaw.
	References *string `json:"references"`
	Reporter   *int    `json:"reporter,omitempty"`

	// ReviewRequestedBy Documents who requested a review for this finding.
	ReviewRequestedBy *int `json:"review_requested_by"`

	// Reviewers Documents who reviewed the flaw.
	Reviewers *[]int `json:"reviewers,omitempty"`

	// RiskAccepted Denotes if this finding has been marked as an accepted risk.
	RiskAccepted *bool `json:"risk_accepted,omitempty"`

	// SastSinkObject Sink object (variable, function...) of the attack vector.
	SastSinkObject *string `json:"sast_sink_object"`

	// SastSourceFilePath Source file path of the attack vector.
	SastSourceFilePath *string `json:"sast_source_file_path"`

	// SastSourceLine Source line number of the attack vector.
	SastSourceLine *int `json:"sast_source_line"`

	// SastSourceObject Source object (variable, function...) of the attack vector.
	SastSourceObject *string `json:"sast_source_object"`

	// Service A service is a self-contained piece of functionality within a Product. This is an optional field which is used in deduplication of findings when set.
	Service *string `json:"service"`

	// Severity The severity level of this flaw (Critical, High, Medium, Low, Informational).
	Severity string `json:"severity"`

	// SeverityJustification Text describing why a certain severity was associated with this flaw.
	SeverityJustification *string `json:"severity_justification"`

	// SlaStartDate (readonly)The date used as start date for SLA calculation. Set by expiring risk acceptances. Empty by default, causing a fallback to 'date'.
	SlaStartDate *openapi_types.Date `json:"sla_start_date"`

	// SonarqubeIssue The SonarQube issue associated with this finding.
	SonarqubeIssue *int `json:"sonarqube_issue"`

	// StaticFinding Flaw has been detected from a Static Application Security Testing tool (SAST).
	StaticFinding *bool `json:"static_finding,omitempty"`

	// StepsToReproduce Text describing the steps that must be followed in order to reproduce the flaw / bug.
	StepsToReproduce *string   `json:"steps_to_reproduce"`
	Tags             *[]string `json:"tags,omitempty"`
	Test             int       `json:"test"`
	ThreadId         *int      `json:"thread_id,omitempty"`

	// Title A short description of the flaw.
	Title string `json:"title"`

	// UnderDefectReview Denotes if this finding is under defect review.
	UnderDefectReview *bool `json:"under_defect_review,omitempty"`

	// UnderReview Denotes is this flaw is currently being reviewed.
	UnderReview *bool `json:"under_review,omitempty"`

	// UniqueIdFromTool Vulnerability technical id from the source tool. Allows to track unique vulnerabilities.
	UniqueIdFromTool *string `json:"unique_id_from_tool"`
	Url              *string `json:"url"`

	// Verified Denotes if this flaw has been manually verified by the tester.
	Verified bool `json:"verified"`

	// VulnIdFromTool Non-unique technical id from the source tool associated with the vulnerability type.
	VulnIdFromTool   *string                   `json:"vuln_id_from_tool"`
	VulnerabilityIds *[]VulnerabilityIdRequest `json:"vulnerability_ids,omitempty"`
}

FindingCreateRequest defines model for FindingCreateRequest.

type FindingEngagement

type FindingEngagement struct {
	// BranchTag Tag or branch of the product the engagement tested.
	BranchTag *string `json:"branch_tag"`

	// BuildId Build ID of the product the engagement tested.
	BuildId *string `json:"build_id"`

	// CommitHash Commit hash from repo
	CommitHash  *string    `json:"commit_hash"`
	Created     *time.Time `json:"created"`
	Description *string    `json:"description"`

	// EngagementType * `Interactive` - Interactive
	// * `CI/CD` - CI/CD
	EngagementType *FindingEngagementEngagementType `json:"engagement_type"`
	Id             *int                             `json:"id,omitempty"`
	Name           *string                          `json:"name"`
	Product        *FindingProduct                  `json:"product,omitempty"`
	TargetEnd      openapi_types.Date               `json:"target_end"`
	TargetStart    openapi_types.Date               `json:"target_start"`
	Updated        *time.Time                       `json:"updated"`

	// Version Version of the product the engagement tested.
	Version *string `json:"version"`
}

FindingEngagement defines model for FindingEngagement.

type FindingEngagementEngagementType added in v0.2.0

type FindingEngagementEngagementType string

FindingEngagementEngagementType * `Interactive` - Interactive * `CI/CD` - CI/CD

const (
	FindingEngagementEngagementTypeCICD        FindingEngagementEngagementType = "CI/CD"
	FindingEngagementEngagementTypeInteractive FindingEngagementEngagementType = "Interactive"
	FindingEngagementEngagementTypeNil         FindingEngagementEngagementType = "<nil>"
)

Defines values for FindingEngagementEngagementType.

type FindingEnvironment

type FindingEnvironment struct {
	Id   *int   `json:"id,omitempty"`
	Name string `json:"name"`
}

FindingEnvironment defines model for FindingEnvironment.

type FindingGroup

type FindingGroup struct {
	Id        *int       `json:"id,omitempty"`
	JiraIssue *JIRAIssue `json:"jira_issue,omitempty"`
	Name      string     `json:"name"`
	Test      int        `json:"test"`
}

FindingGroup defines model for FindingGroup.

type FindingMeta

type FindingMeta struct {
	Name  string `json:"name"`
	Value string `json:"value"`
}

FindingMeta defines model for FindingMeta.

type FindingMetaRequest added in v0.2.0

type FindingMetaRequest struct {
	Name  string `json:"name"`
	Value string `json:"value"`
}

FindingMetaRequest defines model for FindingMetaRequest.

type FindingProdType

type FindingProdType struct {
	Id   *int   `json:"id,omitempty"`
	Name string `json:"name"`
}

FindingProdType defines model for FindingProdType.

type FindingProduct

type FindingProduct struct {
	Id       *int             `json:"id,omitempty"`
	Name     string           `json:"name"`
	ProdType *FindingProdType `json:"prod_type,omitempty"`
}

FindingProduct defines model for FindingProduct.

type FindingRelatedFields

type FindingRelatedFields struct {
	Jira *JIRAIssue   `json:"jira,omitempty"`
	Test *FindingTest `json:"test,omitempty"`
}

FindingRelatedFields defines model for FindingRelatedFields.

type FindingRequest added in v0.2.0

type FindingRequest struct {
	// Active Denotes if this flaw is active or not.
	Active *bool `json:"active,omitempty"`

	// ComponentName Name of the affected component (library name, part of a system, ...).
	ComponentName *string `json:"component_name"`

	// ComponentVersion Version of the affected component.
	ComponentVersion *string `json:"component_version"`

	// Cvssv3 Common Vulnerability Scoring System version 3 (CVSSv3) score associated with this flaw.
	Cvssv3 *string `json:"cvssv3"`

	// Cvssv3Score Numerical CVSSv3 score for the vulnerability. If the vector is given, the score is updated while saving the finding
	Cvssv3Score *float64 `json:"cvssv3_score"`

	// Cwe The CWE number associated with this flaw.
	Cwe *int `json:"cwe"`

	// Date The date the flaw was discovered.
	Date *openapi_types.Date `json:"date,omitempty"`

	// DefectReviewRequestedBy Documents who requested a defect review for this flaw.
	DefectReviewRequestedBy *int `json:"defect_review_requested_by"`

	// Description Longer more descriptive information about the flaw.
	Description string `json:"description"`

	// Duplicate Denotes if this flaw is a duplicate of other flaws reported.
	Duplicate *bool `json:"duplicate,omitempty"`

	// DynamicFinding Flaw has been detected from a Dynamic Application Security Testing tool (DAST).
	DynamicFinding *bool `json:"dynamic_finding,omitempty"`

	// EffortForFixing Effort for fixing / remediating the vulnerability (Low, Medium, High)
	EffortForFixing *string `json:"effort_for_fixing"`

	// FalseP Denotes if this flaw has been deemed a false positive by the tester.
	FalseP *bool `json:"false_p,omitempty"`

	// FilePath Identified file(s) containing the flaw.
	FilePath *string `json:"file_path"`

	// Impact Text describing the impact this flaw has on systems, products, enterprise, etc.
	Impact *string `json:"impact"`

	// IsMitigated Denotes if this flaw has been fixed.
	IsMitigated *bool `json:"is_mitigated,omitempty"`

	// Line Source line number of the attack vector.
	Line *int `json:"line"`

	// Mitigation Text describing how to best fix the flaw.
	Mitigation *string `json:"mitigation"`

	// NbOccurences Number of occurences in the source tool when several vulnerabilites were found and aggregated by the scanner.
	NbOccurences *int `json:"nb_occurences"`

	// NumericalSeverity The numerical representation of the severity (S0, S1, S2, S3, S4).
	NumericalSeverity string `json:"numerical_severity"`

	// OutOfScope Denotes if this flaw falls outside the scope of the test and/or engagement.
	OutOfScope *bool `json:"out_of_scope,omitempty"`

	// PlannedRemediationDate The date the flaw is expected to be remediated.
	PlannedRemediationDate *openapi_types.Date `json:"planned_remediation_date"`

	// PlannedRemediationVersion The target version when the vulnerability should be fixed / remediated
	PlannedRemediationVersion *string `json:"planned_remediation_version"`

	// PublishDate Date when this vulnerability was made publicly available.
	PublishDate *openapi_types.Date `json:"publish_date"`
	PushToJira  *bool               `json:"push_to_jira,omitempty"`

	// References The external documentation available for this flaw.
	References *string `json:"references"`

	// ReviewRequestedBy Documents who requested a review for this finding.
	ReviewRequestedBy *int `json:"review_requested_by"`

	// Reviewers Documents who reviewed the flaw.
	Reviewers *[]int `json:"reviewers,omitempty"`

	// RiskAccepted Denotes if this finding has been marked as an accepted risk.
	RiskAccepted *bool `json:"risk_accepted,omitempty"`

	// SastSinkObject Sink object (variable, function...) of the attack vector.
	SastSinkObject *string `json:"sast_sink_object"`

	// SastSourceFilePath Source file path of the attack vector.
	SastSourceFilePath *string `json:"sast_source_file_path"`

	// SastSourceLine Source line number of the attack vector.
	SastSourceLine *int `json:"sast_source_line"`

	// SastSourceObject Source object (variable, function...) of the attack vector.
	SastSourceObject *string `json:"sast_source_object"`

	// Service A service is a self-contained piece of functionality within a Product. This is an optional field which is used in deduplication of findings when set.
	Service *string `json:"service"`

	// Severity The severity level of this flaw (Critical, High, Medium, Low, Informational).
	Severity string `json:"severity"`

	// SeverityJustification Text describing why a certain severity was associated with this flaw.
	SeverityJustification *string `json:"severity_justification"`

	// SlaStartDate (readonly)The date used as start date for SLA calculation. Set by expiring risk acceptances. Empty by default, causing a fallback to 'date'.
	SlaStartDate *openapi_types.Date `json:"sla_start_date"`

	// SonarqubeIssue The SonarQube issue associated with this finding.
	SonarqubeIssue *int `json:"sonarqube_issue"`

	// StaticFinding Flaw has been detected from a Static Application Security Testing tool (SAST).
	StaticFinding *bool `json:"static_finding,omitempty"`

	// StepsToReproduce Text describing the steps that must be followed in order to reproduce the flaw / bug.
	StepsToReproduce *string   `json:"steps_to_reproduce"`
	Tags             *[]string `json:"tags,omitempty"`

	// Title A short description of the flaw.
	Title string `json:"title"`

	// UnderDefectReview Denotes if this finding is under defect review.
	UnderDefectReview *bool `json:"under_defect_review,omitempty"`

	// UnderReview Denotes is this flaw is currently being reviewed.
	UnderReview *bool `json:"under_review,omitempty"`

	// UniqueIdFromTool Vulnerability technical id from the source tool. Allows to track unique vulnerabilities.
	UniqueIdFromTool *string `json:"unique_id_from_tool"`

	// Verified Denotes if this flaw has been manually verified by the tester.
	Verified *bool `json:"verified,omitempty"`

	// VulnIdFromTool Non-unique technical id from the source tool associated with the vulnerability type.
	VulnIdFromTool   *string                   `json:"vuln_id_from_tool"`
	VulnerabilityIds *[]VulnerabilityIdRequest `json:"vulnerability_ids,omitempty"`
}

FindingRequest defines model for FindingRequest.

type FindingTemplate

type FindingTemplate struct {
	Cvssv3            *string    `json:"cvssv3"`
	Cwe               *int       `json:"cwe"`
	Description       *string    `json:"description"`
	Id                *int       `json:"id,omitempty"`
	Impact            *string    `json:"impact"`
	LastUsed          *time.Time `json:"last_used"`
	Mitigation        *string    `json:"mitigation"`
	NumericalSeverity *string    `json:"numerical_severity"`
	References        *string    `json:"references"`
	Severity          *string    `json:"severity"`
	Tags              *[]string  `json:"tags,omitempty"`

	// TemplateMatch Enables this template for matching remediation advice. Match will be applied to all active, verified findings by CWE.
	TemplateMatch *bool `json:"template_match,omitempty"`

	// TemplateMatchTitle Matches by title text (contains search) and CWE.
	TemplateMatchTitle *bool                      `json:"template_match_title,omitempty"`
	Title              string                     `json:"title"`
	VulnerabilityIds   *[]VulnerabilityIdTemplate `json:"vulnerability_ids,omitempty"`
}

FindingTemplate defines model for FindingTemplate.

type FindingTemplateRequest added in v0.2.0

type FindingTemplateRequest struct {
	Cvssv3      *string   `json:"cvssv3"`
	Cwe         *int      `json:"cwe"`
	Description *string   `json:"description"`
	Impact      *string   `json:"impact"`
	Mitigation  *string   `json:"mitigation"`
	References  *string   `json:"references"`
	Severity    *string   `json:"severity"`
	Tags        *[]string `json:"tags,omitempty"`

	// TemplateMatch Enables this template for matching remediation advice. Match will be applied to all active, verified findings by CWE.
	TemplateMatch *bool `json:"template_match,omitempty"`

	// TemplateMatchTitle Matches by title text (contains search) and CWE.
	TemplateMatchTitle *bool                             `json:"template_match_title,omitempty"`
	Title              string                            `json:"title"`
	VulnerabilityIds   *[]VulnerabilityIdTemplateRequest `json:"vulnerability_ids,omitempty"`
}

FindingTemplateRequest defines model for FindingTemplateRequest.

type FindingTemplatesCreateFormdataRequestBody added in v0.2.0

type FindingTemplatesCreateFormdataRequestBody = FindingTemplateRequest

FindingTemplatesCreateFormdataRequestBody defines body for FindingTemplatesCreate for application/x-www-form-urlencoded ContentType.

type FindingTemplatesCreateJSONRequestBody

type FindingTemplatesCreateJSONRequestBody = FindingTemplateRequest

FindingTemplatesCreateJSONRequestBody defines body for FindingTemplatesCreate for application/json ContentType.

type FindingTemplatesCreateMultipartRequestBody added in v0.2.0

type FindingTemplatesCreateMultipartRequestBody = FindingTemplateRequest

FindingTemplatesCreateMultipartRequestBody defines body for FindingTemplatesCreate for multipart/form-data ContentType.

type FindingTemplatesCreateResponse

type FindingTemplatesCreateResponse struct {
	Body         []byte
	HTTPResponse *http.Response
	JSON201      *FindingTemplate
}

func ParseFindingTemplatesCreateResponse

func ParseFindingTemplatesCreateResponse(rsp *http.Response) (*FindingTemplatesCreateResponse, error)

ParseFindingTemplatesCreateResponse parses an HTTP response from a FindingTemplatesCreateWithResponse call

func (FindingTemplatesCreateResponse) Status

Status returns HTTPResponse.Status

func (FindingTemplatesCreateResponse) StatusCode

func (r FindingTemplatesCreateResponse) StatusCode() int

StatusCode returns HTTPResponse.StatusCode

type FindingTemplatesDeletePreviewListParams added in v0.2.0

type FindingTemplatesDeletePreviewListParams struct {
	// Limit Number of results to return per page.
	Limit *int `form:"limit,omitempty" json:"limit,omitempty"`

	// Offset The initial index from which to return the results.
	Offset *int `form:"offset,omitempty" json:"offset,omitempty"`
}

FindingTemplatesDeletePreviewListParams defines parameters for FindingTemplatesDeletePreviewList.

type FindingTemplatesDeletePreviewListResponse added in v0.2.0

type FindingTemplatesDeletePreviewListResponse struct {
	Body         []byte
	HTTPResponse *http.Response
	JSON200      *PaginatedDeletePreviewList
}

func ParseFindingTemplatesDeletePreviewListResponse added in v0.2.0

func ParseFindingTemplatesDeletePreviewListResponse(rsp *http.Response) (*FindingTemplatesDeletePreviewListResponse, error)

ParseFindingTemplatesDeletePreviewListResponse parses an HTTP response from a FindingTemplatesDeletePreviewListWithResponse call

func (FindingTemplatesDeletePreviewListResponse) Status added in v0.2.0

Status returns HTTPResponse.Status

func (FindingTemplatesDeletePreviewListResponse) StatusCode added in v0.2.0

StatusCode returns HTTPResponse.StatusCode

type FindingTemplatesDestroyResponse

type FindingTemplatesDestroyResponse struct {
	Body         []byte
	HTTPResponse *http.Response
}

func ParseFindingTemplatesDestroyResponse

func ParseFindingTemplatesDestroyResponse(rsp *http.Response) (*FindingTemplatesDestroyResponse, error)

ParseFindingTemplatesDestroyResponse parses an HTTP response from a FindingTemplatesDestroyWithResponse call

func (FindingTemplatesDestroyResponse) Status

Status returns HTTPResponse.Status

func (FindingTemplatesDestroyResponse) StatusCode

func (r FindingTemplatesDestroyResponse) StatusCode() int

StatusCode returns HTTPResponse.StatusCode

type FindingTemplatesListParams

type FindingTemplatesListParams struct {
	Cwe         *int    `form:"cwe,omitempty" json:"cwe,omitempty"`
	Description *string `form:"description,omitempty" json:"description,omitempty"`
	Id          *int    `form:"id,omitempty" json:"id,omitempty"`

	// Limit Number of results to return per page.
	Limit      *int    `form:"limit,omitempty" json:"limit,omitempty"`
	Mitigation *string `form:"mitigation,omitempty" json:"mitigation,omitempty"`

	// NotTag Not Tag name contains
	NotTag *string `form:"not_tag,omitempty" json:"not_tag,omitempty"`

	// NotTags Comma seperated list of exact tags not present on model
	NotTags *[]string `form:"not_tags,omitempty" json:"not_tags,omitempty"`

	// O Ordering
	//
	// * `title` - Title
	// * `-title` - Title (descending)
	// * `cwe` - Cwe
	// * `-cwe` - Cwe (descending)
	O *[]FindingTemplatesListParamsO `form:"o,omitempty" json:"o,omitempty"`

	// Offset The initial index from which to return the results.
	Offset   *int    `form:"offset,omitempty" json:"offset,omitempty"`
	Severity *string `form:"severity,omitempty" json:"severity,omitempty"`

	// Tag Tag name contains
	Tag *string `form:"tag,omitempty" json:"tag,omitempty"`

	// Tags Comma seperated list of exact tags
	Tags  *[]string `form:"tags,omitempty" json:"tags,omitempty"`
	Title *string   `form:"title,omitempty" json:"title,omitempty"`
}

FindingTemplatesListParams defines parameters for FindingTemplatesList.

type FindingTemplatesListParamsO

type FindingTemplatesListParamsO string

FindingTemplatesListParamsO defines parameters for FindingTemplatesList.

const (
	FindingTemplatesListParamsOCwe        FindingTemplatesListParamsO = "cwe"
	FindingTemplatesListParamsOMinusCwe   FindingTemplatesListParamsO = "-cwe"
	FindingTemplatesListParamsOMinusTitle FindingTemplatesListParamsO = "-title"
	FindingTemplatesListParamsOTitle      FindingTemplatesListParamsO = "title"
)

Defines values for FindingTemplatesListParamsO.

type FindingTemplatesListResponse

type FindingTemplatesListResponse struct {
	Body         []byte
	HTTPResponse *http.Response
	JSON200      *PaginatedFindingTemplateList
}

func ParseFindingTemplatesListResponse

func ParseFindingTemplatesListResponse(rsp *http.Response) (*FindingTemplatesListResponse, error)

ParseFindingTemplatesListResponse parses an HTTP response from a FindingTemplatesListWithResponse call

func (FindingTemplatesListResponse) Status

Status returns HTTPResponse.Status

func (FindingTemplatesListResponse) StatusCode

func (r FindingTemplatesListResponse) StatusCode() int

StatusCode returns HTTPResponse.StatusCode

type FindingTemplatesPartialUpdateFormdataRequestBody added in v0.2.0

type FindingTemplatesPartialUpdateFormdataRequestBody = PatchedFindingTemplateRequest

FindingTemplatesPartialUpdateFormdataRequestBody defines body for FindingTemplatesPartialUpdate for application/x-www-form-urlencoded ContentType.

type FindingTemplatesPartialUpdateJSONRequestBody

type FindingTemplatesPartialUpdateJSONRequestBody = PatchedFindingTemplateRequest

FindingTemplatesPartialUpdateJSONRequestBody defines body for FindingTemplatesPartialUpdate for application/json ContentType.

type FindingTemplatesPartialUpdateMultipartRequestBody added in v0.2.0

type FindingTemplatesPartialUpdateMultipartRequestBody = PatchedFindingTemplateRequest

FindingTemplatesPartialUpdateMultipartRequestBody defines body for FindingTemplatesPartialUpdate for multipart/form-data ContentType.

type FindingTemplatesPartialUpdateResponse

type FindingTemplatesPartialUpdateResponse struct {
	Body         []byte
	HTTPResponse *http.Response
	JSON200      *FindingTemplate
}

func ParseFindingTemplatesPartialUpdateResponse

func ParseFindingTemplatesPartialUpdateResponse(rsp *http.Response) (*FindingTemplatesPartialUpdateResponse, error)

ParseFindingTemplatesPartialUpdateResponse parses an HTTP response from a FindingTemplatesPartialUpdateWithResponse call

func (FindingTemplatesPartialUpdateResponse) Status

Status returns HTTPResponse.Status

func (FindingTemplatesPartialUpdateResponse) StatusCode

StatusCode returns HTTPResponse.StatusCode

type FindingTemplatesRetrieveResponse

type FindingTemplatesRetrieveResponse struct {
	Body         []byte
	HTTPResponse *http.Response
	JSON200      *FindingTemplate
}

func ParseFindingTemplatesRetrieveResponse

func ParseFindingTemplatesRetrieveResponse(rsp *http.Response) (*FindingTemplatesRetrieveResponse, error)

ParseFindingTemplatesRetrieveResponse parses an HTTP response from a FindingTemplatesRetrieveWithResponse call

func (FindingTemplatesRetrieveResponse) Status

Status returns HTTPResponse.Status

func (FindingTemplatesRetrieveResponse) StatusCode

func (r FindingTemplatesRetrieveResponse) StatusCode() int

StatusCode returns HTTPResponse.StatusCode

type FindingTemplatesUpdateFormdataRequestBody added in v0.2.0

type FindingTemplatesUpdateFormdataRequestBody = FindingTemplateRequest

FindingTemplatesUpdateFormdataRequestBody defines body for FindingTemplatesUpdate for application/x-www-form-urlencoded ContentType.

type FindingTemplatesUpdateJSONRequestBody

type FindingTemplatesUpdateJSONRequestBody = FindingTemplateRequest

FindingTemplatesUpdateJSONRequestBody defines body for FindingTemplatesUpdate for application/json ContentType.

type FindingTemplatesUpdateMultipartRequestBody added in v0.2.0

type FindingTemplatesUpdateMultipartRequestBody = FindingTemplateRequest

FindingTemplatesUpdateMultipartRequestBody defines body for FindingTemplatesUpdate for multipart/form-data ContentType.

type FindingTemplatesUpdateResponse

type FindingTemplatesUpdateResponse struct {
	Body         []byte
	HTTPResponse *http.Response
	JSON200      *FindingTemplate
}

func ParseFindingTemplatesUpdateResponse

func ParseFindingTemplatesUpdateResponse(rsp *http.Response) (*FindingTemplatesUpdateResponse, error)

ParseFindingTemplatesUpdateResponse parses an HTTP response from a FindingTemplatesUpdateWithResponse call

func (FindingTemplatesUpdateResponse) Status

Status returns HTTPResponse.Status

func (FindingTemplatesUpdateResponse) StatusCode

func (r FindingTemplatesUpdateResponse) StatusCode() int

StatusCode returns HTTPResponse.StatusCode

type FindingTest

type FindingTest struct {
	// BranchTag Tag or branch that was tested, a reimport may update this field.
	BranchTag *string `json:"branch_tag"`

	// BuildId Build ID that was tested, a reimport may update this field.
	BuildId *string `json:"build_id"`

	// CommitHash Commit hash tested, a reimport may update this field.
	CommitHash  *string             `json:"commit_hash"`
	Engagement  *FindingEngagement  `json:"engagement,omitempty"`
	Environment *FindingEnvironment `json:"environment,omitempty"`
	Id          *int                `json:"id,omitempty"`
	TestType    *FindingTestType    `json:"test_type,omitempty"`
	Title       *string             `json:"title"`
	Version     *string             `json:"version"`
}

FindingTest defines model for FindingTest.

type FindingTestType

type FindingTestType struct {
	Id   *int   `json:"id,omitempty"`
	Name string `json:"name"`
}

FindingTestType defines model for FindingTestType.

type FindingToFiles

type FindingToFiles struct {
	Files     []File `json:"files"`
	FindingId *int   `json:"finding_id"`
}

FindingToFiles defines model for FindingToFiles.

type FindingToNotes

type FindingToNotes struct {
	FindingId *int   `json:"finding_id"`
	Notes     []Note `json:"notes"`
}

FindingToNotes defines model for FindingToNotes.

type FindingsAcceptRisksCreateFormdataBody added in v0.2.0

type FindingsAcceptRisksCreateFormdataBody = struct {
}

FindingsAcceptRisksCreateFormdataBody defines parameters for FindingsAcceptRisksCreate.

type FindingsAcceptRisksCreateFormdataRequestBody added in v0.2.0

type FindingsAcceptRisksCreateFormdataRequestBody = FindingsAcceptRisksCreateFormdataBody

FindingsAcceptRisksCreateFormdataRequestBody defines body for FindingsAcceptRisksCreate for application/x-www-form-urlencoded ContentType.

type FindingsAcceptRisksCreateJSONBody

type FindingsAcceptRisksCreateJSONBody = []AcceptedRiskRequest

FindingsAcceptRisksCreateJSONBody defines parameters for FindingsAcceptRisksCreate.

type FindingsAcceptRisksCreateJSONRequestBody

type FindingsAcceptRisksCreateJSONRequestBody = FindingsAcceptRisksCreateJSONBody

FindingsAcceptRisksCreateJSONRequestBody defines body for FindingsAcceptRisksCreate for application/json ContentType.

type FindingsAcceptRisksCreateMultipartBody added in v0.2.0

type FindingsAcceptRisksCreateMultipartBody = []AcceptedRiskRequest

FindingsAcceptRisksCreateMultipartBody defines parameters for FindingsAcceptRisksCreate.

type FindingsAcceptRisksCreateMultipartRequestBody added in v0.2.0

type FindingsAcceptRisksCreateMultipartRequestBody = FindingsAcceptRisksCreateMultipartBody

FindingsAcceptRisksCreateMultipartRequestBody defines body for FindingsAcceptRisksCreate for multipart/form-data ContentType.

type FindingsAcceptRisksCreateParams

type FindingsAcceptRisksCreateParams struct {
	Active           *bool   `form:"active,omitempty" json:"active,omitempty"`
	ComponentName    *string `form:"component_name,omitempty" json:"component_name,omitempty"`
	ComponentVersion *string `form:"component_version,omitempty" json:"component_version,omitempty"`

	// Created The date the finding was created inside DefectDojo.
	//
	// * “ - Any date
	// * `1` - Today
	// * `2` - Past 7 days
	// * `3` - Past 30 days
	// * `4` - Past 90 days
	// * `5` - Current month
	// * `6` - Current year
	// * `7` - Past year
	Created     *FindingsAcceptRisksCreateParamsCreated `form:"created,omitempty" json:"created,omitempty"`
	Cvssv3      *string                                 `form:"cvssv3,omitempty" json:"cvssv3,omitempty"`
	Cvssv3Score *float32                                `form:"cvssv3_score,omitempty" json:"cvssv3_score,omitempty"`

	// Cwe Multiple values may be separated by commas.
	Cwe *[]int `form:"cwe,omitempty" json:"cwe,omitempty"`

	// Date The date the flaw was discovered.
	//
	// * “ - Any date
	// * `1` - Today
	// * `2` - Past 7 days
	// * `3` - Past 30 days
	// * `4` - Past 90 days
	// * `5` - Current month
	// * `6` - Current year
	// * `7` - Past year
	Date *FindingsAcceptRisksCreateParamsDate `form:"date,omitempty" json:"date,omitempty"`

	// DefectReviewRequestedBy Multiple values may be separated by commas.
	DefectReviewRequestedBy *[]int  `form:"defect_review_requested_by,omitempty" json:"defect_review_requested_by,omitempty"`
	Description             *string `form:"description,omitempty" json:"description,omitempty"`
	Duplicate               *bool   `form:"duplicate,omitempty" json:"duplicate,omitempty"`
	DuplicateFinding        *int    `form:"duplicate_finding,omitempty" json:"duplicate_finding,omitempty"`
	DynamicFinding          *bool   `form:"dynamic_finding,omitempty" json:"dynamic_finding,omitempty"`
	EffortForFixing         *string `form:"effort_for_fixing,omitempty" json:"effort_for_fixing,omitempty"`

	// Endpoints Multiple values may be separated by commas.
	Endpoints *[]int  `form:"endpoints,omitempty" json:"endpoints,omitempty"`
	FalseP    *bool   `form:"false_p,omitempty" json:"false_p,omitempty"`
	FilePath  *string `form:"file_path,omitempty" json:"file_path,omitempty"`

	// FindingGroup Multiple values may be separated by commas.
	FindingGroup *[]float32 `form:"finding_group,omitempty" json:"finding_group,omitempty"`

	// FoundBy Multiple values may be separated by commas.
	FoundBy  *[]int  `form:"found_by,omitempty" json:"found_by,omitempty"`
	HasJira  *bool   `form:"has_jira,omitempty" json:"has_jira,omitempty"`
	HashCode *string `form:"hash_code,omitempty" json:"hash_code,omitempty"`

	// Id Multiple values may be separated by commas.
	Id     *[]int  `form:"id,omitempty" json:"id,omitempty"`
	Impact *string `form:"impact,omitempty" json:"impact,omitempty"`

	// InheritedTags Internal use tags sepcifically for maintaining parity with product. This field will be present as a subset in the tags field
	InheritedTags *[][]int `form:"inherited_tags,omitempty" json:"inherited_tags,omitempty"`
	IsMitigated   *bool    `form:"is_mitigated,omitempty" json:"is_mitigated,omitempty"`

	// JiraChange The date the linked Jira issue was last modified.
	//
	// * “ - Any date
	// * `1` - Today
	// * `2` - Past 7 days
	// * `3` - Past 30 days
	// * `4` - Past 90 days
	// * `5` - Current month
	// * `6` - Current year
	// * `7` - Past year
	JiraChange *FindingsAcceptRisksCreateParamsJiraChange `form:"jira_change,omitempty" json:"jira_change,omitempty"`

	// JiraCreation The date a Jira issue was created from this finding.
	//
	// * “ - Any date
	// * `1` - Today
	// * `2` - Past 7 days
	// * `3` - Past 30 days
	// * `4` - Past 90 days
	// * `5` - Current month
	// * `6` - Current year
	// * `7` - Past year
	JiraCreation *FindingsAcceptRisksCreateParamsJiraCreation `form:"jira_creation,omitempty" json:"jira_creation,omitempty"`

	// LastReviewed Provides the date the flaw was last 'touched' by a tester.
	//
	// * “ - Any date
	// * `1` - Today
	// * `2` - Past 7 days
	// * `3` - Past 30 days
	// * `4` - Past 90 days
	// * `5` - Current month
	// * `6` - Current year
	// * `7` - Past year
	LastReviewed *FindingsAcceptRisksCreateParamsLastReviewed `form:"last_reviewed,omitempty" json:"last_reviewed,omitempty"`

	// LastReviewedBy Multiple values may be separated by commas.
	LastReviewedBy   *[]int     `form:"last_reviewed_by,omitempty" json:"last_reviewed_by,omitempty"`
	LastStatusUpdate *time.Time `form:"last_status_update,omitempty" json:"last_status_update,omitempty"`

	// Limit Number of results to return per page.
	Limit *int `form:"limit,omitempty" json:"limit,omitempty"`

	// Mitigated Denotes if this flaw has been fixed by storing the date it was fixed.
	//
	// * “ - Any date
	// * `1` - Today
	// * `2` - Past 7 days
	// * `3` - Past 30 days
	// * `4` - Past 90 days
	// * `5` - Current month
	// * `6` - Current year
	// * `7` - Past year
	Mitigated *FindingsAcceptRisksCreateParamsMitigated `form:"mitigated,omitempty" json:"mitigated,omitempty"`

	// MitigatedBy Multiple values may be separated by commas.
	MitigatedBy *[]int  `form:"mitigated_by,omitempty" json:"mitigated_by,omitempty"`
	Mitigation  *string `form:"mitigation,omitempty" json:"mitigation,omitempty"`

	// NbOccurences Multiple values may be separated by commas.
	NbOccurences *[]int `form:"nb_occurences,omitempty" json:"nb_occurences,omitempty"`

	// NotTag Not Tag name contains
	NotTag *string `form:"not_tag,omitempty" json:"not_tag,omitempty"`

	// NotTags Comma seperated list of exact tags not present on model
	NotTags *[]string `form:"not_tags,omitempty" json:"not_tags,omitempty"`

	// NotTestEngagementProductTagsName Comma seperated list of exact tags not present on product
	NotTestEngagementProductTagsName *[]string `form:"not_test__engagement__product__tags__name,omitempty" json:"not_test__engagement__product__tags__name,omitempty"`

	// NotTestEngagementTags Comma seperated list of exact tags not present on engagement
	NotTestEngagementTags *[]string `form:"not_test__engagement__tags,omitempty" json:"not_test__engagement__tags,omitempty"`

	// NotTestTags Comma seperated list of exact tags not present on test
	NotTestTags       *[]string `form:"not_test__tags,omitempty" json:"not_test__tags,omitempty"`
	NumericalSeverity *string   `form:"numerical_severity,omitempty" json:"numerical_severity,omitempty"`

	// O Ordering
	//
	// * `active` - Active
	// * `-active` - Active (descending)
	// * `component_name` - Component name
	// * `-component_name` - Component name (descending)
	// * `component_version` - Component version
	// * `-component_version` - Component version (descending)
	// * `created` - Created
	// * `-created` - Created (descending)
	// * `last_status_update` - Last status update
	// * `-last_status_update` - Last status update (descending)
	// * `last_reviewed` - Last reviewed
	// * `-last_reviewed` - Last reviewed (descending)
	// * `cwe` - Cwe
	// * `-cwe` - Cwe (descending)
	// * `date` - Date
	// * `-date` - Date (descending)
	// * `duplicate` - Duplicate
	// * `-duplicate` - Duplicate (descending)
	// * `dynamic_finding` - Dynamic finding
	// * `-dynamic_finding` - Dynamic finding (descending)
	// * `false_p` - False p
	// * `-false_p` - False p (descending)
	// * `found_by` - Found by
	// * `-found_by` - Found by (descending)
	// * `id` - Id
	// * `-id` - Id (descending)
	// * `is_mitigated` - Is mitigated
	// * `-is_mitigated` - Is mitigated (descending)
	// * `numerical_severity` - Numerical severity
	// * `-numerical_severity` - Numerical severity (descending)
	// * `out_of_scope` - Out of scope
	// * `-out_of_scope` - Out of scope (descending)
	// * `severity` - Severity
	// * `-severity` - Severity (descending)
	// * `reviewers` - Reviewers
	// * `-reviewers` - Reviewers (descending)
	// * `static_finding` - Static finding
	// * `-static_finding` - Static finding (descending)
	// * `test__engagement__product__name` - Test  engagement  product  name
	// * `-test__engagement__product__name` - Test  engagement  product  name (descending)
	// * `title` - Title
	// * `-title` - Title (descending)
	// * `under_defect_review` - Under defect review
	// * `-under_defect_review` - Under defect review (descending)
	// * `under_review` - Under review
	// * `-under_review` - Under review (descending)
	// * `verified` - Verified
	// * `-verified` - Verified (descending)
	O *[]FindingsAcceptRisksCreateParamsO `form:"o,omitempty" json:"o,omitempty"`

	// Offset The initial index from which to return the results.
	Offset                    *int                `form:"offset,omitempty" json:"offset,omitempty"`
	OutOfScope                *bool               `form:"out_of_scope,omitempty" json:"out_of_scope,omitempty"`
	Param                     *string             `form:"param,omitempty" json:"param,omitempty"`
	Payload                   *string             `form:"payload,omitempty" json:"payload,omitempty"`
	PlannedRemediationDate    *openapi_types.Date `form:"planned_remediation_date,omitempty" json:"planned_remediation_date,omitempty"`
	PlannedRemediationVersion *string             `form:"planned_remediation_version,omitempty" json:"planned_remediation_version,omitempty"`

	// ProductName exact product name
	ProductName *string `form:"product_name,omitempty" json:"product_name,omitempty"`

	// ProductNameContains exact product name
	ProductNameContains *string             `form:"product_name_contains,omitempty" json:"product_name_contains,omitempty"`
	PublishDate         *openapi_types.Date `form:"publish_date,omitempty" json:"publish_date,omitempty"`
	References          *string             `form:"references,omitempty" json:"references,omitempty"`

	// Reporter Multiple values may be separated by commas.
	Reporter *[]int `form:"reporter,omitempty" json:"reporter,omitempty"`

	// ReviewRequestedBy Multiple values may be separated by commas.
	ReviewRequestedBy *[]int `form:"review_requested_by,omitempty" json:"review_requested_by,omitempty"`

	// Reviewers Multiple values may be separated by commas.
	Reviewers          *[]int   `form:"reviewers,omitempty" json:"reviewers,omitempty"`
	RiskAcceptance     *float32 `form:"risk_acceptance,omitempty" json:"risk_acceptance,omitempty"`
	RiskAccepted       *bool    `form:"risk_accepted,omitempty" json:"risk_accepted,omitempty"`
	SastSinkObject     *string  `form:"sast_sink_object,omitempty" json:"sast_sink_object,omitempty"`
	SastSourceFilePath *string  `form:"sast_source_file_path,omitempty" json:"sast_source_file_path,omitempty"`

	// SastSourceLine Multiple values may be separated by commas.
	SastSourceLine   *[]int  `form:"sast_source_line,omitempty" json:"sast_source_line,omitempty"`
	SastSourceObject *string `form:"sast_source_object,omitempty" json:"sast_source_object,omitempty"`

	// ScannerConfidence Multiple values may be separated by commas.
	ScannerConfidence     *[]int              `form:"scanner_confidence,omitempty" json:"scanner_confidence,omitempty"`
	Service               *string             `form:"service,omitempty" json:"service,omitempty"`
	Severity              *string             `form:"severity,omitempty" json:"severity,omitempty"`
	SeverityJustification *string             `form:"severity_justification,omitempty" json:"severity_justification,omitempty"`
	SlaStartDate          *openapi_types.Date `form:"sla_start_date,omitempty" json:"sla_start_date,omitempty"`

	// SonarqubeIssue Multiple values may be separated by commas.
	SonarqubeIssue   *[]int  `form:"sonarqube_issue,omitempty" json:"sonarqube_issue,omitempty"`
	StaticFinding    *bool   `form:"static_finding,omitempty" json:"static_finding,omitempty"`
	StepsToReproduce *string `form:"steps_to_reproduce,omitempty" json:"steps_to_reproduce,omitempty"`

	// Tag Tag name contains
	Tag *string `form:"tag,omitempty" json:"tag,omitempty"`

	// Tags Comma seperated list of exact tags
	Tags *[]string `form:"tags,omitempty" json:"tags,omitempty"`
	Test *int      `form:"test,omitempty" json:"test,omitempty"`

	// TestEngagement Multiple values may be separated by commas.
	TestEngagement *[]int `form:"test__engagement,omitempty" json:"test__engagement,omitempty"`

	// TestEngagementProduct Multiple values may be separated by commas.
	TestEngagementProduct *[]int `form:"test__engagement__product,omitempty" json:"test__engagement__product,omitempty"`

	// TestEngagementProductProdType Multiple values may be separated by commas.
	TestEngagementProductProdType *[]int `form:"test__engagement__product__prod_type,omitempty" json:"test__engagement__product__prod_type,omitempty"`

	// TestEngagementProductTagsName Comma seperated list of exact tags present on product
	TestEngagementProductTagsName *[]string `form:"test__engagement__product__tags__name,omitempty" json:"test__engagement__product__tags__name,omitempty"`

	// TestEngagementTags Comma seperated list of exact tags present on engagement
	TestEngagementTags *[]string `form:"test__engagement__tags,omitempty" json:"test__engagement__tags,omitempty"`

	// TestTags Comma seperated list of exact tags present on test
	TestTags *[]string `form:"test__tags,omitempty" json:"test__tags,omitempty"`

	// TestTestType Multiple values may be separated by commas.
	TestTestType      *[]int  `form:"test__test_type,omitempty" json:"test__test_type,omitempty"`
	Title             *string `form:"title,omitempty" json:"title,omitempty"`
	UnderDefectReview *bool   `form:"under_defect_review,omitempty" json:"under_defect_review,omitempty"`
	UnderReview       *bool   `form:"under_review,omitempty" json:"under_review,omitempty"`
	UniqueIdFromTool  *string `form:"unique_id_from_tool,omitempty" json:"unique_id_from_tool,omitempty"`
	Verified          *bool   `form:"verified,omitempty" json:"verified,omitempty"`
	VulnIdFromTool    *string `form:"vuln_id_from_tool,omitempty" json:"vuln_id_from_tool,omitempty"`
	VulnerabilityId   *string `form:"vulnerability_id,omitempty" json:"vulnerability_id,omitempty"`
}

FindingsAcceptRisksCreateParams defines parameters for FindingsAcceptRisksCreate.

type FindingsAcceptRisksCreateParamsCreated

type FindingsAcceptRisksCreateParamsCreated float32

FindingsAcceptRisksCreateParamsCreated defines parameters for FindingsAcceptRisksCreate.

const (
	FindingsAcceptRisksCreateParamsCreatedN1 FindingsAcceptRisksCreateParamsCreated = 1
	FindingsAcceptRisksCreateParamsCreatedN2 FindingsAcceptRisksCreateParamsCreated = 2
	FindingsAcceptRisksCreateParamsCreatedN3 FindingsAcceptRisksCreateParamsCreated = 3
	FindingsAcceptRisksCreateParamsCreatedN4 FindingsAcceptRisksCreateParamsCreated = 4
	FindingsAcceptRisksCreateParamsCreatedN5 FindingsAcceptRisksCreateParamsCreated = 5
	FindingsAcceptRisksCreateParamsCreatedN6 FindingsAcceptRisksCreateParamsCreated = 6
	FindingsAcceptRisksCreateParamsCreatedN7 FindingsAcceptRisksCreateParamsCreated = 7
)

Defines values for FindingsAcceptRisksCreateParamsCreated.

type FindingsAcceptRisksCreateParamsDate

type FindingsAcceptRisksCreateParamsDate float32

FindingsAcceptRisksCreateParamsDate defines parameters for FindingsAcceptRisksCreate.

const (
	FindingsAcceptRisksCreateParamsDateN1 FindingsAcceptRisksCreateParamsDate = 1
	FindingsAcceptRisksCreateParamsDateN2 FindingsAcceptRisksCreateParamsDate = 2
	FindingsAcceptRisksCreateParamsDateN3 FindingsAcceptRisksCreateParamsDate = 3
	FindingsAcceptRisksCreateParamsDateN4 FindingsAcceptRisksCreateParamsDate = 4
	FindingsAcceptRisksCreateParamsDateN5 FindingsAcceptRisksCreateParamsDate = 5
	FindingsAcceptRisksCreateParamsDateN6 FindingsAcceptRisksCreateParamsDate = 6
	FindingsAcceptRisksCreateParamsDateN7 FindingsAcceptRisksCreateParamsDate = 7
)

Defines values for FindingsAcceptRisksCreateParamsDate.

type FindingsAcceptRisksCreateParamsJiraChange

type FindingsAcceptRisksCreateParamsJiraChange float32

FindingsAcceptRisksCreateParamsJiraChange defines parameters for FindingsAcceptRisksCreate.

const (
	FindingsAcceptRisksCreateParamsJiraChangeN1 FindingsAcceptRisksCreateParamsJiraChange = 1
	FindingsAcceptRisksCreateParamsJiraChangeN2 FindingsAcceptRisksCreateParamsJiraChange = 2
	FindingsAcceptRisksCreateParamsJiraChangeN3 FindingsAcceptRisksCreateParamsJiraChange = 3
	FindingsAcceptRisksCreateParamsJiraChangeN4 FindingsAcceptRisksCreateParamsJiraChange = 4
	FindingsAcceptRisksCreateParamsJiraChangeN5 FindingsAcceptRisksCreateParamsJiraChange = 5
	FindingsAcceptRisksCreateParamsJiraChangeN6 FindingsAcceptRisksCreateParamsJiraChange = 6
	FindingsAcceptRisksCreateParamsJiraChangeN7 FindingsAcceptRisksCreateParamsJiraChange = 7
)

Defines values for FindingsAcceptRisksCreateParamsJiraChange.

type FindingsAcceptRisksCreateParamsJiraCreation

type FindingsAcceptRisksCreateParamsJiraCreation float32

FindingsAcceptRisksCreateParamsJiraCreation defines parameters for FindingsAcceptRisksCreate.

const (
	FindingsAcceptRisksCreateParamsJiraCreationN1 FindingsAcceptRisksCreateParamsJiraCreation = 1
	FindingsAcceptRisksCreateParamsJiraCreationN2 FindingsAcceptRisksCreateParamsJiraCreation = 2
	FindingsAcceptRisksCreateParamsJiraCreationN3 FindingsAcceptRisksCreateParamsJiraCreation = 3
	FindingsAcceptRisksCreateParamsJiraCreationN4 FindingsAcceptRisksCreateParamsJiraCreation = 4
	FindingsAcceptRisksCreateParamsJiraCreationN5 FindingsAcceptRisksCreateParamsJiraCreation = 5
	FindingsAcceptRisksCreateParamsJiraCreationN6 FindingsAcceptRisksCreateParamsJiraCreation = 6
	FindingsAcceptRisksCreateParamsJiraCreationN7 FindingsAcceptRisksCreateParamsJiraCreation = 7
)

Defines values for FindingsAcceptRisksCreateParamsJiraCreation.

type FindingsAcceptRisksCreateParamsLastReviewed

type FindingsAcceptRisksCreateParamsLastReviewed float32

FindingsAcceptRisksCreateParamsLastReviewed defines parameters for FindingsAcceptRisksCreate.

const (
	FindingsAcceptRisksCreateParamsLastReviewedN1 FindingsAcceptRisksCreateParamsLastReviewed = 1
	FindingsAcceptRisksCreateParamsLastReviewedN2 FindingsAcceptRisksCreateParamsLastReviewed = 2
	FindingsAcceptRisksCreateParamsLastReviewedN3 FindingsAcceptRisksCreateParamsLastReviewed = 3
	FindingsAcceptRisksCreateParamsLastReviewedN4 FindingsAcceptRisksCreateParamsLastReviewed = 4
	FindingsAcceptRisksCreateParamsLastReviewedN5 FindingsAcceptRisksCreateParamsLastReviewed = 5
	FindingsAcceptRisksCreateParamsLastReviewedN6 FindingsAcceptRisksCreateParamsLastReviewed = 6
	FindingsAcceptRisksCreateParamsLastReviewedN7 FindingsAcceptRisksCreateParamsLastReviewed = 7
)

Defines values for FindingsAcceptRisksCreateParamsLastReviewed.

type FindingsAcceptRisksCreateParamsMitigated

type FindingsAcceptRisksCreateParamsMitigated float32

FindingsAcceptRisksCreateParamsMitigated defines parameters for FindingsAcceptRisksCreate.

const (
	FindingsAcceptRisksCreateParamsMitigatedN1 FindingsAcceptRisksCreateParamsMitigated = 1
	FindingsAcceptRisksCreateParamsMitigatedN2 FindingsAcceptRisksCreateParamsMitigated = 2
	FindingsAcceptRisksCreateParamsMitigatedN3 FindingsAcceptRisksCreateParamsMitigated = 3
	FindingsAcceptRisksCreateParamsMitigatedN4 FindingsAcceptRisksCreateParamsMitigated = 4
	FindingsAcceptRisksCreateParamsMitigatedN5 FindingsAcceptRisksCreateParamsMitigated = 5
	FindingsAcceptRisksCreateParamsMitigatedN6 FindingsAcceptRisksCreateParamsMitigated = 6
	FindingsAcceptRisksCreateParamsMitigatedN7 FindingsAcceptRisksCreateParamsMitigated = 7
)

Defines values for FindingsAcceptRisksCreateParamsMitigated.

type FindingsAcceptRisksCreateParamsO

type FindingsAcceptRisksCreateParamsO string

FindingsAcceptRisksCreateParamsO defines parameters for FindingsAcceptRisksCreate.

const (
	FindingsAcceptRisksCreateParamsOActive                         FindingsAcceptRisksCreateParamsO = "active"
	FindingsAcceptRisksCreateParamsOComponentName                  FindingsAcceptRisksCreateParamsO = "component_name"
	FindingsAcceptRisksCreateParamsOComponentVersion               FindingsAcceptRisksCreateParamsO = "component_version"
	FindingsAcceptRisksCreateParamsOCreated                        FindingsAcceptRisksCreateParamsO = "created"
	FindingsAcceptRisksCreateParamsOCwe                            FindingsAcceptRisksCreateParamsO = "cwe"
	FindingsAcceptRisksCreateParamsODate                           FindingsAcceptRisksCreateParamsO = "date"
	FindingsAcceptRisksCreateParamsODuplicate                      FindingsAcceptRisksCreateParamsO = "duplicate"
	FindingsAcceptRisksCreateParamsODynamicFinding                 FindingsAcceptRisksCreateParamsO = "dynamic_finding"
	FindingsAcceptRisksCreateParamsOFalseP                         FindingsAcceptRisksCreateParamsO = "false_p"
	FindingsAcceptRisksCreateParamsOFoundBy                        FindingsAcceptRisksCreateParamsO = "found_by"
	FindingsAcceptRisksCreateParamsOId                             FindingsAcceptRisksCreateParamsO = "id"
	FindingsAcceptRisksCreateParamsOIsMitigated                    FindingsAcceptRisksCreateParamsO = "is_mitigated"
	FindingsAcceptRisksCreateParamsOLastReviewed                   FindingsAcceptRisksCreateParamsO = "last_reviewed"
	FindingsAcceptRisksCreateParamsOLastStatusUpdate               FindingsAcceptRisksCreateParamsO = "last_status_update"
	FindingsAcceptRisksCreateParamsOMinusActive                    FindingsAcceptRisksCreateParamsO = "-active"
	FindingsAcceptRisksCreateParamsOMinusComponentName             FindingsAcceptRisksCreateParamsO = "-component_name"
	FindingsAcceptRisksCreateParamsOMinusComponentVersion          FindingsAcceptRisksCreateParamsO = "-component_version"
	FindingsAcceptRisksCreateParamsOMinusCreated                   FindingsAcceptRisksCreateParamsO = "-created"
	FindingsAcceptRisksCreateParamsOMinusCwe                       FindingsAcceptRisksCreateParamsO = "-cwe"
	FindingsAcceptRisksCreateParamsOMinusDate                      FindingsAcceptRisksCreateParamsO = "-date"
	FindingsAcceptRisksCreateParamsOMinusDuplicate                 FindingsAcceptRisksCreateParamsO = "-duplicate"
	FindingsAcceptRisksCreateParamsOMinusDynamicFinding            FindingsAcceptRisksCreateParamsO = "-dynamic_finding"
	FindingsAcceptRisksCreateParamsOMinusFalseP                    FindingsAcceptRisksCreateParamsO = "-false_p"
	FindingsAcceptRisksCreateParamsOMinusFoundBy                   FindingsAcceptRisksCreateParamsO = "-found_by"
	FindingsAcceptRisksCreateParamsOMinusId                        FindingsAcceptRisksCreateParamsO = "-id"
	FindingsAcceptRisksCreateParamsOMinusIsMitigated               FindingsAcceptRisksCreateParamsO = "-is_mitigated"
	FindingsAcceptRisksCreateParamsOMinusLastReviewed              FindingsAcceptRisksCreateParamsO = "-last_reviewed"
	FindingsAcceptRisksCreateParamsOMinusLastStatusUpdate          FindingsAcceptRisksCreateParamsO = "-last_status_update"
	FindingsAcceptRisksCreateParamsOMinusNumericalSeverity         FindingsAcceptRisksCreateParamsO = "-numerical_severity"
	FindingsAcceptRisksCreateParamsOMinusOutOfScope                FindingsAcceptRisksCreateParamsO = "-out_of_scope"
	FindingsAcceptRisksCreateParamsOMinusReviewers                 FindingsAcceptRisksCreateParamsO = "-reviewers"
	FindingsAcceptRisksCreateParamsOMinusSeverity                  FindingsAcceptRisksCreateParamsO = "-severity"
	FindingsAcceptRisksCreateParamsOMinusStaticFinding             FindingsAcceptRisksCreateParamsO = "-static_finding"
	FindingsAcceptRisksCreateParamsOMinusTestEngagementProductName FindingsAcceptRisksCreateParamsO = "-test__engagement__product__name"
	FindingsAcceptRisksCreateParamsOMinusTitle                     FindingsAcceptRisksCreateParamsO = "-title"
	FindingsAcceptRisksCreateParamsOMinusUnderDefectReview         FindingsAcceptRisksCreateParamsO = "-under_defect_review"
	FindingsAcceptRisksCreateParamsOMinusUnderReview               FindingsAcceptRisksCreateParamsO = "-under_review"
	FindingsAcceptRisksCreateParamsOMinusVerified                  FindingsAcceptRisksCreateParamsO = "-verified"
	FindingsAcceptRisksCreateParamsONumericalSeverity              FindingsAcceptRisksCreateParamsO = "numerical_severity"
	FindingsAcceptRisksCreateParamsOOutOfScope                     FindingsAcceptRisksCreateParamsO = "out_of_scope"
	FindingsAcceptRisksCreateParamsOReviewers                      FindingsAcceptRisksCreateParamsO = "reviewers"
	FindingsAcceptRisksCreateParamsOSeverity                       FindingsAcceptRisksCreateParamsO = "severity"
	FindingsAcceptRisksCreateParamsOStaticFinding                  FindingsAcceptRisksCreateParamsO = "static_finding"
	FindingsAcceptRisksCreateParamsOTestEngagementProductName      FindingsAcceptRisksCreateParamsO = "test__engagement__product__name"
	FindingsAcceptRisksCreateParamsOTitle                          FindingsAcceptRisksCreateParamsO = "title"
	FindingsAcceptRisksCreateParamsOUnderDefectReview              FindingsAcceptRisksCreateParamsO = "under_defect_review"
	FindingsAcceptRisksCreateParamsOUnderReview                    FindingsAcceptRisksCreateParamsO = "under_review"
	FindingsAcceptRisksCreateParamsOVerified                       FindingsAcceptRisksCreateParamsO = "verified"
)

Defines values for FindingsAcceptRisksCreateParamsO.

type FindingsAcceptRisksCreateResponse

type FindingsAcceptRisksCreateResponse struct {
	Body         []byte
	HTTPResponse *http.Response
	JSON201      *PaginatedRiskAcceptanceList
}

func ParseFindingsAcceptRisksCreateResponse

func ParseFindingsAcceptRisksCreateResponse(rsp *http.Response) (*FindingsAcceptRisksCreateResponse, error)

ParseFindingsAcceptRisksCreateResponse parses an HTTP response from a FindingsAcceptRisksCreateWithResponse call

func (FindingsAcceptRisksCreateResponse) Status

Status returns HTTPResponse.Status

func (FindingsAcceptRisksCreateResponse) StatusCode

func (r FindingsAcceptRisksCreateResponse) StatusCode() int

StatusCode returns HTTPResponse.StatusCode

type FindingsCloseCreateFormdataRequestBody added in v0.2.0

type FindingsCloseCreateFormdataRequestBody = FindingCloseRequest

FindingsCloseCreateFormdataRequestBody defines body for FindingsCloseCreate for application/x-www-form-urlencoded ContentType.

type FindingsCloseCreateJSONRequestBody added in v0.2.0

type FindingsCloseCreateJSONRequestBody = FindingCloseRequest

FindingsCloseCreateJSONRequestBody defines body for FindingsCloseCreate for application/json ContentType.

type FindingsCloseCreateMultipartRequestBody added in v0.2.0

type FindingsCloseCreateMultipartRequestBody = FindingCloseRequest

FindingsCloseCreateMultipartRequestBody defines body for FindingsCloseCreate for multipart/form-data ContentType.

type FindingsCloseCreateResponse added in v0.2.0

type FindingsCloseCreateResponse struct {
	Body         []byte
	HTTPResponse *http.Response
	JSON200      *FindingClose
}

func ParseFindingsCloseCreateResponse added in v0.2.0

func ParseFindingsCloseCreateResponse(rsp *http.Response) (*FindingsCloseCreateResponse, error)

ParseFindingsCloseCreateResponse parses an HTTP response from a FindingsCloseCreateWithResponse call

func (FindingsCloseCreateResponse) Status added in v0.2.0

Status returns HTTPResponse.Status

func (FindingsCloseCreateResponse) StatusCode added in v0.2.0

func (r FindingsCloseCreateResponse) StatusCode() int

StatusCode returns HTTPResponse.StatusCode

type FindingsCreateFormdataRequestBody added in v0.2.0

type FindingsCreateFormdataRequestBody = FindingCreateRequest

FindingsCreateFormdataRequestBody defines body for FindingsCreate for application/x-www-form-urlencoded ContentType.

type FindingsCreateJSONRequestBody

type FindingsCreateJSONRequestBody = FindingCreateRequest

FindingsCreateJSONRequestBody defines body for FindingsCreate for application/json ContentType.

type FindingsCreateMultipartRequestBody added in v0.2.0

type FindingsCreateMultipartRequestBody = FindingCreateRequest

FindingsCreateMultipartRequestBody defines body for FindingsCreate for multipart/form-data ContentType.

type FindingsCreateResponse

type FindingsCreateResponse struct {
	Body         []byte
	HTTPResponse *http.Response
	JSON201      *FindingCreate
}

func ParseFindingsCreateResponse

func ParseFindingsCreateResponse(rsp *http.Response) (*FindingsCreateResponse, error)

ParseFindingsCreateResponse parses an HTTP response from a FindingsCreateWithResponse call

func (FindingsCreateResponse) Status

func (r FindingsCreateResponse) Status() string

Status returns HTTPResponse.Status

func (FindingsCreateResponse) StatusCode

func (r FindingsCreateResponse) StatusCode() int

StatusCode returns HTTPResponse.StatusCode

type FindingsDeletePreviewListParams added in v0.2.0

type FindingsDeletePreviewListParams struct {
	// Limit Number of results to return per page.
	Limit *int `form:"limit,omitempty" json:"limit,omitempty"`

	// Offset The initial index from which to return the results.
	Offset *int `form:"offset,omitempty" json:"offset,omitempty"`
}

FindingsDeletePreviewListParams defines parameters for FindingsDeletePreviewList.

type FindingsDeletePreviewListResponse added in v0.2.0

type FindingsDeletePreviewListResponse struct {
	Body         []byte
	HTTPResponse *http.Response
	JSON200      *PaginatedDeletePreviewList
}

func ParseFindingsDeletePreviewListResponse added in v0.2.0

func ParseFindingsDeletePreviewListResponse(rsp *http.Response) (*FindingsDeletePreviewListResponse, error)

ParseFindingsDeletePreviewListResponse parses an HTTP response from a FindingsDeletePreviewListWithResponse call

func (FindingsDeletePreviewListResponse) Status added in v0.2.0

Status returns HTTPResponse.Status

func (FindingsDeletePreviewListResponse) StatusCode added in v0.2.0

func (r FindingsDeletePreviewListResponse) StatusCode() int

StatusCode returns HTTPResponse.StatusCode

type FindingsDestroyResponse

type FindingsDestroyResponse struct {
	Body         []byte
	HTTPResponse *http.Response
}

func ParseFindingsDestroyResponse

func ParseFindingsDestroyResponse(rsp *http.Response) (*FindingsDestroyResponse, error)

ParseFindingsDestroyResponse parses an HTTP response from a FindingsDestroyWithResponse call

func (FindingsDestroyResponse) Status

func (r FindingsDestroyResponse) Status() string

Status returns HTTPResponse.Status

func (FindingsDestroyResponse) StatusCode

func (r FindingsDestroyResponse) StatusCode() int

StatusCode returns HTTPResponse.StatusCode

type FindingsDuplicateListResponse

type FindingsDuplicateListResponse struct {
	Body         []byte
	HTTPResponse *http.Response
	JSON200      *[]Finding
}

func ParseFindingsDuplicateListResponse

func ParseFindingsDuplicateListResponse(rsp *http.Response) (*FindingsDuplicateListResponse, error)

ParseFindingsDuplicateListResponse parses an HTTP response from a FindingsDuplicateListWithResponse call

func (FindingsDuplicateListResponse) Status

Status returns HTTPResponse.Status

func (FindingsDuplicateListResponse) StatusCode

func (r FindingsDuplicateListResponse) StatusCode() int

StatusCode returns HTTPResponse.StatusCode

type FindingsDuplicateResetCreateResponse

type FindingsDuplicateResetCreateResponse struct {
	Body         []byte
	HTTPResponse *http.Response
}

func ParseFindingsDuplicateResetCreateResponse

func ParseFindingsDuplicateResetCreateResponse(rsp *http.Response) (*FindingsDuplicateResetCreateResponse, error)

ParseFindingsDuplicateResetCreateResponse parses an HTTP response from a FindingsDuplicateResetCreateWithResponse call

func (FindingsDuplicateResetCreateResponse) Status

Status returns HTTPResponse.Status

func (FindingsDuplicateResetCreateResponse) StatusCode

StatusCode returns HTTPResponse.StatusCode

type FindingsFilesCreateMultipartRequestBody added in v0.2.0

type FindingsFilesCreateMultipartRequestBody = AddNewFileOptionRequest

FindingsFilesCreateMultipartRequestBody defines body for FindingsFilesCreate for multipart/form-data ContentType.

type FindingsFilesCreateResponse

type FindingsFilesCreateResponse struct {
	Body         []byte
	HTTPResponse *http.Response
	JSON201      *File
}

func ParseFindingsFilesCreateResponse

func ParseFindingsFilesCreateResponse(rsp *http.Response) (*FindingsFilesCreateResponse, error)

ParseFindingsFilesCreateResponse parses an HTTP response from a FindingsFilesCreateWithResponse call

func (FindingsFilesCreateResponse) Status

Status returns HTTPResponse.Status

func (FindingsFilesCreateResponse) StatusCode

func (r FindingsFilesCreateResponse) StatusCode() int

StatusCode returns HTTPResponse.StatusCode

type FindingsFilesDownloadRetrieveResponse added in v0.2.0

type FindingsFilesDownloadRetrieveResponse struct {
	Body         []byte
	HTTPResponse *http.Response
	JSON200      *RawFile
}

func ParseFindingsFilesDownloadRetrieveResponse added in v0.2.0

func ParseFindingsFilesDownloadRetrieveResponse(rsp *http.Response) (*FindingsFilesDownloadRetrieveResponse, error)

ParseFindingsFilesDownloadRetrieveResponse parses an HTTP response from a FindingsFilesDownloadRetrieveWithResponse call

func (FindingsFilesDownloadRetrieveResponse) Status added in v0.2.0

Status returns HTTPResponse.Status

func (FindingsFilesDownloadRetrieveResponse) StatusCode added in v0.2.0

StatusCode returns HTTPResponse.StatusCode

type FindingsFilesRetrieveResponse

type FindingsFilesRetrieveResponse struct {
	Body         []byte
	HTTPResponse *http.Response
	JSON200      *FindingToFiles
}

func ParseFindingsFilesRetrieveResponse

func ParseFindingsFilesRetrieveResponse(rsp *http.Response) (*FindingsFilesRetrieveResponse, error)

ParseFindingsFilesRetrieveResponse parses an HTTP response from a FindingsFilesRetrieveWithResponse call

func (FindingsFilesRetrieveResponse) Status

Status returns HTTPResponse.Status

func (FindingsFilesRetrieveResponse) StatusCode

func (r FindingsFilesRetrieveResponse) StatusCode() int

StatusCode returns HTTPResponse.StatusCode

type FindingsGenerateReportCreateFormdataRequestBody added in v0.2.0

type FindingsGenerateReportCreateFormdataRequestBody = ReportGenerateOptionRequest

FindingsGenerateReportCreateFormdataRequestBody defines body for FindingsGenerateReportCreate for application/x-www-form-urlencoded ContentType.

type FindingsGenerateReportCreateJSONRequestBody

type FindingsGenerateReportCreateJSONRequestBody = ReportGenerateOptionRequest

FindingsGenerateReportCreateJSONRequestBody defines body for FindingsGenerateReportCreate for application/json ContentType.

type FindingsGenerateReportCreateMultipartRequestBody added in v0.2.0

type FindingsGenerateReportCreateMultipartRequestBody = ReportGenerateOptionRequest

FindingsGenerateReportCreateMultipartRequestBody defines body for FindingsGenerateReportCreate for multipart/form-data ContentType.

type FindingsGenerateReportCreateResponse

type FindingsGenerateReportCreateResponse struct {
	Body         []byte
	HTTPResponse *http.Response
	JSON200      *ReportGenerate
}

func ParseFindingsGenerateReportCreateResponse

func ParseFindingsGenerateReportCreateResponse(rsp *http.Response) (*FindingsGenerateReportCreateResponse, error)

ParseFindingsGenerateReportCreateResponse parses an HTTP response from a FindingsGenerateReportCreateWithResponse call

func (FindingsGenerateReportCreateResponse) Status

Status returns HTTPResponse.Status

func (FindingsGenerateReportCreateResponse) StatusCode

StatusCode returns HTTPResponse.StatusCode

type FindingsListParams

type FindingsListParams struct {
	Active           *bool   `form:"active,omitempty" json:"active,omitempty"`
	ComponentName    *string `form:"component_name,omitempty" json:"component_name,omitempty"`
	ComponentVersion *string `form:"component_version,omitempty" json:"component_version,omitempty"`

	// Created The date the finding was created inside DefectDojo.
	//
	// * “ - Any date
	// * `1` - Today
	// * `2` - Past 7 days
	// * `3` - Past 30 days
	// * `4` - Past 90 days
	// * `5` - Current month
	// * `6` - Current year
	// * `7` - Past year
	Created     *FindingsListParamsCreated `form:"created,omitempty" json:"created,omitempty"`
	Cvssv3      *string                    `form:"cvssv3,omitempty" json:"cvssv3,omitempty"`
	Cvssv3Score *float32                   `form:"cvssv3_score,omitempty" json:"cvssv3_score,omitempty"`

	// Cwe Multiple values may be separated by commas.
	Cwe *[]int `form:"cwe,omitempty" json:"cwe,omitempty"`

	// Date The date the flaw was discovered.
	//
	// * “ - Any date
	// * `1` - Today
	// * `2` - Past 7 days
	// * `3` - Past 30 days
	// * `4` - Past 90 days
	// * `5` - Current month
	// * `6` - Current year
	// * `7` - Past year
	Date *FindingsListParamsDate `form:"date,omitempty" json:"date,omitempty"`

	// DefectReviewRequestedBy Multiple values may be separated by commas.
	DefectReviewRequestedBy *[]int  `form:"defect_review_requested_by,omitempty" json:"defect_review_requested_by,omitempty"`
	Description             *string `form:"description,omitempty" json:"description,omitempty"`
	Duplicate               *bool   `form:"duplicate,omitempty" json:"duplicate,omitempty"`
	DuplicateFinding        *int    `form:"duplicate_finding,omitempty" json:"duplicate_finding,omitempty"`
	DynamicFinding          *bool   `form:"dynamic_finding,omitempty" json:"dynamic_finding,omitempty"`
	EffortForFixing         *string `form:"effort_for_fixing,omitempty" json:"effort_for_fixing,omitempty"`

	// Endpoints Multiple values may be separated by commas.
	Endpoints *[]int  `form:"endpoints,omitempty" json:"endpoints,omitempty"`
	FalseP    *bool   `form:"false_p,omitempty" json:"false_p,omitempty"`
	FilePath  *string `form:"file_path,omitempty" json:"file_path,omitempty"`

	// FindingGroup Multiple values may be separated by commas.
	FindingGroup *[]float32 `form:"finding_group,omitempty" json:"finding_group,omitempty"`

	// FoundBy Multiple values may be separated by commas.
	FoundBy  *[]int  `form:"found_by,omitempty" json:"found_by,omitempty"`
	HasJira  *bool   `form:"has_jira,omitempty" json:"has_jira,omitempty"`
	HashCode *string `form:"hash_code,omitempty" json:"hash_code,omitempty"`

	// Id Multiple values may be separated by commas.
	Id     *[]int  `form:"id,omitempty" json:"id,omitempty"`
	Impact *string `form:"impact,omitempty" json:"impact,omitempty"`

	// InheritedTags Internal use tags sepcifically for maintaining parity with product. This field will be present as a subset in the tags field
	InheritedTags *[][]int `form:"inherited_tags,omitempty" json:"inherited_tags,omitempty"`
	IsMitigated   *bool    `form:"is_mitigated,omitempty" json:"is_mitigated,omitempty"`

	// JiraChange The date the linked Jira issue was last modified.
	//
	// * “ - Any date
	// * `1` - Today
	// * `2` - Past 7 days
	// * `3` - Past 30 days
	// * `4` - Past 90 days
	// * `5` - Current month
	// * `6` - Current year
	// * `7` - Past year
	JiraChange *FindingsListParamsJiraChange `form:"jira_change,omitempty" json:"jira_change,omitempty"`

	// JiraCreation The date a Jira issue was created from this finding.
	//
	// * “ - Any date
	// * `1` - Today
	// * `2` - Past 7 days
	// * `3` - Past 30 days
	// * `4` - Past 90 days
	// * `5` - Current month
	// * `6` - Current year
	// * `7` - Past year
	JiraCreation *FindingsListParamsJiraCreation `form:"jira_creation,omitempty" json:"jira_creation,omitempty"`

	// LastReviewed Provides the date the flaw was last 'touched' by a tester.
	//
	// * “ - Any date
	// * `1` - Today
	// * `2` - Past 7 days
	// * `3` - Past 30 days
	// * `4` - Past 90 days
	// * `5` - Current month
	// * `6` - Current year
	// * `7` - Past year
	LastReviewed *FindingsListParamsLastReviewed `form:"last_reviewed,omitempty" json:"last_reviewed,omitempty"`

	// LastReviewedBy Multiple values may be separated by commas.
	LastReviewedBy   *[]int     `form:"last_reviewed_by,omitempty" json:"last_reviewed_by,omitempty"`
	LastStatusUpdate *time.Time `form:"last_status_update,omitempty" json:"last_status_update,omitempty"`

	// Limit Number of results to return per page.
	Limit *int `form:"limit,omitempty" json:"limit,omitempty"`

	// Mitigated Denotes if this flaw has been fixed by storing the date it was fixed.
	//
	// * “ - Any date
	// * `1` - Today
	// * `2` - Past 7 days
	// * `3` - Past 30 days
	// * `4` - Past 90 days
	// * `5` - Current month
	// * `6` - Current year
	// * `7` - Past year
	Mitigated *FindingsListParamsMitigated `form:"mitigated,omitempty" json:"mitigated,omitempty"`

	// MitigatedBy Multiple values may be separated by commas.
	MitigatedBy *[]int  `form:"mitigated_by,omitempty" json:"mitigated_by,omitempty"`
	Mitigation  *string `form:"mitigation,omitempty" json:"mitigation,omitempty"`

	// NbOccurences Multiple values may be separated by commas.
	NbOccurences *[]int `form:"nb_occurences,omitempty" json:"nb_occurences,omitempty"`

	// NotTag Not Tag name contains
	NotTag *string `form:"not_tag,omitempty" json:"not_tag,omitempty"`

	// NotTags Comma seperated list of exact tags not present on model
	NotTags *[]string `form:"not_tags,omitempty" json:"not_tags,omitempty"`

	// NotTestEngagementProductTagsName Comma seperated list of exact tags not present on product
	NotTestEngagementProductTagsName *[]string `form:"not_test__engagement__product__tags__name,omitempty" json:"not_test__engagement__product__tags__name,omitempty"`

	// NotTestEngagementTags Comma seperated list of exact tags not present on engagement
	NotTestEngagementTags *[]string `form:"not_test__engagement__tags,omitempty" json:"not_test__engagement__tags,omitempty"`

	// NotTestTags Comma seperated list of exact tags not present on test
	NotTestTags       *[]string `form:"not_test__tags,omitempty" json:"not_test__tags,omitempty"`
	NumericalSeverity *string   `form:"numerical_severity,omitempty" json:"numerical_severity,omitempty"`

	// O Ordering
	//
	// * `active` - Active
	// * `-active` - Active (descending)
	// * `component_name` - Component name
	// * `-component_name` - Component name (descending)
	// * `component_version` - Component version
	// * `-component_version` - Component version (descending)
	// * `created` - Created
	// * `-created` - Created (descending)
	// * `last_status_update` - Last status update
	// * `-last_status_update` - Last status update (descending)
	// * `last_reviewed` - Last reviewed
	// * `-last_reviewed` - Last reviewed (descending)
	// * `cwe` - Cwe
	// * `-cwe` - Cwe (descending)
	// * `date` - Date
	// * `-date` - Date (descending)
	// * `duplicate` - Duplicate
	// * `-duplicate` - Duplicate (descending)
	// * `dynamic_finding` - Dynamic finding
	// * `-dynamic_finding` - Dynamic finding (descending)
	// * `false_p` - False p
	// * `-false_p` - False p (descending)
	// * `found_by` - Found by
	// * `-found_by` - Found by (descending)
	// * `id` - Id
	// * `-id` - Id (descending)
	// * `is_mitigated` - Is mitigated
	// * `-is_mitigated` - Is mitigated (descending)
	// * `numerical_severity` - Numerical severity
	// * `-numerical_severity` - Numerical severity (descending)
	// * `out_of_scope` - Out of scope
	// * `-out_of_scope` - Out of scope (descending)
	// * `severity` - Severity
	// * `-severity` - Severity (descending)
	// * `reviewers` - Reviewers
	// * `-reviewers` - Reviewers (descending)
	// * `static_finding` - Static finding
	// * `-static_finding` - Static finding (descending)
	// * `test__engagement__product__name` - Test  engagement  product  name
	// * `-test__engagement__product__name` - Test  engagement  product  name (descending)
	// * `title` - Title
	// * `-title` - Title (descending)
	// * `under_defect_review` - Under defect review
	// * `-under_defect_review` - Under defect review (descending)
	// * `under_review` - Under review
	// * `-under_review` - Under review (descending)
	// * `verified` - Verified
	// * `-verified` - Verified (descending)
	O *[]FindingsListParamsO `form:"o,omitempty" json:"o,omitempty"`

	// Offset The initial index from which to return the results.
	Offset                    *int                `form:"offset,omitempty" json:"offset,omitempty"`
	OutOfScope                *bool               `form:"out_of_scope,omitempty" json:"out_of_scope,omitempty"`
	Param                     *string             `form:"param,omitempty" json:"param,omitempty"`
	Payload                   *string             `form:"payload,omitempty" json:"payload,omitempty"`
	PlannedRemediationDate    *openapi_types.Date `form:"planned_remediation_date,omitempty" json:"planned_remediation_date,omitempty"`
	PlannedRemediationVersion *string             `form:"planned_remediation_version,omitempty" json:"planned_remediation_version,omitempty"`

	// Prefetch List of fields for which to prefetch model instances and add those to the response
	Prefetch *[]FindingsListParamsPrefetch `form:"prefetch,omitempty" json:"prefetch,omitempty"`

	// ProductName exact product name
	ProductName *string `form:"product_name,omitempty" json:"product_name,omitempty"`

	// ProductNameContains exact product name
	ProductNameContains *string             `form:"product_name_contains,omitempty" json:"product_name_contains,omitempty"`
	PublishDate         *openapi_types.Date `form:"publish_date,omitempty" json:"publish_date,omitempty"`
	References          *string             `form:"references,omitempty" json:"references,omitempty"`

	// RelatedFields Expand finding external relations (engagement, environment, product,                                             product_type, test, test_type)
	RelatedFields *bool `form:"related_fields,omitempty" json:"related_fields,omitempty"`

	// Reporter Multiple values may be separated by commas.
	Reporter *[]int `form:"reporter,omitempty" json:"reporter,omitempty"`

	// ReviewRequestedBy Multiple values may be separated by commas.
	ReviewRequestedBy *[]int `form:"review_requested_by,omitempty" json:"review_requested_by,omitempty"`

	// Reviewers Multiple values may be separated by commas.
	Reviewers          *[]int   `form:"reviewers,omitempty" json:"reviewers,omitempty"`
	RiskAcceptance     *float32 `form:"risk_acceptance,omitempty" json:"risk_acceptance,omitempty"`
	RiskAccepted       *bool    `form:"risk_accepted,omitempty" json:"risk_accepted,omitempty"`
	SastSinkObject     *string  `form:"sast_sink_object,omitempty" json:"sast_sink_object,omitempty"`
	SastSourceFilePath *string  `form:"sast_source_file_path,omitempty" json:"sast_source_file_path,omitempty"`

	// SastSourceLine Multiple values may be separated by commas.
	SastSourceLine   *[]int  `form:"sast_source_line,omitempty" json:"sast_source_line,omitempty"`
	SastSourceObject *string `form:"sast_source_object,omitempty" json:"sast_source_object,omitempty"`

	// ScannerConfidence Multiple values may be separated by commas.
	ScannerConfidence     *[]int              `form:"scanner_confidence,omitempty" json:"scanner_confidence,omitempty"`
	Service               *string             `form:"service,omitempty" json:"service,omitempty"`
	Severity              *string             `form:"severity,omitempty" json:"severity,omitempty"`
	SeverityJustification *string             `form:"severity_justification,omitempty" json:"severity_justification,omitempty"`
	SlaStartDate          *openapi_types.Date `form:"sla_start_date,omitempty" json:"sla_start_date,omitempty"`

	// SonarqubeIssue Multiple values may be separated by commas.
	SonarqubeIssue   *[]int  `form:"sonarqube_issue,omitempty" json:"sonarqube_issue,omitempty"`
	StaticFinding    *bool   `form:"static_finding,omitempty" json:"static_finding,omitempty"`
	StepsToReproduce *string `form:"steps_to_reproduce,omitempty" json:"steps_to_reproduce,omitempty"`

	// Tag Tag name contains
	Tag *string `form:"tag,omitempty" json:"tag,omitempty"`

	// Tags Comma seperated list of exact tags
	Tags *[]string `form:"tags,omitempty" json:"tags,omitempty"`
	Test *int      `form:"test,omitempty" json:"test,omitempty"`

	// TestEngagement Multiple values may be separated by commas.
	TestEngagement *[]int `form:"test__engagement,omitempty" json:"test__engagement,omitempty"`

	// TestEngagementProduct Multiple values may be separated by commas.
	TestEngagementProduct *[]int `form:"test__engagement__product,omitempty" json:"test__engagement__product,omitempty"`

	// TestEngagementProductProdType Multiple values may be separated by commas.
	TestEngagementProductProdType *[]int `form:"test__engagement__product__prod_type,omitempty" json:"test__engagement__product__prod_type,omitempty"`

	// TestEngagementProductTagsName Comma seperated list of exact tags present on product
	TestEngagementProductTagsName *[]string `form:"test__engagement__product__tags__name,omitempty" json:"test__engagement__product__tags__name,omitempty"`

	// TestEngagementTags Comma seperated list of exact tags present on engagement
	TestEngagementTags *[]string `form:"test__engagement__tags,omitempty" json:"test__engagement__tags,omitempty"`

	// TestTags Comma seperated list of exact tags present on test
	TestTags *[]string `form:"test__tags,omitempty" json:"test__tags,omitempty"`

	// TestTestType Multiple values may be separated by commas.
	TestTestType      *[]int  `form:"test__test_type,omitempty" json:"test__test_type,omitempty"`
	Title             *string `form:"title,omitempty" json:"title,omitempty"`
	UnderDefectReview *bool   `form:"under_defect_review,omitempty" json:"under_defect_review,omitempty"`
	UnderReview       *bool   `form:"under_review,omitempty" json:"under_review,omitempty"`
	UniqueIdFromTool  *string `form:"unique_id_from_tool,omitempty" json:"unique_id_from_tool,omitempty"`
	Verified          *bool   `form:"verified,omitempty" json:"verified,omitempty"`
	VulnIdFromTool    *string `form:"vuln_id_from_tool,omitempty" json:"vuln_id_from_tool,omitempty"`
	VulnerabilityId   *string `form:"vulnerability_id,omitempty" json:"vulnerability_id,omitempty"`
}

FindingsListParams defines parameters for FindingsList.

type FindingsListParamsCreated

type FindingsListParamsCreated float32

FindingsListParamsCreated defines parameters for FindingsList.

const (
	FindingsListParamsCreatedN1 FindingsListParamsCreated = 1
	FindingsListParamsCreatedN2 FindingsListParamsCreated = 2
	FindingsListParamsCreatedN3 FindingsListParamsCreated = 3
	FindingsListParamsCreatedN4 FindingsListParamsCreated = 4
	FindingsListParamsCreatedN5 FindingsListParamsCreated = 5
	FindingsListParamsCreatedN6 FindingsListParamsCreated = 6
	FindingsListParamsCreatedN7 FindingsListParamsCreated = 7
)

Defines values for FindingsListParamsCreated.

type FindingsListParamsDate

type FindingsListParamsDate float32

FindingsListParamsDate defines parameters for FindingsList.

const (
	FindingsListParamsDateN1 FindingsListParamsDate = 1
	FindingsListParamsDateN2 FindingsListParamsDate = 2
	FindingsListParamsDateN3 FindingsListParamsDate = 3
	FindingsListParamsDateN4 FindingsListParamsDate = 4
	FindingsListParamsDateN5 FindingsListParamsDate = 5
	FindingsListParamsDateN6 FindingsListParamsDate = 6
	FindingsListParamsDateN7 FindingsListParamsDate = 7
)

Defines values for FindingsListParamsDate.

type FindingsListParamsJiraChange

type FindingsListParamsJiraChange float32

FindingsListParamsJiraChange defines parameters for FindingsList.

const (
	FindingsListParamsJiraChangeN1 FindingsListParamsJiraChange = 1
	FindingsListParamsJiraChangeN2 FindingsListParamsJiraChange = 2
	FindingsListParamsJiraChangeN3 FindingsListParamsJiraChange = 3
	FindingsListParamsJiraChangeN4 FindingsListParamsJiraChange = 4
	FindingsListParamsJiraChangeN5 FindingsListParamsJiraChange = 5
	FindingsListParamsJiraChangeN6 FindingsListParamsJiraChange = 6
	FindingsListParamsJiraChangeN7 FindingsListParamsJiraChange = 7
)

Defines values for FindingsListParamsJiraChange.

type FindingsListParamsJiraCreation

type FindingsListParamsJiraCreation float32

FindingsListParamsJiraCreation defines parameters for FindingsList.

const (
	FindingsListParamsJiraCreationN1 FindingsListParamsJiraCreation = 1
	FindingsListParamsJiraCreationN2 FindingsListParamsJiraCreation = 2
	FindingsListParamsJiraCreationN3 FindingsListParamsJiraCreation = 3
	FindingsListParamsJiraCreationN4 FindingsListParamsJiraCreation = 4
	FindingsListParamsJiraCreationN5 FindingsListParamsJiraCreation = 5
	FindingsListParamsJiraCreationN6 FindingsListParamsJiraCreation = 6
	FindingsListParamsJiraCreationN7 FindingsListParamsJiraCreation = 7
)

Defines values for FindingsListParamsJiraCreation.

type FindingsListParamsLastReviewed

type FindingsListParamsLastReviewed float32

FindingsListParamsLastReviewed defines parameters for FindingsList.

const (
	FindingsListParamsLastReviewedN1 FindingsListParamsLastReviewed = 1
	FindingsListParamsLastReviewedN2 FindingsListParamsLastReviewed = 2
	FindingsListParamsLastReviewedN3 FindingsListParamsLastReviewed = 3
	FindingsListParamsLastReviewedN4 FindingsListParamsLastReviewed = 4
	FindingsListParamsLastReviewedN5 FindingsListParamsLastReviewed = 5
	FindingsListParamsLastReviewedN6 FindingsListParamsLastReviewed = 6
	FindingsListParamsLastReviewedN7 FindingsListParamsLastReviewed = 7
)

Defines values for FindingsListParamsLastReviewed.

type FindingsListParamsMitigated

type FindingsListParamsMitigated float32

FindingsListParamsMitigated defines parameters for FindingsList.

const (
	FindingsListParamsMitigatedN1 FindingsListParamsMitigated = 1
	FindingsListParamsMitigatedN2 FindingsListParamsMitigated = 2
	FindingsListParamsMitigatedN3 FindingsListParamsMitigated = 3
	FindingsListParamsMitigatedN4 FindingsListParamsMitigated = 4
	FindingsListParamsMitigatedN5 FindingsListParamsMitigated = 5
	FindingsListParamsMitigatedN6 FindingsListParamsMitigated = 6
	FindingsListParamsMitigatedN7 FindingsListParamsMitigated = 7
)

Defines values for FindingsListParamsMitigated.

type FindingsListParamsO

type FindingsListParamsO string

FindingsListParamsO defines parameters for FindingsList.

const (
	FindingsListParamsOActive                         FindingsListParamsO = "active"
	FindingsListParamsOComponentName                  FindingsListParamsO = "component_name"
	FindingsListParamsOComponentVersion               FindingsListParamsO = "component_version"
	FindingsListParamsOCreated                        FindingsListParamsO = "created"
	FindingsListParamsOCwe                            FindingsListParamsO = "cwe"
	FindingsListParamsODate                           FindingsListParamsO = "date"
	FindingsListParamsODuplicate                      FindingsListParamsO = "duplicate"
	FindingsListParamsODynamicFinding                 FindingsListParamsO = "dynamic_finding"
	FindingsListParamsOFalseP                         FindingsListParamsO = "false_p"
	FindingsListParamsOFoundBy                        FindingsListParamsO = "found_by"
	FindingsListParamsOId                             FindingsListParamsO = "id"
	FindingsListParamsOIsMitigated                    FindingsListParamsO = "is_mitigated"
	FindingsListParamsOLastReviewed                   FindingsListParamsO = "last_reviewed"
	FindingsListParamsOLastStatusUpdate               FindingsListParamsO = "last_status_update"
	FindingsListParamsOMinusActive                    FindingsListParamsO = "-active"
	FindingsListParamsOMinusComponentName             FindingsListParamsO = "-component_name"
	FindingsListParamsOMinusComponentVersion          FindingsListParamsO = "-component_version"
	FindingsListParamsOMinusCreated                   FindingsListParamsO = "-created"
	FindingsListParamsOMinusCwe                       FindingsListParamsO = "-cwe"
	FindingsListParamsOMinusDate                      FindingsListParamsO = "-date"
	FindingsListParamsOMinusDuplicate                 FindingsListParamsO = "-duplicate"
	FindingsListParamsOMinusDynamicFinding            FindingsListParamsO = "-dynamic_finding"
	FindingsListParamsOMinusFalseP                    FindingsListParamsO = "-false_p"
	FindingsListParamsOMinusFoundBy                   FindingsListParamsO = "-found_by"
	FindingsListParamsOMinusId                        FindingsListParamsO = "-id"
	FindingsListParamsOMinusIsMitigated               FindingsListParamsO = "-is_mitigated"
	FindingsListParamsOMinusLastReviewed              FindingsListParamsO = "-last_reviewed"
	FindingsListParamsOMinusLastStatusUpdate          FindingsListParamsO = "-last_status_update"
	FindingsListParamsOMinusNumericalSeverity         FindingsListParamsO = "-numerical_severity"
	FindingsListParamsOMinusOutOfScope                FindingsListParamsO = "-out_of_scope"
	FindingsListParamsOMinusReviewers                 FindingsListParamsO = "-reviewers"
	FindingsListParamsOMinusSeverity                  FindingsListParamsO = "-severity"
	FindingsListParamsOMinusStaticFinding             FindingsListParamsO = "-static_finding"
	FindingsListParamsOMinusTestEngagementProductName FindingsListParamsO = "-test__engagement__product__name"
	FindingsListParamsOMinusTitle                     FindingsListParamsO = "-title"
	FindingsListParamsOMinusUnderDefectReview         FindingsListParamsO = "-under_defect_review"
	FindingsListParamsOMinusUnderReview               FindingsListParamsO = "-under_review"
	FindingsListParamsOMinusVerified                  FindingsListParamsO = "-verified"
	FindingsListParamsONumericalSeverity              FindingsListParamsO = "numerical_severity"
	FindingsListParamsOOutOfScope                     FindingsListParamsO = "out_of_scope"
	FindingsListParamsOReviewers                      FindingsListParamsO = "reviewers"
	FindingsListParamsOSeverity                       FindingsListParamsO = "severity"
	FindingsListParamsOStaticFinding                  FindingsListParamsO = "static_finding"
	FindingsListParamsOTestEngagementProductName      FindingsListParamsO = "test__engagement__product__name"
	FindingsListParamsOTitle                          FindingsListParamsO = "title"
	FindingsListParamsOUnderDefectReview              FindingsListParamsO = "under_defect_review"
	FindingsListParamsOUnderReview                    FindingsListParamsO = "under_review"
	FindingsListParamsOVerified                       FindingsListParamsO = "verified"
)

Defines values for FindingsListParamsO.

type FindingsListParamsPrefetch

type FindingsListParamsPrefetch string

FindingsListParamsPrefetch defines parameters for FindingsList.

const (
	FindingsListParamsPrefetchAuthIssues              FindingsListParamsPrefetch = "auth_issues"
	FindingsListParamsPrefetchAuthorIssues            FindingsListParamsPrefetch = "author_issues"
	FindingsListParamsPrefetchConfigIssues            FindingsListParamsPrefetch = "config_issues"
	FindingsListParamsPrefetchCryptoIssues            FindingsListParamsPrefetch = "crypto_issues"
	FindingsListParamsPrefetchDataIssues              FindingsListParamsPrefetch = "data_issues"
	FindingsListParamsPrefetchDefectReviewRequestedBy FindingsListParamsPrefetch = "defect_review_requested_by"
	FindingsListParamsPrefetchDuplicateFinding        FindingsListParamsPrefetch = "duplicate_finding"
	FindingsListParamsPrefetchEndpointSet             FindingsListParamsPrefetch = "endpoint_set"
	FindingsListParamsPrefetchEndpoints               FindingsListParamsPrefetch = "endpoints"
	FindingsListParamsPrefetchFiles                   FindingsListParamsPrefetch = "files"
	FindingsListParamsPrefetchFindingGroupSet         FindingsListParamsPrefetch = "finding_group_set"
	FindingsListParamsPrefetchFoundBy                 FindingsListParamsPrefetch = "found_by"
	FindingsListParamsPrefetchLastReviewedBy          FindingsListParamsPrefetch = "last_reviewed_by"
	FindingsListParamsPrefetchMitigatedBy             FindingsListParamsPrefetch = "mitigated_by"
	FindingsListParamsPrefetchNotes                   FindingsListParamsPrefetch = "notes"
	FindingsListParamsPrefetchOtherIssues             FindingsListParamsPrefetch = "other_issues"
	FindingsListParamsPrefetchReporter                FindingsListParamsPrefetch = "reporter"
	FindingsListParamsPrefetchReviewRequestedBy       FindingsListParamsPrefetch = "review_requested_by"
	FindingsListParamsPrefetchReviewers               FindingsListParamsPrefetch = "reviewers"
	FindingsListParamsPrefetchRiskAcceptanceSet       FindingsListParamsPrefetch = "risk_acceptance_set"
	FindingsListParamsPrefetchSensitiveIssues         FindingsListParamsPrefetch = "sensitive_issues"
	FindingsListParamsPrefetchSessionIssues           FindingsListParamsPrefetch = "session_issues"
	FindingsListParamsPrefetchSonarqubeIssue          FindingsListParamsPrefetch = "sonarqube_issue"
	FindingsListParamsPrefetchTest                    FindingsListParamsPrefetch = "test"
	FindingsListParamsPrefetchTestImportSet           FindingsListParamsPrefetch = "test_import_set"
)

Defines values for FindingsListParamsPrefetch.

type FindingsListResponse

type FindingsListResponse struct {
	Body         []byte
	HTTPResponse *http.Response
	JSON200      *PaginatedFindingList
}

func ParseFindingsListResponse

func ParseFindingsListResponse(rsp *http.Response) (*FindingsListResponse, error)

ParseFindingsListResponse parses an HTTP response from a FindingsListWithResponse call

func (FindingsListResponse) Status

func (r FindingsListResponse) Status() string

Status returns HTTPResponse.Status

func (FindingsListResponse) StatusCode

func (r FindingsListResponse) StatusCode() int

StatusCode returns HTTPResponse.StatusCode

type FindingsMetadataCreateFormdataRequestBody added in v0.2.0

type FindingsMetadataCreateFormdataRequestBody = FindingMetaRequest

FindingsMetadataCreateFormdataRequestBody defines body for FindingsMetadataCreate for application/x-www-form-urlencoded ContentType.

type FindingsMetadataCreateJSONRequestBody

type FindingsMetadataCreateJSONRequestBody = FindingMetaRequest

FindingsMetadataCreateJSONRequestBody defines body for FindingsMetadataCreate for application/json ContentType.

type FindingsMetadataCreateMultipartRequestBody added in v0.2.0

type FindingsMetadataCreateMultipartRequestBody = FindingMetaRequest

FindingsMetadataCreateMultipartRequestBody defines body for FindingsMetadataCreate for multipart/form-data ContentType.

type FindingsMetadataCreateResponse

type FindingsMetadataCreateResponse struct {
	Body         []byte
	HTTPResponse *http.Response
	JSON200      *FindingMeta
}

func ParseFindingsMetadataCreateResponse

func ParseFindingsMetadataCreateResponse(rsp *http.Response) (*FindingsMetadataCreateResponse, error)

ParseFindingsMetadataCreateResponse parses an HTTP response from a FindingsMetadataCreateWithResponse call

func (FindingsMetadataCreateResponse) Status

Status returns HTTPResponse.Status

func (FindingsMetadataCreateResponse) StatusCode

func (r FindingsMetadataCreateResponse) StatusCode() int

StatusCode returns HTTPResponse.StatusCode

type FindingsMetadataDestroyParams

type FindingsMetadataDestroyParams struct {
	// Name name of the metadata to retrieve. If name is empty, return all the                                     metadata associated with the finding
	Name int `form:"name" json:"name"`
}

FindingsMetadataDestroyParams defines parameters for FindingsMetadataDestroy.

type FindingsMetadataDestroyResponse

type FindingsMetadataDestroyResponse struct {
	Body         []byte
	HTTPResponse *http.Response
}

func ParseFindingsMetadataDestroyResponse

func ParseFindingsMetadataDestroyResponse(rsp *http.Response) (*FindingsMetadataDestroyResponse, error)

ParseFindingsMetadataDestroyResponse parses an HTTP response from a FindingsMetadataDestroyWithResponse call

func (FindingsMetadataDestroyResponse) Status

Status returns HTTPResponse.Status

func (FindingsMetadataDestroyResponse) StatusCode

func (r FindingsMetadataDestroyResponse) StatusCode() int

StatusCode returns HTTPResponse.StatusCode

type FindingsMetadataListResponse

type FindingsMetadataListResponse struct {
	Body         []byte
	HTTPResponse *http.Response
	JSON200      *[]FindingMeta
}

func ParseFindingsMetadataListResponse

func ParseFindingsMetadataListResponse(rsp *http.Response) (*FindingsMetadataListResponse, error)

ParseFindingsMetadataListResponse parses an HTTP response from a FindingsMetadataListWithResponse call

func (FindingsMetadataListResponse) Status

Status returns HTTPResponse.Status

func (FindingsMetadataListResponse) StatusCode

func (r FindingsMetadataListResponse) StatusCode() int

StatusCode returns HTTPResponse.StatusCode

type FindingsMetadataUpdateFormdataRequestBody added in v0.2.0

type FindingsMetadataUpdateFormdataRequestBody = FindingMetaRequest

FindingsMetadataUpdateFormdataRequestBody defines body for FindingsMetadataUpdate for application/x-www-form-urlencoded ContentType.

type FindingsMetadataUpdateJSONRequestBody

type FindingsMetadataUpdateJSONRequestBody = FindingMetaRequest

FindingsMetadataUpdateJSONRequestBody defines body for FindingsMetadataUpdate for application/json ContentType.

type FindingsMetadataUpdateMultipartRequestBody added in v0.2.0

type FindingsMetadataUpdateMultipartRequestBody = FindingMetaRequest

FindingsMetadataUpdateMultipartRequestBody defines body for FindingsMetadataUpdate for multipart/form-data ContentType.

type FindingsMetadataUpdateResponse

type FindingsMetadataUpdateResponse struct {
	Body         []byte
	HTTPResponse *http.Response
	JSON200      *FindingMeta
}

func ParseFindingsMetadataUpdateResponse

func ParseFindingsMetadataUpdateResponse(rsp *http.Response) (*FindingsMetadataUpdateResponse, error)

ParseFindingsMetadataUpdateResponse parses an HTTP response from a FindingsMetadataUpdateWithResponse call

func (FindingsMetadataUpdateResponse) Status

Status returns HTTPResponse.Status

func (FindingsMetadataUpdateResponse) StatusCode

func (r FindingsMetadataUpdateResponse) StatusCode() int

StatusCode returns HTTPResponse.StatusCode

type FindingsNotesCreateFormdataRequestBody added in v0.2.0

type FindingsNotesCreateFormdataRequestBody = AddNewNoteOptionRequest

FindingsNotesCreateFormdataRequestBody defines body for FindingsNotesCreate for application/x-www-form-urlencoded ContentType.

type FindingsNotesCreateJSONRequestBody

type FindingsNotesCreateJSONRequestBody = AddNewNoteOptionRequest

FindingsNotesCreateJSONRequestBody defines body for FindingsNotesCreate for application/json ContentType.

type FindingsNotesCreateMultipartRequestBody added in v0.2.0

type FindingsNotesCreateMultipartRequestBody = AddNewNoteOptionRequest

FindingsNotesCreateMultipartRequestBody defines body for FindingsNotesCreate for multipart/form-data ContentType.

type FindingsNotesCreateResponse

type FindingsNotesCreateResponse struct {
	Body         []byte
	HTTPResponse *http.Response
	JSON201      *Note
}

func ParseFindingsNotesCreateResponse

func ParseFindingsNotesCreateResponse(rsp *http.Response) (*FindingsNotesCreateResponse, error)

ParseFindingsNotesCreateResponse parses an HTTP response from a FindingsNotesCreateWithResponse call

func (FindingsNotesCreateResponse) Status

Status returns HTTPResponse.Status

func (FindingsNotesCreateResponse) StatusCode

func (r FindingsNotesCreateResponse) StatusCode() int

StatusCode returns HTTPResponse.StatusCode

type FindingsNotesRetrieveResponse

type FindingsNotesRetrieveResponse struct {
	Body         []byte
	HTTPResponse *http.Response
	JSON200      *FindingToNotes
}

func ParseFindingsNotesRetrieveResponse

func ParseFindingsNotesRetrieveResponse(rsp *http.Response) (*FindingsNotesRetrieveResponse, error)

ParseFindingsNotesRetrieveResponse parses an HTTP response from a FindingsNotesRetrieveWithResponse call

func (FindingsNotesRetrieveResponse) Status

Status returns HTTPResponse.Status

func (FindingsNotesRetrieveResponse) StatusCode

func (r FindingsNotesRetrieveResponse) StatusCode() int

StatusCode returns HTTPResponse.StatusCode

type FindingsOriginalCreateResponse

type FindingsOriginalCreateResponse struct {
	Body         []byte
	HTTPResponse *http.Response
}

func ParseFindingsOriginalCreateResponse

func ParseFindingsOriginalCreateResponse(rsp *http.Response) (*FindingsOriginalCreateResponse, error)

ParseFindingsOriginalCreateResponse parses an HTTP response from a FindingsOriginalCreateWithResponse call

func (FindingsOriginalCreateResponse) Status

Status returns HTTPResponse.Status

func (FindingsOriginalCreateResponse) StatusCode

func (r FindingsOriginalCreateResponse) StatusCode() int

StatusCode returns HTTPResponse.StatusCode

type FindingsPartialUpdateFormdataRequestBody added in v0.2.0

type FindingsPartialUpdateFormdataRequestBody = PatchedFindingRequest

FindingsPartialUpdateFormdataRequestBody defines body for FindingsPartialUpdate for application/x-www-form-urlencoded ContentType.

type FindingsPartialUpdateJSONRequestBody

type FindingsPartialUpdateJSONRequestBody = PatchedFindingRequest

FindingsPartialUpdateJSONRequestBody defines body for FindingsPartialUpdate for application/json ContentType.

type FindingsPartialUpdateMultipartRequestBody added in v0.2.0

type FindingsPartialUpdateMultipartRequestBody = PatchedFindingRequest

FindingsPartialUpdateMultipartRequestBody defines body for FindingsPartialUpdate for multipart/form-data ContentType.

type FindingsPartialUpdateResponse

type FindingsPartialUpdateResponse struct {
	Body         []byte
	HTTPResponse *http.Response
	JSON200      *Finding
}

func ParseFindingsPartialUpdateResponse

func ParseFindingsPartialUpdateResponse(rsp *http.Response) (*FindingsPartialUpdateResponse, error)

ParseFindingsPartialUpdateResponse parses an HTTP response from a FindingsPartialUpdateWithResponse call

func (FindingsPartialUpdateResponse) Status

Status returns HTTPResponse.Status

func (FindingsPartialUpdateResponse) StatusCode

func (r FindingsPartialUpdateResponse) StatusCode() int

StatusCode returns HTTPResponse.StatusCode

type FindingsRemoveNotePartialUpdateFormdataRequestBody added in v0.2.0

type FindingsRemoveNotePartialUpdateFormdataRequestBody = PatchedFindingNoteRequest

FindingsRemoveNotePartialUpdateFormdataRequestBody defines body for FindingsRemoveNotePartialUpdate for application/x-www-form-urlencoded ContentType.

type FindingsRemoveNotePartialUpdateJSONRequestBody

type FindingsRemoveNotePartialUpdateJSONRequestBody = PatchedFindingNoteRequest

FindingsRemoveNotePartialUpdateJSONRequestBody defines body for FindingsRemoveNotePartialUpdate for application/json ContentType.

type FindingsRemoveNotePartialUpdateMultipartRequestBody added in v0.2.0

type FindingsRemoveNotePartialUpdateMultipartRequestBody = PatchedFindingNoteRequest

FindingsRemoveNotePartialUpdateMultipartRequestBody defines body for FindingsRemoveNotePartialUpdate for multipart/form-data ContentType.

type FindingsRemoveNotePartialUpdateResponse

type FindingsRemoveNotePartialUpdateResponse struct {
	Body         []byte
	HTTPResponse *http.Response
}

func ParseFindingsRemoveNotePartialUpdateResponse

func ParseFindingsRemoveNotePartialUpdateResponse(rsp *http.Response) (*FindingsRemoveNotePartialUpdateResponse, error)

ParseFindingsRemoveNotePartialUpdateResponse parses an HTTP response from a FindingsRemoveNotePartialUpdateWithResponse call

func (FindingsRemoveNotePartialUpdateResponse) Status

Status returns HTTPResponse.Status

func (FindingsRemoveNotePartialUpdateResponse) StatusCode

StatusCode returns HTTPResponse.StatusCode

type FindingsRemoveTagsPartialUpdateFormdataRequestBody added in v0.2.0

type FindingsRemoveTagsPartialUpdateFormdataRequestBody = PatchedTagRequest

FindingsRemoveTagsPartialUpdateFormdataRequestBody defines body for FindingsRemoveTagsPartialUpdate for application/x-www-form-urlencoded ContentType.

type FindingsRemoveTagsPartialUpdateJSONRequestBody

type FindingsRemoveTagsPartialUpdateJSONRequestBody = PatchedTagRequest

FindingsRemoveTagsPartialUpdateJSONRequestBody defines body for FindingsRemoveTagsPartialUpdate for application/json ContentType.

type FindingsRemoveTagsPartialUpdateMultipartRequestBody added in v0.2.0

type FindingsRemoveTagsPartialUpdateMultipartRequestBody = PatchedTagRequest

FindingsRemoveTagsPartialUpdateMultipartRequestBody defines body for FindingsRemoveTagsPartialUpdate for multipart/form-data ContentType.

type FindingsRemoveTagsPartialUpdateResponse

type FindingsRemoveTagsPartialUpdateResponse struct {
	Body         []byte
	HTTPResponse *http.Response
}

func ParseFindingsRemoveTagsPartialUpdateResponse

func ParseFindingsRemoveTagsPartialUpdateResponse(rsp *http.Response) (*FindingsRemoveTagsPartialUpdateResponse, error)

ParseFindingsRemoveTagsPartialUpdateResponse parses an HTTP response from a FindingsRemoveTagsPartialUpdateWithResponse call

func (FindingsRemoveTagsPartialUpdateResponse) Status

Status returns HTTPResponse.Status

func (FindingsRemoveTagsPartialUpdateResponse) StatusCode

StatusCode returns HTTPResponse.StatusCode

type FindingsRemoveTagsUpdateFormdataRequestBody added in v0.2.0

type FindingsRemoveTagsUpdateFormdataRequestBody = TagRequest

FindingsRemoveTagsUpdateFormdataRequestBody defines body for FindingsRemoveTagsUpdate for application/x-www-form-urlencoded ContentType.

type FindingsRemoveTagsUpdateJSONRequestBody

type FindingsRemoveTagsUpdateJSONRequestBody = TagRequest

FindingsRemoveTagsUpdateJSONRequestBody defines body for FindingsRemoveTagsUpdate for application/json ContentType.

type FindingsRemoveTagsUpdateMultipartRequestBody added in v0.2.0

type FindingsRemoveTagsUpdateMultipartRequestBody = TagRequest

FindingsRemoveTagsUpdateMultipartRequestBody defines body for FindingsRemoveTagsUpdate for multipart/form-data ContentType.

type FindingsRemoveTagsUpdateResponse

type FindingsRemoveTagsUpdateResponse struct {
	Body         []byte
	HTTPResponse *http.Response
}

func ParseFindingsRemoveTagsUpdateResponse

func ParseFindingsRemoveTagsUpdateResponse(rsp *http.Response) (*FindingsRemoveTagsUpdateResponse, error)

ParseFindingsRemoveTagsUpdateResponse parses an HTTP response from a FindingsRemoveTagsUpdateWithResponse call

func (FindingsRemoveTagsUpdateResponse) Status

Status returns HTTPResponse.Status

func (FindingsRemoveTagsUpdateResponse) StatusCode

func (r FindingsRemoveTagsUpdateResponse) StatusCode() int

StatusCode returns HTTPResponse.StatusCode

type FindingsRequestResponseCreateFormdataRequestBody added in v0.2.0

type FindingsRequestResponseCreateFormdataRequestBody = BurpRawRequestResponseRequest

FindingsRequestResponseCreateFormdataRequestBody defines body for FindingsRequestResponseCreate for application/x-www-form-urlencoded ContentType.

type FindingsRequestResponseCreateJSONRequestBody

type FindingsRequestResponseCreateJSONRequestBody = BurpRawRequestResponseRequest

FindingsRequestResponseCreateJSONRequestBody defines body for FindingsRequestResponseCreate for application/json ContentType.

type FindingsRequestResponseCreateMultipartRequestBody added in v0.2.0

type FindingsRequestResponseCreateMultipartRequestBody = BurpRawRequestResponseRequest

FindingsRequestResponseCreateMultipartRequestBody defines body for FindingsRequestResponseCreate for multipart/form-data ContentType.

type FindingsRequestResponseCreateResponse

type FindingsRequestResponseCreateResponse struct {
	Body         []byte
	HTTPResponse *http.Response
	JSON201      *BurpRawRequestResponse
}

func ParseFindingsRequestResponseCreateResponse

func ParseFindingsRequestResponseCreateResponse(rsp *http.Response) (*FindingsRequestResponseCreateResponse, error)

ParseFindingsRequestResponseCreateResponse parses an HTTP response from a FindingsRequestResponseCreateWithResponse call

func (FindingsRequestResponseCreateResponse) Status

Status returns HTTPResponse.Status

func (FindingsRequestResponseCreateResponse) StatusCode

StatusCode returns HTTPResponse.StatusCode

type FindingsRequestResponseRetrieveResponse

type FindingsRequestResponseRetrieveResponse struct {
	Body         []byte
	HTTPResponse *http.Response
	JSON200      *BurpRawRequestResponse
}

func ParseFindingsRequestResponseRetrieveResponse

func ParseFindingsRequestResponseRetrieveResponse(rsp *http.Response) (*FindingsRequestResponseRetrieveResponse, error)

ParseFindingsRequestResponseRetrieveResponse parses an HTTP response from a FindingsRequestResponseRetrieveWithResponse call

func (FindingsRequestResponseRetrieveResponse) Status

Status returns HTTPResponse.Status

func (FindingsRequestResponseRetrieveResponse) StatusCode

StatusCode returns HTTPResponse.StatusCode

type FindingsRetrieveParams

type FindingsRetrieveParams struct {
	// Prefetch List of fields for which to prefetch model instances and add those to the response
	Prefetch *[]FindingsRetrieveParamsPrefetch `form:"prefetch,omitempty" json:"prefetch,omitempty"`

	// RelatedFields Expand finding external relations (engagement, environment, product,                                             product_type, test, test_type)
	RelatedFields *bool `form:"related_fields,omitempty" json:"related_fields,omitempty"`
}

FindingsRetrieveParams defines parameters for FindingsRetrieve.

type FindingsRetrieveParamsPrefetch

type FindingsRetrieveParamsPrefetch string

FindingsRetrieveParamsPrefetch defines parameters for FindingsRetrieve.

const (
	FindingsRetrieveParamsPrefetchAuthIssues              FindingsRetrieveParamsPrefetch = "auth_issues"
	FindingsRetrieveParamsPrefetchAuthorIssues            FindingsRetrieveParamsPrefetch = "author_issues"
	FindingsRetrieveParamsPrefetchConfigIssues            FindingsRetrieveParamsPrefetch = "config_issues"
	FindingsRetrieveParamsPrefetchCryptoIssues            FindingsRetrieveParamsPrefetch = "crypto_issues"
	FindingsRetrieveParamsPrefetchDataIssues              FindingsRetrieveParamsPrefetch = "data_issues"
	FindingsRetrieveParamsPrefetchDefectReviewRequestedBy FindingsRetrieveParamsPrefetch = "defect_review_requested_by"
	FindingsRetrieveParamsPrefetchDuplicateFinding        FindingsRetrieveParamsPrefetch = "duplicate_finding"
	FindingsRetrieveParamsPrefetchEndpointSet             FindingsRetrieveParamsPrefetch = "endpoint_set"
	FindingsRetrieveParamsPrefetchEndpoints               FindingsRetrieveParamsPrefetch = "endpoints"
	FindingsRetrieveParamsPrefetchFiles                   FindingsRetrieveParamsPrefetch = "files"
	FindingsRetrieveParamsPrefetchFindingGroupSet         FindingsRetrieveParamsPrefetch = "finding_group_set"
	FindingsRetrieveParamsPrefetchFoundBy                 FindingsRetrieveParamsPrefetch = "found_by"
	FindingsRetrieveParamsPrefetchLastReviewedBy          FindingsRetrieveParamsPrefetch = "last_reviewed_by"
	FindingsRetrieveParamsPrefetchMitigatedBy             FindingsRetrieveParamsPrefetch = "mitigated_by"
	FindingsRetrieveParamsPrefetchNotes                   FindingsRetrieveParamsPrefetch = "notes"
	FindingsRetrieveParamsPrefetchOtherIssues             FindingsRetrieveParamsPrefetch = "other_issues"
	FindingsRetrieveParamsPrefetchReporter                FindingsRetrieveParamsPrefetch = "reporter"
	FindingsRetrieveParamsPrefetchReviewRequestedBy       FindingsRetrieveParamsPrefetch = "review_requested_by"
	FindingsRetrieveParamsPrefetchReviewers               FindingsRetrieveParamsPrefetch = "reviewers"
	FindingsRetrieveParamsPrefetchRiskAcceptanceSet       FindingsRetrieveParamsPrefetch = "risk_acceptance_set"
	FindingsRetrieveParamsPrefetchSensitiveIssues         FindingsRetrieveParamsPrefetch = "sensitive_issues"
	FindingsRetrieveParamsPrefetchSessionIssues           FindingsRetrieveParamsPrefetch = "session_issues"
	FindingsRetrieveParamsPrefetchSonarqubeIssue          FindingsRetrieveParamsPrefetch = "sonarqube_issue"
	FindingsRetrieveParamsPrefetchTest                    FindingsRetrieveParamsPrefetch = "test"
	FindingsRetrieveParamsPrefetchTestImportSet           FindingsRetrieveParamsPrefetch = "test_import_set"
)

Defines values for FindingsRetrieveParamsPrefetch.

type FindingsRetrieveResponse

type FindingsRetrieveResponse struct {
	Body         []byte
	HTTPResponse *http.Response
	JSON200      *Finding
}

func ParseFindingsRetrieveResponse

func ParseFindingsRetrieveResponse(rsp *http.Response) (*FindingsRetrieveResponse, error)

ParseFindingsRetrieveResponse parses an HTTP response from a FindingsRetrieveWithResponse call

func (FindingsRetrieveResponse) Status

func (r FindingsRetrieveResponse) Status() string

Status returns HTTPResponse.Status

func (FindingsRetrieveResponse) StatusCode

func (r FindingsRetrieveResponse) StatusCode() int

StatusCode returns HTTPResponse.StatusCode

type FindingsTagsCreateFormdataRequestBody added in v0.2.0

type FindingsTagsCreateFormdataRequestBody = TagRequest

FindingsTagsCreateFormdataRequestBody defines body for FindingsTagsCreate for application/x-www-form-urlencoded ContentType.

type FindingsTagsCreateJSONRequestBody

type FindingsTagsCreateJSONRequestBody = TagRequest

FindingsTagsCreateJSONRequestBody defines body for FindingsTagsCreate for application/json ContentType.

type FindingsTagsCreateMultipartRequestBody added in v0.2.0

type FindingsTagsCreateMultipartRequestBody = TagRequest

FindingsTagsCreateMultipartRequestBody defines body for FindingsTagsCreate for multipart/form-data ContentType.

type FindingsTagsCreateResponse

type FindingsTagsCreateResponse struct {
	Body         []byte
	HTTPResponse *http.Response
	JSON201      *Tag
}

func ParseFindingsTagsCreateResponse

func ParseFindingsTagsCreateResponse(rsp *http.Response) (*FindingsTagsCreateResponse, error)

ParseFindingsTagsCreateResponse parses an HTTP response from a FindingsTagsCreateWithResponse call

func (FindingsTagsCreateResponse) Status

Status returns HTTPResponse.Status

func (FindingsTagsCreateResponse) StatusCode

func (r FindingsTagsCreateResponse) StatusCode() int

StatusCode returns HTTPResponse.StatusCode

type FindingsTagsRetrieveResponse

type FindingsTagsRetrieveResponse struct {
	Body         []byte
	HTTPResponse *http.Response
	JSON200      *Tag
}

func ParseFindingsTagsRetrieveResponse

func ParseFindingsTagsRetrieveResponse(rsp *http.Response) (*FindingsTagsRetrieveResponse, error)

ParseFindingsTagsRetrieveResponse parses an HTTP response from a FindingsTagsRetrieveWithResponse call

func (FindingsTagsRetrieveResponse) Status

Status returns HTTPResponse.Status

func (FindingsTagsRetrieveResponse) StatusCode

func (r FindingsTagsRetrieveResponse) StatusCode() int

StatusCode returns HTTPResponse.StatusCode

type FindingsUpdateFormdataRequestBody added in v0.2.0

type FindingsUpdateFormdataRequestBody = FindingRequest

FindingsUpdateFormdataRequestBody defines body for FindingsUpdate for application/x-www-form-urlencoded ContentType.

type FindingsUpdateJSONRequestBody

type FindingsUpdateJSONRequestBody = FindingRequest

FindingsUpdateJSONRequestBody defines body for FindingsUpdate for application/json ContentType.

type FindingsUpdateMultipartRequestBody added in v0.2.0

type FindingsUpdateMultipartRequestBody = FindingRequest

FindingsUpdateMultipartRequestBody defines body for FindingsUpdate for multipart/form-data ContentType.

type FindingsUpdateResponse

type FindingsUpdateResponse struct {
	Body         []byte
	HTTPResponse *http.Response
	JSON200      *Finding
}

func ParseFindingsUpdateResponse

func ParseFindingsUpdateResponse(rsp *http.Response) (*FindingsUpdateResponse, error)

ParseFindingsUpdateResponse parses an HTTP response from a FindingsUpdateWithResponse call

func (FindingsUpdateResponse) Status

func (r FindingsUpdateResponse) Status() string

Status returns HTTPResponse.Status

func (FindingsUpdateResponse) StatusCode

func (r FindingsUpdateResponse) StatusCode() int

StatusCode returns HTTPResponse.StatusCode

type GlobalRole

type GlobalRole struct {
	Group *int `json:"group"`
	Id    *int `json:"id,omitempty"`

	// Role The global role will be applied to all product types and products.
	Role *int `json:"role"`
	User *int `json:"user"`
}

GlobalRole defines model for GlobalRole.

type GlobalRoleRequest added in v0.2.0

type GlobalRoleRequest struct {
	Group *int `json:"group"`

	// Role The global role will be applied to all product types and products.
	Role *int `json:"role"`
	User *int `json:"user"`
}

GlobalRoleRequest defines model for GlobalRoleRequest.

type GlobalRolesCreateFormdataRequestBody added in v0.2.0

type GlobalRolesCreateFormdataRequestBody = GlobalRoleRequest

GlobalRolesCreateFormdataRequestBody defines body for GlobalRolesCreate for application/x-www-form-urlencoded ContentType.

type GlobalRolesCreateJSONRequestBody

type GlobalRolesCreateJSONRequestBody = GlobalRoleRequest

GlobalRolesCreateJSONRequestBody defines body for GlobalRolesCreate for application/json ContentType.

type GlobalRolesCreateMultipartRequestBody added in v0.2.0

type GlobalRolesCreateMultipartRequestBody = GlobalRoleRequest

GlobalRolesCreateMultipartRequestBody defines body for GlobalRolesCreate for multipart/form-data ContentType.

type GlobalRolesCreateResponse

type GlobalRolesCreateResponse struct {
	Body         []byte
	HTTPResponse *http.Response
	JSON201      *GlobalRole
}

func ParseGlobalRolesCreateResponse

func ParseGlobalRolesCreateResponse(rsp *http.Response) (*GlobalRolesCreateResponse, error)

ParseGlobalRolesCreateResponse parses an HTTP response from a GlobalRolesCreateWithResponse call

func (GlobalRolesCreateResponse) Status

func (r GlobalRolesCreateResponse) Status() string

Status returns HTTPResponse.Status

func (GlobalRolesCreateResponse) StatusCode

func (r GlobalRolesCreateResponse) StatusCode() int

StatusCode returns HTTPResponse.StatusCode

type GlobalRolesDeletePreviewListParams added in v0.2.0

type GlobalRolesDeletePreviewListParams struct {
	// Limit Number of results to return per page.
	Limit *int `form:"limit,omitempty" json:"limit,omitempty"`

	// Offset The initial index from which to return the results.
	Offset *int `form:"offset,omitempty" json:"offset,omitempty"`
}

GlobalRolesDeletePreviewListParams defines parameters for GlobalRolesDeletePreviewList.

type GlobalRolesDeletePreviewListResponse added in v0.2.0

type GlobalRolesDeletePreviewListResponse struct {
	Body         []byte
	HTTPResponse *http.Response
	JSON200      *PaginatedDeletePreviewList
}

func ParseGlobalRolesDeletePreviewListResponse added in v0.2.0

func ParseGlobalRolesDeletePreviewListResponse(rsp *http.Response) (*GlobalRolesDeletePreviewListResponse, error)

ParseGlobalRolesDeletePreviewListResponse parses an HTTP response from a GlobalRolesDeletePreviewListWithResponse call

func (GlobalRolesDeletePreviewListResponse) Status added in v0.2.0

Status returns HTTPResponse.Status

func (GlobalRolesDeletePreviewListResponse) StatusCode added in v0.2.0

StatusCode returns HTTPResponse.StatusCode

type GlobalRolesDestroyResponse

type GlobalRolesDestroyResponse struct {
	Body         []byte
	HTTPResponse *http.Response
}

func ParseGlobalRolesDestroyResponse

func ParseGlobalRolesDestroyResponse(rsp *http.Response) (*GlobalRolesDestroyResponse, error)

ParseGlobalRolesDestroyResponse parses an HTTP response from a GlobalRolesDestroyWithResponse call

func (GlobalRolesDestroyResponse) Status

Status returns HTTPResponse.Status

func (GlobalRolesDestroyResponse) StatusCode

func (r GlobalRolesDestroyResponse) StatusCode() int

StatusCode returns HTTPResponse.StatusCode

type GlobalRolesListParams

type GlobalRolesListParams struct {
	Group *int `form:"group,omitempty" json:"group,omitempty"`
	Id    *int `form:"id,omitempty" json:"id,omitempty"`

	// Limit Number of results to return per page.
	Limit *int `form:"limit,omitempty" json:"limit,omitempty"`

	// Offset The initial index from which to return the results.
	Offset *int `form:"offset,omitempty" json:"offset,omitempty"`
	Role   *int `form:"role,omitempty" json:"role,omitempty"`
	User   *int `form:"user,omitempty" json:"user,omitempty"`
}

GlobalRolesListParams defines parameters for GlobalRolesList.

type GlobalRolesListResponse

type GlobalRolesListResponse struct {
	Body         []byte
	HTTPResponse *http.Response
	JSON200      *PaginatedGlobalRoleList
}

func ParseGlobalRolesListResponse

func ParseGlobalRolesListResponse(rsp *http.Response) (*GlobalRolesListResponse, error)

ParseGlobalRolesListResponse parses an HTTP response from a GlobalRolesListWithResponse call

func (GlobalRolesListResponse) Status

func (r GlobalRolesListResponse) Status() string

Status returns HTTPResponse.Status

func (GlobalRolesListResponse) StatusCode

func (r GlobalRolesListResponse) StatusCode() int

StatusCode returns HTTPResponse.StatusCode

type GlobalRolesPartialUpdateFormdataRequestBody added in v0.2.0

type GlobalRolesPartialUpdateFormdataRequestBody = PatchedGlobalRoleRequest

GlobalRolesPartialUpdateFormdataRequestBody defines body for GlobalRolesPartialUpdate for application/x-www-form-urlencoded ContentType.

type GlobalRolesPartialUpdateJSONRequestBody

type GlobalRolesPartialUpdateJSONRequestBody = PatchedGlobalRoleRequest

GlobalRolesPartialUpdateJSONRequestBody defines body for GlobalRolesPartialUpdate for application/json ContentType.

type GlobalRolesPartialUpdateMultipartRequestBody added in v0.2.0

type GlobalRolesPartialUpdateMultipartRequestBody = PatchedGlobalRoleRequest

GlobalRolesPartialUpdateMultipartRequestBody defines body for GlobalRolesPartialUpdate for multipart/form-data ContentType.

type GlobalRolesPartialUpdateResponse

type GlobalRolesPartialUpdateResponse struct {
	Body         []byte
	HTTPResponse *http.Response
	JSON200      *GlobalRole
}

func ParseGlobalRolesPartialUpdateResponse

func ParseGlobalRolesPartialUpdateResponse(rsp *http.Response) (*GlobalRolesPartialUpdateResponse, error)

ParseGlobalRolesPartialUpdateResponse parses an HTTP response from a GlobalRolesPartialUpdateWithResponse call

func (GlobalRolesPartialUpdateResponse) Status

Status returns HTTPResponse.Status

func (GlobalRolesPartialUpdateResponse) StatusCode

func (r GlobalRolesPartialUpdateResponse) StatusCode() int

StatusCode returns HTTPResponse.StatusCode

type GlobalRolesRetrieveResponse

type GlobalRolesRetrieveResponse struct {
	Body         []byte
	HTTPResponse *http.Response
	JSON200      *GlobalRole
}

func ParseGlobalRolesRetrieveResponse

func ParseGlobalRolesRetrieveResponse(rsp *http.Response) (*GlobalRolesRetrieveResponse, error)

ParseGlobalRolesRetrieveResponse parses an HTTP response from a GlobalRolesRetrieveWithResponse call

func (GlobalRolesRetrieveResponse) Status

Status returns HTTPResponse.Status

func (GlobalRolesRetrieveResponse) StatusCode

func (r GlobalRolesRetrieveResponse) StatusCode() int

StatusCode returns HTTPResponse.StatusCode

type GlobalRolesUpdateFormdataRequestBody added in v0.2.0

type GlobalRolesUpdateFormdataRequestBody = GlobalRoleRequest

GlobalRolesUpdateFormdataRequestBody defines body for GlobalRolesUpdate for application/x-www-form-urlencoded ContentType.

type GlobalRolesUpdateJSONRequestBody

type GlobalRolesUpdateJSONRequestBody = GlobalRoleRequest

GlobalRolesUpdateJSONRequestBody defines body for GlobalRolesUpdate for application/json ContentType.

type GlobalRolesUpdateMultipartRequestBody added in v0.2.0

type GlobalRolesUpdateMultipartRequestBody = GlobalRoleRequest

GlobalRolesUpdateMultipartRequestBody defines body for GlobalRolesUpdate for multipart/form-data ContentType.

type GlobalRolesUpdateResponse

type GlobalRolesUpdateResponse struct {
	Body         []byte
	HTTPResponse *http.Response
	JSON200      *GlobalRole
}

func ParseGlobalRolesUpdateResponse

func ParseGlobalRolesUpdateResponse(rsp *http.Response) (*GlobalRolesUpdateResponse, error)

ParseGlobalRolesUpdateResponse parses an HTTP response from a GlobalRolesUpdateWithResponse call

func (GlobalRolesUpdateResponse) Status

func (r GlobalRolesUpdateResponse) Status() string

Status returns HTTPResponse.Status

func (GlobalRolesUpdateResponse) StatusCode

func (r GlobalRolesUpdateResponse) StatusCode() int

StatusCode returns HTTPResponse.StatusCode

type HttpRequestDoer

type HttpRequestDoer interface {
	Do(req *http.Request) (*http.Response, error)
}

Doer performs HTTP requests.

The standard http.Client implements this interface.

type ImportLanguages

type ImportLanguages struct {
	File    string `json:"file"`
	Product int    `json:"product"`
}

ImportLanguages defines model for ImportLanguages.

type ImportLanguagesCreateMultipartRequestBody added in v0.2.0

type ImportLanguagesCreateMultipartRequestBody = ImportLanguagesRequest

ImportLanguagesCreateMultipartRequestBody defines body for ImportLanguagesCreate for multipart/form-data ContentType.

type ImportLanguagesCreateResponse

type ImportLanguagesCreateResponse struct {
	Body         []byte
	HTTPResponse *http.Response
	JSON201      *ImportLanguages
}

func ParseImportLanguagesCreateResponse

func ParseImportLanguagesCreateResponse(rsp *http.Response) (*ImportLanguagesCreateResponse, error)

ParseImportLanguagesCreateResponse parses an HTTP response from a ImportLanguagesCreateWithResponse call

func (ImportLanguagesCreateResponse) Status

Status returns HTTPResponse.Status

func (ImportLanguagesCreateResponse) StatusCode

func (r ImportLanguagesCreateResponse) StatusCode() int

StatusCode returns HTTPResponse.StatusCode

type ImportLanguagesRequest added in v0.2.0

type ImportLanguagesRequest struct {
	File    openapi_types.File `json:"file"`
	Product int                `json:"product"`
}

ImportLanguagesRequest defines model for ImportLanguagesRequest.

type ImportScan

type ImportScan struct {
	// Active Override the active setting from the tool.
	Active               bool  `json:"active"`
	ApiScanConfiguration *int  `json:"api_scan_configuration"`
	AutoCreateContext    *bool `json:"auto_create_context,omitempty"`

	// BranchTag Branch or Tag that was scanned.
	BranchTag *string `json:"branch_tag,omitempty"`

	// BuildId ID of the build that was scanned.
	BuildId *string `json:"build_id,omitempty"`

	// CloseOldFindings Select if old findings no longer present in the report get closed as mitigated when importing. If service has been set, only the findings for this service will be closed.
	CloseOldFindings *bool `json:"close_old_findings,omitempty"`

	// CloseOldFindingsProductScope Select if close_old_findings applies to all findings of the same type in the product. By default, it is false meaning that only old findings of the same type in the engagement are in scope.
	CloseOldFindingsProductScope *bool `json:"close_old_findings_product_scope,omitempty"`

	// CommitHash Commit that was scanned.
	CommitHash *string `json:"commit_hash,omitempty"`

	// CreateFindingGroupsForAllFindings If set to false, finding groups will only be created when there is more than one grouped finding
	CreateFindingGroupsForAllFindings *bool `json:"create_finding_groups_for_all_findings,omitempty"`
	DeduplicationOnEngagement         *bool `json:"deduplication_on_engagement,omitempty"`

	// EndpointToAdd The IP address, host name or full URL. It must be valid
	EndpointToAdd *int `json:"endpoint_to_add,omitempty"`
	Engagement    *int `json:"engagement,omitempty"`

	// EngagementEndDate End Date for Engagement. Default is current time + 365 days. Required format year-month-day
	EngagementEndDate *openapi_types.Date `json:"engagement_end_date,omitempty"`
	EngagementId      *int                `json:"engagement_id,omitempty"`
	EngagementName    *string             `json:"engagement_name,omitempty"`
	Environment       *string             `json:"environment,omitempty"`
	File              *string             `json:"file,omitempty"`

	// GroupBy Choose an option to automatically group new findings by the chosen option.
	//
	// * `component_name` - Component Name
	// * `component_name+component_version` - Component Name + Version
	// * `file_path` - File path
	// * `finding_title` - Finding Title
	GroupBy *ImportScanGroupBy `json:"group_by,omitempty"`
	Lead    *int               `json:"lead"`

	// MinimumSeverity Minimum severity level to be imported
	//
	// * `Info` - Info
	// * `Low` - Low
	// * `Medium` - Medium
	// * `High` - High
	// * `Critical` - Critical
	MinimumSeverity *ImportScanMinimumSeverity `json:"minimum_severity,omitempty"`
	ProductId       *int                       `json:"product_id,omitempty"`
	ProductName     *string                    `json:"product_name,omitempty"`
	ProductTypeId   *int                       `json:"product_type_id,omitempty"`
	ProductTypeName *string                    `json:"product_type_name,omitempty"`
	PushToJira      *bool                      `json:"push_to_jira,omitempty"`

	// ScanDate Scan completion date will be used on all findings.
	ScanDate *openapi_types.Date `json:"scan_date,omitempty"`

	// ScanType * `Acunetix Scan` - Acunetix Scan
	// * `Acunetix360 Scan` - Acunetix360 Scan
	// * `Anchore Engine Scan` - Anchore Engine Scan
	// * `Anchore Enterprise Policy Check` - Anchore Enterprise Policy Check
	// * `Anchore Grype` - Anchore Grype
	// * `AnchoreCTL Policies Report` - AnchoreCTL Policies Report
	// * `AnchoreCTL Vuln Report` - AnchoreCTL Vuln Report
	// * `AppSpider Scan` - AppSpider Scan
	// * `Aqua Scan` - Aqua Scan
	// * `Arachni Scan` - Arachni Scan
	// * `AuditJS Scan` - AuditJS Scan
	// * `AWS Prowler Scan` - AWS Prowler Scan
	// * `AWS Prowler V3` - AWS Prowler V3
	// * `AWS Scout2 Scan` - AWS Scout2 Scan
	// * `AWS Security Finding Format (ASFF) Scan` - AWS Security Finding Format (ASFF) Scan
	// * `AWS Security Hub Scan` - AWS Security Hub Scan
	// * `Azure Security Center Recommendations Scan` - Azure Security Center Recommendations Scan
	// * `Bandit Scan` - Bandit Scan
	// * `BlackDuck API` - BlackDuck API
	// * `Blackduck Component Risk` - Blackduck Component Risk
	// * `Blackduck Hub Scan` - Blackduck Hub Scan
	// * `Brakeman Scan` - Brakeman Scan
	// * `Bugcrowd API Import` - Bugcrowd API Import
	// * `BugCrowd Scan` - BugCrowd Scan
	// * `Bundler-Audit Scan` - Bundler-Audit Scan
	// * `Burp Enterprise Scan` - Burp Enterprise Scan
	// * `Burp GraphQL API` - Burp GraphQL API
	// * `Burp REST API` - Burp REST API
	// * `Burp Scan` - Burp Scan
	// * `CargoAudit Scan` - CargoAudit Scan
	// * `Checkmarx OSA` - Checkmarx OSA
	// * `Checkmarx Scan` - Checkmarx Scan
	// * `Checkmarx Scan detailed` - Checkmarx Scan detailed
	// * `Checkov Scan` - Checkov Scan
	// * `Clair Klar Scan` - Clair Klar Scan
	// * `Clair Scan` - Clair Scan
	// * `Cloudsploit Scan` - Cloudsploit Scan
	// * `Cobalt.io API Import` - Cobalt.io API Import
	// * `Cobalt.io Scan` - Cobalt.io Scan
	// * `Codechecker Report native` - Codechecker Report native
	// * `Contrast Scan` - Contrast Scan
	// * `Coverity API` - Coverity API
	// * `Crashtest Security JSON File` - Crashtest Security JSON File
	// * `Crashtest Security XML File` - Crashtest Security XML File
	// * `CredScan Scan` - CredScan Scan
	// * `CycloneDX Scan` - CycloneDX Scan
	// * `DawnScanner Scan` - DawnScanner Scan
	// * `Dependency Check Scan` - Dependency Check Scan
	// * `Dependency Track Finding Packaging Format (FPF) Export` - Dependency Track Finding Packaging Format (FPF) Export
	// * `Detect-secrets Scan` - Detect-secrets Scan
	// * `docker-bench-security Scan` - docker-bench-security Scan
	// * `Dockle Scan` - Dockle Scan
	// * `DrHeader JSON Importer` - DrHeader JSON Importer
	// * `DSOP Scan` - DSOP Scan
	// * `Edgescan Scan` - Edgescan Scan
	// * `ESLint Scan` - ESLint Scan
	// * `Fortify Scan` - Fortify Scan
	// * `Generic Findings Import` - Generic Findings Import
	// * `Ggshield Scan` - Ggshield Scan
	// * `Github Vulnerability Scan` - Github Vulnerability Scan
	// * `GitLab API Fuzzing Report Scan` - GitLab API Fuzzing Report Scan
	// * `GitLab Container Scan` - GitLab Container Scan
	// * `GitLab DAST Report` - GitLab DAST Report
	// * `GitLab Dependency Scanning Report` - GitLab Dependency Scanning Report
	// * `GitLab SAST Report` - GitLab SAST Report
	// * `GitLab Secret Detection Report` - GitLab Secret Detection Report
	// * `Gitleaks Scan` - Gitleaks Scan
	// * `Gosec Scanner` - Gosec Scanner
	// * `Govulncheck Scanner` - Govulncheck Scanner
	// * `HackerOne Cases` - HackerOne Cases
	// * `Hadolint Dockerfile check` - Hadolint Dockerfile check
	// * `Harbor Vulnerability Scan` - Harbor Vulnerability Scan
	// * `Horusec Scan` - Horusec Scan
	// * `HuskyCI Report` - HuskyCI Report
	// * `Hydra Scan` - Hydra Scan
	// * `IBM AppScan DAST` - IBM AppScan DAST
	// * `Immuniweb Scan` - Immuniweb Scan
	// * `IntSights Report` - IntSights Report
	// * `JFrog Xray API Summary Artifact Scan` - JFrog Xray API Summary Artifact Scan
	// * `JFrog Xray Scan` - JFrog Xray Scan
	// * `JFrog Xray Unified Scan` - JFrog Xray Unified Scan
	// * `KICS Scan` - KICS Scan
	// * `Kiuwan Scan` - Kiuwan Scan
	// * `kube-bench Scan` - kube-bench Scan
	// * `Meterian Scan` - Meterian Scan
	// * `Microfocus Webinspect Scan` - Microfocus Webinspect Scan
	// * `MobSF Scan` - MobSF Scan
	// * `Mobsfscan Scan` - Mobsfscan Scan
	// * `Mozilla Observatory Scan` - Mozilla Observatory Scan
	// * `Netsparker Scan` - Netsparker Scan
	// * `NeuVector (compliance)` - NeuVector (compliance)
	// * `NeuVector (REST)` - NeuVector (REST)
	// * `Nexpose Scan` - Nexpose Scan
	// * `Nikto Scan` - Nikto Scan
	// * `Nmap Scan` - Nmap Scan
	// * `Node Security Platform Scan` - Node Security Platform Scan
	// * `NPM Audit Scan` - NPM Audit Scan
	// * `Nuclei Scan` - Nuclei Scan
	// * `Openscap Vulnerability Scan` - Openscap Vulnerability Scan
	// * `OpenVAS CSV` - OpenVAS CSV
	// * `ORT evaluated model Importer` - ORT evaluated model Importer
	// * `OssIndex Devaudit SCA Scan Importer` - OssIndex Devaudit SCA Scan Importer
	// * `Outpost24 Scan` - Outpost24 Scan
	// * `PHP Security Audit v2` - PHP Security Audit v2
	// * `PHP Symfony Security Check` - PHP Symfony Security Check
	// * `pip-audit Scan` - pip-audit Scan
	// * `PMD Scan` - PMD Scan
	// * `Popeye Scan` - Popeye Scan
	// * `PWN SAST` - PWN SAST
	// * `Qualys Infrastructure Scan (WebGUI XML)` - Qualys Infrastructure Scan (WebGUI XML)
	// * `Qualys Scan` - Qualys Scan
	// * `Qualys Webapp Scan` - Qualys Webapp Scan
	// * `Retire.js Scan` - Retire.js Scan
	// * `Risk Recon API Importer` - Risk Recon API Importer
	// * `Rubocop Scan` - Rubocop Scan
	// * `Rusty Hog Scan` - Rusty Hog Scan
	// * `SARIF` - SARIF
	// * `Scantist Scan` - Scantist Scan
	// * `Scout Suite Scan` - Scout Suite Scan
	// * `Semgrep JSON Report` - Semgrep JSON Report
	// * `SKF Scan` - SKF Scan
	// * `Snyk Scan` - Snyk Scan
	// * `Solar Appscreener Scan` - Solar Appscreener Scan
	// * `SonarQube API Import` - SonarQube API Import
	// * `SonarQube Scan` - SonarQube Scan
	// * `SonarQube Scan detailed` - SonarQube Scan detailed
	// * `Sonatype Application Scan` - Sonatype Application Scan
	// * `SpotBugs Scan` - SpotBugs Scan
	// * `SSL Labs Scan` - SSL Labs Scan
	// * `Sslscan` - Sslscan
	// * `Sslyze Scan` - Sslyze Scan
	// * `SSLyze Scan (JSON)` - SSLyze Scan (JSON)
	// * `StackHawk HawkScan` - StackHawk HawkScan
	// * `Talisman Scan` - Talisman Scan
	// * `Tenable Scan` - Tenable Scan
	// * `Terrascan Scan` - Terrascan Scan
	// * `Testssl Scan` - Testssl Scan
	// * `TFSec Scan` - TFSec Scan
	// * `Trivy Operator Scan` - Trivy Operator Scan
	// * `Trivy Scan` - Trivy Scan
	// * `Trufflehog Scan` - Trufflehog Scan
	// * `Trufflehog3 Scan` - Trufflehog3 Scan
	// * `Trustwave Fusion API Scan` - Trustwave Fusion API Scan
	// * `Trustwave Scan (CSV)` - Trustwave Scan (CSV)
	// * `Twistlock Image Scan` - Twistlock Image Scan
	// * `VCG Scan` - VCG Scan
	// * `Veracode Scan` - Veracode Scan
	// * `Veracode SourceClear Scan` - Veracode SourceClear Scan
	// * `Vulners` - Vulners
	// * `Wapiti Scan` - Wapiti Scan
	// * `Wazuh` - Wazuh
	// * `WFuzz JSON report` - WFuzz JSON report
	// * `Whispers Scan` - Whispers Scan
	// * `WhiteHat Sentinel` - WhiteHat Sentinel
	// * `Whitesource Scan` - Whitesource Scan
	// * `Wpscan` - Wpscan
	// * `Xanitizer Scan` - Xanitizer Scan
	// * `Yarn Audit Scan` - Yarn Audit Scan
	// * `ZAP Scan` - ZAP Scan
	ScanType ImportScanScanType `json:"scan_type"`

	// Service A service is a self-contained piece of functionality within a Product. This is an optional field which is used in deduplication and closing of old findings when set. This affects the whole engagement/product depending on your deduplication scope.
	Service *string `json:"service,omitempty"`

	// SourceCodeManagementUri Resource link to source code
	SourceCodeManagementUri *string           `json:"source_code_management_uri,omitempty"`
	Statistics              *ImportStatistics `json:"statistics,omitempty"`

	// Tags Add tags that help describe this scan.
	Tags      *[]string `json:"tags,omitempty"`
	Test      *int      `json:"test,omitempty"`
	TestId    *int      `json:"test_id,omitempty"`
	TestTitle *string   `json:"test_title,omitempty"`

	// Verified Override the verified setting from the tool.
	Verified bool `json:"verified"`

	// Version Version that was scanned.
	Version *string `json:"version,omitempty"`
}

ImportScan defines model for ImportScan.

type ImportScanCreateMultipartRequestBody added in v0.2.0

type ImportScanCreateMultipartRequestBody = ImportScanRequest

ImportScanCreateMultipartRequestBody defines body for ImportScanCreate for multipart/form-data ContentType.

type ImportScanCreateResponse

type ImportScanCreateResponse struct {
	Body         []byte
	HTTPResponse *http.Response
	JSON201      *ImportScan
}

func ParseImportScanCreateResponse

func ParseImportScanCreateResponse(rsp *http.Response) (*ImportScanCreateResponse, error)

ParseImportScanCreateResponse parses an HTTP response from a ImportScanCreateWithResponse call

func (ImportScanCreateResponse) Status

func (r ImportScanCreateResponse) Status() string

Status returns HTTPResponse.Status

func (ImportScanCreateResponse) StatusCode

func (r ImportScanCreateResponse) StatusCode() int

StatusCode returns HTTPResponse.StatusCode

type ImportScanGroupBy

type ImportScanGroupBy string

ImportScanGroupBy Choose an option to automatically group new findings by the chosen option.

* `component_name` - Component Name * `component_name+component_version` - Component Name + Version * `file_path` - File path * `finding_title` - Finding Title

const (
	ImportScanGroupByComponentName                 ImportScanGroupBy = "component_name"
	ImportScanGroupByComponentNameComponentVersion ImportScanGroupBy = "component_name+component_version"
	ImportScanGroupByFilePath                      ImportScanGroupBy = "file_path"
	ImportScanGroupByFindingTitle                  ImportScanGroupBy = "finding_title"
)

Defines values for ImportScanGroupBy.

type ImportScanMinimumSeverity

type ImportScanMinimumSeverity string

ImportScanMinimumSeverity Minimum severity level to be imported

* `Info` - Info * `Low` - Low * `Medium` - Medium * `High` - High * `Critical` - Critical

const (
	ImportScanMinimumSeverityCritical ImportScanMinimumSeverity = "Critical"
	ImportScanMinimumSeverityHigh     ImportScanMinimumSeverity = "High"
	ImportScanMinimumSeverityInfo     ImportScanMinimumSeverity = "Info"
	ImportScanMinimumSeverityLow      ImportScanMinimumSeverity = "Low"
	ImportScanMinimumSeverityMedium   ImportScanMinimumSeverity = "Medium"
)

Defines values for ImportScanMinimumSeverity.

type ImportScanRequest added in v0.2.0

type ImportScanRequest struct {
	// Active Override the active setting from the tool.
	Active               bool  `json:"active"`
	ApiScanConfiguration *int  `json:"api_scan_configuration"`
	AutoCreateContext    *bool `json:"auto_create_context,omitempty"`

	// BranchTag Branch or Tag that was scanned.
	BranchTag *string `json:"branch_tag,omitempty"`

	// BuildId ID of the build that was scanned.
	BuildId *string `json:"build_id,omitempty"`

	// CloseOldFindings Select if old findings no longer present in the report get closed as mitigated when importing. If service has been set, only the findings for this service will be closed.
	CloseOldFindings *bool `json:"close_old_findings,omitempty"`

	// CloseOldFindingsProductScope Select if close_old_findings applies to all findings of the same type in the product. By default, it is false meaning that only old findings of the same type in the engagement are in scope.
	CloseOldFindingsProductScope *bool `json:"close_old_findings_product_scope,omitempty"`

	// CommitHash Commit that was scanned.
	CommitHash *string `json:"commit_hash,omitempty"`

	// CreateFindingGroupsForAllFindings If set to false, finding groups will only be created when there is more than one grouped finding
	CreateFindingGroupsForAllFindings *bool `json:"create_finding_groups_for_all_findings,omitempty"`
	DeduplicationOnEngagement         *bool `json:"deduplication_on_engagement,omitempty"`

	// EndpointToAdd The IP address, host name or full URL. It must be valid
	EndpointToAdd *int `json:"endpoint_to_add,omitempty"`
	Engagement    *int `json:"engagement,omitempty"`

	// EngagementEndDate End Date for Engagement. Default is current time + 365 days. Required format year-month-day
	EngagementEndDate *openapi_types.Date `json:"engagement_end_date,omitempty"`
	EngagementName    *string             `json:"engagement_name,omitempty"`
	Environment       *string             `json:"environment,omitempty"`
	File              *openapi_types.File `json:"file,omitempty"`

	// GroupBy Choose an option to automatically group new findings by the chosen option.
	//
	// * `component_name` - Component Name
	// * `component_name+component_version` - Component Name + Version
	// * `file_path` - File path
	// * `finding_title` - Finding Title
	GroupBy *ImportScanRequestGroupBy `json:"group_by,omitempty"`
	Lead    *int                      `json:"lead"`

	// MinimumSeverity Minimum severity level to be imported
	//
	// * `Info` - Info
	// * `Low` - Low
	// * `Medium` - Medium
	// * `High` - High
	// * `Critical` - Critical
	MinimumSeverity *ImportScanRequestMinimumSeverity `json:"minimum_severity,omitempty"`
	ProductName     *string                           `json:"product_name,omitempty"`
	ProductTypeName *string                           `json:"product_type_name,omitempty"`
	PushToJira      *bool                             `json:"push_to_jira,omitempty"`

	// ScanDate Scan completion date will be used on all findings.
	ScanDate *openapi_types.Date `json:"scan_date,omitempty"`

	// ScanType * `Acunetix Scan` - Acunetix Scan
	// * `Acunetix360 Scan` - Acunetix360 Scan
	// * `Anchore Engine Scan` - Anchore Engine Scan
	// * `Anchore Enterprise Policy Check` - Anchore Enterprise Policy Check
	// * `Anchore Grype` - Anchore Grype
	// * `AnchoreCTL Policies Report` - AnchoreCTL Policies Report
	// * `AnchoreCTL Vuln Report` - AnchoreCTL Vuln Report
	// * `AppSpider Scan` - AppSpider Scan
	// * `Aqua Scan` - Aqua Scan
	// * `Arachni Scan` - Arachni Scan
	// * `AuditJS Scan` - AuditJS Scan
	// * `AWS Prowler Scan` - AWS Prowler Scan
	// * `AWS Prowler V3` - AWS Prowler V3
	// * `AWS Scout2 Scan` - AWS Scout2 Scan
	// * `AWS Security Finding Format (ASFF) Scan` - AWS Security Finding Format (ASFF) Scan
	// * `AWS Security Hub Scan` - AWS Security Hub Scan
	// * `Azure Security Center Recommendations Scan` - Azure Security Center Recommendations Scan
	// * `Bandit Scan` - Bandit Scan
	// * `BlackDuck API` - BlackDuck API
	// * `Blackduck Component Risk` - Blackduck Component Risk
	// * `Blackduck Hub Scan` - Blackduck Hub Scan
	// * `Brakeman Scan` - Brakeman Scan
	// * `Bugcrowd API Import` - Bugcrowd API Import
	// * `BugCrowd Scan` - BugCrowd Scan
	// * `Bundler-Audit Scan` - Bundler-Audit Scan
	// * `Burp Enterprise Scan` - Burp Enterprise Scan
	// * `Burp GraphQL API` - Burp GraphQL API
	// * `Burp REST API` - Burp REST API
	// * `Burp Scan` - Burp Scan
	// * `CargoAudit Scan` - CargoAudit Scan
	// * `Checkmarx OSA` - Checkmarx OSA
	// * `Checkmarx Scan` - Checkmarx Scan
	// * `Checkmarx Scan detailed` - Checkmarx Scan detailed
	// * `Checkov Scan` - Checkov Scan
	// * `Clair Klar Scan` - Clair Klar Scan
	// * `Clair Scan` - Clair Scan
	// * `Cloudsploit Scan` - Cloudsploit Scan
	// * `Cobalt.io API Import` - Cobalt.io API Import
	// * `Cobalt.io Scan` - Cobalt.io Scan
	// * `Codechecker Report native` - Codechecker Report native
	// * `Contrast Scan` - Contrast Scan
	// * `Coverity API` - Coverity API
	// * `Crashtest Security JSON File` - Crashtest Security JSON File
	// * `Crashtest Security XML File` - Crashtest Security XML File
	// * `CredScan Scan` - CredScan Scan
	// * `CycloneDX Scan` - CycloneDX Scan
	// * `DawnScanner Scan` - DawnScanner Scan
	// * `Dependency Check Scan` - Dependency Check Scan
	// * `Dependency Track Finding Packaging Format (FPF) Export` - Dependency Track Finding Packaging Format (FPF) Export
	// * `Detect-secrets Scan` - Detect-secrets Scan
	// * `docker-bench-security Scan` - docker-bench-security Scan
	// * `Dockle Scan` - Dockle Scan
	// * `DrHeader JSON Importer` - DrHeader JSON Importer
	// * `DSOP Scan` - DSOP Scan
	// * `Edgescan Scan` - Edgescan Scan
	// * `ESLint Scan` - ESLint Scan
	// * `Fortify Scan` - Fortify Scan
	// * `Generic Findings Import` - Generic Findings Import
	// * `Ggshield Scan` - Ggshield Scan
	// * `Github Vulnerability Scan` - Github Vulnerability Scan
	// * `GitLab API Fuzzing Report Scan` - GitLab API Fuzzing Report Scan
	// * `GitLab Container Scan` - GitLab Container Scan
	// * `GitLab DAST Report` - GitLab DAST Report
	// * `GitLab Dependency Scanning Report` - GitLab Dependency Scanning Report
	// * `GitLab SAST Report` - GitLab SAST Report
	// * `GitLab Secret Detection Report` - GitLab Secret Detection Report
	// * `Gitleaks Scan` - Gitleaks Scan
	// * `Gosec Scanner` - Gosec Scanner
	// * `Govulncheck Scanner` - Govulncheck Scanner
	// * `HackerOne Cases` - HackerOne Cases
	// * `Hadolint Dockerfile check` - Hadolint Dockerfile check
	// * `Harbor Vulnerability Scan` - Harbor Vulnerability Scan
	// * `Horusec Scan` - Horusec Scan
	// * `HuskyCI Report` - HuskyCI Report
	// * `Hydra Scan` - Hydra Scan
	// * `IBM AppScan DAST` - IBM AppScan DAST
	// * `Immuniweb Scan` - Immuniweb Scan
	// * `IntSights Report` - IntSights Report
	// * `JFrog Xray API Summary Artifact Scan` - JFrog Xray API Summary Artifact Scan
	// * `JFrog Xray Scan` - JFrog Xray Scan
	// * `JFrog Xray Unified Scan` - JFrog Xray Unified Scan
	// * `KICS Scan` - KICS Scan
	// * `Kiuwan Scan` - Kiuwan Scan
	// * `kube-bench Scan` - kube-bench Scan
	// * `Meterian Scan` - Meterian Scan
	// * `Microfocus Webinspect Scan` - Microfocus Webinspect Scan
	// * `MobSF Scan` - MobSF Scan
	// * `Mobsfscan Scan` - Mobsfscan Scan
	// * `Mozilla Observatory Scan` - Mozilla Observatory Scan
	// * `Netsparker Scan` - Netsparker Scan
	// * `NeuVector (compliance)` - NeuVector (compliance)
	// * `NeuVector (REST)` - NeuVector (REST)
	// * `Nexpose Scan` - Nexpose Scan
	// * `Nikto Scan` - Nikto Scan
	// * `Nmap Scan` - Nmap Scan
	// * `Node Security Platform Scan` - Node Security Platform Scan
	// * `NPM Audit Scan` - NPM Audit Scan
	// * `Nuclei Scan` - Nuclei Scan
	// * `Openscap Vulnerability Scan` - Openscap Vulnerability Scan
	// * `OpenVAS CSV` - OpenVAS CSV
	// * `ORT evaluated model Importer` - ORT evaluated model Importer
	// * `OssIndex Devaudit SCA Scan Importer` - OssIndex Devaudit SCA Scan Importer
	// * `Outpost24 Scan` - Outpost24 Scan
	// * `PHP Security Audit v2` - PHP Security Audit v2
	// * `PHP Symfony Security Check` - PHP Symfony Security Check
	// * `pip-audit Scan` - pip-audit Scan
	// * `PMD Scan` - PMD Scan
	// * `Popeye Scan` - Popeye Scan
	// * `PWN SAST` - PWN SAST
	// * `Qualys Infrastructure Scan (WebGUI XML)` - Qualys Infrastructure Scan (WebGUI XML)
	// * `Qualys Scan` - Qualys Scan
	// * `Qualys Webapp Scan` - Qualys Webapp Scan
	// * `Retire.js Scan` - Retire.js Scan
	// * `Risk Recon API Importer` - Risk Recon API Importer
	// * `Rubocop Scan` - Rubocop Scan
	// * `Rusty Hog Scan` - Rusty Hog Scan
	// * `SARIF` - SARIF
	// * `Scantist Scan` - Scantist Scan
	// * `Scout Suite Scan` - Scout Suite Scan
	// * `Semgrep JSON Report` - Semgrep JSON Report
	// * `SKF Scan` - SKF Scan
	// * `Snyk Scan` - Snyk Scan
	// * `Solar Appscreener Scan` - Solar Appscreener Scan
	// * `SonarQube API Import` - SonarQube API Import
	// * `SonarQube Scan` - SonarQube Scan
	// * `SonarQube Scan detailed` - SonarQube Scan detailed
	// * `Sonatype Application Scan` - Sonatype Application Scan
	// * `SpotBugs Scan` - SpotBugs Scan
	// * `SSL Labs Scan` - SSL Labs Scan
	// * `Sslscan` - Sslscan
	// * `Sslyze Scan` - Sslyze Scan
	// * `SSLyze Scan (JSON)` - SSLyze Scan (JSON)
	// * `StackHawk HawkScan` - StackHawk HawkScan
	// * `Talisman Scan` - Talisman Scan
	// * `Tenable Scan` - Tenable Scan
	// * `Terrascan Scan` - Terrascan Scan
	// * `Testssl Scan` - Testssl Scan
	// * `TFSec Scan` - TFSec Scan
	// * `Trivy Operator Scan` - Trivy Operator Scan
	// * `Trivy Scan` - Trivy Scan
	// * `Trufflehog Scan` - Trufflehog Scan
	// * `Trufflehog3 Scan` - Trufflehog3 Scan
	// * `Trustwave Fusion API Scan` - Trustwave Fusion API Scan
	// * `Trustwave Scan (CSV)` - Trustwave Scan (CSV)
	// * `Twistlock Image Scan` - Twistlock Image Scan
	// * `VCG Scan` - VCG Scan
	// * `Veracode Scan` - Veracode Scan
	// * `Veracode SourceClear Scan` - Veracode SourceClear Scan
	// * `Vulners` - Vulners
	// * `Wapiti Scan` - Wapiti Scan
	// * `Wazuh` - Wazuh
	// * `WFuzz JSON report` - WFuzz JSON report
	// * `Whispers Scan` - Whispers Scan
	// * `WhiteHat Sentinel` - WhiteHat Sentinel
	// * `Whitesource Scan` - Whitesource Scan
	// * `Wpscan` - Wpscan
	// * `Xanitizer Scan` - Xanitizer Scan
	// * `Yarn Audit Scan` - Yarn Audit Scan
	// * `ZAP Scan` - ZAP Scan
	ScanType ImportScanRequestScanType `json:"scan_type"`

	// Service A service is a self-contained piece of functionality within a Product. This is an optional field which is used in deduplication and closing of old findings when set. This affects the whole engagement/product depending on your deduplication scope.
	Service *string `json:"service,omitempty"`

	// SourceCodeManagementUri Resource link to source code
	SourceCodeManagementUri *string `json:"source_code_management_uri,omitempty"`

	// Tags Add tags that help describe this scan.
	Tags      *[]string `json:"tags,omitempty"`
	TestTitle *string   `json:"test_title,omitempty"`

	// Verified Override the verified setting from the tool.
	Verified bool `json:"verified"`

	// Version Version that was scanned.
	Version *string `json:"version,omitempty"`
}

ImportScanRequest defines model for ImportScanRequest.

type ImportScanRequestGroupBy added in v0.2.0

type ImportScanRequestGroupBy string

ImportScanRequestGroupBy Choose an option to automatically group new findings by the chosen option.

* `component_name` - Component Name * `component_name+component_version` - Component Name + Version * `file_path` - File path * `finding_title` - Finding Title

const (
	ImportScanRequestGroupByComponentName                 ImportScanRequestGroupBy = "component_name"
	ImportScanRequestGroupByComponentNameComponentVersion ImportScanRequestGroupBy = "component_name+component_version"
	ImportScanRequestGroupByFilePath                      ImportScanRequestGroupBy = "file_path"
	ImportScanRequestGroupByFindingTitle                  ImportScanRequestGroupBy = "finding_title"
)

Defines values for ImportScanRequestGroupBy.

type ImportScanRequestMinimumSeverity added in v0.2.0

type ImportScanRequestMinimumSeverity string

ImportScanRequestMinimumSeverity Minimum severity level to be imported

* `Info` - Info * `Low` - Low * `Medium` - Medium * `High` - High * `Critical` - Critical

const (
	ImportScanRequestMinimumSeverityCritical ImportScanRequestMinimumSeverity = "Critical"
	ImportScanRequestMinimumSeverityHigh     ImportScanRequestMinimumSeverity = "High"
	ImportScanRequestMinimumSeverityInfo     ImportScanRequestMinimumSeverity = "Info"
	ImportScanRequestMinimumSeverityLow      ImportScanRequestMinimumSeverity = "Low"
	ImportScanRequestMinimumSeverityMedium   ImportScanRequestMinimumSeverity = "Medium"
)

Defines values for ImportScanRequestMinimumSeverity.

type ImportScanRequestScanType added in v0.2.0

type ImportScanRequestScanType string

ImportScanRequestScanType * `Acunetix Scan` - Acunetix Scan * `Acunetix360 Scan` - Acunetix360 Scan * `Anchore Engine Scan` - Anchore Engine Scan * `Anchore Enterprise Policy Check` - Anchore Enterprise Policy Check * `Anchore Grype` - Anchore Grype * `AnchoreCTL Policies Report` - AnchoreCTL Policies Report * `AnchoreCTL Vuln Report` - AnchoreCTL Vuln Report * `AppSpider Scan` - AppSpider Scan * `Aqua Scan` - Aqua Scan * `Arachni Scan` - Arachni Scan * `AuditJS Scan` - AuditJS Scan * `AWS Prowler Scan` - AWS Prowler Scan * `AWS Prowler V3` - AWS Prowler V3 * `AWS Scout2 Scan` - AWS Scout2 Scan * `AWS Security Finding Format (ASFF) Scan` - AWS Security Finding Format (ASFF) Scan * `AWS Security Hub Scan` - AWS Security Hub Scan * `Azure Security Center Recommendations Scan` - Azure Security Center Recommendations Scan * `Bandit Scan` - Bandit Scan * `BlackDuck API` - BlackDuck API * `Blackduck Component Risk` - Blackduck Component Risk * `Blackduck Hub Scan` - Blackduck Hub Scan * `Brakeman Scan` - Brakeman Scan * `Bugcrowd API Import` - Bugcrowd API Import * `BugCrowd Scan` - BugCrowd Scan * `Bundler-Audit Scan` - Bundler-Audit Scan * `Burp Enterprise Scan` - Burp Enterprise Scan * `Burp GraphQL API` - Burp GraphQL API * `Burp REST API` - Burp REST API * `Burp Scan` - Burp Scan * `CargoAudit Scan` - CargoAudit Scan * `Checkmarx OSA` - Checkmarx OSA * `Checkmarx Scan` - Checkmarx Scan * `Checkmarx Scan detailed` - Checkmarx Scan detailed * `Checkov Scan` - Checkov Scan * `Clair Klar Scan` - Clair Klar Scan * `Clair Scan` - Clair Scan * `Cloudsploit Scan` - Cloudsploit Scan * `Cobalt.io API Import` - Cobalt.io API Import * `Cobalt.io Scan` - Cobalt.io Scan * `Codechecker Report native` - Codechecker Report native * `Contrast Scan` - Contrast Scan * `Coverity API` - Coverity API * `Crashtest Security JSON File` - Crashtest Security JSON File * `Crashtest Security XML File` - Crashtest Security XML File * `CredScan Scan` - CredScan Scan * `CycloneDX Scan` - CycloneDX Scan * `DawnScanner Scan` - DawnScanner Scan * `Dependency Check Scan` - Dependency Check Scan * `Dependency Track Finding Packaging Format (FPF) Export` - Dependency Track Finding Packaging Format (FPF) Export * `Detect-secrets Scan` - Detect-secrets Scan * `docker-bench-security Scan` - docker-bench-security Scan * `Dockle Scan` - Dockle Scan * `DrHeader JSON Importer` - DrHeader JSON Importer * `DSOP Scan` - DSOP Scan * `Edgescan Scan` - Edgescan Scan * `ESLint Scan` - ESLint Scan * `Fortify Scan` - Fortify Scan * `Generic Findings Import` - Generic Findings Import * `Ggshield Scan` - Ggshield Scan * `Github Vulnerability Scan` - Github Vulnerability Scan * `GitLab API Fuzzing Report Scan` - GitLab API Fuzzing Report Scan * `GitLab Container Scan` - GitLab Container Scan * `GitLab DAST Report` - GitLab DAST Report * `GitLab Dependency Scanning Report` - GitLab Dependency Scanning Report * `GitLab SAST Report` - GitLab SAST Report * `GitLab Secret Detection Report` - GitLab Secret Detection Report * `Gitleaks Scan` - Gitleaks Scan * `Gosec Scanner` - Gosec Scanner * `Govulncheck Scanner` - Govulncheck Scanner * `HackerOne Cases` - HackerOne Cases * `Hadolint Dockerfile check` - Hadolint Dockerfile check * `Harbor Vulnerability Scan` - Harbor Vulnerability Scan * `Horusec Scan` - Horusec Scan * `HuskyCI Report` - HuskyCI Report * `Hydra Scan` - Hydra Scan * `IBM AppScan DAST` - IBM AppScan DAST * `Immuniweb Scan` - Immuniweb Scan * `IntSights Report` - IntSights Report * `JFrog Xray API Summary Artifact Scan` - JFrog Xray API Summary Artifact Scan * `JFrog Xray Scan` - JFrog Xray Scan * `JFrog Xray Unified Scan` - JFrog Xray Unified Scan * `KICS Scan` - KICS Scan * `Kiuwan Scan` - Kiuwan Scan * `kube-bench Scan` - kube-bench Scan * `Meterian Scan` - Meterian Scan * `Microfocus Webinspect Scan` - Microfocus Webinspect Scan * `MobSF Scan` - MobSF Scan * `Mobsfscan Scan` - Mobsfscan Scan * `Mozilla Observatory Scan` - Mozilla Observatory Scan * `Netsparker Scan` - Netsparker Scan * `NeuVector (compliance)` - NeuVector (compliance) * `NeuVector (REST)` - NeuVector (REST) * `Nexpose Scan` - Nexpose Scan * `Nikto Scan` - Nikto Scan * `Nmap Scan` - Nmap Scan * `Node Security Platform Scan` - Node Security Platform Scan * `NPM Audit Scan` - NPM Audit Scan * `Nuclei Scan` - Nuclei Scan * `Openscap Vulnerability Scan` - Openscap Vulnerability Scan * `OpenVAS CSV` - OpenVAS CSV * `ORT evaluated model Importer` - ORT evaluated model Importer * `OssIndex Devaudit SCA Scan Importer` - OssIndex Devaudit SCA Scan Importer * `Outpost24 Scan` - Outpost24 Scan * `PHP Security Audit v2` - PHP Security Audit v2 * `PHP Symfony Security Check` - PHP Symfony Security Check * `pip-audit Scan` - pip-audit Scan * `PMD Scan` - PMD Scan * `Popeye Scan` - Popeye Scan * `PWN SAST` - PWN SAST * `Qualys Infrastructure Scan (WebGUI XML)` - Qualys Infrastructure Scan (WebGUI XML) * `Qualys Scan` - Qualys Scan * `Qualys Webapp Scan` - Qualys Webapp Scan * `Retire.js Scan` - Retire.js Scan * `Risk Recon API Importer` - Risk Recon API Importer * `Rubocop Scan` - Rubocop Scan * `Rusty Hog Scan` - Rusty Hog Scan * `SARIF` - SARIF * `Scantist Scan` - Scantist Scan * `Scout Suite Scan` - Scout Suite Scan * `Semgrep JSON Report` - Semgrep JSON Report * `SKF Scan` - SKF Scan * `Snyk Scan` - Snyk Scan * `Solar Appscreener Scan` - Solar Appscreener Scan * `SonarQube API Import` - SonarQube API Import * `SonarQube Scan` - SonarQube Scan * `SonarQube Scan detailed` - SonarQube Scan detailed * `Sonatype Application Scan` - Sonatype Application Scan * `SpotBugs Scan` - SpotBugs Scan * `SSL Labs Scan` - SSL Labs Scan * `Sslscan` - Sslscan * `Sslyze Scan` - Sslyze Scan * `SSLyze Scan (JSON)` - SSLyze Scan (JSON) * `StackHawk HawkScan` - StackHawk HawkScan * `Talisman Scan` - Talisman Scan * `Tenable Scan` - Tenable Scan * `Terrascan Scan` - Terrascan Scan * `Testssl Scan` - Testssl Scan * `TFSec Scan` - TFSec Scan * `Trivy Operator Scan` - Trivy Operator Scan * `Trivy Scan` - Trivy Scan * `Trufflehog Scan` - Trufflehog Scan * `Trufflehog3 Scan` - Trufflehog3 Scan * `Trustwave Fusion API Scan` - Trustwave Fusion API Scan * `Trustwave Scan (CSV)` - Trustwave Scan (CSV) * `Twistlock Image Scan` - Twistlock Image Scan * `VCG Scan` - VCG Scan * `Veracode Scan` - Veracode Scan * `Veracode SourceClear Scan` - Veracode SourceClear Scan * `Vulners` - Vulners * `Wapiti Scan` - Wapiti Scan * `Wazuh` - Wazuh * `WFuzz JSON report` - WFuzz JSON report * `Whispers Scan` - Whispers Scan * `WhiteHat Sentinel` - WhiteHat Sentinel * `Whitesource Scan` - Whitesource Scan * `Wpscan` - Wpscan * `Xanitizer Scan` - Xanitizer Scan * `Yarn Audit Scan` - Yarn Audit Scan * `ZAP Scan` - ZAP Scan

const (
	ImportScanRequestScanTypeAWSProwlerScan                                 ImportScanRequestScanType = "AWS Prowler Scan"
	ImportScanRequestScanTypeAWSProwlerV3                                   ImportScanRequestScanType = "AWS Prowler V3"
	ImportScanRequestScanTypeAWSScout2Scan                                  ImportScanRequestScanType = "AWS Scout2 Scan"
	ImportScanRequestScanTypeAWSSecurityFindingFormatASFFScan               ImportScanRequestScanType = "AWS Security Finding Format (ASFF) Scan"
	ImportScanRequestScanTypeAWSSecurityHubScan                             ImportScanRequestScanType = "AWS Security Hub Scan"
	ImportScanRequestScanTypeAcunetix360Scan                                ImportScanRequestScanType = "Acunetix360 Scan"
	ImportScanRequestScanTypeAcunetixScan                                   ImportScanRequestScanType = "Acunetix Scan"
	ImportScanRequestScanTypeAnchoreCTLPoliciesReport                       ImportScanRequestScanType = "AnchoreCTL Policies Report"
	ImportScanRequestScanTypeAnchoreCTLVulnReport                           ImportScanRequestScanType = "AnchoreCTL Vuln Report"
	ImportScanRequestScanTypeAnchoreEngineScan                              ImportScanRequestScanType = "Anchore Engine Scan"
	ImportScanRequestScanTypeAnchoreEnterprisePolicyCheck                   ImportScanRequestScanType = "Anchore Enterprise Policy Check"
	ImportScanRequestScanTypeAnchoreGrype                                   ImportScanRequestScanType = "Anchore Grype"
	ImportScanRequestScanTypeAppSpiderScan                                  ImportScanRequestScanType = "AppSpider Scan"
	ImportScanRequestScanTypeAquaScan                                       ImportScanRequestScanType = "Aqua Scan"
	ImportScanRequestScanTypeArachniScan                                    ImportScanRequestScanType = "Arachni Scan"
	ImportScanRequestScanTypeAuditJSScan                                    ImportScanRequestScanType = "AuditJS Scan"
	ImportScanRequestScanTypeAzureSecurityCenterRecommendationsScan         ImportScanRequestScanType = "Azure Security Center Recommendations Scan"
	ImportScanRequestScanTypeBanditScan                                     ImportScanRequestScanType = "Bandit Scan"
	ImportScanRequestScanTypeBlackDuckAPI                                   ImportScanRequestScanType = "BlackDuck API"
	ImportScanRequestScanTypeBlackduckComponentRisk                         ImportScanRequestScanType = "Blackduck Component Risk"
	ImportScanRequestScanTypeBlackduckHubScan                               ImportScanRequestScanType = "Blackduck Hub Scan"
	ImportScanRequestScanTypeBrakemanScan                                   ImportScanRequestScanType = "Brakeman Scan"
	ImportScanRequestScanTypeBugCrowdScan                                   ImportScanRequestScanType = "BugCrowd Scan"
	ImportScanRequestScanTypeBugcrowdAPIImport                              ImportScanRequestScanType = "Bugcrowd API Import"
	ImportScanRequestScanTypeBundlerAuditScan                               ImportScanRequestScanType = "Bundler-Audit Scan"
	ImportScanRequestScanTypeBurpEnterpriseScan                             ImportScanRequestScanType = "Burp Enterprise Scan"
	ImportScanRequestScanTypeBurpGraphQLAPI                                 ImportScanRequestScanType = "Burp GraphQL API"
	ImportScanRequestScanTypeBurpRESTAPI                                    ImportScanRequestScanType = "Burp REST API"
	ImportScanRequestScanTypeBurpScan                                       ImportScanRequestScanType = "Burp Scan"
	ImportScanRequestScanTypeCargoAuditScan                                 ImportScanRequestScanType = "CargoAudit Scan"
	ImportScanRequestScanTypeCheckmarxOSA                                   ImportScanRequestScanType = "Checkmarx OSA"
	ImportScanRequestScanTypeCheckmarxScan                                  ImportScanRequestScanType = "Checkmarx Scan"
	ImportScanRequestScanTypeCheckmarxScanDetailed                          ImportScanRequestScanType = "Checkmarx Scan detailed"
	ImportScanRequestScanTypeCheckovScan                                    ImportScanRequestScanType = "Checkov Scan"
	ImportScanRequestScanTypeClairKlarScan                                  ImportScanRequestScanType = "Clair Klar Scan"
	ImportScanRequestScanTypeClairScan                                      ImportScanRequestScanType = "Clair Scan"
	ImportScanRequestScanTypeCloudsploitScan                                ImportScanRequestScanType = "Cloudsploit Scan"
	ImportScanRequestScanTypeCobaltIoAPIImport                              ImportScanRequestScanType = "Cobalt.io API Import"
	ImportScanRequestScanTypeCobaltIoScan                                   ImportScanRequestScanType = "Cobalt.io Scan"
	ImportScanRequestScanTypeCodecheckerReportNative                        ImportScanRequestScanType = "Codechecker Report native"
	ImportScanRequestScanTypeContrastScan                                   ImportScanRequestScanType = "Contrast Scan"
	ImportScanRequestScanTypeCoverityAPI                                    ImportScanRequestScanType = "Coverity API"
	ImportScanRequestScanTypeCrashtestSecurityJSONFile                      ImportScanRequestScanType = "Crashtest Security JSON File"
	ImportScanRequestScanTypeCrashtestSecurityXMLFile                       ImportScanRequestScanType = "Crashtest Security XML File"
	ImportScanRequestScanTypeCredScanScan                                   ImportScanRequestScanType = "CredScan Scan"
	ImportScanRequestScanTypeCycloneDXScan                                  ImportScanRequestScanType = "CycloneDX Scan"
	ImportScanRequestScanTypeDSOPScan                                       ImportScanRequestScanType = "DSOP Scan"
	ImportScanRequestScanTypeDawnScannerScan                                ImportScanRequestScanType = "DawnScanner Scan"
	ImportScanRequestScanTypeDependencyCheckScan                            ImportScanRequestScanType = "Dependency Check Scan"
	ImportScanRequestScanTypeDependencyTrackFindingPackagingFormatFPFExport ImportScanRequestScanType = "Dependency Track Finding Packaging Format (FPF) Export"
	ImportScanRequestScanTypeDetectSecretsScan                              ImportScanRequestScanType = "Detect-secrets Scan"
	ImportScanRequestScanTypeDockerBenchSecurityScan                        ImportScanRequestScanType = "docker-bench-security Scan"
	ImportScanRequestScanTypeDockleScan                                     ImportScanRequestScanType = "Dockle Scan"
	ImportScanRequestScanTypeDrHeaderJSONImporter                           ImportScanRequestScanType = "DrHeader JSON Importer"
	ImportScanRequestScanTypeESLintScan                                     ImportScanRequestScanType = "ESLint Scan"
	ImportScanRequestScanTypeEdgescanScan                                   ImportScanRequestScanType = "Edgescan Scan"
	ImportScanRequestScanTypeFortifyScan                                    ImportScanRequestScanType = "Fortify Scan"
	ImportScanRequestScanTypeGenericFindingsImport                          ImportScanRequestScanType = "Generic Findings Import"
	ImportScanRequestScanTypeGgshieldScan                                   ImportScanRequestScanType = "Ggshield Scan"
	ImportScanRequestScanTypeGitLabAPIFuzzingReportScan                     ImportScanRequestScanType = "GitLab API Fuzzing Report Scan"
	ImportScanRequestScanTypeGitLabContainerScan                            ImportScanRequestScanType = "GitLab Container Scan"
	ImportScanRequestScanTypeGitLabDASTReport                               ImportScanRequestScanType = "GitLab DAST Report"
	ImportScanRequestScanTypeGitLabDependencyScanningReport                 ImportScanRequestScanType = "GitLab Dependency Scanning Report"
	ImportScanRequestScanTypeGitLabSASTReport                               ImportScanRequestScanType = "GitLab SAST Report"
	ImportScanRequestScanTypeGitLabSecretDetectionReport                    ImportScanRequestScanType = "GitLab Secret Detection Report"
	ImportScanRequestScanTypeGithubVulnerabilityScan                        ImportScanRequestScanType = "Github Vulnerability Scan"
	ImportScanRequestScanTypeGitleaksScan                                   ImportScanRequestScanType = "Gitleaks Scan"
	ImportScanRequestScanTypeGosecScanner                                   ImportScanRequestScanType = "Gosec Scanner"
	ImportScanRequestScanTypeGovulncheckScanner                             ImportScanRequestScanType = "Govulncheck Scanner"
	ImportScanRequestScanTypeHackerOneCases                                 ImportScanRequestScanType = "HackerOne Cases"
	ImportScanRequestScanTypeHadolintDockerfileCheck                        ImportScanRequestScanType = "Hadolint Dockerfile check"
	ImportScanRequestScanTypeHarborVulnerabilityScan                        ImportScanRequestScanType = "Harbor Vulnerability Scan"
	ImportScanRequestScanTypeHorusecScan                                    ImportScanRequestScanType = "Horusec Scan"
	ImportScanRequestScanTypeHuskyCIReport                                  ImportScanRequestScanType = "HuskyCI Report"
	ImportScanRequestScanTypeHydraScan                                      ImportScanRequestScanType = "Hydra Scan"
	ImportScanRequestScanTypeIBMAppScanDAST                                 ImportScanRequestScanType = "IBM AppScan DAST"
	ImportScanRequestScanTypeImmuniwebScan                                  ImportScanRequestScanType = "Immuniweb Scan"
	ImportScanRequestScanTypeIntSightsReport                                ImportScanRequestScanType = "IntSights Report"
	ImportScanRequestScanTypeJFrogXrayAPISummaryArtifactScan                ImportScanRequestScanType = "JFrog Xray API Summary Artifact Scan"
	ImportScanRequestScanTypeJFrogXrayScan                                  ImportScanRequestScanType = "JFrog Xray Scan"
	ImportScanRequestScanTypeJFrogXrayUnifiedScan                           ImportScanRequestScanType = "JFrog Xray Unified Scan"
	ImportScanRequestScanTypeKICSScan                                       ImportScanRequestScanType = "KICS Scan"
	ImportScanRequestScanTypeKiuwanScan                                     ImportScanRequestScanType = "Kiuwan Scan"
	ImportScanRequestScanTypeKubeBenchScan                                  ImportScanRequestScanType = "kube-bench Scan"
	ImportScanRequestScanTypeMeterianScan                                   ImportScanRequestScanType = "Meterian Scan"
	ImportScanRequestScanTypeMicrofocusWebinspectScan                       ImportScanRequestScanType = "Microfocus Webinspect Scan"
	ImportScanRequestScanTypeMobSFScan                                      ImportScanRequestScanType = "MobSF Scan"
	ImportScanRequestScanTypeMobsfscanScan                                  ImportScanRequestScanType = "Mobsfscan Scan"
	ImportScanRequestScanTypeMozillaObservatoryScan                         ImportScanRequestScanType = "Mozilla Observatory Scan"
	ImportScanRequestScanTypeNPMAuditScan                                   ImportScanRequestScanType = "NPM Audit Scan"
	ImportScanRequestScanTypeNetsparkerScan                                 ImportScanRequestScanType = "Netsparker Scan"
	ImportScanRequestScanTypeNeuVectorCompliance                            ImportScanRequestScanType = "NeuVector (compliance)"
	ImportScanRequestScanTypeNeuVectorREST                                  ImportScanRequestScanType = "NeuVector (REST)"
	ImportScanRequestScanTypeNexposeScan                                    ImportScanRequestScanType = "Nexpose Scan"
	ImportScanRequestScanTypeNiktoScan                                      ImportScanRequestScanType = "Nikto Scan"
	ImportScanRequestScanTypeNmapScan                                       ImportScanRequestScanType = "Nmap Scan"
	ImportScanRequestScanTypeNodeSecurityPlatformScan                       ImportScanRequestScanType = "Node Security Platform Scan"
	ImportScanRequestScanTypeNucleiScan                                     ImportScanRequestScanType = "Nuclei Scan"
	ImportScanRequestScanTypeORTEvaluatedModelImporter                      ImportScanRequestScanType = "ORT evaluated model Importer"
	ImportScanRequestScanTypeOpenVASCSV                                     ImportScanRequestScanType = "OpenVAS CSV"
	ImportScanRequestScanTypeOpenscapVulnerabilityScan                      ImportScanRequestScanType = "Openscap Vulnerability Scan"
	ImportScanRequestScanTypeOssIndexDevauditSCAScanImporter                ImportScanRequestScanType = "OssIndex Devaudit SCA Scan Importer"
	ImportScanRequestScanTypeOutpost24Scan                                  ImportScanRequestScanType = "Outpost24 Scan"
	ImportScanRequestScanTypePHPSecurityAuditV2                             ImportScanRequestScanType = "PHP Security Audit v2"
	ImportScanRequestScanTypePHPSymfonySecurityCheck                        ImportScanRequestScanType = "PHP Symfony Security Check"
	ImportScanRequestScanTypePMDScan                                        ImportScanRequestScanType = "PMD Scan"
	ImportScanRequestScanTypePWNSAST                                        ImportScanRequestScanType = "PWN SAST"
	ImportScanRequestScanTypePipAuditScan                                   ImportScanRequestScanType = "pip-audit Scan"
	ImportScanRequestScanTypePopeyeScan                                     ImportScanRequestScanType = "Popeye Scan"
	ImportScanRequestScanTypeQualysInfrastructureScanWebGUIXML              ImportScanRequestScanType = "Qualys Infrastructure Scan (WebGUI XML)"
	ImportScanRequestScanTypeQualysScan                                     ImportScanRequestScanType = "Qualys Scan"
	ImportScanRequestScanTypeQualysWebappScan                               ImportScanRequestScanType = "Qualys Webapp Scan"
	ImportScanRequestScanTypeRetireJsScan                                   ImportScanRequestScanType = "Retire.js Scan"
	ImportScanRequestScanTypeRiskReconAPIImporter                           ImportScanRequestScanType = "Risk Recon API Importer"
	ImportScanRequestScanTypeRubocopScan                                    ImportScanRequestScanType = "Rubocop Scan"
	ImportScanRequestScanTypeRustyHogScan                                   ImportScanRequestScanType = "Rusty Hog Scan"
	ImportScanRequestScanTypeSARIF                                          ImportScanRequestScanType = "SARIF"
	ImportScanRequestScanTypeSKFScan                                        ImportScanRequestScanType = "SKF Scan"
	ImportScanRequestScanTypeSSLLabsScan                                    ImportScanRequestScanType = "SSL Labs Scan"
	ImportScanRequestScanTypeSSLyzeScanJSON                                 ImportScanRequestScanType = "SSLyze Scan (JSON)"
	ImportScanRequestScanTypeScantistScan                                   ImportScanRequestScanType = "Scantist Scan"
	ImportScanRequestScanTypeScoutSuiteScan                                 ImportScanRequestScanType = "Scout Suite Scan"
	ImportScanRequestScanTypeSemgrepJSONReport                              ImportScanRequestScanType = "Semgrep JSON Report"
	ImportScanRequestScanTypeSnykScan                                       ImportScanRequestScanType = "Snyk Scan"
	ImportScanRequestScanTypeSolarAppscreenerScan                           ImportScanRequestScanType = "Solar Appscreener Scan"
	ImportScanRequestScanTypeSonarQubeAPIImport                             ImportScanRequestScanType = "SonarQube API Import"
	ImportScanRequestScanTypeSonarQubeScan                                  ImportScanRequestScanType = "SonarQube Scan"
	ImportScanRequestScanTypeSonarQubeScanDetailed                          ImportScanRequestScanType = "SonarQube Scan detailed"
	ImportScanRequestScanTypeSonatypeApplicationScan                        ImportScanRequestScanType = "Sonatype Application Scan"
	ImportScanRequestScanTypeSpotBugsScan                                   ImportScanRequestScanType = "SpotBugs Scan"
	ImportScanRequestScanTypeSslscan                                        ImportScanRequestScanType = "Sslscan"
	ImportScanRequestScanTypeSslyzeScan                                     ImportScanRequestScanType = "Sslyze Scan"
	ImportScanRequestScanTypeStackHawkHawkScan                              ImportScanRequestScanType = "StackHawk HawkScan"
	ImportScanRequestScanTypeTFSecScan                                      ImportScanRequestScanType = "TFSec Scan"
	ImportScanRequestScanTypeTalismanScan                                   ImportScanRequestScanType = "Talisman Scan"
	ImportScanRequestScanTypeTenableScan                                    ImportScanRequestScanType = "Tenable Scan"
	ImportScanRequestScanTypeTerrascanScan                                  ImportScanRequestScanType = "Terrascan Scan"
	ImportScanRequestScanTypeTestsslScan                                    ImportScanRequestScanType = "Testssl Scan"
	ImportScanRequestScanTypeTrivyOperatorScan                              ImportScanRequestScanType = "Trivy Operator Scan"
	ImportScanRequestScanTypeTrivyScan                                      ImportScanRequestScanType = "Trivy Scan"
	ImportScanRequestScanTypeTrufflehog3Scan                                ImportScanRequestScanType = "Trufflehog3 Scan"
	ImportScanRequestScanTypeTrufflehogScan                                 ImportScanRequestScanType = "Trufflehog Scan"
	ImportScanRequestScanTypeTrustwaveFusionAPIScan                         ImportScanRequestScanType = "Trustwave Fusion API Scan"
	ImportScanRequestScanTypeTrustwaveScanCSV                               ImportScanRequestScanType = "Trustwave Scan (CSV)"
	ImportScanRequestScanTypeTwistlockImageScan                             ImportScanRequestScanType = "Twistlock Image Scan"
	ImportScanRequestScanTypeVCGScan                                        ImportScanRequestScanType = "VCG Scan"
	ImportScanRequestScanTypeVeracodeScan                                   ImportScanRequestScanType = "Veracode Scan"
	ImportScanRequestScanTypeVeracodeSourceClearScan                        ImportScanRequestScanType = "Veracode SourceClear Scan"
	ImportScanRequestScanTypeVulners                                        ImportScanRequestScanType = "Vulners"
	ImportScanRequestScanTypeWFuzzJSONReport                                ImportScanRequestScanType = "WFuzz JSON report"
	ImportScanRequestScanTypeWapitiScan                                     ImportScanRequestScanType = "Wapiti Scan"
	ImportScanRequestScanTypeWazuh                                          ImportScanRequestScanType = "Wazuh"
	ImportScanRequestScanTypeWhispersScan                                   ImportScanRequestScanType = "Whispers Scan"
	ImportScanRequestScanTypeWhiteHatSentinel                               ImportScanRequestScanType = "WhiteHat Sentinel"
	ImportScanRequestScanTypeWhitesourceScan                                ImportScanRequestScanType = "Whitesource Scan"
	ImportScanRequestScanTypeWpscan                                         ImportScanRequestScanType = "Wpscan"
	ImportScanRequestScanTypeXanitizerScan                                  ImportScanRequestScanType = "Xanitizer Scan"
	ImportScanRequestScanTypeYarnAuditScan                                  ImportScanRequestScanType = "Yarn Audit Scan"
	ImportScanRequestScanTypeZAPScan                                        ImportScanRequestScanType = "ZAP Scan"
)

Defines values for ImportScanRequestScanType.

type ImportScanScanType

type ImportScanScanType string

ImportScanScanType * `Acunetix Scan` - Acunetix Scan * `Acunetix360 Scan` - Acunetix360 Scan * `Anchore Engine Scan` - Anchore Engine Scan * `Anchore Enterprise Policy Check` - Anchore Enterprise Policy Check * `Anchore Grype` - Anchore Grype * `AnchoreCTL Policies Report` - AnchoreCTL Policies Report * `AnchoreCTL Vuln Report` - AnchoreCTL Vuln Report * `AppSpider Scan` - AppSpider Scan * `Aqua Scan` - Aqua Scan * `Arachni Scan` - Arachni Scan * `AuditJS Scan` - AuditJS Scan * `AWS Prowler Scan` - AWS Prowler Scan * `AWS Prowler V3` - AWS Prowler V3 * `AWS Scout2 Scan` - AWS Scout2 Scan * `AWS Security Finding Format (ASFF) Scan` - AWS Security Finding Format (ASFF) Scan * `AWS Security Hub Scan` - AWS Security Hub Scan * `Azure Security Center Recommendations Scan` - Azure Security Center Recommendations Scan * `Bandit Scan` - Bandit Scan * `BlackDuck API` - BlackDuck API * `Blackduck Component Risk` - Blackduck Component Risk * `Blackduck Hub Scan` - Blackduck Hub Scan * `Brakeman Scan` - Brakeman Scan * `Bugcrowd API Import` - Bugcrowd API Import * `BugCrowd Scan` - BugCrowd Scan * `Bundler-Audit Scan` - Bundler-Audit Scan * `Burp Enterprise Scan` - Burp Enterprise Scan * `Burp GraphQL API` - Burp GraphQL API * `Burp REST API` - Burp REST API * `Burp Scan` - Burp Scan * `CargoAudit Scan` - CargoAudit Scan * `Checkmarx OSA` - Checkmarx OSA * `Checkmarx Scan` - Checkmarx Scan * `Checkmarx Scan detailed` - Checkmarx Scan detailed * `Checkov Scan` - Checkov Scan * `Clair Klar Scan` - Clair Klar Scan * `Clair Scan` - Clair Scan * `Cloudsploit Scan` - Cloudsploit Scan * `Cobalt.io API Import` - Cobalt.io API Import * `Cobalt.io Scan` - Cobalt.io Scan * `Codechecker Report native` - Codechecker Report native * `Contrast Scan` - Contrast Scan * `Coverity API` - Coverity API * `Crashtest Security JSON File` - Crashtest Security JSON File * `Crashtest Security XML File` - Crashtest Security XML File * `CredScan Scan` - CredScan Scan * `CycloneDX Scan` - CycloneDX Scan * `DawnScanner Scan` - DawnScanner Scan * `Dependency Check Scan` - Dependency Check Scan * `Dependency Track Finding Packaging Format (FPF) Export` - Dependency Track Finding Packaging Format (FPF) Export * `Detect-secrets Scan` - Detect-secrets Scan * `docker-bench-security Scan` - docker-bench-security Scan * `Dockle Scan` - Dockle Scan * `DrHeader JSON Importer` - DrHeader JSON Importer * `DSOP Scan` - DSOP Scan * `Edgescan Scan` - Edgescan Scan * `ESLint Scan` - ESLint Scan * `Fortify Scan` - Fortify Scan * `Generic Findings Import` - Generic Findings Import * `Ggshield Scan` - Ggshield Scan * `Github Vulnerability Scan` - Github Vulnerability Scan * `GitLab API Fuzzing Report Scan` - GitLab API Fuzzing Report Scan * `GitLab Container Scan` - GitLab Container Scan * `GitLab DAST Report` - GitLab DAST Report * `GitLab Dependency Scanning Report` - GitLab Dependency Scanning Report * `GitLab SAST Report` - GitLab SAST Report * `GitLab Secret Detection Report` - GitLab Secret Detection Report * `Gitleaks Scan` - Gitleaks Scan * `Gosec Scanner` - Gosec Scanner * `Govulncheck Scanner` - Govulncheck Scanner * `HackerOne Cases` - HackerOne Cases * `Hadolint Dockerfile check` - Hadolint Dockerfile check * `Harbor Vulnerability Scan` - Harbor Vulnerability Scan * `Horusec Scan` - Horusec Scan * `HuskyCI Report` - HuskyCI Report * `Hydra Scan` - Hydra Scan * `IBM AppScan DAST` - IBM AppScan DAST * `Immuniweb Scan` - Immuniweb Scan * `IntSights Report` - IntSights Report * `JFrog Xray API Summary Artifact Scan` - JFrog Xray API Summary Artifact Scan * `JFrog Xray Scan` - JFrog Xray Scan * `JFrog Xray Unified Scan` - JFrog Xray Unified Scan * `KICS Scan` - KICS Scan * `Kiuwan Scan` - Kiuwan Scan * `kube-bench Scan` - kube-bench Scan * `Meterian Scan` - Meterian Scan * `Microfocus Webinspect Scan` - Microfocus Webinspect Scan * `MobSF Scan` - MobSF Scan * `Mobsfscan Scan` - Mobsfscan Scan * `Mozilla Observatory Scan` - Mozilla Observatory Scan * `Netsparker Scan` - Netsparker Scan * `NeuVector (compliance)` - NeuVector (compliance) * `NeuVector (REST)` - NeuVector (REST) * `Nexpose Scan` - Nexpose Scan * `Nikto Scan` - Nikto Scan * `Nmap Scan` - Nmap Scan * `Node Security Platform Scan` - Node Security Platform Scan * `NPM Audit Scan` - NPM Audit Scan * `Nuclei Scan` - Nuclei Scan * `Openscap Vulnerability Scan` - Openscap Vulnerability Scan * `OpenVAS CSV` - OpenVAS CSV * `ORT evaluated model Importer` - ORT evaluated model Importer * `OssIndex Devaudit SCA Scan Importer` - OssIndex Devaudit SCA Scan Importer * `Outpost24 Scan` - Outpost24 Scan * `PHP Security Audit v2` - PHP Security Audit v2 * `PHP Symfony Security Check` - PHP Symfony Security Check * `pip-audit Scan` - pip-audit Scan * `PMD Scan` - PMD Scan * `Popeye Scan` - Popeye Scan * `PWN SAST` - PWN SAST * `Qualys Infrastructure Scan (WebGUI XML)` - Qualys Infrastructure Scan (WebGUI XML) * `Qualys Scan` - Qualys Scan * `Qualys Webapp Scan` - Qualys Webapp Scan * `Retire.js Scan` - Retire.js Scan * `Risk Recon API Importer` - Risk Recon API Importer * `Rubocop Scan` - Rubocop Scan * `Rusty Hog Scan` - Rusty Hog Scan * `SARIF` - SARIF * `Scantist Scan` - Scantist Scan * `Scout Suite Scan` - Scout Suite Scan * `Semgrep JSON Report` - Semgrep JSON Report * `SKF Scan` - SKF Scan * `Snyk Scan` - Snyk Scan * `Solar Appscreener Scan` - Solar Appscreener Scan * `SonarQube API Import` - SonarQube API Import * `SonarQube Scan` - SonarQube Scan * `SonarQube Scan detailed` - SonarQube Scan detailed * `Sonatype Application Scan` - Sonatype Application Scan * `SpotBugs Scan` - SpotBugs Scan * `SSL Labs Scan` - SSL Labs Scan * `Sslscan` - Sslscan * `Sslyze Scan` - Sslyze Scan * `SSLyze Scan (JSON)` - SSLyze Scan (JSON) * `StackHawk HawkScan` - StackHawk HawkScan * `Talisman Scan` - Talisman Scan * `Tenable Scan` - Tenable Scan * `Terrascan Scan` - Terrascan Scan * `Testssl Scan` - Testssl Scan * `TFSec Scan` - TFSec Scan * `Trivy Operator Scan` - Trivy Operator Scan * `Trivy Scan` - Trivy Scan * `Trufflehog Scan` - Trufflehog Scan * `Trufflehog3 Scan` - Trufflehog3 Scan * `Trustwave Fusion API Scan` - Trustwave Fusion API Scan * `Trustwave Scan (CSV)` - Trustwave Scan (CSV) * `Twistlock Image Scan` - Twistlock Image Scan * `VCG Scan` - VCG Scan * `Veracode Scan` - Veracode Scan * `Veracode SourceClear Scan` - Veracode SourceClear Scan * `Vulners` - Vulners * `Wapiti Scan` - Wapiti Scan * `Wazuh` - Wazuh * `WFuzz JSON report` - WFuzz JSON report * `Whispers Scan` - Whispers Scan * `WhiteHat Sentinel` - WhiteHat Sentinel * `Whitesource Scan` - Whitesource Scan * `Wpscan` - Wpscan * `Xanitizer Scan` - Xanitizer Scan * `Yarn Audit Scan` - Yarn Audit Scan * `ZAP Scan` - ZAP Scan

const (
	ImportScanScanTypeAWSProwlerScan                                 ImportScanScanType = "AWS Prowler Scan"
	ImportScanScanTypeAWSProwlerV3                                   ImportScanScanType = "AWS Prowler V3"
	ImportScanScanTypeAWSScout2Scan                                  ImportScanScanType = "AWS Scout2 Scan"
	ImportScanScanTypeAWSSecurityFindingFormatASFFScan               ImportScanScanType = "AWS Security Finding Format (ASFF) Scan"
	ImportScanScanTypeAWSSecurityHubScan                             ImportScanScanType = "AWS Security Hub Scan"
	ImportScanScanTypeAcunetix360Scan                                ImportScanScanType = "Acunetix360 Scan"
	ImportScanScanTypeAcunetixScan                                   ImportScanScanType = "Acunetix Scan"
	ImportScanScanTypeAnchoreCTLPoliciesReport                       ImportScanScanType = "AnchoreCTL Policies Report"
	ImportScanScanTypeAnchoreCTLVulnReport                           ImportScanScanType = "AnchoreCTL Vuln Report"
	ImportScanScanTypeAnchoreEngineScan                              ImportScanScanType = "Anchore Engine Scan"
	ImportScanScanTypeAnchoreEnterprisePolicyCheck                   ImportScanScanType = "Anchore Enterprise Policy Check"
	ImportScanScanTypeAnchoreGrype                                   ImportScanScanType = "Anchore Grype"
	ImportScanScanTypeAppSpiderScan                                  ImportScanScanType = "AppSpider Scan"
	ImportScanScanTypeAquaScan                                       ImportScanScanType = "Aqua Scan"
	ImportScanScanTypeArachniScan                                    ImportScanScanType = "Arachni Scan"
	ImportScanScanTypeAuditJSScan                                    ImportScanScanType = "AuditJS Scan"
	ImportScanScanTypeAzureSecurityCenterRecommendationsScan         ImportScanScanType = "Azure Security Center Recommendations Scan"
	ImportScanScanTypeBanditScan                                     ImportScanScanType = "Bandit Scan"
	ImportScanScanTypeBlackDuckAPI                                   ImportScanScanType = "BlackDuck API"
	ImportScanScanTypeBlackduckComponentRisk                         ImportScanScanType = "Blackduck Component Risk"
	ImportScanScanTypeBlackduckHubScan                               ImportScanScanType = "Blackduck Hub Scan"
	ImportScanScanTypeBrakemanScan                                   ImportScanScanType = "Brakeman Scan"
	ImportScanScanTypeBugCrowdScan                                   ImportScanScanType = "BugCrowd Scan"
	ImportScanScanTypeBugcrowdAPIImport                              ImportScanScanType = "Bugcrowd API Import"
	ImportScanScanTypeBundlerAuditScan                               ImportScanScanType = "Bundler-Audit Scan"
	ImportScanScanTypeBurpEnterpriseScan                             ImportScanScanType = "Burp Enterprise Scan"
	ImportScanScanTypeBurpGraphQLAPI                                 ImportScanScanType = "Burp GraphQL API"
	ImportScanScanTypeBurpRESTAPI                                    ImportScanScanType = "Burp REST API"
	ImportScanScanTypeBurpScan                                       ImportScanScanType = "Burp Scan"
	ImportScanScanTypeCargoAuditScan                                 ImportScanScanType = "CargoAudit Scan"
	ImportScanScanTypeCheckmarxOSA                                   ImportScanScanType = "Checkmarx OSA"
	ImportScanScanTypeCheckmarxScan                                  ImportScanScanType = "Checkmarx Scan"
	ImportScanScanTypeCheckmarxScanDetailed                          ImportScanScanType = "Checkmarx Scan detailed"
	ImportScanScanTypeCheckovScan                                    ImportScanScanType = "Checkov Scan"
	ImportScanScanTypeClairKlarScan                                  ImportScanScanType = "Clair Klar Scan"
	ImportScanScanTypeClairScan                                      ImportScanScanType = "Clair Scan"
	ImportScanScanTypeCloudsploitScan                                ImportScanScanType = "Cloudsploit Scan"
	ImportScanScanTypeCobaltIoAPIImport                              ImportScanScanType = "Cobalt.io API Import"
	ImportScanScanTypeCobaltIoScan                                   ImportScanScanType = "Cobalt.io Scan"
	ImportScanScanTypeCodecheckerReportNative                        ImportScanScanType = "Codechecker Report native"
	ImportScanScanTypeContrastScan                                   ImportScanScanType = "Contrast Scan"
	ImportScanScanTypeCoverityAPI                                    ImportScanScanType = "Coverity API"
	ImportScanScanTypeCrashtestSecurityJSONFile                      ImportScanScanType = "Crashtest Security JSON File"
	ImportScanScanTypeCrashtestSecurityXMLFile                       ImportScanScanType = "Crashtest Security XML File"
	ImportScanScanTypeCredScanScan                                   ImportScanScanType = "CredScan Scan"
	ImportScanScanTypeCycloneDXScan                                  ImportScanScanType = "CycloneDX Scan"
	ImportScanScanTypeDSOPScan                                       ImportScanScanType = "DSOP Scan"
	ImportScanScanTypeDawnScannerScan                                ImportScanScanType = "DawnScanner Scan"
	ImportScanScanTypeDependencyCheckScan                            ImportScanScanType = "Dependency Check Scan"
	ImportScanScanTypeDependencyTrackFindingPackagingFormatFPFExport ImportScanScanType = "Dependency Track Finding Packaging Format (FPF) Export"
	ImportScanScanTypeDetectSecretsScan                              ImportScanScanType = "Detect-secrets Scan"
	ImportScanScanTypeDockerBenchSecurityScan                        ImportScanScanType = "docker-bench-security Scan"
	ImportScanScanTypeDockleScan                                     ImportScanScanType = "Dockle Scan"
	ImportScanScanTypeDrHeaderJSONImporter                           ImportScanScanType = "DrHeader JSON Importer"
	ImportScanScanTypeESLintScan                                     ImportScanScanType = "ESLint Scan"
	ImportScanScanTypeEdgescanScan                                   ImportScanScanType = "Edgescan Scan"
	ImportScanScanTypeFortifyScan                                    ImportScanScanType = "Fortify Scan"
	ImportScanScanTypeGenericFindingsImport                          ImportScanScanType = "Generic Findings Import"
	ImportScanScanTypeGgshieldScan                                   ImportScanScanType = "Ggshield Scan"
	ImportScanScanTypeGitLabAPIFuzzingReportScan                     ImportScanScanType = "GitLab API Fuzzing Report Scan"
	ImportScanScanTypeGitLabContainerScan                            ImportScanScanType = "GitLab Container Scan"
	ImportScanScanTypeGitLabDASTReport                               ImportScanScanType = "GitLab DAST Report"
	ImportScanScanTypeGitLabDependencyScanningReport                 ImportScanScanType = "GitLab Dependency Scanning Report"
	ImportScanScanTypeGitLabSASTReport                               ImportScanScanType = "GitLab SAST Report"
	ImportScanScanTypeGitLabSecretDetectionReport                    ImportScanScanType = "GitLab Secret Detection Report"
	ImportScanScanTypeGithubVulnerabilityScan                        ImportScanScanType = "Github Vulnerability Scan"
	ImportScanScanTypeGitleaksScan                                   ImportScanScanType = "Gitleaks Scan"
	ImportScanScanTypeGosecScanner                                   ImportScanScanType = "Gosec Scanner"
	ImportScanScanTypeGovulncheckScanner                             ImportScanScanType = "Govulncheck Scanner"
	ImportScanScanTypeHackerOneCases                                 ImportScanScanType = "HackerOne Cases"
	ImportScanScanTypeHadolintDockerfileCheck                        ImportScanScanType = "Hadolint Dockerfile check"
	ImportScanScanTypeHarborVulnerabilityScan                        ImportScanScanType = "Harbor Vulnerability Scan"
	ImportScanScanTypeHorusecScan                                    ImportScanScanType = "Horusec Scan"
	ImportScanScanTypeHuskyCIReport                                  ImportScanScanType = "HuskyCI Report"
	ImportScanScanTypeHydraScan                                      ImportScanScanType = "Hydra Scan"
	ImportScanScanTypeIBMAppScanDAST                                 ImportScanScanType = "IBM AppScan DAST"
	ImportScanScanTypeImmuniwebScan                                  ImportScanScanType = "Immuniweb Scan"
	ImportScanScanTypeIntSightsReport                                ImportScanScanType = "IntSights Report"
	ImportScanScanTypeJFrogXrayAPISummaryArtifactScan                ImportScanScanType = "JFrog Xray API Summary Artifact Scan"
	ImportScanScanTypeJFrogXrayScan                                  ImportScanScanType = "JFrog Xray Scan"
	ImportScanScanTypeJFrogXrayUnifiedScan                           ImportScanScanType = "JFrog Xray Unified Scan"
	ImportScanScanTypeKICSScan                                       ImportScanScanType = "KICS Scan"
	ImportScanScanTypeKiuwanScan                                     ImportScanScanType = "Kiuwan Scan"
	ImportScanScanTypeKubeBenchScan                                  ImportScanScanType = "kube-bench Scan"
	ImportScanScanTypeMeterianScan                                   ImportScanScanType = "Meterian Scan"
	ImportScanScanTypeMicrofocusWebinspectScan                       ImportScanScanType = "Microfocus Webinspect Scan"
	ImportScanScanTypeMobSFScan                                      ImportScanScanType = "MobSF Scan"
	ImportScanScanTypeMobsfscanScan                                  ImportScanScanType = "Mobsfscan Scan"
	ImportScanScanTypeMozillaObservatoryScan                         ImportScanScanType = "Mozilla Observatory Scan"
	ImportScanScanTypeNPMAuditScan                                   ImportScanScanType = "NPM Audit Scan"
	ImportScanScanTypeNetsparkerScan                                 ImportScanScanType = "Netsparker Scan"
	ImportScanScanTypeNeuVectorCompliance                            ImportScanScanType = "NeuVector (compliance)"
	ImportScanScanTypeNeuVectorREST                                  ImportScanScanType = "NeuVector (REST)"
	ImportScanScanTypeNexposeScan                                    ImportScanScanType = "Nexpose Scan"
	ImportScanScanTypeNiktoScan                                      ImportScanScanType = "Nikto Scan"
	ImportScanScanTypeNmapScan                                       ImportScanScanType = "Nmap Scan"
	ImportScanScanTypeNodeSecurityPlatformScan                       ImportScanScanType = "Node Security Platform Scan"
	ImportScanScanTypeNucleiScan                                     ImportScanScanType = "Nuclei Scan"
	ImportScanScanTypeORTEvaluatedModelImporter                      ImportScanScanType = "ORT evaluated model Importer"
	ImportScanScanTypeOpenVASCSV                                     ImportScanScanType = "OpenVAS CSV"
	ImportScanScanTypeOpenscapVulnerabilityScan                      ImportScanScanType = "Openscap Vulnerability Scan"
	ImportScanScanTypeOssIndexDevauditSCAScanImporter                ImportScanScanType = "OssIndex Devaudit SCA Scan Importer"
	ImportScanScanTypeOutpost24Scan                                  ImportScanScanType = "Outpost24 Scan"
	ImportScanScanTypePHPSecurityAuditV2                             ImportScanScanType = "PHP Security Audit v2"
	ImportScanScanTypePHPSymfonySecurityCheck                        ImportScanScanType = "PHP Symfony Security Check"
	ImportScanScanTypePMDScan                                        ImportScanScanType = "PMD Scan"
	ImportScanScanTypePWNSAST                                        ImportScanScanType = "PWN SAST"
	ImportScanScanTypePipAuditScan                                   ImportScanScanType = "pip-audit Scan"
	ImportScanScanTypePopeyeScan                                     ImportScanScanType = "Popeye Scan"
	ImportScanScanTypeQualysInfrastructureScanWebGUIXML              ImportScanScanType = "Qualys Infrastructure Scan (WebGUI XML)"
	ImportScanScanTypeQualysScan                                     ImportScanScanType = "Qualys Scan"
	ImportScanScanTypeQualysWebappScan                               ImportScanScanType = "Qualys Webapp Scan"
	ImportScanScanTypeRetireJsScan                                   ImportScanScanType = "Retire.js Scan"
	ImportScanScanTypeRiskReconAPIImporter                           ImportScanScanType = "Risk Recon API Importer"
	ImportScanScanTypeRubocopScan                                    ImportScanScanType = "Rubocop Scan"
	ImportScanScanTypeRustyHogScan                                   ImportScanScanType = "Rusty Hog Scan"
	ImportScanScanTypeSARIF                                          ImportScanScanType = "SARIF"
	ImportScanScanTypeSKFScan                                        ImportScanScanType = "SKF Scan"
	ImportScanScanTypeSSLLabsScan                                    ImportScanScanType = "SSL Labs Scan"
	ImportScanScanTypeSSLyzeScanJSON                                 ImportScanScanType = "SSLyze Scan (JSON)"
	ImportScanScanTypeScantistScan                                   ImportScanScanType = "Scantist Scan"
	ImportScanScanTypeScoutSuiteScan                                 ImportScanScanType = "Scout Suite Scan"
	ImportScanScanTypeSemgrepJSONReport                              ImportScanScanType = "Semgrep JSON Report"
	ImportScanScanTypeSnykScan                                       ImportScanScanType = "Snyk Scan"
	ImportScanScanTypeSolarAppscreenerScan                           ImportScanScanType = "Solar Appscreener Scan"
	ImportScanScanTypeSonarQubeAPIImport                             ImportScanScanType = "SonarQube API Import"
	ImportScanScanTypeSonarQubeScan                                  ImportScanScanType = "SonarQube Scan"
	ImportScanScanTypeSonarQubeScanDetailed                          ImportScanScanType = "SonarQube Scan detailed"
	ImportScanScanTypeSonatypeApplicationScan                        ImportScanScanType = "Sonatype Application Scan"
	ImportScanScanTypeSpotBugsScan                                   ImportScanScanType = "SpotBugs Scan"
	ImportScanScanTypeSslscan                                        ImportScanScanType = "Sslscan"
	ImportScanScanTypeSslyzeScan                                     ImportScanScanType = "Sslyze Scan"
	ImportScanScanTypeStackHawkHawkScan                              ImportScanScanType = "StackHawk HawkScan"
	ImportScanScanTypeTFSecScan                                      ImportScanScanType = "TFSec Scan"
	ImportScanScanTypeTalismanScan                                   ImportScanScanType = "Talisman Scan"
	ImportScanScanTypeTenableScan                                    ImportScanScanType = "Tenable Scan"
	ImportScanScanTypeTerrascanScan                                  ImportScanScanType = "Terrascan Scan"
	ImportScanScanTypeTestsslScan                                    ImportScanScanType = "Testssl Scan"
	ImportScanScanTypeTrivyOperatorScan                              ImportScanScanType = "Trivy Operator Scan"
	ImportScanScanTypeTrivyScan                                      ImportScanScanType = "Trivy Scan"
	ImportScanScanTypeTrufflehog3Scan                                ImportScanScanType = "Trufflehog3 Scan"
	ImportScanScanTypeTrufflehogScan                                 ImportScanScanType = "Trufflehog Scan"
	ImportScanScanTypeTrustwaveFusionAPIScan                         ImportScanScanType = "Trustwave Fusion API Scan"
	ImportScanScanTypeTrustwaveScanCSV                               ImportScanScanType = "Trustwave Scan (CSV)"
	ImportScanScanTypeTwistlockImageScan                             ImportScanScanType = "Twistlock Image Scan"
	ImportScanScanTypeVCGScan                                        ImportScanScanType = "VCG Scan"
	ImportScanScanTypeVeracodeScan                                   ImportScanScanType = "Veracode Scan"
	ImportScanScanTypeVeracodeSourceClearScan                        ImportScanScanType = "Veracode SourceClear Scan"
	ImportScanScanTypeVulners                                        ImportScanScanType = "Vulners"
	ImportScanScanTypeWFuzzJSONReport                                ImportScanScanType = "WFuzz JSON report"
	ImportScanScanTypeWapitiScan                                     ImportScanScanType = "Wapiti Scan"
	ImportScanScanTypeWazuh                                          ImportScanScanType = "Wazuh"
	ImportScanScanTypeWhispersScan                                   ImportScanScanType = "Whispers Scan"
	ImportScanScanTypeWhiteHatSentinel                               ImportScanScanType = "WhiteHat Sentinel"
	ImportScanScanTypeWhitesourceScan                                ImportScanScanType = "Whitesource Scan"
	ImportScanScanTypeWpscan                                         ImportScanScanType = "Wpscan"
	ImportScanScanTypeXanitizerScan                                  ImportScanScanType = "Xanitizer Scan"
	ImportScanScanTypeYarnAuditScan                                  ImportScanScanType = "Yarn Audit Scan"
	ImportScanScanTypeZAPScan                                        ImportScanScanType = "ZAP Scan"
)

Defines values for ImportScanScanType.

type ImportStatistics

type ImportStatistics struct {
	// After Finding statistics as stored in Defect Dojo after the import
	After SeverityStatusStatistics `json:"after"`

	// Before Finding statistics as stored in Defect Dojo before the import
	Before *SeverityStatusStatistics `json:"before,omitempty"`

	// Delta Finding statistics of modifications made by the reimport. Only available when TRACK_IMPORT_HISTORY hass not disabled.
	Delta *DeltaStatistics `json:"delta,omitempty"`
}

ImportStatistics defines model for ImportStatistics.

type JIRAInstance

type JIRAInstance struct {
	// AcceptedMappingResolution JIRA resolution names (comma-separated values) that maps to an Accepted Finding
	AcceptedMappingResolution *string `json:"accepted_mapping_resolution"`

	// CloseStatusKey Transition ID to Close JIRA issues, visit https://<YOUR JIRA URL>/rest/api/latest/issue/<ANY VALID ISSUE KEY>/transitions?expand=transitions.fields to find the ID for your JIRA instance
	CloseStatusKey int `json:"close_status_key"`

	// ConfigurationName Enter a name to give to this configuration
	ConfigurationName *string `json:"configuration_name,omitempty"`

	// CriticalMappingSeverity Maps to the 'Priority' field in Jira. For example: Critical
	CriticalMappingSeverity string `json:"critical_mapping_severity"`

	// DefaultIssueType You can define extra issue types in settings.py
	//
	// * `Task` - Task
	// * `Story` - Story
	// * `Epic` - Epic
	// * `Spike` - Spike
	// * `Bug` - Bug
	// * `Security` - Security
	DefaultIssueType *JIRAInstanceDefaultIssueType `json:"default_issue_type,omitempty"`

	// EpicNameId To obtain the 'Epic name id' visit https://<YOUR JIRA URL>/rest/api/2/field and search for Epic Name. Copy the number out of cf[number] and paste it here.
	EpicNameId int `json:"epic_name_id"`

	// FalsePositiveMappingResolution JIRA resolution names (comma-separated values) that maps to a False Positive Finding
	FalsePositiveMappingResolution *string `json:"false_positive_mapping_resolution"`

	// FindingJiraSync If enabled, this will sync changes to a Finding automatically to JIRA
	FindingJiraSync *bool `json:"finding_jira_sync,omitempty"`

	// FindingText Additional text that will be added to the finding in Jira. For example including how the finding was created or who to contact for more information.
	FindingText *string `json:"finding_text"`

	// GlobalJiraSlaNotification This setting can be overidden at the Product level
	GlobalJiraSlaNotification *bool `json:"global_jira_sla_notification,omitempty"`

	// HighMappingSeverity Maps to the 'Priority' field in Jira. For example: High
	HighMappingSeverity string `json:"high_mapping_severity"`
	Id                  *int   `json:"id,omitempty"`

	// InfoMappingSeverity Maps to the 'Priority' field in Jira. For example: Info
	InfoMappingSeverity string `json:"info_mapping_severity"`

	// IssueTemplateDir Choose the folder containing the Django templates used to render the JIRA issue description. These are stored in dojo/templates/issue-trackers. Leave empty to use the default jira_full templates.
	IssueTemplateDir *string `json:"issue_template_dir"`

	// LowMappingSeverity Maps to the 'Priority' field in Jira. For example: Low
	LowMappingSeverity string `json:"low_mapping_severity"`

	// MediumMappingSeverity Maps to the 'Priority' field in Jira. For example: Medium
	MediumMappingSeverity string `json:"medium_mapping_severity"`

	// OpenStatusKey Transition ID to Re-Open JIRA issues, visit https://<YOUR JIRA URL>/rest/api/latest/issue/<ANY VALID ISSUE KEY>/transitions?expand=transitions.fields to find the ID for your JIRA instance
	OpenStatusKey int `json:"open_status_key"`

	// Url For more information how to configure Jira, read the DefectDojo documentation.
	Url      string `json:"url"`
	Username string `json:"username"`
}

JIRAInstance defines model for JIRAInstance.

type JIRAInstanceDefaultIssueType

type JIRAInstanceDefaultIssueType string

JIRAInstanceDefaultIssueType You can define extra issue types in settings.py

* `Task` - Task * `Story` - Story * `Epic` - Epic * `Spike` - Spike * `Bug` - Bug * `Security` - Security

const (
	JIRAInstanceDefaultIssueTypeBug      JIRAInstanceDefaultIssueType = "Bug"
	JIRAInstanceDefaultIssueTypeEpic     JIRAInstanceDefaultIssueType = "Epic"
	JIRAInstanceDefaultIssueTypeSecurity JIRAInstanceDefaultIssueType = "Security"
	JIRAInstanceDefaultIssueTypeSpike    JIRAInstanceDefaultIssueType = "Spike"
	JIRAInstanceDefaultIssueTypeStory    JIRAInstanceDefaultIssueType = "Story"
	JIRAInstanceDefaultIssueTypeTask     JIRAInstanceDefaultIssueType = "Task"
)

Defines values for JIRAInstanceDefaultIssueType.

type JIRAInstanceRequest added in v0.2.0

type JIRAInstanceRequest struct {
	// AcceptedMappingResolution JIRA resolution names (comma-separated values) that maps to an Accepted Finding
	AcceptedMappingResolution *string `json:"accepted_mapping_resolution"`

	// CloseStatusKey Transition ID to Close JIRA issues, visit https://<YOUR JIRA URL>/rest/api/latest/issue/<ANY VALID ISSUE KEY>/transitions?expand=transitions.fields to find the ID for your JIRA instance
	CloseStatusKey int `json:"close_status_key"`

	// ConfigurationName Enter a name to give to this configuration
	ConfigurationName *string `json:"configuration_name,omitempty"`

	// CriticalMappingSeverity Maps to the 'Priority' field in Jira. For example: Critical
	CriticalMappingSeverity string `json:"critical_mapping_severity"`

	// DefaultIssueType You can define extra issue types in settings.py
	//
	// * `Task` - Task
	// * `Story` - Story
	// * `Epic` - Epic
	// * `Spike` - Spike
	// * `Bug` - Bug
	// * `Security` - Security
	DefaultIssueType *JIRAInstanceRequestDefaultIssueType `json:"default_issue_type,omitempty"`

	// EpicNameId To obtain the 'Epic name id' visit https://<YOUR JIRA URL>/rest/api/2/field and search for Epic Name. Copy the number out of cf[number] and paste it here.
	EpicNameId int `json:"epic_name_id"`

	// FalsePositiveMappingResolution JIRA resolution names (comma-separated values) that maps to a False Positive Finding
	FalsePositiveMappingResolution *string `json:"false_positive_mapping_resolution"`

	// FindingJiraSync If enabled, this will sync changes to a Finding automatically to JIRA
	FindingJiraSync *bool `json:"finding_jira_sync,omitempty"`

	// FindingText Additional text that will be added to the finding in Jira. For example including how the finding was created or who to contact for more information.
	FindingText *string `json:"finding_text"`

	// GlobalJiraSlaNotification This setting can be overidden at the Product level
	GlobalJiraSlaNotification *bool `json:"global_jira_sla_notification,omitempty"`

	// HighMappingSeverity Maps to the 'Priority' field in Jira. For example: High
	HighMappingSeverity string `json:"high_mapping_severity"`

	// InfoMappingSeverity Maps to the 'Priority' field in Jira. For example: Info
	InfoMappingSeverity string `json:"info_mapping_severity"`

	// IssueTemplateDir Choose the folder containing the Django templates used to render the JIRA issue description. These are stored in dojo/templates/issue-trackers. Leave empty to use the default jira_full templates.
	IssueTemplateDir *string `json:"issue_template_dir"`

	// LowMappingSeverity Maps to the 'Priority' field in Jira. For example: Low
	LowMappingSeverity string `json:"low_mapping_severity"`

	// MediumMappingSeverity Maps to the 'Priority' field in Jira. For example: Medium
	MediumMappingSeverity string `json:"medium_mapping_severity"`

	// OpenStatusKey Transition ID to Re-Open JIRA issues, visit https://<YOUR JIRA URL>/rest/api/latest/issue/<ANY VALID ISSUE KEY>/transitions?expand=transitions.fields to find the ID for your JIRA instance
	OpenStatusKey int     `json:"open_status_key"`
	Password      *string `json:"password,omitempty"`

	// Url For more information how to configure Jira, read the DefectDojo documentation.
	Url      string `json:"url"`
	Username string `json:"username"`
}

JIRAInstanceRequest defines model for JIRAInstanceRequest.

type JIRAInstanceRequestDefaultIssueType added in v0.2.0

type JIRAInstanceRequestDefaultIssueType string

JIRAInstanceRequestDefaultIssueType You can define extra issue types in settings.py

* `Task` - Task * `Story` - Story * `Epic` - Epic * `Spike` - Spike * `Bug` - Bug * `Security` - Security

const (
	JIRAInstanceRequestDefaultIssueTypeBug      JIRAInstanceRequestDefaultIssueType = "Bug"
	JIRAInstanceRequestDefaultIssueTypeEpic     JIRAInstanceRequestDefaultIssueType = "Epic"
	JIRAInstanceRequestDefaultIssueTypeSecurity JIRAInstanceRequestDefaultIssueType = "Security"
	JIRAInstanceRequestDefaultIssueTypeSpike    JIRAInstanceRequestDefaultIssueType = "Spike"
	JIRAInstanceRequestDefaultIssueTypeStory    JIRAInstanceRequestDefaultIssueType = "Story"
	JIRAInstanceRequestDefaultIssueTypeTask     JIRAInstanceRequestDefaultIssueType = "Task"
)

Defines values for JIRAInstanceRequestDefaultIssueType.

type JIRAIssue

type JIRAIssue struct {
	Engagement   *int `json:"engagement"`
	Finding      *int `json:"finding"`
	FindingGroup *int `json:"finding_group"`
	Id           *int `json:"id,omitempty"`

	// JiraChange The date the linked Jira issue was last modified.
	JiraChange *time.Time `json:"jira_change"`

	// JiraCreation The date a Jira issue was created from this finding.
	JiraCreation *time.Time `json:"jira_creation"`
	JiraId       string     `json:"jira_id"`
	JiraKey      string     `json:"jira_key"`
	JiraProject  *int       `json:"jira_project"`
	Url          *string    `json:"url,omitempty"`
}

JIRAIssue defines model for JIRAIssue.

type JIRAIssueRequest added in v0.2.0

type JIRAIssueRequest struct {
	Engagement   *int `json:"engagement"`
	Finding      *int `json:"finding"`
	FindingGroup *int `json:"finding_group"`

	// JiraChange The date the linked Jira issue was last modified.
	JiraChange *time.Time `json:"jira_change"`

	// JiraCreation The date a Jira issue was created from this finding.
	JiraCreation *time.Time `json:"jira_creation"`
	JiraId       string     `json:"jira_id"`
	JiraKey      string     `json:"jira_key"`
	JiraProject  *int       `json:"jira_project"`
}

JIRAIssueRequest defines model for JIRAIssueRequest.

type JIRAProject

type JIRAProject struct {
	AddVulnerabilityIdToJiraLabel *bool   `json:"add_vulnerability_id_to_jira_label,omitempty"`
	Component                     *string `json:"component,omitempty"`

	// CustomFields JIRA custom field JSON mapping of Id to value, e.g. {"customfield_10122": [{"name": "8.0.1"}]}
	CustomFields *map[string]interface{} `json:"custom_fields"`

	// DefaultAssignee JIRA default assignee (name). If left blank then it defaults to whatever is configured in JIRA.
	DefaultAssignee             *string `json:"default_assignee"`
	EnableEngagementEpicMapping *bool   `json:"enable_engagement_epic_mapping,omitempty"`
	Engagement                  *int    `json:"engagement"`
	Id                          *int    `json:"id,omitempty"`

	// IssueTemplateDir Choose the folder containing the Django templates used to render the JIRA issue description. These are stored in dojo/templates/issue-trackers. Leave empty to use the default jira_full templates.
	IssueTemplateDir *string `json:"issue_template_dir"`
	JiraInstance     *int    `json:"jira_instance"`

	// JiraLabels JIRA issue labels space seperated
	JiraLabels                 *string `json:"jira_labels"`
	Product                    *int    `json:"product"`
	ProductJiraSlaNotification *bool   `json:"product_jira_sla_notification,omitempty"`
	ProjectKey                 *string `json:"project_key,omitempty"`

	// PushAllIssues Automatically maintain parity with JIRA. Always create and update JIRA tickets for findings in this Product.
	PushAllIssues                        *bool `json:"push_all_issues,omitempty"`
	PushNotes                            *bool `json:"push_notes,omitempty"`
	RiskAcceptanceExpirationNotification *bool `json:"risk_acceptance_expiration_notification,omitempty"`
}

JIRAProject defines model for JIRAProject.

type JIRAProjectRequest added in v0.2.0

type JIRAProjectRequest struct {
	AddVulnerabilityIdToJiraLabel *bool   `json:"add_vulnerability_id_to_jira_label,omitempty"`
	Component                     *string `json:"component,omitempty"`

	// CustomFields JIRA custom field JSON mapping of Id to value, e.g. {"customfield_10122": [{"name": "8.0.1"}]}
	CustomFields *map[string]interface{} `json:"custom_fields"`

	// DefaultAssignee JIRA default assignee (name). If left blank then it defaults to whatever is configured in JIRA.
	DefaultAssignee             *string `json:"default_assignee"`
	EnableEngagementEpicMapping *bool   `json:"enable_engagement_epic_mapping,omitempty"`
	Engagement                  *int    `json:"engagement"`

	// IssueTemplateDir Choose the folder containing the Django templates used to render the JIRA issue description. These are stored in dojo/templates/issue-trackers. Leave empty to use the default jira_full templates.
	IssueTemplateDir *string `json:"issue_template_dir"`
	JiraInstance     *int    `json:"jira_instance"`

	// JiraLabels JIRA issue labels space seperated
	JiraLabels                 *string `json:"jira_labels"`
	Product                    *int    `json:"product"`
	ProductJiraSlaNotification *bool   `json:"product_jira_sla_notification,omitempty"`
	ProjectKey                 *string `json:"project_key,omitempty"`

	// PushAllIssues Automatically maintain parity with JIRA. Always create and update JIRA tickets for findings in this Product.
	PushAllIssues                        *bool `json:"push_all_issues,omitempty"`
	PushNotes                            *bool `json:"push_notes,omitempty"`
	RiskAcceptanceExpirationNotification *bool `json:"risk_acceptance_expiration_notification,omitempty"`
}

JIRAProjectRequest defines model for JIRAProjectRequest.

type JiraConfigurationsCreateFormdataRequestBody added in v0.2.0

type JiraConfigurationsCreateFormdataRequestBody = JIRAInstanceRequest

JiraConfigurationsCreateFormdataRequestBody defines body for JiraConfigurationsCreate for application/x-www-form-urlencoded ContentType.

type JiraConfigurationsCreateJSONRequestBody

type JiraConfigurationsCreateJSONRequestBody = JIRAInstanceRequest

JiraConfigurationsCreateJSONRequestBody defines body for JiraConfigurationsCreate for application/json ContentType.

type JiraConfigurationsCreateMultipartRequestBody added in v0.2.0

type JiraConfigurationsCreateMultipartRequestBody = JIRAInstanceRequest

JiraConfigurationsCreateMultipartRequestBody defines body for JiraConfigurationsCreate for multipart/form-data ContentType.

type JiraConfigurationsCreateResponse

type JiraConfigurationsCreateResponse struct {
	Body         []byte
	HTTPResponse *http.Response
	JSON201      *JIRAInstance
}

func ParseJiraConfigurationsCreateResponse

func ParseJiraConfigurationsCreateResponse(rsp *http.Response) (*JiraConfigurationsCreateResponse, error)

ParseJiraConfigurationsCreateResponse parses an HTTP response from a JiraConfigurationsCreateWithResponse call

func (JiraConfigurationsCreateResponse) Status

Status returns HTTPResponse.Status

func (JiraConfigurationsCreateResponse) StatusCode

func (r JiraConfigurationsCreateResponse) StatusCode() int

StatusCode returns HTTPResponse.StatusCode

type JiraConfigurationsDeletePreviewListParams added in v0.2.0

type JiraConfigurationsDeletePreviewListParams struct {
	// Limit Number of results to return per page.
	Limit *int `form:"limit,omitempty" json:"limit,omitempty"`

	// Offset The initial index from which to return the results.
	Offset *int `form:"offset,omitempty" json:"offset,omitempty"`
}

JiraConfigurationsDeletePreviewListParams defines parameters for JiraConfigurationsDeletePreviewList.

type JiraConfigurationsDeletePreviewListResponse added in v0.2.0

type JiraConfigurationsDeletePreviewListResponse struct {
	Body         []byte
	HTTPResponse *http.Response
	JSON200      *PaginatedDeletePreviewList
}

func ParseJiraConfigurationsDeletePreviewListResponse added in v0.2.0

func ParseJiraConfigurationsDeletePreviewListResponse(rsp *http.Response) (*JiraConfigurationsDeletePreviewListResponse, error)

ParseJiraConfigurationsDeletePreviewListResponse parses an HTTP response from a JiraConfigurationsDeletePreviewListWithResponse call

func (JiraConfigurationsDeletePreviewListResponse) Status added in v0.2.0

Status returns HTTPResponse.Status

func (JiraConfigurationsDeletePreviewListResponse) StatusCode added in v0.2.0

StatusCode returns HTTPResponse.StatusCode

type JiraConfigurationsDestroyResponse

type JiraConfigurationsDestroyResponse struct {
	Body         []byte
	HTTPResponse *http.Response
}

func ParseJiraConfigurationsDestroyResponse

func ParseJiraConfigurationsDestroyResponse(rsp *http.Response) (*JiraConfigurationsDestroyResponse, error)

ParseJiraConfigurationsDestroyResponse parses an HTTP response from a JiraConfigurationsDestroyWithResponse call

func (JiraConfigurationsDestroyResponse) Status

Status returns HTTPResponse.Status

func (JiraConfigurationsDestroyResponse) StatusCode

func (r JiraConfigurationsDestroyResponse) StatusCode() int

StatusCode returns HTTPResponse.StatusCode

type JiraConfigurationsListParams

type JiraConfigurationsListParams struct {
	Id *int `form:"id,omitempty" json:"id,omitempty"`

	// Limit Number of results to return per page.
	Limit *int `form:"limit,omitempty" json:"limit,omitempty"`

	// Offset The initial index from which to return the results.
	Offset *int    `form:"offset,omitempty" json:"offset,omitempty"`
	Url    *string `form:"url,omitempty" json:"url,omitempty"`
}

JiraConfigurationsListParams defines parameters for JiraConfigurationsList.

type JiraConfigurationsListResponse

type JiraConfigurationsListResponse struct {
	Body         []byte
	HTTPResponse *http.Response
	JSON200      *PaginatedJIRAInstanceList
}

func ParseJiraConfigurationsListResponse

func ParseJiraConfigurationsListResponse(rsp *http.Response) (*JiraConfigurationsListResponse, error)

ParseJiraConfigurationsListResponse parses an HTTP response from a JiraConfigurationsListWithResponse call

func (JiraConfigurationsListResponse) Status

Status returns HTTPResponse.Status

func (JiraConfigurationsListResponse) StatusCode

func (r JiraConfigurationsListResponse) StatusCode() int

StatusCode returns HTTPResponse.StatusCode

type JiraConfigurationsPartialUpdateFormdataRequestBody added in v0.2.0

type JiraConfigurationsPartialUpdateFormdataRequestBody = PatchedJIRAInstanceRequest

JiraConfigurationsPartialUpdateFormdataRequestBody defines body for JiraConfigurationsPartialUpdate for application/x-www-form-urlencoded ContentType.

type JiraConfigurationsPartialUpdateJSONRequestBody

type JiraConfigurationsPartialUpdateJSONRequestBody = PatchedJIRAInstanceRequest

JiraConfigurationsPartialUpdateJSONRequestBody defines body for JiraConfigurationsPartialUpdate for application/json ContentType.

type JiraConfigurationsPartialUpdateMultipartRequestBody added in v0.2.0

type JiraConfigurationsPartialUpdateMultipartRequestBody = PatchedJIRAInstanceRequest

JiraConfigurationsPartialUpdateMultipartRequestBody defines body for JiraConfigurationsPartialUpdate for multipart/form-data ContentType.

type JiraConfigurationsPartialUpdateResponse

type JiraConfigurationsPartialUpdateResponse struct {
	Body         []byte
	HTTPResponse *http.Response
	JSON200      *JIRAInstance
}

func ParseJiraConfigurationsPartialUpdateResponse

func ParseJiraConfigurationsPartialUpdateResponse(rsp *http.Response) (*JiraConfigurationsPartialUpdateResponse, error)

ParseJiraConfigurationsPartialUpdateResponse parses an HTTP response from a JiraConfigurationsPartialUpdateWithResponse call

func (JiraConfigurationsPartialUpdateResponse) Status

Status returns HTTPResponse.Status

func (JiraConfigurationsPartialUpdateResponse) StatusCode

StatusCode returns HTTPResponse.StatusCode

type JiraConfigurationsRetrieveResponse

type JiraConfigurationsRetrieveResponse struct {
	Body         []byte
	HTTPResponse *http.Response
	JSON200      *JIRAInstance
}

func ParseJiraConfigurationsRetrieveResponse

func ParseJiraConfigurationsRetrieveResponse(rsp *http.Response) (*JiraConfigurationsRetrieveResponse, error)

ParseJiraConfigurationsRetrieveResponse parses an HTTP response from a JiraConfigurationsRetrieveWithResponse call

func (JiraConfigurationsRetrieveResponse) Status

Status returns HTTPResponse.Status

func (JiraConfigurationsRetrieveResponse) StatusCode

func (r JiraConfigurationsRetrieveResponse) StatusCode() int

StatusCode returns HTTPResponse.StatusCode

type JiraConfigurationsUpdateFormdataRequestBody added in v0.2.0

type JiraConfigurationsUpdateFormdataRequestBody = JIRAInstanceRequest

JiraConfigurationsUpdateFormdataRequestBody defines body for JiraConfigurationsUpdate for application/x-www-form-urlencoded ContentType.

type JiraConfigurationsUpdateJSONRequestBody

type JiraConfigurationsUpdateJSONRequestBody = JIRAInstanceRequest

JiraConfigurationsUpdateJSONRequestBody defines body for JiraConfigurationsUpdate for application/json ContentType.

type JiraConfigurationsUpdateMultipartRequestBody added in v0.2.0

type JiraConfigurationsUpdateMultipartRequestBody = JIRAInstanceRequest

JiraConfigurationsUpdateMultipartRequestBody defines body for JiraConfigurationsUpdate for multipart/form-data ContentType.

type JiraConfigurationsUpdateResponse

type JiraConfigurationsUpdateResponse struct {
	Body         []byte
	HTTPResponse *http.Response
	JSON200      *JIRAInstance
}

func ParseJiraConfigurationsUpdateResponse

func ParseJiraConfigurationsUpdateResponse(rsp *http.Response) (*JiraConfigurationsUpdateResponse, error)

ParseJiraConfigurationsUpdateResponse parses an HTTP response from a JiraConfigurationsUpdateWithResponse call

func (JiraConfigurationsUpdateResponse) Status

Status returns HTTPResponse.Status

func (JiraConfigurationsUpdateResponse) StatusCode

func (r JiraConfigurationsUpdateResponse) StatusCode() int

StatusCode returns HTTPResponse.StatusCode

type JiraFindingMappingsCreateFormdataRequestBody added in v0.2.0

type JiraFindingMappingsCreateFormdataRequestBody = JIRAIssueRequest

JiraFindingMappingsCreateFormdataRequestBody defines body for JiraFindingMappingsCreate for application/x-www-form-urlencoded ContentType.

type JiraFindingMappingsCreateJSONRequestBody

type JiraFindingMappingsCreateJSONRequestBody = JIRAIssueRequest

JiraFindingMappingsCreateJSONRequestBody defines body for JiraFindingMappingsCreate for application/json ContentType.

type JiraFindingMappingsCreateMultipartRequestBody added in v0.2.0

type JiraFindingMappingsCreateMultipartRequestBody = JIRAIssueRequest

JiraFindingMappingsCreateMultipartRequestBody defines body for JiraFindingMappingsCreate for multipart/form-data ContentType.

type JiraFindingMappingsCreateResponse

type JiraFindingMappingsCreateResponse struct {
	Body         []byte
	HTTPResponse *http.Response
	JSON201      *JIRAIssue
}

func ParseJiraFindingMappingsCreateResponse

func ParseJiraFindingMappingsCreateResponse(rsp *http.Response) (*JiraFindingMappingsCreateResponse, error)

ParseJiraFindingMappingsCreateResponse parses an HTTP response from a JiraFindingMappingsCreateWithResponse call

func (JiraFindingMappingsCreateResponse) Status

Status returns HTTPResponse.Status

func (JiraFindingMappingsCreateResponse) StatusCode

func (r JiraFindingMappingsCreateResponse) StatusCode() int

StatusCode returns HTTPResponse.StatusCode

type JiraFindingMappingsDeletePreviewListParams added in v0.2.0

type JiraFindingMappingsDeletePreviewListParams struct {
	// Limit Number of results to return per page.
	Limit *int `form:"limit,omitempty" json:"limit,omitempty"`

	// Offset The initial index from which to return the results.
	Offset *int `form:"offset,omitempty" json:"offset,omitempty"`
}

JiraFindingMappingsDeletePreviewListParams defines parameters for JiraFindingMappingsDeletePreviewList.

type JiraFindingMappingsDeletePreviewListResponse added in v0.2.0

type JiraFindingMappingsDeletePreviewListResponse struct {
	Body         []byte
	HTTPResponse *http.Response
	JSON200      *PaginatedDeletePreviewList
}

func ParseJiraFindingMappingsDeletePreviewListResponse added in v0.2.0

func ParseJiraFindingMappingsDeletePreviewListResponse(rsp *http.Response) (*JiraFindingMappingsDeletePreviewListResponse, error)

ParseJiraFindingMappingsDeletePreviewListResponse parses an HTTP response from a JiraFindingMappingsDeletePreviewListWithResponse call

func (JiraFindingMappingsDeletePreviewListResponse) Status added in v0.2.0

Status returns HTTPResponse.Status

func (JiraFindingMappingsDeletePreviewListResponse) StatusCode added in v0.2.0

StatusCode returns HTTPResponse.StatusCode

type JiraFindingMappingsDestroyResponse

type JiraFindingMappingsDestroyResponse struct {
	Body         []byte
	HTTPResponse *http.Response
}

func ParseJiraFindingMappingsDestroyResponse

func ParseJiraFindingMappingsDestroyResponse(rsp *http.Response) (*JiraFindingMappingsDestroyResponse, error)

ParseJiraFindingMappingsDestroyResponse parses an HTTP response from a JiraFindingMappingsDestroyWithResponse call

func (JiraFindingMappingsDestroyResponse) Status

Status returns HTTPResponse.Status

func (JiraFindingMappingsDestroyResponse) StatusCode

func (r JiraFindingMappingsDestroyResponse) StatusCode() int

StatusCode returns HTTPResponse.StatusCode

type JiraFindingMappingsListParams

type JiraFindingMappingsListParams struct {
	Engagement   *int    `form:"engagement,omitempty" json:"engagement,omitempty"`
	Finding      *int    `form:"finding,omitempty" json:"finding,omitempty"`
	FindingGroup *int    `form:"finding_group,omitempty" json:"finding_group,omitempty"`
	Id           *int    `form:"id,omitempty" json:"id,omitempty"`
	JiraId       *string `form:"jira_id,omitempty" json:"jira_id,omitempty"`
	JiraKey      *string `form:"jira_key,omitempty" json:"jira_key,omitempty"`

	// Limit Number of results to return per page.
	Limit *int `form:"limit,omitempty" json:"limit,omitempty"`

	// Offset The initial index from which to return the results.
	Offset *int `form:"offset,omitempty" json:"offset,omitempty"`
}

JiraFindingMappingsListParams defines parameters for JiraFindingMappingsList.

type JiraFindingMappingsListResponse

type JiraFindingMappingsListResponse struct {
	Body         []byte
	HTTPResponse *http.Response
	JSON200      *PaginatedJIRAIssueList
}

func ParseJiraFindingMappingsListResponse

func ParseJiraFindingMappingsListResponse(rsp *http.Response) (*JiraFindingMappingsListResponse, error)

ParseJiraFindingMappingsListResponse parses an HTTP response from a JiraFindingMappingsListWithResponse call

func (JiraFindingMappingsListResponse) Status

Status returns HTTPResponse.Status

func (JiraFindingMappingsListResponse) StatusCode

func (r JiraFindingMappingsListResponse) StatusCode() int

StatusCode returns HTTPResponse.StatusCode

type JiraFindingMappingsPartialUpdateFormdataRequestBody added in v0.2.0

type JiraFindingMappingsPartialUpdateFormdataRequestBody = PatchedJIRAIssueRequest

JiraFindingMappingsPartialUpdateFormdataRequestBody defines body for JiraFindingMappingsPartialUpdate for application/x-www-form-urlencoded ContentType.

type JiraFindingMappingsPartialUpdateJSONRequestBody

type JiraFindingMappingsPartialUpdateJSONRequestBody = PatchedJIRAIssueRequest

JiraFindingMappingsPartialUpdateJSONRequestBody defines body for JiraFindingMappingsPartialUpdate for application/json ContentType.

type JiraFindingMappingsPartialUpdateMultipartRequestBody added in v0.2.0

type JiraFindingMappingsPartialUpdateMultipartRequestBody = PatchedJIRAIssueRequest

JiraFindingMappingsPartialUpdateMultipartRequestBody defines body for JiraFindingMappingsPartialUpdate for multipart/form-data ContentType.

type JiraFindingMappingsPartialUpdateResponse

type JiraFindingMappingsPartialUpdateResponse struct {
	Body         []byte
	HTTPResponse *http.Response
	JSON200      *JIRAIssue
}

func ParseJiraFindingMappingsPartialUpdateResponse

func ParseJiraFindingMappingsPartialUpdateResponse(rsp *http.Response) (*JiraFindingMappingsPartialUpdateResponse, error)

ParseJiraFindingMappingsPartialUpdateResponse parses an HTTP response from a JiraFindingMappingsPartialUpdateWithResponse call

func (JiraFindingMappingsPartialUpdateResponse) Status

Status returns HTTPResponse.Status

func (JiraFindingMappingsPartialUpdateResponse) StatusCode

StatusCode returns HTTPResponse.StatusCode

type JiraFindingMappingsRetrieveResponse

type JiraFindingMappingsRetrieveResponse struct {
	Body         []byte
	HTTPResponse *http.Response
	JSON200      *JIRAIssue
}

func ParseJiraFindingMappingsRetrieveResponse

func ParseJiraFindingMappingsRetrieveResponse(rsp *http.Response) (*JiraFindingMappingsRetrieveResponse, error)

ParseJiraFindingMappingsRetrieveResponse parses an HTTP response from a JiraFindingMappingsRetrieveWithResponse call

func (JiraFindingMappingsRetrieveResponse) Status

Status returns HTTPResponse.Status

func (JiraFindingMappingsRetrieveResponse) StatusCode

StatusCode returns HTTPResponse.StatusCode

type JiraFindingMappingsUpdateFormdataRequestBody added in v0.2.0

type JiraFindingMappingsUpdateFormdataRequestBody = JIRAIssueRequest

JiraFindingMappingsUpdateFormdataRequestBody defines body for JiraFindingMappingsUpdate for application/x-www-form-urlencoded ContentType.

type JiraFindingMappingsUpdateJSONRequestBody

type JiraFindingMappingsUpdateJSONRequestBody = JIRAIssueRequest

JiraFindingMappingsUpdateJSONRequestBody defines body for JiraFindingMappingsUpdate for application/json ContentType.

type JiraFindingMappingsUpdateMultipartRequestBody added in v0.2.0

type JiraFindingMappingsUpdateMultipartRequestBody = JIRAIssueRequest

JiraFindingMappingsUpdateMultipartRequestBody defines body for JiraFindingMappingsUpdate for multipart/form-data ContentType.

type JiraFindingMappingsUpdateResponse

type JiraFindingMappingsUpdateResponse struct {
	Body         []byte
	HTTPResponse *http.Response
	JSON200      *JIRAIssue
}

func ParseJiraFindingMappingsUpdateResponse

func ParseJiraFindingMappingsUpdateResponse(rsp *http.Response) (*JiraFindingMappingsUpdateResponse, error)

ParseJiraFindingMappingsUpdateResponse parses an HTTP response from a JiraFindingMappingsUpdateWithResponse call

func (JiraFindingMappingsUpdateResponse) Status

Status returns HTTPResponse.Status

func (JiraFindingMappingsUpdateResponse) StatusCode

func (r JiraFindingMappingsUpdateResponse) StatusCode() int

StatusCode returns HTTPResponse.StatusCode

type JiraInstancesCreateFormdataRequestBody added in v0.2.0

type JiraInstancesCreateFormdataRequestBody = JIRAInstanceRequest

JiraInstancesCreateFormdataRequestBody defines body for JiraInstancesCreate for application/x-www-form-urlencoded ContentType.

type JiraInstancesCreateJSONRequestBody

type JiraInstancesCreateJSONRequestBody = JIRAInstanceRequest

JiraInstancesCreateJSONRequestBody defines body for JiraInstancesCreate for application/json ContentType.

type JiraInstancesCreateMultipartRequestBody added in v0.2.0

type JiraInstancesCreateMultipartRequestBody = JIRAInstanceRequest

JiraInstancesCreateMultipartRequestBody defines body for JiraInstancesCreate for multipart/form-data ContentType.

type JiraInstancesCreateResponse

type JiraInstancesCreateResponse struct {
	Body         []byte
	HTTPResponse *http.Response
	JSON201      *JIRAInstance
}

func ParseJiraInstancesCreateResponse

func ParseJiraInstancesCreateResponse(rsp *http.Response) (*JiraInstancesCreateResponse, error)

ParseJiraInstancesCreateResponse parses an HTTP response from a JiraInstancesCreateWithResponse call

func (JiraInstancesCreateResponse) Status

Status returns HTTPResponse.Status

func (JiraInstancesCreateResponse) StatusCode

func (r JiraInstancesCreateResponse) StatusCode() int

StatusCode returns HTTPResponse.StatusCode

type JiraInstancesDeletePreviewListParams added in v0.2.0

type JiraInstancesDeletePreviewListParams struct {
	// Limit Number of results to return per page.
	Limit *int `form:"limit,omitempty" json:"limit,omitempty"`

	// Offset The initial index from which to return the results.
	Offset *int `form:"offset,omitempty" json:"offset,omitempty"`
}

JiraInstancesDeletePreviewListParams defines parameters for JiraInstancesDeletePreviewList.

type JiraInstancesDeletePreviewListResponse added in v0.2.0

type JiraInstancesDeletePreviewListResponse struct {
	Body         []byte
	HTTPResponse *http.Response
	JSON200      *PaginatedDeletePreviewList
}

func ParseJiraInstancesDeletePreviewListResponse added in v0.2.0

func ParseJiraInstancesDeletePreviewListResponse(rsp *http.Response) (*JiraInstancesDeletePreviewListResponse, error)

ParseJiraInstancesDeletePreviewListResponse parses an HTTP response from a JiraInstancesDeletePreviewListWithResponse call

func (JiraInstancesDeletePreviewListResponse) Status added in v0.2.0

Status returns HTTPResponse.Status

func (JiraInstancesDeletePreviewListResponse) StatusCode added in v0.2.0

StatusCode returns HTTPResponse.StatusCode

type JiraInstancesDestroyResponse

type JiraInstancesDestroyResponse struct {
	Body         []byte
	HTTPResponse *http.Response
}

func ParseJiraInstancesDestroyResponse

func ParseJiraInstancesDestroyResponse(rsp *http.Response) (*JiraInstancesDestroyResponse, error)

ParseJiraInstancesDestroyResponse parses an HTTP response from a JiraInstancesDestroyWithResponse call

func (JiraInstancesDestroyResponse) Status

Status returns HTTPResponse.Status

func (JiraInstancesDestroyResponse) StatusCode

func (r JiraInstancesDestroyResponse) StatusCode() int

StatusCode returns HTTPResponse.StatusCode

type JiraInstancesListParams

type JiraInstancesListParams struct {
	Id *int `form:"id,omitempty" json:"id,omitempty"`

	// Limit Number of results to return per page.
	Limit *int `form:"limit,omitempty" json:"limit,omitempty"`

	// Offset The initial index from which to return the results.
	Offset *int    `form:"offset,omitempty" json:"offset,omitempty"`
	Url    *string `form:"url,omitempty" json:"url,omitempty"`
}

JiraInstancesListParams defines parameters for JiraInstancesList.

type JiraInstancesListResponse

type JiraInstancesListResponse struct {
	Body         []byte
	HTTPResponse *http.Response
	JSON200      *PaginatedJIRAInstanceList
}

func ParseJiraInstancesListResponse

func ParseJiraInstancesListResponse(rsp *http.Response) (*JiraInstancesListResponse, error)

ParseJiraInstancesListResponse parses an HTTP response from a JiraInstancesListWithResponse call

func (JiraInstancesListResponse) Status

func (r JiraInstancesListResponse) Status() string

Status returns HTTPResponse.Status

func (JiraInstancesListResponse) StatusCode

func (r JiraInstancesListResponse) StatusCode() int

StatusCode returns HTTPResponse.StatusCode

type JiraInstancesPartialUpdateFormdataRequestBody added in v0.2.0

type JiraInstancesPartialUpdateFormdataRequestBody = PatchedJIRAInstanceRequest

JiraInstancesPartialUpdateFormdataRequestBody defines body for JiraInstancesPartialUpdate for application/x-www-form-urlencoded ContentType.

type JiraInstancesPartialUpdateJSONRequestBody

type JiraInstancesPartialUpdateJSONRequestBody = PatchedJIRAInstanceRequest

JiraInstancesPartialUpdateJSONRequestBody defines body for JiraInstancesPartialUpdate for application/json ContentType.

type JiraInstancesPartialUpdateMultipartRequestBody added in v0.2.0

type JiraInstancesPartialUpdateMultipartRequestBody = PatchedJIRAInstanceRequest

JiraInstancesPartialUpdateMultipartRequestBody defines body for JiraInstancesPartialUpdate for multipart/form-data ContentType.

type JiraInstancesPartialUpdateResponse

type JiraInstancesPartialUpdateResponse struct {
	Body         []byte
	HTTPResponse *http.Response
	JSON200      *JIRAInstance
}

func ParseJiraInstancesPartialUpdateResponse

func ParseJiraInstancesPartialUpdateResponse(rsp *http.Response) (*JiraInstancesPartialUpdateResponse, error)

ParseJiraInstancesPartialUpdateResponse parses an HTTP response from a JiraInstancesPartialUpdateWithResponse call

func (JiraInstancesPartialUpdateResponse) Status

Status returns HTTPResponse.Status

func (JiraInstancesPartialUpdateResponse) StatusCode

func (r JiraInstancesPartialUpdateResponse) StatusCode() int

StatusCode returns HTTPResponse.StatusCode

type JiraInstancesRetrieveResponse

type JiraInstancesRetrieveResponse struct {
	Body         []byte
	HTTPResponse *http.Response
	JSON200      *JIRAInstance
}

func ParseJiraInstancesRetrieveResponse

func ParseJiraInstancesRetrieveResponse(rsp *http.Response) (*JiraInstancesRetrieveResponse, error)

ParseJiraInstancesRetrieveResponse parses an HTTP response from a JiraInstancesRetrieveWithResponse call

func (JiraInstancesRetrieveResponse) Status

Status returns HTTPResponse.Status

func (JiraInstancesRetrieveResponse) StatusCode

func (r JiraInstancesRetrieveResponse) StatusCode() int

StatusCode returns HTTPResponse.StatusCode

type JiraInstancesUpdateFormdataRequestBody added in v0.2.0

type JiraInstancesUpdateFormdataRequestBody = JIRAInstanceRequest

JiraInstancesUpdateFormdataRequestBody defines body for JiraInstancesUpdate for application/x-www-form-urlencoded ContentType.

type JiraInstancesUpdateJSONRequestBody

type JiraInstancesUpdateJSONRequestBody = JIRAInstanceRequest

JiraInstancesUpdateJSONRequestBody defines body for JiraInstancesUpdate for application/json ContentType.

type JiraInstancesUpdateMultipartRequestBody added in v0.2.0

type JiraInstancesUpdateMultipartRequestBody = JIRAInstanceRequest

JiraInstancesUpdateMultipartRequestBody defines body for JiraInstancesUpdate for multipart/form-data ContentType.

type JiraInstancesUpdateResponse

type JiraInstancesUpdateResponse struct {
	Body         []byte
	HTTPResponse *http.Response
	JSON200      *JIRAInstance
}

func ParseJiraInstancesUpdateResponse

func ParseJiraInstancesUpdateResponse(rsp *http.Response) (*JiraInstancesUpdateResponse, error)

ParseJiraInstancesUpdateResponse parses an HTTP response from a JiraInstancesUpdateWithResponse call

func (JiraInstancesUpdateResponse) Status

Status returns HTTPResponse.Status

func (JiraInstancesUpdateResponse) StatusCode

func (r JiraInstancesUpdateResponse) StatusCode() int

StatusCode returns HTTPResponse.StatusCode

type JiraProductConfigurationsCreateFormdataRequestBody added in v0.2.0

type JiraProductConfigurationsCreateFormdataRequestBody = JIRAProjectRequest

JiraProductConfigurationsCreateFormdataRequestBody defines body for JiraProductConfigurationsCreate for application/x-www-form-urlencoded ContentType.

type JiraProductConfigurationsCreateJSONRequestBody

type JiraProductConfigurationsCreateJSONRequestBody = JIRAProjectRequest

JiraProductConfigurationsCreateJSONRequestBody defines body for JiraProductConfigurationsCreate for application/json ContentType.

type JiraProductConfigurationsCreateMultipartRequestBody added in v0.2.0

type JiraProductConfigurationsCreateMultipartRequestBody = JIRAProjectRequest

JiraProductConfigurationsCreateMultipartRequestBody defines body for JiraProductConfigurationsCreate for multipart/form-data ContentType.

type JiraProductConfigurationsCreateResponse

type JiraProductConfigurationsCreateResponse struct {
	Body         []byte
	HTTPResponse *http.Response
	JSON201      *JIRAProject
}

func ParseJiraProductConfigurationsCreateResponse

func ParseJiraProductConfigurationsCreateResponse(rsp *http.Response) (*JiraProductConfigurationsCreateResponse, error)

ParseJiraProductConfigurationsCreateResponse parses an HTTP response from a JiraProductConfigurationsCreateWithResponse call

func (JiraProductConfigurationsCreateResponse) Status

Status returns HTTPResponse.Status

func (JiraProductConfigurationsCreateResponse) StatusCode

StatusCode returns HTTPResponse.StatusCode

type JiraProductConfigurationsDeletePreviewListParams added in v0.2.0

type JiraProductConfigurationsDeletePreviewListParams struct {
	// Limit Number of results to return per page.
	Limit *int `form:"limit,omitempty" json:"limit,omitempty"`

	// Offset The initial index from which to return the results.
	Offset *int `form:"offset,omitempty" json:"offset,omitempty"`
}

JiraProductConfigurationsDeletePreviewListParams defines parameters for JiraProductConfigurationsDeletePreviewList.

type JiraProductConfigurationsDeletePreviewListResponse added in v0.2.0

type JiraProductConfigurationsDeletePreviewListResponse struct {
	Body         []byte
	HTTPResponse *http.Response
	JSON200      *PaginatedDeletePreviewList
}

func ParseJiraProductConfigurationsDeletePreviewListResponse added in v0.2.0

func ParseJiraProductConfigurationsDeletePreviewListResponse(rsp *http.Response) (*JiraProductConfigurationsDeletePreviewListResponse, error)

ParseJiraProductConfigurationsDeletePreviewListResponse parses an HTTP response from a JiraProductConfigurationsDeletePreviewListWithResponse call

func (JiraProductConfigurationsDeletePreviewListResponse) Status added in v0.2.0

Status returns HTTPResponse.Status

func (JiraProductConfigurationsDeletePreviewListResponse) StatusCode added in v0.2.0

StatusCode returns HTTPResponse.StatusCode

type JiraProductConfigurationsDestroyResponse

type JiraProductConfigurationsDestroyResponse struct {
	Body         []byte
	HTTPResponse *http.Response
}

func ParseJiraProductConfigurationsDestroyResponse

func ParseJiraProductConfigurationsDestroyResponse(rsp *http.Response) (*JiraProductConfigurationsDestroyResponse, error)

ParseJiraProductConfigurationsDestroyResponse parses an HTTP response from a JiraProductConfigurationsDestroyWithResponse call

func (JiraProductConfigurationsDestroyResponse) Status

Status returns HTTPResponse.Status

func (JiraProductConfigurationsDestroyResponse) StatusCode

StatusCode returns HTTPResponse.StatusCode

type JiraProductConfigurationsListParams

type JiraProductConfigurationsListParams struct {
	Component                   *string `form:"component,omitempty" json:"component,omitempty"`
	EnableEngagementEpicMapping *bool   `form:"enable_engagement_epic_mapping,omitempty" json:"enable_engagement_epic_mapping,omitempty"`
	Engagement                  *int    `form:"engagement,omitempty" json:"engagement,omitempty"`
	Id                          *int    `form:"id,omitempty" json:"id,omitempty"`
	JiraInstance                *int    `form:"jira_instance,omitempty" json:"jira_instance,omitempty"`

	// Limit Number of results to return per page.
	Limit *int `form:"limit,omitempty" json:"limit,omitempty"`

	// Offset The initial index from which to return the results.
	Offset        *int    `form:"offset,omitempty" json:"offset,omitempty"`
	Product       *int    `form:"product,omitempty" json:"product,omitempty"`
	ProjectKey    *string `form:"project_key,omitempty" json:"project_key,omitempty"`
	PushAllIssues *bool   `form:"push_all_issues,omitempty" json:"push_all_issues,omitempty"`
	PushNotes     *bool   `form:"push_notes,omitempty" json:"push_notes,omitempty"`
}

JiraProductConfigurationsListParams defines parameters for JiraProductConfigurationsList.

type JiraProductConfigurationsListResponse

type JiraProductConfigurationsListResponse struct {
	Body         []byte
	HTTPResponse *http.Response
	JSON200      *PaginatedJIRAProjectList
}

func ParseJiraProductConfigurationsListResponse

func ParseJiraProductConfigurationsListResponse(rsp *http.Response) (*JiraProductConfigurationsListResponse, error)

ParseJiraProductConfigurationsListResponse parses an HTTP response from a JiraProductConfigurationsListWithResponse call

func (JiraProductConfigurationsListResponse) Status

Status returns HTTPResponse.Status

func (JiraProductConfigurationsListResponse) StatusCode

StatusCode returns HTTPResponse.StatusCode

type JiraProductConfigurationsPartialUpdateFormdataRequestBody added in v0.2.0

type JiraProductConfigurationsPartialUpdateFormdataRequestBody = PatchedJIRAProjectRequest

JiraProductConfigurationsPartialUpdateFormdataRequestBody defines body for JiraProductConfigurationsPartialUpdate for application/x-www-form-urlencoded ContentType.

type JiraProductConfigurationsPartialUpdateJSONRequestBody

type JiraProductConfigurationsPartialUpdateJSONRequestBody = PatchedJIRAProjectRequest

JiraProductConfigurationsPartialUpdateJSONRequestBody defines body for JiraProductConfigurationsPartialUpdate for application/json ContentType.

type JiraProductConfigurationsPartialUpdateMultipartRequestBody added in v0.2.0

type JiraProductConfigurationsPartialUpdateMultipartRequestBody = PatchedJIRAProjectRequest

JiraProductConfigurationsPartialUpdateMultipartRequestBody defines body for JiraProductConfigurationsPartialUpdate for multipart/form-data ContentType.

type JiraProductConfigurationsPartialUpdateResponse

type JiraProductConfigurationsPartialUpdateResponse struct {
	Body         []byte
	HTTPResponse *http.Response
	JSON200      *JIRAProject
}

func ParseJiraProductConfigurationsPartialUpdateResponse

func ParseJiraProductConfigurationsPartialUpdateResponse(rsp *http.Response) (*JiraProductConfigurationsPartialUpdateResponse, error)

ParseJiraProductConfigurationsPartialUpdateResponse parses an HTTP response from a JiraProductConfigurationsPartialUpdateWithResponse call

func (JiraProductConfigurationsPartialUpdateResponse) Status

Status returns HTTPResponse.Status

func (JiraProductConfigurationsPartialUpdateResponse) StatusCode

StatusCode returns HTTPResponse.StatusCode

type JiraProductConfigurationsRetrieveResponse

type JiraProductConfigurationsRetrieveResponse struct {
	Body         []byte
	HTTPResponse *http.Response
	JSON200      *JIRAProject
}

func ParseJiraProductConfigurationsRetrieveResponse

func ParseJiraProductConfigurationsRetrieveResponse(rsp *http.Response) (*JiraProductConfigurationsRetrieveResponse, error)

ParseJiraProductConfigurationsRetrieveResponse parses an HTTP response from a JiraProductConfigurationsRetrieveWithResponse call

func (JiraProductConfigurationsRetrieveResponse) Status

Status returns HTTPResponse.Status

func (JiraProductConfigurationsRetrieveResponse) StatusCode

StatusCode returns HTTPResponse.StatusCode

type JiraProductConfigurationsUpdateFormdataRequestBody added in v0.2.0

type JiraProductConfigurationsUpdateFormdataRequestBody = JIRAProjectRequest

JiraProductConfigurationsUpdateFormdataRequestBody defines body for JiraProductConfigurationsUpdate for application/x-www-form-urlencoded ContentType.

type JiraProductConfigurationsUpdateJSONRequestBody

type JiraProductConfigurationsUpdateJSONRequestBody = JIRAProjectRequest

JiraProductConfigurationsUpdateJSONRequestBody defines body for JiraProductConfigurationsUpdate for application/json ContentType.

type JiraProductConfigurationsUpdateMultipartRequestBody added in v0.2.0

type JiraProductConfigurationsUpdateMultipartRequestBody = JIRAProjectRequest

JiraProductConfigurationsUpdateMultipartRequestBody defines body for JiraProductConfigurationsUpdate for multipart/form-data ContentType.

type JiraProductConfigurationsUpdateResponse

type JiraProductConfigurationsUpdateResponse struct {
	Body         []byte
	HTTPResponse *http.Response
	JSON200      *JIRAProject
}

func ParseJiraProductConfigurationsUpdateResponse

func ParseJiraProductConfigurationsUpdateResponse(rsp *http.Response) (*JiraProductConfigurationsUpdateResponse, error)

ParseJiraProductConfigurationsUpdateResponse parses an HTTP response from a JiraProductConfigurationsUpdateWithResponse call

func (JiraProductConfigurationsUpdateResponse) Status

Status returns HTTPResponse.Status

func (JiraProductConfigurationsUpdateResponse) StatusCode

StatusCode returns HTTPResponse.StatusCode

type JiraProjectsCreateFormdataRequestBody added in v0.2.0

type JiraProjectsCreateFormdataRequestBody = JIRAProjectRequest

JiraProjectsCreateFormdataRequestBody defines body for JiraProjectsCreate for application/x-www-form-urlencoded ContentType.

type JiraProjectsCreateJSONRequestBody

type JiraProjectsCreateJSONRequestBody = JIRAProjectRequest

JiraProjectsCreateJSONRequestBody defines body for JiraProjectsCreate for application/json ContentType.

type JiraProjectsCreateMultipartRequestBody added in v0.2.0

type JiraProjectsCreateMultipartRequestBody = JIRAProjectRequest

JiraProjectsCreateMultipartRequestBody defines body for JiraProjectsCreate for multipart/form-data ContentType.

type JiraProjectsCreateResponse

type JiraProjectsCreateResponse struct {
	Body         []byte
	HTTPResponse *http.Response
	JSON201      *JIRAProject
}

func ParseJiraProjectsCreateResponse

func ParseJiraProjectsCreateResponse(rsp *http.Response) (*JiraProjectsCreateResponse, error)

ParseJiraProjectsCreateResponse parses an HTTP response from a JiraProjectsCreateWithResponse call

func (JiraProjectsCreateResponse) Status

Status returns HTTPResponse.Status

func (JiraProjectsCreateResponse) StatusCode

func (r JiraProjectsCreateResponse) StatusCode() int

StatusCode returns HTTPResponse.StatusCode

type JiraProjectsDeletePreviewListParams added in v0.2.0

type JiraProjectsDeletePreviewListParams struct {
	// Limit Number of results to return per page.
	Limit *int `form:"limit,omitempty" json:"limit,omitempty"`

	// Offset The initial index from which to return the results.
	Offset *int `form:"offset,omitempty" json:"offset,omitempty"`
}

JiraProjectsDeletePreviewListParams defines parameters for JiraProjectsDeletePreviewList.

type JiraProjectsDeletePreviewListResponse added in v0.2.0

type JiraProjectsDeletePreviewListResponse struct {
	Body         []byte
	HTTPResponse *http.Response
	JSON200      *PaginatedDeletePreviewList
}

func ParseJiraProjectsDeletePreviewListResponse added in v0.2.0

func ParseJiraProjectsDeletePreviewListResponse(rsp *http.Response) (*JiraProjectsDeletePreviewListResponse, error)

ParseJiraProjectsDeletePreviewListResponse parses an HTTP response from a JiraProjectsDeletePreviewListWithResponse call

func (JiraProjectsDeletePreviewListResponse) Status added in v0.2.0

Status returns HTTPResponse.Status

func (JiraProjectsDeletePreviewListResponse) StatusCode added in v0.2.0

StatusCode returns HTTPResponse.StatusCode

type JiraProjectsDestroyResponse

type JiraProjectsDestroyResponse struct {
	Body         []byte
	HTTPResponse *http.Response
}

func ParseJiraProjectsDestroyResponse

func ParseJiraProjectsDestroyResponse(rsp *http.Response) (*JiraProjectsDestroyResponse, error)

ParseJiraProjectsDestroyResponse parses an HTTP response from a JiraProjectsDestroyWithResponse call

func (JiraProjectsDestroyResponse) Status

Status returns HTTPResponse.Status

func (JiraProjectsDestroyResponse) StatusCode

func (r JiraProjectsDestroyResponse) StatusCode() int

StatusCode returns HTTPResponse.StatusCode

type JiraProjectsListParams

type JiraProjectsListParams struct {
	Component                   *string `form:"component,omitempty" json:"component,omitempty"`
	EnableEngagementEpicMapping *bool   `form:"enable_engagement_epic_mapping,omitempty" json:"enable_engagement_epic_mapping,omitempty"`
	Engagement                  *int    `form:"engagement,omitempty" json:"engagement,omitempty"`
	Id                          *int    `form:"id,omitempty" json:"id,omitempty"`
	JiraInstance                *int    `form:"jira_instance,omitempty" json:"jira_instance,omitempty"`

	// Limit Number of results to return per page.
	Limit *int `form:"limit,omitempty" json:"limit,omitempty"`

	// Offset The initial index from which to return the results.
	Offset        *int    `form:"offset,omitempty" json:"offset,omitempty"`
	Product       *int    `form:"product,omitempty" json:"product,omitempty"`
	ProjectKey    *string `form:"project_key,omitempty" json:"project_key,omitempty"`
	PushAllIssues *bool   `form:"push_all_issues,omitempty" json:"push_all_issues,omitempty"`
	PushNotes     *bool   `form:"push_notes,omitempty" json:"push_notes,omitempty"`
}

JiraProjectsListParams defines parameters for JiraProjectsList.

type JiraProjectsListResponse

type JiraProjectsListResponse struct {
	Body         []byte
	HTTPResponse *http.Response
	JSON200      *PaginatedJIRAProjectList
}

func ParseJiraProjectsListResponse

func ParseJiraProjectsListResponse(rsp *http.Response) (*JiraProjectsListResponse, error)

ParseJiraProjectsListResponse parses an HTTP response from a JiraProjectsListWithResponse call

func (JiraProjectsListResponse) Status

func (r JiraProjectsListResponse) Status() string

Status returns HTTPResponse.Status

func (JiraProjectsListResponse) StatusCode

func (r JiraProjectsListResponse) StatusCode() int

StatusCode returns HTTPResponse.StatusCode

type JiraProjectsPartialUpdateFormdataRequestBody added in v0.2.0

type JiraProjectsPartialUpdateFormdataRequestBody = PatchedJIRAProjectRequest

JiraProjectsPartialUpdateFormdataRequestBody defines body for JiraProjectsPartialUpdate for application/x-www-form-urlencoded ContentType.

type JiraProjectsPartialUpdateJSONRequestBody

type JiraProjectsPartialUpdateJSONRequestBody = PatchedJIRAProjectRequest

JiraProjectsPartialUpdateJSONRequestBody defines body for JiraProjectsPartialUpdate for application/json ContentType.

type JiraProjectsPartialUpdateMultipartRequestBody added in v0.2.0

type JiraProjectsPartialUpdateMultipartRequestBody = PatchedJIRAProjectRequest

JiraProjectsPartialUpdateMultipartRequestBody defines body for JiraProjectsPartialUpdate for multipart/form-data ContentType.

type JiraProjectsPartialUpdateResponse

type JiraProjectsPartialUpdateResponse struct {
	Body         []byte
	HTTPResponse *http.Response
	JSON200      *JIRAProject
}

func ParseJiraProjectsPartialUpdateResponse

func ParseJiraProjectsPartialUpdateResponse(rsp *http.Response) (*JiraProjectsPartialUpdateResponse, error)

ParseJiraProjectsPartialUpdateResponse parses an HTTP response from a JiraProjectsPartialUpdateWithResponse call

func (JiraProjectsPartialUpdateResponse) Status

Status returns HTTPResponse.Status

func (JiraProjectsPartialUpdateResponse) StatusCode

func (r JiraProjectsPartialUpdateResponse) StatusCode() int

StatusCode returns HTTPResponse.StatusCode

type JiraProjectsRetrieveResponse

type JiraProjectsRetrieveResponse struct {
	Body         []byte
	HTTPResponse *http.Response
	JSON200      *JIRAProject
}

func ParseJiraProjectsRetrieveResponse

func ParseJiraProjectsRetrieveResponse(rsp *http.Response) (*JiraProjectsRetrieveResponse, error)

ParseJiraProjectsRetrieveResponse parses an HTTP response from a JiraProjectsRetrieveWithResponse call

func (JiraProjectsRetrieveResponse) Status

Status returns HTTPResponse.Status

func (JiraProjectsRetrieveResponse) StatusCode

func (r JiraProjectsRetrieveResponse) StatusCode() int

StatusCode returns HTTPResponse.StatusCode

type JiraProjectsUpdateFormdataRequestBody added in v0.2.0

type JiraProjectsUpdateFormdataRequestBody = JIRAProjectRequest

JiraProjectsUpdateFormdataRequestBody defines body for JiraProjectsUpdate for application/x-www-form-urlencoded ContentType.

type JiraProjectsUpdateJSONRequestBody

type JiraProjectsUpdateJSONRequestBody = JIRAProjectRequest

JiraProjectsUpdateJSONRequestBody defines body for JiraProjectsUpdate for application/json ContentType.

type JiraProjectsUpdateMultipartRequestBody added in v0.2.0

type JiraProjectsUpdateMultipartRequestBody = JIRAProjectRequest

JiraProjectsUpdateMultipartRequestBody defines body for JiraProjectsUpdate for multipart/form-data ContentType.

type JiraProjectsUpdateResponse

type JiraProjectsUpdateResponse struct {
	Body         []byte
	HTTPResponse *http.Response
	JSON200      *JIRAProject
}

func ParseJiraProjectsUpdateResponse

func ParseJiraProjectsUpdateResponse(rsp *http.Response) (*JiraProjectsUpdateResponse, error)

ParseJiraProjectsUpdateResponse parses an HTTP response from a JiraProjectsUpdateWithResponse call

func (JiraProjectsUpdateResponse) Status

Status returns HTTPResponse.Status

func (JiraProjectsUpdateResponse) StatusCode

func (r JiraProjectsUpdateResponse) StatusCode() int

StatusCode returns HTTPResponse.StatusCode

type Language

type Language struct {
	Blank    *int       `json:"blank"`
	Code     *int       `json:"code"`
	Comment  *int       `json:"comment"`
	Created  *time.Time `json:"created,omitempty"`
	Files    *int       `json:"files"`
	Id       *int       `json:"id,omitempty"`
	Language int        `json:"language"`
	Prefetch *struct {
		Language *map[string]LanguageType `json:"language,omitempty"`
		Product  *map[string]Product      `json:"product,omitempty"`
		User     *map[string]UserStub     `json:"user,omitempty"`
	} `json:"prefetch,omitempty"`
	Product int  `json:"product"`
	User    *int `json:"user"`
}

Language defines model for Language.

type LanguageRequest added in v0.2.0

type LanguageRequest struct {
	Blank    *int `json:"blank"`
	Code     *int `json:"code"`
	Comment  *int `json:"comment"`
	Files    *int `json:"files"`
	Language int  `json:"language"`
	Product  int  `json:"product"`
	User     *int `json:"user"`
}

LanguageRequest defines model for LanguageRequest.

type LanguageType

type LanguageType struct {
	Color    *string `json:"color"`
	Id       *int    `json:"id,omitempty"`
	Language string  `json:"language"`
}

LanguageType defines model for LanguageType.

type LanguageTypeRequest added in v0.2.0

type LanguageTypeRequest struct {
	Color    *string `json:"color"`
	Language string  `json:"language"`
}

LanguageTypeRequest defines model for LanguageTypeRequest.

type LanguageTypesCreateFormdataRequestBody added in v0.2.0

type LanguageTypesCreateFormdataRequestBody = LanguageTypeRequest

LanguageTypesCreateFormdataRequestBody defines body for LanguageTypesCreate for application/x-www-form-urlencoded ContentType.

type LanguageTypesCreateJSONRequestBody

type LanguageTypesCreateJSONRequestBody = LanguageTypeRequest

LanguageTypesCreateJSONRequestBody defines body for LanguageTypesCreate for application/json ContentType.

type LanguageTypesCreateMultipartRequestBody added in v0.2.0

type LanguageTypesCreateMultipartRequestBody = LanguageTypeRequest

LanguageTypesCreateMultipartRequestBody defines body for LanguageTypesCreate for multipart/form-data ContentType.

type LanguageTypesCreateResponse

type LanguageTypesCreateResponse struct {
	Body         []byte
	HTTPResponse *http.Response
	JSON201      *LanguageType
}

func ParseLanguageTypesCreateResponse

func ParseLanguageTypesCreateResponse(rsp *http.Response) (*LanguageTypesCreateResponse, error)

ParseLanguageTypesCreateResponse parses an HTTP response from a LanguageTypesCreateWithResponse call

func (LanguageTypesCreateResponse) Status

Status returns HTTPResponse.Status

func (LanguageTypesCreateResponse) StatusCode

func (r LanguageTypesCreateResponse) StatusCode() int

StatusCode returns HTTPResponse.StatusCode

type LanguageTypesDeletePreviewListParams added in v0.2.0

type LanguageTypesDeletePreviewListParams struct {
	// Limit Number of results to return per page.
	Limit *int `form:"limit,omitempty" json:"limit,omitempty"`

	// Offset The initial index from which to return the results.
	Offset *int `form:"offset,omitempty" json:"offset,omitempty"`
}

LanguageTypesDeletePreviewListParams defines parameters for LanguageTypesDeletePreviewList.

type LanguageTypesDeletePreviewListResponse added in v0.2.0

type LanguageTypesDeletePreviewListResponse struct {
	Body         []byte
	HTTPResponse *http.Response
	JSON200      *PaginatedDeletePreviewList
}

func ParseLanguageTypesDeletePreviewListResponse added in v0.2.0

func ParseLanguageTypesDeletePreviewListResponse(rsp *http.Response) (*LanguageTypesDeletePreviewListResponse, error)

ParseLanguageTypesDeletePreviewListResponse parses an HTTP response from a LanguageTypesDeletePreviewListWithResponse call

func (LanguageTypesDeletePreviewListResponse) Status added in v0.2.0

Status returns HTTPResponse.Status

func (LanguageTypesDeletePreviewListResponse) StatusCode added in v0.2.0

StatusCode returns HTTPResponse.StatusCode

type LanguageTypesDestroyResponse

type LanguageTypesDestroyResponse struct {
	Body         []byte
	HTTPResponse *http.Response
}

func ParseLanguageTypesDestroyResponse

func ParseLanguageTypesDestroyResponse(rsp *http.Response) (*LanguageTypesDestroyResponse, error)

ParseLanguageTypesDestroyResponse parses an HTTP response from a LanguageTypesDestroyWithResponse call

func (LanguageTypesDestroyResponse) Status

Status returns HTTPResponse.Status

func (LanguageTypesDestroyResponse) StatusCode

func (r LanguageTypesDestroyResponse) StatusCode() int

StatusCode returns HTTPResponse.StatusCode

type LanguageTypesListParams

type LanguageTypesListParams struct {
	Color    *string `form:"color,omitempty" json:"color,omitempty"`
	Id       *int    `form:"id,omitempty" json:"id,omitempty"`
	Language *string `form:"language,omitempty" json:"language,omitempty"`

	// Limit Number of results to return per page.
	Limit *int `form:"limit,omitempty" json:"limit,omitempty"`

	// Offset The initial index from which to return the results.
	Offset *int `form:"offset,omitempty" json:"offset,omitempty"`
}

LanguageTypesListParams defines parameters for LanguageTypesList.

type LanguageTypesListResponse

type LanguageTypesListResponse struct {
	Body         []byte
	HTTPResponse *http.Response
	JSON200      *PaginatedLanguageTypeList
}

func ParseLanguageTypesListResponse

func ParseLanguageTypesListResponse(rsp *http.Response) (*LanguageTypesListResponse, error)

ParseLanguageTypesListResponse parses an HTTP response from a LanguageTypesListWithResponse call

func (LanguageTypesListResponse) Status

func (r LanguageTypesListResponse) Status() string

Status returns HTTPResponse.Status

func (LanguageTypesListResponse) StatusCode

func (r LanguageTypesListResponse) StatusCode() int

StatusCode returns HTTPResponse.StatusCode

type LanguageTypesPartialUpdateFormdataRequestBody added in v0.2.0

type LanguageTypesPartialUpdateFormdataRequestBody = PatchedLanguageTypeRequest

LanguageTypesPartialUpdateFormdataRequestBody defines body for LanguageTypesPartialUpdate for application/x-www-form-urlencoded ContentType.

type LanguageTypesPartialUpdateJSONRequestBody

type LanguageTypesPartialUpdateJSONRequestBody = PatchedLanguageTypeRequest

LanguageTypesPartialUpdateJSONRequestBody defines body for LanguageTypesPartialUpdate for application/json ContentType.

type LanguageTypesPartialUpdateMultipartRequestBody added in v0.2.0

type LanguageTypesPartialUpdateMultipartRequestBody = PatchedLanguageTypeRequest

LanguageTypesPartialUpdateMultipartRequestBody defines body for LanguageTypesPartialUpdate for multipart/form-data ContentType.

type LanguageTypesPartialUpdateResponse

type LanguageTypesPartialUpdateResponse struct {
	Body         []byte
	HTTPResponse *http.Response
	JSON200      *LanguageType
}

func ParseLanguageTypesPartialUpdateResponse

func ParseLanguageTypesPartialUpdateResponse(rsp *http.Response) (*LanguageTypesPartialUpdateResponse, error)

ParseLanguageTypesPartialUpdateResponse parses an HTTP response from a LanguageTypesPartialUpdateWithResponse call

func (LanguageTypesPartialUpdateResponse) Status

Status returns HTTPResponse.Status

func (LanguageTypesPartialUpdateResponse) StatusCode

func (r LanguageTypesPartialUpdateResponse) StatusCode() int

StatusCode returns HTTPResponse.StatusCode

type LanguageTypesRetrieveResponse

type LanguageTypesRetrieveResponse struct {
	Body         []byte
	HTTPResponse *http.Response
	JSON200      *LanguageType
}

func ParseLanguageTypesRetrieveResponse

func ParseLanguageTypesRetrieveResponse(rsp *http.Response) (*LanguageTypesRetrieveResponse, error)

ParseLanguageTypesRetrieveResponse parses an HTTP response from a LanguageTypesRetrieveWithResponse call

func (LanguageTypesRetrieveResponse) Status

Status returns HTTPResponse.Status

func (LanguageTypesRetrieveResponse) StatusCode

func (r LanguageTypesRetrieveResponse) StatusCode() int

StatusCode returns HTTPResponse.StatusCode

type LanguageTypesUpdateFormdataRequestBody added in v0.2.0

type LanguageTypesUpdateFormdataRequestBody = LanguageTypeRequest

LanguageTypesUpdateFormdataRequestBody defines body for LanguageTypesUpdate for application/x-www-form-urlencoded ContentType.

type LanguageTypesUpdateJSONRequestBody

type LanguageTypesUpdateJSONRequestBody = LanguageTypeRequest

LanguageTypesUpdateJSONRequestBody defines body for LanguageTypesUpdate for application/json ContentType.

type LanguageTypesUpdateMultipartRequestBody added in v0.2.0

type LanguageTypesUpdateMultipartRequestBody = LanguageTypeRequest

LanguageTypesUpdateMultipartRequestBody defines body for LanguageTypesUpdate for multipart/form-data ContentType.

type LanguageTypesUpdateResponse

type LanguageTypesUpdateResponse struct {
	Body         []byte
	HTTPResponse *http.Response
	JSON200      *LanguageType
}

func ParseLanguageTypesUpdateResponse

func ParseLanguageTypesUpdateResponse(rsp *http.Response) (*LanguageTypesUpdateResponse, error)

ParseLanguageTypesUpdateResponse parses an HTTP response from a LanguageTypesUpdateWithResponse call

func (LanguageTypesUpdateResponse) Status

Status returns HTTPResponse.Status

func (LanguageTypesUpdateResponse) StatusCode

func (r LanguageTypesUpdateResponse) StatusCode() int

StatusCode returns HTTPResponse.StatusCode

type LanguagesCreateFormdataRequestBody added in v0.2.0

type LanguagesCreateFormdataRequestBody = LanguageRequest

LanguagesCreateFormdataRequestBody defines body for LanguagesCreate for application/x-www-form-urlencoded ContentType.

type LanguagesCreateJSONRequestBody

type LanguagesCreateJSONRequestBody = LanguageRequest

LanguagesCreateJSONRequestBody defines body for LanguagesCreate for application/json ContentType.

type LanguagesCreateMultipartRequestBody added in v0.2.0

type LanguagesCreateMultipartRequestBody = LanguageRequest

LanguagesCreateMultipartRequestBody defines body for LanguagesCreate for multipart/form-data ContentType.

type LanguagesCreateResponse

type LanguagesCreateResponse struct {
	Body         []byte
	HTTPResponse *http.Response
	JSON201      *Language
}

func ParseLanguagesCreateResponse

func ParseLanguagesCreateResponse(rsp *http.Response) (*LanguagesCreateResponse, error)

ParseLanguagesCreateResponse parses an HTTP response from a LanguagesCreateWithResponse call

func (LanguagesCreateResponse) Status

func (r LanguagesCreateResponse) Status() string

Status returns HTTPResponse.Status

func (LanguagesCreateResponse) StatusCode

func (r LanguagesCreateResponse) StatusCode() int

StatusCode returns HTTPResponse.StatusCode

type LanguagesDeletePreviewListParams added in v0.2.0

type LanguagesDeletePreviewListParams struct {
	// Limit Number of results to return per page.
	Limit *int `form:"limit,omitempty" json:"limit,omitempty"`

	// Offset The initial index from which to return the results.
	Offset *int `form:"offset,omitempty" json:"offset,omitempty"`
}

LanguagesDeletePreviewListParams defines parameters for LanguagesDeletePreviewList.

type LanguagesDeletePreviewListResponse added in v0.2.0

type LanguagesDeletePreviewListResponse struct {
	Body         []byte
	HTTPResponse *http.Response
	JSON200      *PaginatedDeletePreviewList
}

func ParseLanguagesDeletePreviewListResponse added in v0.2.0

func ParseLanguagesDeletePreviewListResponse(rsp *http.Response) (*LanguagesDeletePreviewListResponse, error)

ParseLanguagesDeletePreviewListResponse parses an HTTP response from a LanguagesDeletePreviewListWithResponse call

func (LanguagesDeletePreviewListResponse) Status added in v0.2.0

Status returns HTTPResponse.Status

func (LanguagesDeletePreviewListResponse) StatusCode added in v0.2.0

func (r LanguagesDeletePreviewListResponse) StatusCode() int

StatusCode returns HTTPResponse.StatusCode

type LanguagesDestroyResponse

type LanguagesDestroyResponse struct {
	Body         []byte
	HTTPResponse *http.Response
}

func ParseLanguagesDestroyResponse

func ParseLanguagesDestroyResponse(rsp *http.Response) (*LanguagesDestroyResponse, error)

ParseLanguagesDestroyResponse parses an HTTP response from a LanguagesDestroyWithResponse call

func (LanguagesDestroyResponse) Status

func (r LanguagesDestroyResponse) Status() string

Status returns HTTPResponse.Status

func (LanguagesDestroyResponse) StatusCode

func (r LanguagesDestroyResponse) StatusCode() int

StatusCode returns HTTPResponse.StatusCode

type LanguagesListParams

type LanguagesListParams struct {
	Id       *int `form:"id,omitempty" json:"id,omitempty"`
	Language *int `form:"language,omitempty" json:"language,omitempty"`

	// Limit Number of results to return per page.
	Limit *int `form:"limit,omitempty" json:"limit,omitempty"`

	// Offset The initial index from which to return the results.
	Offset *int `form:"offset,omitempty" json:"offset,omitempty"`

	// Prefetch List of fields for which to prefetch model instances and add those to the response
	Prefetch *[]LanguagesListParamsPrefetch `form:"prefetch,omitempty" json:"prefetch,omitempty"`
	Product  *int                           `form:"product,omitempty" json:"product,omitempty"`
}

LanguagesListParams defines parameters for LanguagesList.

type LanguagesListParamsPrefetch

type LanguagesListParamsPrefetch string

LanguagesListParamsPrefetch defines parameters for LanguagesList.

const (
	LanguagesListParamsPrefetchLanguage LanguagesListParamsPrefetch = "language"
	LanguagesListParamsPrefetchProduct  LanguagesListParamsPrefetch = "product"
	LanguagesListParamsPrefetchUser     LanguagesListParamsPrefetch = "user"
)

Defines values for LanguagesListParamsPrefetch.

type LanguagesListResponse

type LanguagesListResponse struct {
	Body         []byte
	HTTPResponse *http.Response
	JSON200      *PaginatedLanguageList
}

func ParseLanguagesListResponse

func ParseLanguagesListResponse(rsp *http.Response) (*LanguagesListResponse, error)

ParseLanguagesListResponse parses an HTTP response from a LanguagesListWithResponse call

func (LanguagesListResponse) Status

func (r LanguagesListResponse) Status() string

Status returns HTTPResponse.Status

func (LanguagesListResponse) StatusCode

func (r LanguagesListResponse) StatusCode() int

StatusCode returns HTTPResponse.StatusCode

type LanguagesPartialUpdateFormdataRequestBody added in v0.2.0

type LanguagesPartialUpdateFormdataRequestBody = PatchedLanguageRequest

LanguagesPartialUpdateFormdataRequestBody defines body for LanguagesPartialUpdate for application/x-www-form-urlencoded ContentType.

type LanguagesPartialUpdateJSONRequestBody

type LanguagesPartialUpdateJSONRequestBody = PatchedLanguageRequest

LanguagesPartialUpdateJSONRequestBody defines body for LanguagesPartialUpdate for application/json ContentType.

type LanguagesPartialUpdateMultipartRequestBody added in v0.2.0

type LanguagesPartialUpdateMultipartRequestBody = PatchedLanguageRequest

LanguagesPartialUpdateMultipartRequestBody defines body for LanguagesPartialUpdate for multipart/form-data ContentType.

type LanguagesPartialUpdateResponse

type LanguagesPartialUpdateResponse struct {
	Body         []byte
	HTTPResponse *http.Response
	JSON200      *Language
}

func ParseLanguagesPartialUpdateResponse

func ParseLanguagesPartialUpdateResponse(rsp *http.Response) (*LanguagesPartialUpdateResponse, error)

ParseLanguagesPartialUpdateResponse parses an HTTP response from a LanguagesPartialUpdateWithResponse call

func (LanguagesPartialUpdateResponse) Status

Status returns HTTPResponse.Status

func (LanguagesPartialUpdateResponse) StatusCode

func (r LanguagesPartialUpdateResponse) StatusCode() int

StatusCode returns HTTPResponse.StatusCode

type LanguagesRetrieveParams

type LanguagesRetrieveParams struct {
	// Prefetch List of fields for which to prefetch model instances and add those to the response
	Prefetch *[]LanguagesRetrieveParamsPrefetch `form:"prefetch,omitempty" json:"prefetch,omitempty"`
}

LanguagesRetrieveParams defines parameters for LanguagesRetrieve.

type LanguagesRetrieveParamsPrefetch

type LanguagesRetrieveParamsPrefetch string

LanguagesRetrieveParamsPrefetch defines parameters for LanguagesRetrieve.

const (
	LanguagesRetrieveParamsPrefetchLanguage LanguagesRetrieveParamsPrefetch = "language"
	LanguagesRetrieveParamsPrefetchProduct  LanguagesRetrieveParamsPrefetch = "product"
	LanguagesRetrieveParamsPrefetchUser     LanguagesRetrieveParamsPrefetch = "user"
)

Defines values for LanguagesRetrieveParamsPrefetch.

type LanguagesRetrieveResponse

type LanguagesRetrieveResponse struct {
	Body         []byte
	HTTPResponse *http.Response
	JSON200      *Language
}

func ParseLanguagesRetrieveResponse

func ParseLanguagesRetrieveResponse(rsp *http.Response) (*LanguagesRetrieveResponse, error)

ParseLanguagesRetrieveResponse parses an HTTP response from a LanguagesRetrieveWithResponse call

func (LanguagesRetrieveResponse) Status

func (r LanguagesRetrieveResponse) Status() string

Status returns HTTPResponse.Status

func (LanguagesRetrieveResponse) StatusCode

func (r LanguagesRetrieveResponse) StatusCode() int

StatusCode returns HTTPResponse.StatusCode

type LanguagesUpdateFormdataRequestBody added in v0.2.0

type LanguagesUpdateFormdataRequestBody = LanguageRequest

LanguagesUpdateFormdataRequestBody defines body for LanguagesUpdate for application/x-www-form-urlencoded ContentType.

type LanguagesUpdateJSONRequestBody

type LanguagesUpdateJSONRequestBody = LanguageRequest

LanguagesUpdateJSONRequestBody defines body for LanguagesUpdate for application/json ContentType.

type LanguagesUpdateMultipartRequestBody added in v0.2.0

type LanguagesUpdateMultipartRequestBody = LanguageRequest

LanguagesUpdateMultipartRequestBody defines body for LanguagesUpdate for multipart/form-data ContentType.

type LanguagesUpdateResponse

type LanguagesUpdateResponse struct {
	Body         []byte
	HTTPResponse *http.Response
	JSON200      *Language
}

func ParseLanguagesUpdateResponse

func ParseLanguagesUpdateResponse(rsp *http.Response) (*LanguagesUpdateResponse, error)

ParseLanguagesUpdateResponse parses an HTTP response from a LanguagesUpdateWithResponse call

func (LanguagesUpdateResponse) Status

func (r LanguagesUpdateResponse) Status() string

Status returns HTTPResponse.Status

func (LanguagesUpdateResponse) StatusCode

func (r LanguagesUpdateResponse) StatusCode() int

StatusCode returns HTTPResponse.StatusCode

type Meta

type Meta struct {
	Endpoint *int   `json:"endpoint"`
	Finding  *int   `json:"finding"`
	Id       *int   `json:"id,omitempty"`
	Name     string `json:"name"`
	Prefetch *struct {
		Endpoint *map[string]Endpoint `json:"endpoint,omitempty"`
		Finding  *map[string]Finding  `json:"finding,omitempty"`
		Product  *map[string]Product  `json:"product,omitempty"`
	} `json:"prefetch,omitempty"`
	Product *int   `json:"product"`
	Value   string `json:"value"`
}

Meta defines model for Meta.

type MetaRequest added in v0.2.0

type MetaRequest struct {
	Endpoint *int   `json:"endpoint"`
	Finding  *int   `json:"finding"`
	Name     string `json:"name"`
	Product  *int   `json:"product"`
	Value    string `json:"value"`
}

MetaRequest defines model for MetaRequest.

type MetadataCreateFormdataRequestBody added in v0.2.0

type MetadataCreateFormdataRequestBody = MetaRequest

MetadataCreateFormdataRequestBody defines body for MetadataCreate for application/x-www-form-urlencoded ContentType.

type MetadataCreateJSONRequestBody

type MetadataCreateJSONRequestBody = MetaRequest

MetadataCreateJSONRequestBody defines body for MetadataCreate for application/json ContentType.

type MetadataCreateMultipartRequestBody added in v0.2.0

type MetadataCreateMultipartRequestBody = MetaRequest

MetadataCreateMultipartRequestBody defines body for MetadataCreate for multipart/form-data ContentType.

type MetadataCreateResponse

type MetadataCreateResponse struct {
	Body         []byte
	HTTPResponse *http.Response
	JSON201      *Meta
}

func ParseMetadataCreateResponse

func ParseMetadataCreateResponse(rsp *http.Response) (*MetadataCreateResponse, error)

ParseMetadataCreateResponse parses an HTTP response from a MetadataCreateWithResponse call

func (MetadataCreateResponse) Status

func (r MetadataCreateResponse) Status() string

Status returns HTTPResponse.Status

func (MetadataCreateResponse) StatusCode

func (r MetadataCreateResponse) StatusCode() int

StatusCode returns HTTPResponse.StatusCode

type MetadataDeletePreviewListParams added in v0.2.0

type MetadataDeletePreviewListParams struct {
	// Limit Number of results to return per page.
	Limit *int `form:"limit,omitempty" json:"limit,omitempty"`

	// Offset The initial index from which to return the results.
	Offset *int `form:"offset,omitempty" json:"offset,omitempty"`
}

MetadataDeletePreviewListParams defines parameters for MetadataDeletePreviewList.

type MetadataDeletePreviewListResponse added in v0.2.0

type MetadataDeletePreviewListResponse struct {
	Body         []byte
	HTTPResponse *http.Response
	JSON200      *PaginatedDeletePreviewList
}

func ParseMetadataDeletePreviewListResponse added in v0.2.0

func ParseMetadataDeletePreviewListResponse(rsp *http.Response) (*MetadataDeletePreviewListResponse, error)

ParseMetadataDeletePreviewListResponse parses an HTTP response from a MetadataDeletePreviewListWithResponse call

func (MetadataDeletePreviewListResponse) Status added in v0.2.0

Status returns HTTPResponse.Status

func (MetadataDeletePreviewListResponse) StatusCode added in v0.2.0

func (r MetadataDeletePreviewListResponse) StatusCode() int

StatusCode returns HTTPResponse.StatusCode

type MetadataDestroyResponse

type MetadataDestroyResponse struct {
	Body         []byte
	HTTPResponse *http.Response
}

func ParseMetadataDestroyResponse

func ParseMetadataDestroyResponse(rsp *http.Response) (*MetadataDestroyResponse, error)

ParseMetadataDestroyResponse parses an HTTP response from a MetadataDestroyWithResponse call

func (MetadataDestroyResponse) Status

func (r MetadataDestroyResponse) Status() string

Status returns HTTPResponse.Status

func (MetadataDestroyResponse) StatusCode

func (r MetadataDestroyResponse) StatusCode() int

StatusCode returns HTTPResponse.StatusCode

type MetadataListParams

type MetadataListParams struct {
	Endpoint *int `form:"endpoint,omitempty" json:"endpoint,omitempty"`
	Finding  *int `form:"finding,omitempty" json:"finding,omitempty"`
	Id       *int `form:"id,omitempty" json:"id,omitempty"`

	// Limit Number of results to return per page.
	Limit *int    `form:"limit,omitempty" json:"limit,omitempty"`
	Name  *string `form:"name,omitempty" json:"name,omitempty"`

	// Offset The initial index from which to return the results.
	Offset *int `form:"offset,omitempty" json:"offset,omitempty"`

	// Prefetch List of fields for which to prefetch model instances and add those to the response
	Prefetch *[]MetadataListParamsPrefetch `form:"prefetch,omitempty" json:"prefetch,omitempty"`
	Product  *int                          `form:"product,omitempty" json:"product,omitempty"`
	Value    *string                       `form:"value,omitempty" json:"value,omitempty"`
}

MetadataListParams defines parameters for MetadataList.

type MetadataListParamsPrefetch

type MetadataListParamsPrefetch string

MetadataListParamsPrefetch defines parameters for MetadataList.

const (
	MetadataListParamsPrefetchEndpoint MetadataListParamsPrefetch = "endpoint"
	MetadataListParamsPrefetchFinding  MetadataListParamsPrefetch = "finding"
	MetadataListParamsPrefetchProduct  MetadataListParamsPrefetch = "product"
)

Defines values for MetadataListParamsPrefetch.

type MetadataListResponse

type MetadataListResponse struct {
	Body         []byte
	HTTPResponse *http.Response
	JSON200      *PaginatedMetaList
}

func ParseMetadataListResponse

func ParseMetadataListResponse(rsp *http.Response) (*MetadataListResponse, error)

ParseMetadataListResponse parses an HTTP response from a MetadataListWithResponse call

func (MetadataListResponse) Status

func (r MetadataListResponse) Status() string

Status returns HTTPResponse.Status

func (MetadataListResponse) StatusCode

func (r MetadataListResponse) StatusCode() int

StatusCode returns HTTPResponse.StatusCode

type MetadataPartialUpdateFormdataRequestBody added in v0.2.0

type MetadataPartialUpdateFormdataRequestBody = PatchedMetaRequest

MetadataPartialUpdateFormdataRequestBody defines body for MetadataPartialUpdate for application/x-www-form-urlencoded ContentType.

type MetadataPartialUpdateJSONRequestBody

type MetadataPartialUpdateJSONRequestBody = PatchedMetaRequest

MetadataPartialUpdateJSONRequestBody defines body for MetadataPartialUpdate for application/json ContentType.

type MetadataPartialUpdateMultipartRequestBody added in v0.2.0

type MetadataPartialUpdateMultipartRequestBody = PatchedMetaRequest

MetadataPartialUpdateMultipartRequestBody defines body for MetadataPartialUpdate for multipart/form-data ContentType.

type MetadataPartialUpdateResponse

type MetadataPartialUpdateResponse struct {
	Body         []byte
	HTTPResponse *http.Response
	JSON200      *Meta
}

func ParseMetadataPartialUpdateResponse

func ParseMetadataPartialUpdateResponse(rsp *http.Response) (*MetadataPartialUpdateResponse, error)

ParseMetadataPartialUpdateResponse parses an HTTP response from a MetadataPartialUpdateWithResponse call

func (MetadataPartialUpdateResponse) Status

Status returns HTTPResponse.Status

func (MetadataPartialUpdateResponse) StatusCode

func (r MetadataPartialUpdateResponse) StatusCode() int

StatusCode returns HTTPResponse.StatusCode

type MetadataRetrieveParams

type MetadataRetrieveParams struct {
	// Prefetch List of fields for which to prefetch model instances and add those to the response
	Prefetch *[]MetadataRetrieveParamsPrefetch `form:"prefetch,omitempty" json:"prefetch,omitempty"`
}

MetadataRetrieveParams defines parameters for MetadataRetrieve.

type MetadataRetrieveParamsPrefetch

type MetadataRetrieveParamsPrefetch string

MetadataRetrieveParamsPrefetch defines parameters for MetadataRetrieve.

const (
	MetadataRetrieveParamsPrefetchEndpoint MetadataRetrieveParamsPrefetch = "endpoint"
	MetadataRetrieveParamsPrefetchFinding  MetadataRetrieveParamsPrefetch = "finding"
	MetadataRetrieveParamsPrefetchProduct  MetadataRetrieveParamsPrefetch = "product"
)

Defines values for MetadataRetrieveParamsPrefetch.

type MetadataRetrieveResponse

type MetadataRetrieveResponse struct {
	Body         []byte
	HTTPResponse *http.Response
	JSON200      *Meta
}

func ParseMetadataRetrieveResponse

func ParseMetadataRetrieveResponse(rsp *http.Response) (*MetadataRetrieveResponse, error)

ParseMetadataRetrieveResponse parses an HTTP response from a MetadataRetrieveWithResponse call

func (MetadataRetrieveResponse) Status

func (r MetadataRetrieveResponse) Status() string

Status returns HTTPResponse.Status

func (MetadataRetrieveResponse) StatusCode

func (r MetadataRetrieveResponse) StatusCode() int

StatusCode returns HTTPResponse.StatusCode

type MetadataUpdateFormdataRequestBody added in v0.2.0

type MetadataUpdateFormdataRequestBody = MetaRequest

MetadataUpdateFormdataRequestBody defines body for MetadataUpdate for application/x-www-form-urlencoded ContentType.

type MetadataUpdateJSONRequestBody

type MetadataUpdateJSONRequestBody = MetaRequest

MetadataUpdateJSONRequestBody defines body for MetadataUpdate for application/json ContentType.

type MetadataUpdateMultipartRequestBody added in v0.2.0

type MetadataUpdateMultipartRequestBody = MetaRequest

MetadataUpdateMultipartRequestBody defines body for MetadataUpdate for multipart/form-data ContentType.

type MetadataUpdateResponse

type MetadataUpdateResponse struct {
	Body         []byte
	HTTPResponse *http.Response
	JSON200      *Meta
}

func ParseMetadataUpdateResponse

func ParseMetadataUpdateResponse(rsp *http.Response) (*MetadataUpdateResponse, error)

ParseMetadataUpdateResponse parses an HTTP response from a MetadataUpdateWithResponse call

func (MetadataUpdateResponse) Status

func (r MetadataUpdateResponse) Status() string

Status returns HTTPResponse.Status

func (MetadataUpdateResponse) StatusCode

func (r MetadataUpdateResponse) StatusCode() int

StatusCode returns HTTPResponse.StatusCode

type NetworkLocations

type NetworkLocations struct {
	Id *int `json:"id,omitempty"`

	// Location Location of network testing: Examples: VPN, Internet or Internal.
	Location string `json:"location"`
}

NetworkLocations defines model for NetworkLocations.

type NetworkLocationsCreateFormdataRequestBody added in v0.2.0

type NetworkLocationsCreateFormdataRequestBody = NetworkLocationsRequest

NetworkLocationsCreateFormdataRequestBody defines body for NetworkLocationsCreate for application/x-www-form-urlencoded ContentType.

type NetworkLocationsCreateJSONRequestBody

type NetworkLocationsCreateJSONRequestBody = NetworkLocationsRequest

NetworkLocationsCreateJSONRequestBody defines body for NetworkLocationsCreate for application/json ContentType.

type NetworkLocationsCreateMultipartRequestBody added in v0.2.0

type NetworkLocationsCreateMultipartRequestBody = NetworkLocationsRequest

NetworkLocationsCreateMultipartRequestBody defines body for NetworkLocationsCreate for multipart/form-data ContentType.

type NetworkLocationsCreateResponse

type NetworkLocationsCreateResponse struct {
	Body         []byte
	HTTPResponse *http.Response
	JSON201      *NetworkLocations
}

func ParseNetworkLocationsCreateResponse

func ParseNetworkLocationsCreateResponse(rsp *http.Response) (*NetworkLocationsCreateResponse, error)

ParseNetworkLocationsCreateResponse parses an HTTP response from a NetworkLocationsCreateWithResponse call

func (NetworkLocationsCreateResponse) Status

Status returns HTTPResponse.Status

func (NetworkLocationsCreateResponse) StatusCode

func (r NetworkLocationsCreateResponse) StatusCode() int

StatusCode returns HTTPResponse.StatusCode

type NetworkLocationsDeletePreviewListParams added in v0.2.0

type NetworkLocationsDeletePreviewListParams struct {
	// Limit Number of results to return per page.
	Limit *int `form:"limit,omitempty" json:"limit,omitempty"`

	// Offset The initial index from which to return the results.
	Offset *int `form:"offset,omitempty" json:"offset,omitempty"`
}

NetworkLocationsDeletePreviewListParams defines parameters for NetworkLocationsDeletePreviewList.

type NetworkLocationsDeletePreviewListResponse added in v0.2.0

type NetworkLocationsDeletePreviewListResponse struct {
	Body         []byte
	HTTPResponse *http.Response
	JSON200      *PaginatedDeletePreviewList
}

func ParseNetworkLocationsDeletePreviewListResponse added in v0.2.0

func ParseNetworkLocationsDeletePreviewListResponse(rsp *http.Response) (*NetworkLocationsDeletePreviewListResponse, error)

ParseNetworkLocationsDeletePreviewListResponse parses an HTTP response from a NetworkLocationsDeletePreviewListWithResponse call

func (NetworkLocationsDeletePreviewListResponse) Status added in v0.2.0

Status returns HTTPResponse.Status

func (NetworkLocationsDeletePreviewListResponse) StatusCode added in v0.2.0

StatusCode returns HTTPResponse.StatusCode

type NetworkLocationsDestroyResponse

type NetworkLocationsDestroyResponse struct {
	Body         []byte
	HTTPResponse *http.Response
}

func ParseNetworkLocationsDestroyResponse

func ParseNetworkLocationsDestroyResponse(rsp *http.Response) (*NetworkLocationsDestroyResponse, error)

ParseNetworkLocationsDestroyResponse parses an HTTP response from a NetworkLocationsDestroyWithResponse call

func (NetworkLocationsDestroyResponse) Status

Status returns HTTPResponse.Status

func (NetworkLocationsDestroyResponse) StatusCode

func (r NetworkLocationsDestroyResponse) StatusCode() int

StatusCode returns HTTPResponse.StatusCode

type NetworkLocationsListParams

type NetworkLocationsListParams struct {
	Id *int `form:"id,omitempty" json:"id,omitempty"`

	// Limit Number of results to return per page.
	Limit    *int    `form:"limit,omitempty" json:"limit,omitempty"`
	Location *string `form:"location,omitempty" json:"location,omitempty"`

	// Offset The initial index from which to return the results.
	Offset *int `form:"offset,omitempty" json:"offset,omitempty"`
}

NetworkLocationsListParams defines parameters for NetworkLocationsList.

type NetworkLocationsListResponse

type NetworkLocationsListResponse struct {
	Body         []byte
	HTTPResponse *http.Response
	JSON200      *PaginatedNetworkLocationsList
}

func ParseNetworkLocationsListResponse

func ParseNetworkLocationsListResponse(rsp *http.Response) (*NetworkLocationsListResponse, error)

ParseNetworkLocationsListResponse parses an HTTP response from a NetworkLocationsListWithResponse call

func (NetworkLocationsListResponse) Status

Status returns HTTPResponse.Status

func (NetworkLocationsListResponse) StatusCode

func (r NetworkLocationsListResponse) StatusCode() int

StatusCode returns HTTPResponse.StatusCode

type NetworkLocationsPartialUpdateFormdataRequestBody added in v0.2.0

type NetworkLocationsPartialUpdateFormdataRequestBody = PatchedNetworkLocationsRequest

NetworkLocationsPartialUpdateFormdataRequestBody defines body for NetworkLocationsPartialUpdate for application/x-www-form-urlencoded ContentType.

type NetworkLocationsPartialUpdateJSONRequestBody

type NetworkLocationsPartialUpdateJSONRequestBody = PatchedNetworkLocationsRequest

NetworkLocationsPartialUpdateJSONRequestBody defines body for NetworkLocationsPartialUpdate for application/json ContentType.

type NetworkLocationsPartialUpdateMultipartRequestBody added in v0.2.0

type NetworkLocationsPartialUpdateMultipartRequestBody = PatchedNetworkLocationsRequest

NetworkLocationsPartialUpdateMultipartRequestBody defines body for NetworkLocationsPartialUpdate for multipart/form-data ContentType.

type NetworkLocationsPartialUpdateResponse

type NetworkLocationsPartialUpdateResponse struct {
	Body         []byte
	HTTPResponse *http.Response
	JSON200      *NetworkLocations
}

func ParseNetworkLocationsPartialUpdateResponse

func ParseNetworkLocationsPartialUpdateResponse(rsp *http.Response) (*NetworkLocationsPartialUpdateResponse, error)

ParseNetworkLocationsPartialUpdateResponse parses an HTTP response from a NetworkLocationsPartialUpdateWithResponse call

func (NetworkLocationsPartialUpdateResponse) Status

Status returns HTTPResponse.Status

func (NetworkLocationsPartialUpdateResponse) StatusCode

StatusCode returns HTTPResponse.StatusCode

type NetworkLocationsRequest added in v0.2.0

type NetworkLocationsRequest struct {
	// Location Location of network testing: Examples: VPN, Internet or Internal.
	Location string `json:"location"`
}

NetworkLocationsRequest defines model for NetworkLocationsRequest.

type NetworkLocationsRetrieveResponse

type NetworkLocationsRetrieveResponse struct {
	Body         []byte
	HTTPResponse *http.Response
	JSON200      *NetworkLocations
}

func ParseNetworkLocationsRetrieveResponse

func ParseNetworkLocationsRetrieveResponse(rsp *http.Response) (*NetworkLocationsRetrieveResponse, error)

ParseNetworkLocationsRetrieveResponse parses an HTTP response from a NetworkLocationsRetrieveWithResponse call

func (NetworkLocationsRetrieveResponse) Status

Status returns HTTPResponse.Status

func (NetworkLocationsRetrieveResponse) StatusCode

func (r NetworkLocationsRetrieveResponse) StatusCode() int

StatusCode returns HTTPResponse.StatusCode

type NetworkLocationsUpdateFormdataRequestBody added in v0.2.0

type NetworkLocationsUpdateFormdataRequestBody = NetworkLocationsRequest

NetworkLocationsUpdateFormdataRequestBody defines body for NetworkLocationsUpdate for application/x-www-form-urlencoded ContentType.

type NetworkLocationsUpdateJSONRequestBody

type NetworkLocationsUpdateJSONRequestBody = NetworkLocationsRequest

NetworkLocationsUpdateJSONRequestBody defines body for NetworkLocationsUpdate for application/json ContentType.

type NetworkLocationsUpdateMultipartRequestBody added in v0.2.0

type NetworkLocationsUpdateMultipartRequestBody = NetworkLocationsRequest

NetworkLocationsUpdateMultipartRequestBody defines body for NetworkLocationsUpdate for multipart/form-data ContentType.

type NetworkLocationsUpdateResponse

type NetworkLocationsUpdateResponse struct {
	Body         []byte
	HTTPResponse *http.Response
	JSON200      *NetworkLocations
}

func ParseNetworkLocationsUpdateResponse

func ParseNetworkLocationsUpdateResponse(rsp *http.Response) (*NetworkLocationsUpdateResponse, error)

ParseNetworkLocationsUpdateResponse parses an HTTP response from a NetworkLocationsUpdateWithResponse call

func (NetworkLocationsUpdateResponse) Status

Status returns HTTPResponse.Status

func (NetworkLocationsUpdateResponse) StatusCode

func (r NetworkLocationsUpdateResponse) StatusCode() int

StatusCode returns HTTPResponse.StatusCode

type Note

type Note struct {
	Author   *UserStub      `json:"author,omitempty"`
	Date     *time.Time     `json:"date,omitempty"`
	EditTime *time.Time     `json:"edit_time"`
	Edited   *bool          `json:"edited,omitempty"`
	Editor   *UserStub      `json:"editor"`
	Entry    string         `json:"entry"`
	History  *[]NoteHistory `json:"history,omitempty"`
	Id       *int           `json:"id,omitempty"`
	NoteType *NoteType      `json:"note_type,omitempty"`
	Private  *bool          `json:"private,omitempty"`
}

Note defines model for Note.

type NoteHistory

type NoteHistory struct {
	CurrentEditor *UserStub  `json:"current_editor,omitempty"`
	Data          string     `json:"data"`
	Id            *int       `json:"id,omitempty"`
	NoteType      *NoteType  `json:"note_type,omitempty"`
	Time          *time.Time `json:"time"`
}

NoteHistory defines model for NoteHistory.

type NoteRequest added in v0.2.0

type NoteRequest struct {
	Edited  *bool  `json:"edited,omitempty"`
	Entry   string `json:"entry"`
	Private *bool  `json:"private,omitempty"`
}

NoteRequest defines model for NoteRequest.

type NoteType

type NoteType struct {
	Description string `json:"description"`
	Id          *int   `json:"id,omitempty"`
	IsActive    *bool  `json:"is_active,omitempty"`
	IsMandatory *bool  `json:"is_mandatory,omitempty"`
	IsSingle    *bool  `json:"is_single,omitempty"`
	Name        string `json:"name"`
}

NoteType defines model for NoteType.

type NoteTypeCreateFormdataRequestBody added in v0.2.0

type NoteTypeCreateFormdataRequestBody = NoteTypeRequest

NoteTypeCreateFormdataRequestBody defines body for NoteTypeCreate for application/x-www-form-urlencoded ContentType.

type NoteTypeCreateJSONRequestBody

type NoteTypeCreateJSONRequestBody = NoteTypeRequest

NoteTypeCreateJSONRequestBody defines body for NoteTypeCreate for application/json ContentType.

type NoteTypeCreateMultipartRequestBody added in v0.2.0

type NoteTypeCreateMultipartRequestBody = NoteTypeRequest

NoteTypeCreateMultipartRequestBody defines body for NoteTypeCreate for multipart/form-data ContentType.

type NoteTypeCreateResponse

type NoteTypeCreateResponse struct {
	Body         []byte
	HTTPResponse *http.Response
	JSON201      *NoteType
}

func ParseNoteTypeCreateResponse

func ParseNoteTypeCreateResponse(rsp *http.Response) (*NoteTypeCreateResponse, error)

ParseNoteTypeCreateResponse parses an HTTP response from a NoteTypeCreateWithResponse call

func (NoteTypeCreateResponse) Status

func (r NoteTypeCreateResponse) Status() string

Status returns HTTPResponse.Status

func (NoteTypeCreateResponse) StatusCode

func (r NoteTypeCreateResponse) StatusCode() int

StatusCode returns HTTPResponse.StatusCode

type NoteTypeDeletePreviewListParams added in v0.2.0

type NoteTypeDeletePreviewListParams struct {
	// Limit Number of results to return per page.
	Limit *int `form:"limit,omitempty" json:"limit,omitempty"`

	// Offset The initial index from which to return the results.
	Offset *int `form:"offset,omitempty" json:"offset,omitempty"`
}

NoteTypeDeletePreviewListParams defines parameters for NoteTypeDeletePreviewList.

type NoteTypeDeletePreviewListResponse added in v0.2.0

type NoteTypeDeletePreviewListResponse struct {
	Body         []byte
	HTTPResponse *http.Response
	JSON200      *PaginatedDeletePreviewList
}

func ParseNoteTypeDeletePreviewListResponse added in v0.2.0

func ParseNoteTypeDeletePreviewListResponse(rsp *http.Response) (*NoteTypeDeletePreviewListResponse, error)

ParseNoteTypeDeletePreviewListResponse parses an HTTP response from a NoteTypeDeletePreviewListWithResponse call

func (NoteTypeDeletePreviewListResponse) Status added in v0.2.0

Status returns HTTPResponse.Status

func (NoteTypeDeletePreviewListResponse) StatusCode added in v0.2.0

func (r NoteTypeDeletePreviewListResponse) StatusCode() int

StatusCode returns HTTPResponse.StatusCode

type NoteTypeDestroyResponse

type NoteTypeDestroyResponse struct {
	Body         []byte
	HTTPResponse *http.Response
}

func ParseNoteTypeDestroyResponse

func ParseNoteTypeDestroyResponse(rsp *http.Response) (*NoteTypeDestroyResponse, error)

ParseNoteTypeDestroyResponse parses an HTTP response from a NoteTypeDestroyWithResponse call

func (NoteTypeDestroyResponse) Status

func (r NoteTypeDestroyResponse) Status() string

Status returns HTTPResponse.Status

func (NoteTypeDestroyResponse) StatusCode

func (r NoteTypeDestroyResponse) StatusCode() int

StatusCode returns HTTPResponse.StatusCode

type NoteTypeListParams

type NoteTypeListParams struct {
	Description *string `form:"description,omitempty" json:"description,omitempty"`
	Id          *int    `form:"id,omitempty" json:"id,omitempty"`
	IsActive    *bool   `form:"is_active,omitempty" json:"is_active,omitempty"`
	IsMandatory *bool   `form:"is_mandatory,omitempty" json:"is_mandatory,omitempty"`
	IsSingle    *bool   `form:"is_single,omitempty" json:"is_single,omitempty"`

	// Limit Number of results to return per page.
	Limit *int    `form:"limit,omitempty" json:"limit,omitempty"`
	Name  *string `form:"name,omitempty" json:"name,omitempty"`

	// Offset The initial index from which to return the results.
	Offset *int `form:"offset,omitempty" json:"offset,omitempty"`
}

NoteTypeListParams defines parameters for NoteTypeList.

type NoteTypeListResponse

type NoteTypeListResponse struct {
	Body         []byte
	HTTPResponse *http.Response
	JSON200      *PaginatedNoteTypeList
}

func ParseNoteTypeListResponse

func ParseNoteTypeListResponse(rsp *http.Response) (*NoteTypeListResponse, error)

ParseNoteTypeListResponse parses an HTTP response from a NoteTypeListWithResponse call

func (NoteTypeListResponse) Status

func (r NoteTypeListResponse) Status() string

Status returns HTTPResponse.Status

func (NoteTypeListResponse) StatusCode

func (r NoteTypeListResponse) StatusCode() int

StatusCode returns HTTPResponse.StatusCode

type NoteTypePartialUpdateFormdataRequestBody added in v0.2.0

type NoteTypePartialUpdateFormdataRequestBody = PatchedNoteTypeRequest

NoteTypePartialUpdateFormdataRequestBody defines body for NoteTypePartialUpdate for application/x-www-form-urlencoded ContentType.

type NoteTypePartialUpdateJSONRequestBody

type NoteTypePartialUpdateJSONRequestBody = PatchedNoteTypeRequest

NoteTypePartialUpdateJSONRequestBody defines body for NoteTypePartialUpdate for application/json ContentType.

type NoteTypePartialUpdateMultipartRequestBody added in v0.2.0

type NoteTypePartialUpdateMultipartRequestBody = PatchedNoteTypeRequest

NoteTypePartialUpdateMultipartRequestBody defines body for NoteTypePartialUpdate for multipart/form-data ContentType.

type NoteTypePartialUpdateResponse

type NoteTypePartialUpdateResponse struct {
	Body         []byte
	HTTPResponse *http.Response
	JSON200      *NoteType
}

func ParseNoteTypePartialUpdateResponse

func ParseNoteTypePartialUpdateResponse(rsp *http.Response) (*NoteTypePartialUpdateResponse, error)

ParseNoteTypePartialUpdateResponse parses an HTTP response from a NoteTypePartialUpdateWithResponse call

func (NoteTypePartialUpdateResponse) Status

Status returns HTTPResponse.Status

func (NoteTypePartialUpdateResponse) StatusCode

func (r NoteTypePartialUpdateResponse) StatusCode() int

StatusCode returns HTTPResponse.StatusCode

type NoteTypeRequest added in v0.2.0

type NoteTypeRequest struct {
	Description string `json:"description"`
	IsActive    *bool  `json:"is_active,omitempty"`
	IsMandatory *bool  `json:"is_mandatory,omitempty"`
	IsSingle    *bool  `json:"is_single,omitempty"`
	Name        string `json:"name"`
}

NoteTypeRequest defines model for NoteTypeRequest.

type NoteTypeRetrieveResponse

type NoteTypeRetrieveResponse struct {
	Body         []byte
	HTTPResponse *http.Response
	JSON200      *NoteType
}

func ParseNoteTypeRetrieveResponse

func ParseNoteTypeRetrieveResponse(rsp *http.Response) (*NoteTypeRetrieveResponse, error)

ParseNoteTypeRetrieveResponse parses an HTTP response from a NoteTypeRetrieveWithResponse call

func (NoteTypeRetrieveResponse) Status

func (r NoteTypeRetrieveResponse) Status() string

Status returns HTTPResponse.Status

func (NoteTypeRetrieveResponse) StatusCode

func (r NoteTypeRetrieveResponse) StatusCode() int

StatusCode returns HTTPResponse.StatusCode

type NoteTypeUpdateFormdataRequestBody added in v0.2.0

type NoteTypeUpdateFormdataRequestBody = NoteTypeRequest

NoteTypeUpdateFormdataRequestBody defines body for NoteTypeUpdate for application/x-www-form-urlencoded ContentType.

type NoteTypeUpdateJSONRequestBody

type NoteTypeUpdateJSONRequestBody = NoteTypeRequest

NoteTypeUpdateJSONRequestBody defines body for NoteTypeUpdate for application/json ContentType.

type NoteTypeUpdateMultipartRequestBody added in v0.2.0

type NoteTypeUpdateMultipartRequestBody = NoteTypeRequest

NoteTypeUpdateMultipartRequestBody defines body for NoteTypeUpdate for multipart/form-data ContentType.

type NoteTypeUpdateResponse

type NoteTypeUpdateResponse struct {
	Body         []byte
	HTTPResponse *http.Response
	JSON200      *NoteType
}

func ParseNoteTypeUpdateResponse

func ParseNoteTypeUpdateResponse(rsp *http.Response) (*NoteTypeUpdateResponse, error)

ParseNoteTypeUpdateResponse parses an HTTP response from a NoteTypeUpdateWithResponse call

func (NoteTypeUpdateResponse) Status

func (r NoteTypeUpdateResponse) Status() string

Status returns HTTPResponse.Status

func (NoteTypeUpdateResponse) StatusCode

func (r NoteTypeUpdateResponse) StatusCode() int

StatusCode returns HTTPResponse.StatusCode

type NotesListParams

type NotesListParams struct {
	Author   *int       `form:"author,omitempty" json:"author,omitempty"`
	Date     *time.Time `form:"date,omitempty" json:"date,omitempty"`
	EditTime *time.Time `form:"edit_time,omitempty" json:"edit_time,omitempty"`
	Edited   *bool      `form:"edited,omitempty" json:"edited,omitempty"`
	Editor   *int       `form:"editor,omitempty" json:"editor,omitempty"`
	Entry    *string    `form:"entry,omitempty" json:"entry,omitempty"`
	Id       *int       `form:"id,omitempty" json:"id,omitempty"`

	// Limit Number of results to return per page.
	Limit *int `form:"limit,omitempty" json:"limit,omitempty"`

	// Offset The initial index from which to return the results.
	Offset  *int  `form:"offset,omitempty" json:"offset,omitempty"`
	Private *bool `form:"private,omitempty" json:"private,omitempty"`
}

NotesListParams defines parameters for NotesList.

type NotesListResponse

type NotesListResponse struct {
	Body         []byte
	HTTPResponse *http.Response
	JSON200      *PaginatedNoteList
}

func ParseNotesListResponse

func ParseNotesListResponse(rsp *http.Response) (*NotesListResponse, error)

ParseNotesListResponse parses an HTTP response from a NotesListWithResponse call

func (NotesListResponse) Status

func (r NotesListResponse) Status() string

Status returns HTTPResponse.Status

func (NotesListResponse) StatusCode

func (r NotesListResponse) StatusCode() int

StatusCode returns HTTPResponse.StatusCode

type NotesPartialUpdateFormdataRequestBody added in v0.2.0

type NotesPartialUpdateFormdataRequestBody = PatchedNoteRequest

NotesPartialUpdateFormdataRequestBody defines body for NotesPartialUpdate for application/x-www-form-urlencoded ContentType.

type NotesPartialUpdateJSONRequestBody

type NotesPartialUpdateJSONRequestBody = PatchedNoteRequest

NotesPartialUpdateJSONRequestBody defines body for NotesPartialUpdate for application/json ContentType.

type NotesPartialUpdateMultipartRequestBody added in v0.2.0

type NotesPartialUpdateMultipartRequestBody = PatchedNoteRequest

NotesPartialUpdateMultipartRequestBody defines body for NotesPartialUpdate for multipart/form-data ContentType.

type NotesPartialUpdateResponse

type NotesPartialUpdateResponse struct {
	Body         []byte
	HTTPResponse *http.Response
	JSON200      *Note
}

func ParseNotesPartialUpdateResponse

func ParseNotesPartialUpdateResponse(rsp *http.Response) (*NotesPartialUpdateResponse, error)

ParseNotesPartialUpdateResponse parses an HTTP response from a NotesPartialUpdateWithResponse call

func (NotesPartialUpdateResponse) Status

Status returns HTTPResponse.Status

func (NotesPartialUpdateResponse) StatusCode

func (r NotesPartialUpdateResponse) StatusCode() int

StatusCode returns HTTPResponse.StatusCode

type NotesRetrieveResponse

type NotesRetrieveResponse struct {
	Body         []byte
	HTTPResponse *http.Response
	JSON200      *Note
}

func ParseNotesRetrieveResponse

func ParseNotesRetrieveResponse(rsp *http.Response) (*NotesRetrieveResponse, error)

ParseNotesRetrieveResponse parses an HTTP response from a NotesRetrieveWithResponse call

func (NotesRetrieveResponse) Status

func (r NotesRetrieveResponse) Status() string

Status returns HTTPResponse.Status

func (NotesRetrieveResponse) StatusCode

func (r NotesRetrieveResponse) StatusCode() int

StatusCode returns HTTPResponse.StatusCode

type NotesUpdateFormdataRequestBody added in v0.2.0

type NotesUpdateFormdataRequestBody = NoteRequest

NotesUpdateFormdataRequestBody defines body for NotesUpdate for application/x-www-form-urlencoded ContentType.

type NotesUpdateJSONRequestBody

type NotesUpdateJSONRequestBody = NoteRequest

NotesUpdateJSONRequestBody defines body for NotesUpdate for application/json ContentType.

type NotesUpdateMultipartRequestBody added in v0.2.0

type NotesUpdateMultipartRequestBody = NoteRequest

NotesUpdateMultipartRequestBody defines body for NotesUpdate for multipart/form-data ContentType.

type NotesUpdateResponse

type NotesUpdateResponse struct {
	Body         []byte
	HTTPResponse *http.Response
	JSON200      *Note
}

func ParseNotesUpdateResponse

func ParseNotesUpdateResponse(rsp *http.Response) (*NotesUpdateResponse, error)

ParseNotesUpdateResponse parses an HTTP response from a NotesUpdateWithResponse call

func (NotesUpdateResponse) Status

func (r NotesUpdateResponse) Status() string

Status returns HTTPResponse.Status

func (NotesUpdateResponse) StatusCode

func (r NotesUpdateResponse) StatusCode() int

StatusCode returns HTTPResponse.StatusCode

type Notifications

type Notifications struct {
	AutoCloseEngagement *[]NotificationsAutoCloseEngagement `json:"auto_close_engagement,omitempty"`
	CloseEngagement     *[]NotificationsCloseEngagement     `json:"close_engagement,omitempty"`
	CodeReview          *[]NotificationsCodeReview          `json:"code_review,omitempty"`
	EngagementAdded     *[]NotificationsEngagementAdded     `json:"engagement_added,omitempty"`
	Id                  *int                                `json:"id,omitempty"`
	JiraUpdate          *[]NotificationsJiraUpdate          `json:"jira_update,omitempty"`
	Other               *[]NotificationsOther               `json:"other,omitempty"`
	Prefetch            *struct {
		Product *map[string]Product  `json:"product,omitempty"`
		User    *map[string]UserStub `json:"user,omitempty"`
	} `json:"prefetch,omitempty"`
	Product                  *int                                     `json:"product"`
	ProductAdded             *[]NotificationsProductAdded             `json:"product_added,omitempty"`
	ProductTypeAdded         *[]NotificationsProductTypeAdded         `json:"product_type_added,omitempty"`
	ReviewRequested          *[]NotificationsReviewRequested          `json:"review_requested,omitempty"`
	RiskAcceptanceExpiration *[]NotificationsRiskAcceptanceExpiration `json:"risk_acceptance_expiration,omitempty"`
	ScanAdded                *[]NotificationsScanAdded                `json:"scan_added,omitempty"`
	SlaBreach                *[]NotificationsSlaBreach                `json:"sla_breach,omitempty"`
	StaleEngagement          *[]NotificationsStaleEngagement          `json:"stale_engagement,omitempty"`
	Template                 *bool                                    `json:"template,omitempty"`
	TestAdded                *[]NotificationsTestAdded                `json:"test_added,omitempty"`
	UpcomingEngagement       *[]NotificationsUpcomingEngagement       `json:"upcoming_engagement,omitempty"`
	User                     *int                                     `json:"user"`
	UserMentioned            *[]NotificationsUserMentioned            `json:"user_mentioned,omitempty"`
}

Notifications defines model for Notifications.

type NotificationsAutoCloseEngagement

type NotificationsAutoCloseEngagement string

NotificationsAutoCloseEngagement * `slack` - slack * `msteams` - msteams * `mail` - mail * `alert` - alert

const (
	NotificationsAutoCloseEngagementAlert   NotificationsAutoCloseEngagement = "alert"
	NotificationsAutoCloseEngagementMail    NotificationsAutoCloseEngagement = "mail"
	NotificationsAutoCloseEngagementMsteams NotificationsAutoCloseEngagement = "msteams"
	NotificationsAutoCloseEngagementSlack   NotificationsAutoCloseEngagement = "slack"
)

Defines values for NotificationsAutoCloseEngagement.

type NotificationsCloseEngagement

type NotificationsCloseEngagement string

NotificationsCloseEngagement * `slack` - slack * `msteams` - msteams * `mail` - mail * `alert` - alert

const (
	NotificationsCloseEngagementAlert   NotificationsCloseEngagement = "alert"
	NotificationsCloseEngagementMail    NotificationsCloseEngagement = "mail"
	NotificationsCloseEngagementMsteams NotificationsCloseEngagement = "msteams"
	NotificationsCloseEngagementSlack   NotificationsCloseEngagement = "slack"
)

Defines values for NotificationsCloseEngagement.

type NotificationsCodeReview

type NotificationsCodeReview string

NotificationsCodeReview * `slack` - slack * `msteams` - msteams * `mail` - mail * `alert` - alert

const (
	NotificationsCodeReviewAlert   NotificationsCodeReview = "alert"
	NotificationsCodeReviewMail    NotificationsCodeReview = "mail"
	NotificationsCodeReviewMsteams NotificationsCodeReview = "msteams"
	NotificationsCodeReviewSlack   NotificationsCodeReview = "slack"
)

Defines values for NotificationsCodeReview.

type NotificationsCreateFormdataRequestBody added in v0.2.0

type NotificationsCreateFormdataRequestBody = NotificationsRequest

NotificationsCreateFormdataRequestBody defines body for NotificationsCreate for application/x-www-form-urlencoded ContentType.

type NotificationsCreateJSONRequestBody

type NotificationsCreateJSONRequestBody = NotificationsRequest

NotificationsCreateJSONRequestBody defines body for NotificationsCreate for application/json ContentType.

type NotificationsCreateMultipartRequestBody added in v0.2.0

type NotificationsCreateMultipartRequestBody = NotificationsRequest

NotificationsCreateMultipartRequestBody defines body for NotificationsCreate for multipart/form-data ContentType.

type NotificationsCreateResponse

type NotificationsCreateResponse struct {
	Body         []byte
	HTTPResponse *http.Response
	JSON201      *Notifications
}

func ParseNotificationsCreateResponse

func ParseNotificationsCreateResponse(rsp *http.Response) (*NotificationsCreateResponse, error)

ParseNotificationsCreateResponse parses an HTTP response from a NotificationsCreateWithResponse call

func (NotificationsCreateResponse) Status

Status returns HTTPResponse.Status

func (NotificationsCreateResponse) StatusCode

func (r NotificationsCreateResponse) StatusCode() int

StatusCode returns HTTPResponse.StatusCode

type NotificationsDeletePreviewListParams added in v0.2.0

type NotificationsDeletePreviewListParams struct {
	// Limit Number of results to return per page.
	Limit *int `form:"limit,omitempty" json:"limit,omitempty"`

	// Offset The initial index from which to return the results.
	Offset *int `form:"offset,omitempty" json:"offset,omitempty"`
}

NotificationsDeletePreviewListParams defines parameters for NotificationsDeletePreviewList.

type NotificationsDeletePreviewListResponse added in v0.2.0

type NotificationsDeletePreviewListResponse struct {
	Body         []byte
	HTTPResponse *http.Response
	JSON200      *PaginatedDeletePreviewList
}

func ParseNotificationsDeletePreviewListResponse added in v0.2.0

func ParseNotificationsDeletePreviewListResponse(rsp *http.Response) (*NotificationsDeletePreviewListResponse, error)

ParseNotificationsDeletePreviewListResponse parses an HTTP response from a NotificationsDeletePreviewListWithResponse call

func (NotificationsDeletePreviewListResponse) Status added in v0.2.0

Status returns HTTPResponse.Status

func (NotificationsDeletePreviewListResponse) StatusCode added in v0.2.0

StatusCode returns HTTPResponse.StatusCode

type NotificationsDestroyResponse

type NotificationsDestroyResponse struct {
	Body         []byte
	HTTPResponse *http.Response
}

func ParseNotificationsDestroyResponse

func ParseNotificationsDestroyResponse(rsp *http.Response) (*NotificationsDestroyResponse, error)

ParseNotificationsDestroyResponse parses an HTTP response from a NotificationsDestroyWithResponse call

func (NotificationsDestroyResponse) Status

Status returns HTTPResponse.Status

func (NotificationsDestroyResponse) StatusCode

func (r NotificationsDestroyResponse) StatusCode() int

StatusCode returns HTTPResponse.StatusCode

type NotificationsEngagementAdded

type NotificationsEngagementAdded string

NotificationsEngagementAdded * `slack` - slack * `msteams` - msteams * `mail` - mail * `alert` - alert

const (
	NotificationsEngagementAddedAlert   NotificationsEngagementAdded = "alert"
	NotificationsEngagementAddedMail    NotificationsEngagementAdded = "mail"
	NotificationsEngagementAddedMsteams NotificationsEngagementAdded = "msteams"
	NotificationsEngagementAddedSlack   NotificationsEngagementAdded = "slack"
)

Defines values for NotificationsEngagementAdded.

type NotificationsJiraUpdate

type NotificationsJiraUpdate string

NotificationsJiraUpdate * `slack` - slack * `msteams` - msteams * `mail` - mail * `alert` - alert

const (
	NotificationsJiraUpdateAlert   NotificationsJiraUpdate = "alert"
	NotificationsJiraUpdateMail    NotificationsJiraUpdate = "mail"
	NotificationsJiraUpdateMsteams NotificationsJiraUpdate = "msteams"
	NotificationsJiraUpdateSlack   NotificationsJiraUpdate = "slack"
)

Defines values for NotificationsJiraUpdate.

type NotificationsListParams

type NotificationsListParams struct {
	Id *int `form:"id,omitempty" json:"id,omitempty"`

	// Limit Number of results to return per page.
	Limit *int `form:"limit,omitempty" json:"limit,omitempty"`

	// Offset The initial index from which to return the results.
	Offset *int `form:"offset,omitempty" json:"offset,omitempty"`

	// Prefetch List of fields for which to prefetch model instances and add those to the response
	Prefetch *[]NotificationsListParamsPrefetch `form:"prefetch,omitempty" json:"prefetch,omitempty"`
	Product  *int                               `form:"product,omitempty" json:"product,omitempty"`
	Template *bool                              `form:"template,omitempty" json:"template,omitempty"`
	User     *int                               `form:"user,omitempty" json:"user,omitempty"`
}

NotificationsListParams defines parameters for NotificationsList.

type NotificationsListParamsPrefetch

type NotificationsListParamsPrefetch string

NotificationsListParamsPrefetch defines parameters for NotificationsList.

const (
	NotificationsListParamsPrefetchProduct NotificationsListParamsPrefetch = "product"
	NotificationsListParamsPrefetchUser    NotificationsListParamsPrefetch = "user"
)

Defines values for NotificationsListParamsPrefetch.

type NotificationsListResponse

type NotificationsListResponse struct {
	Body         []byte
	HTTPResponse *http.Response
	JSON200      *PaginatedNotificationsList
}

func ParseNotificationsListResponse

func ParseNotificationsListResponse(rsp *http.Response) (*NotificationsListResponse, error)

ParseNotificationsListResponse parses an HTTP response from a NotificationsListWithResponse call

func (NotificationsListResponse) Status

func (r NotificationsListResponse) Status() string

Status returns HTTPResponse.Status

func (NotificationsListResponse) StatusCode

func (r NotificationsListResponse) StatusCode() int

StatusCode returns HTTPResponse.StatusCode

type NotificationsOther

type NotificationsOther string

NotificationsOther * `slack` - slack * `msteams` - msteams * `mail` - mail * `alert` - alert

const (
	NotificationsOtherAlert   NotificationsOther = "alert"
	NotificationsOtherMail    NotificationsOther = "mail"
	NotificationsOtherMsteams NotificationsOther = "msteams"
	NotificationsOtherSlack   NotificationsOther = "slack"
)

Defines values for NotificationsOther.

type NotificationsPartialUpdateFormdataRequestBody added in v0.2.0

type NotificationsPartialUpdateFormdataRequestBody = PatchedNotificationsRequest

NotificationsPartialUpdateFormdataRequestBody defines body for NotificationsPartialUpdate for application/x-www-form-urlencoded ContentType.

type NotificationsPartialUpdateJSONRequestBody

type NotificationsPartialUpdateJSONRequestBody = PatchedNotificationsRequest

NotificationsPartialUpdateJSONRequestBody defines body for NotificationsPartialUpdate for application/json ContentType.

type NotificationsPartialUpdateMultipartRequestBody added in v0.2.0

type NotificationsPartialUpdateMultipartRequestBody = PatchedNotificationsRequest

NotificationsPartialUpdateMultipartRequestBody defines body for NotificationsPartialUpdate for multipart/form-data ContentType.

type NotificationsPartialUpdateResponse

type NotificationsPartialUpdateResponse struct {
	Body         []byte
	HTTPResponse *http.Response
	JSON200      *Notifications
}

func ParseNotificationsPartialUpdateResponse

func ParseNotificationsPartialUpdateResponse(rsp *http.Response) (*NotificationsPartialUpdateResponse, error)

ParseNotificationsPartialUpdateResponse parses an HTTP response from a NotificationsPartialUpdateWithResponse call

func (NotificationsPartialUpdateResponse) Status

Status returns HTTPResponse.Status

func (NotificationsPartialUpdateResponse) StatusCode

func (r NotificationsPartialUpdateResponse) StatusCode() int

StatusCode returns HTTPResponse.StatusCode

type NotificationsProductAdded

type NotificationsProductAdded string

NotificationsProductAdded * `slack` - slack * `msteams` - msteams * `mail` - mail * `alert` - alert

const (
	NotificationsProductAddedAlert   NotificationsProductAdded = "alert"
	NotificationsProductAddedMail    NotificationsProductAdded = "mail"
	NotificationsProductAddedMsteams NotificationsProductAdded = "msteams"
	NotificationsProductAddedSlack   NotificationsProductAdded = "slack"
)

Defines values for NotificationsProductAdded.

type NotificationsProductTypeAdded

type NotificationsProductTypeAdded string

NotificationsProductTypeAdded * `slack` - slack * `msteams` - msteams * `mail` - mail * `alert` - alert

const (
	NotificationsProductTypeAddedAlert   NotificationsProductTypeAdded = "alert"
	NotificationsProductTypeAddedMail    NotificationsProductTypeAdded = "mail"
	NotificationsProductTypeAddedMsteams NotificationsProductTypeAdded = "msteams"
	NotificationsProductTypeAddedSlack   NotificationsProductTypeAdded = "slack"
)

Defines values for NotificationsProductTypeAdded.

type NotificationsRequest added in v0.2.0

type NotificationsRequest struct {
	AutoCloseEngagement      *[]NotificationsRequestAutoCloseEngagement      `json:"auto_close_engagement,omitempty"`
	CloseEngagement          *[]NotificationsRequestCloseEngagement          `json:"close_engagement,omitempty"`
	CodeReview               *[]NotificationsRequestCodeReview               `json:"code_review,omitempty"`
	EngagementAdded          *[]NotificationsRequestEngagementAdded          `json:"engagement_added,omitempty"`
	JiraUpdate               *[]NotificationsRequestJiraUpdate               `json:"jira_update,omitempty"`
	Other                    *[]NotificationsRequestOther                    `json:"other,omitempty"`
	Product                  *int                                            `json:"product"`
	ProductAdded             *[]NotificationsRequestProductAdded             `json:"product_added,omitempty"`
	ProductTypeAdded         *[]NotificationsRequestProductTypeAdded         `json:"product_type_added,omitempty"`
	ReviewRequested          *[]NotificationsRequestReviewRequested          `json:"review_requested,omitempty"`
	RiskAcceptanceExpiration *[]NotificationsRequestRiskAcceptanceExpiration `json:"risk_acceptance_expiration,omitempty"`
	ScanAdded                *[]NotificationsRequestScanAdded                `json:"scan_added,omitempty"`
	SlaBreach                *[]NotificationsRequestSlaBreach                `json:"sla_breach,omitempty"`
	StaleEngagement          *[]NotificationsRequestStaleEngagement          `json:"stale_engagement,omitempty"`
	Template                 *bool                                           `json:"template,omitempty"`
	TestAdded                *[]NotificationsRequestTestAdded                `json:"test_added,omitempty"`
	UpcomingEngagement       *[]NotificationsRequestUpcomingEngagement       `json:"upcoming_engagement,omitempty"`
	User                     *int                                            `json:"user"`
	UserMentioned            *[]NotificationsRequestUserMentioned            `json:"user_mentioned,omitempty"`
}

NotificationsRequest defines model for NotificationsRequest.

type NotificationsRequestAutoCloseEngagement added in v0.2.0

type NotificationsRequestAutoCloseEngagement string

NotificationsRequestAutoCloseEngagement * `slack` - slack * `msteams` - msteams * `mail` - mail * `alert` - alert

const (
	NotificationsRequestAutoCloseEngagementAlert   NotificationsRequestAutoCloseEngagement = "alert"
	NotificationsRequestAutoCloseEngagementMail    NotificationsRequestAutoCloseEngagement = "mail"
	NotificationsRequestAutoCloseEngagementMsteams NotificationsRequestAutoCloseEngagement = "msteams"
	NotificationsRequestAutoCloseEngagementSlack   NotificationsRequestAutoCloseEngagement = "slack"
)

Defines values for NotificationsRequestAutoCloseEngagement.

type NotificationsRequestCloseEngagement added in v0.2.0

type NotificationsRequestCloseEngagement string

NotificationsRequestCloseEngagement * `slack` - slack * `msteams` - msteams * `mail` - mail * `alert` - alert

const (
	NotificationsRequestCloseEngagementAlert   NotificationsRequestCloseEngagement = "alert"
	NotificationsRequestCloseEngagementMail    NotificationsRequestCloseEngagement = "mail"
	NotificationsRequestCloseEngagementMsteams NotificationsRequestCloseEngagement = "msteams"
	NotificationsRequestCloseEngagementSlack   NotificationsRequestCloseEngagement = "slack"
)

Defines values for NotificationsRequestCloseEngagement.

type NotificationsRequestCodeReview added in v0.2.0

type NotificationsRequestCodeReview string

NotificationsRequestCodeReview * `slack` - slack * `msteams` - msteams * `mail` - mail * `alert` - alert

const (
	NotificationsRequestCodeReviewAlert   NotificationsRequestCodeReview = "alert"
	NotificationsRequestCodeReviewMail    NotificationsRequestCodeReview = "mail"
	NotificationsRequestCodeReviewMsteams NotificationsRequestCodeReview = "msteams"
	NotificationsRequestCodeReviewSlack   NotificationsRequestCodeReview = "slack"
)

Defines values for NotificationsRequestCodeReview.

type NotificationsRequestEngagementAdded added in v0.2.0

type NotificationsRequestEngagementAdded string

NotificationsRequestEngagementAdded * `slack` - slack * `msteams` - msteams * `mail` - mail * `alert` - alert

const (
	NotificationsRequestEngagementAddedAlert   NotificationsRequestEngagementAdded = "alert"
	NotificationsRequestEngagementAddedMail    NotificationsRequestEngagementAdded = "mail"
	NotificationsRequestEngagementAddedMsteams NotificationsRequestEngagementAdded = "msteams"
	NotificationsRequestEngagementAddedSlack   NotificationsRequestEngagementAdded = "slack"
)

Defines values for NotificationsRequestEngagementAdded.

type NotificationsRequestJiraUpdate added in v0.2.0

type NotificationsRequestJiraUpdate string

NotificationsRequestJiraUpdate * `slack` - slack * `msteams` - msteams * `mail` - mail * `alert` - alert

const (
	NotificationsRequestJiraUpdateAlert   NotificationsRequestJiraUpdate = "alert"
	NotificationsRequestJiraUpdateMail    NotificationsRequestJiraUpdate = "mail"
	NotificationsRequestJiraUpdateMsteams NotificationsRequestJiraUpdate = "msteams"
	NotificationsRequestJiraUpdateSlack   NotificationsRequestJiraUpdate = "slack"
)

Defines values for NotificationsRequestJiraUpdate.

type NotificationsRequestOther added in v0.2.0

type NotificationsRequestOther string

NotificationsRequestOther * `slack` - slack * `msteams` - msteams * `mail` - mail * `alert` - alert

const (
	NotificationsRequestOtherAlert   NotificationsRequestOther = "alert"
	NotificationsRequestOtherMail    NotificationsRequestOther = "mail"
	NotificationsRequestOtherMsteams NotificationsRequestOther = "msteams"
	NotificationsRequestOtherSlack   NotificationsRequestOther = "slack"
)

Defines values for NotificationsRequestOther.

type NotificationsRequestProductAdded added in v0.2.0

type NotificationsRequestProductAdded string

NotificationsRequestProductAdded * `slack` - slack * `msteams` - msteams * `mail` - mail * `alert` - alert

const (
	NotificationsRequestProductAddedAlert   NotificationsRequestProductAdded = "alert"
	NotificationsRequestProductAddedMail    NotificationsRequestProductAdded = "mail"
	NotificationsRequestProductAddedMsteams NotificationsRequestProductAdded = "msteams"
	NotificationsRequestProductAddedSlack   NotificationsRequestProductAdded = "slack"
)

Defines values for NotificationsRequestProductAdded.

type NotificationsRequestProductTypeAdded added in v0.2.0

type NotificationsRequestProductTypeAdded string

NotificationsRequestProductTypeAdded * `slack` - slack * `msteams` - msteams * `mail` - mail * `alert` - alert

const (
	NotificationsRequestProductTypeAddedAlert   NotificationsRequestProductTypeAdded = "alert"
	NotificationsRequestProductTypeAddedMail    NotificationsRequestProductTypeAdded = "mail"
	NotificationsRequestProductTypeAddedMsteams NotificationsRequestProductTypeAdded = "msteams"
	NotificationsRequestProductTypeAddedSlack   NotificationsRequestProductTypeAdded = "slack"
)

Defines values for NotificationsRequestProductTypeAdded.

type NotificationsRequestReviewRequested added in v0.2.0

type NotificationsRequestReviewRequested string

NotificationsRequestReviewRequested * `slack` - slack * `msteams` - msteams * `mail` - mail * `alert` - alert

const (
	NotificationsRequestReviewRequestedAlert   NotificationsRequestReviewRequested = "alert"
	NotificationsRequestReviewRequestedMail    NotificationsRequestReviewRequested = "mail"
	NotificationsRequestReviewRequestedMsteams NotificationsRequestReviewRequested = "msteams"
	NotificationsRequestReviewRequestedSlack   NotificationsRequestReviewRequested = "slack"
)

Defines values for NotificationsRequestReviewRequested.

type NotificationsRequestRiskAcceptanceExpiration added in v0.2.0

type NotificationsRequestRiskAcceptanceExpiration string

NotificationsRequestRiskAcceptanceExpiration * `slack` - slack * `msteams` - msteams * `mail` - mail * `alert` - alert

const (
	NotificationsRequestRiskAcceptanceExpirationAlert   NotificationsRequestRiskAcceptanceExpiration = "alert"
	NotificationsRequestRiskAcceptanceExpirationMail    NotificationsRequestRiskAcceptanceExpiration = "mail"
	NotificationsRequestRiskAcceptanceExpirationMsteams NotificationsRequestRiskAcceptanceExpiration = "msteams"
	NotificationsRequestRiskAcceptanceExpirationSlack   NotificationsRequestRiskAcceptanceExpiration = "slack"
)

Defines values for NotificationsRequestRiskAcceptanceExpiration.

type NotificationsRequestScanAdded added in v0.2.0

type NotificationsRequestScanAdded string

NotificationsRequestScanAdded * `slack` - slack * `msteams` - msteams * `mail` - mail * `alert` - alert

const (
	NotificationsRequestScanAddedAlert   NotificationsRequestScanAdded = "alert"
	NotificationsRequestScanAddedMail    NotificationsRequestScanAdded = "mail"
	NotificationsRequestScanAddedMsteams NotificationsRequestScanAdded = "msteams"
	NotificationsRequestScanAddedSlack   NotificationsRequestScanAdded = "slack"
)

Defines values for NotificationsRequestScanAdded.

type NotificationsRequestSlaBreach added in v0.2.0

type NotificationsRequestSlaBreach string

NotificationsRequestSlaBreach * `slack` - slack * `msteams` - msteams * `mail` - mail * `alert` - alert

const (
	NotificationsRequestSlaBreachAlert   NotificationsRequestSlaBreach = "alert"
	NotificationsRequestSlaBreachMail    NotificationsRequestSlaBreach = "mail"
	NotificationsRequestSlaBreachMsteams NotificationsRequestSlaBreach = "msteams"
	NotificationsRequestSlaBreachSlack   NotificationsRequestSlaBreach = "slack"
)

Defines values for NotificationsRequestSlaBreach.

type NotificationsRequestStaleEngagement added in v0.2.0

type NotificationsRequestStaleEngagement string

NotificationsRequestStaleEngagement * `slack` - slack * `msteams` - msteams * `mail` - mail * `alert` - alert

const (
	NotificationsRequestStaleEngagementAlert   NotificationsRequestStaleEngagement = "alert"
	NotificationsRequestStaleEngagementMail    NotificationsRequestStaleEngagement = "mail"
	NotificationsRequestStaleEngagementMsteams NotificationsRequestStaleEngagement = "msteams"
	NotificationsRequestStaleEngagementSlack   NotificationsRequestStaleEngagement = "slack"
)

Defines values for NotificationsRequestStaleEngagement.

type NotificationsRequestTestAdded added in v0.2.0

type NotificationsRequestTestAdded string

NotificationsRequestTestAdded * `slack` - slack * `msteams` - msteams * `mail` - mail * `alert` - alert

const (
	NotificationsRequestTestAddedAlert   NotificationsRequestTestAdded = "alert"
	NotificationsRequestTestAddedMail    NotificationsRequestTestAdded = "mail"
	NotificationsRequestTestAddedMsteams NotificationsRequestTestAdded = "msteams"
	NotificationsRequestTestAddedSlack   NotificationsRequestTestAdded = "slack"
)

Defines values for NotificationsRequestTestAdded.

type NotificationsRequestUpcomingEngagement added in v0.2.0

type NotificationsRequestUpcomingEngagement string

NotificationsRequestUpcomingEngagement * `slack` - slack * `msteams` - msteams * `mail` - mail * `alert` - alert

const (
	NotificationsRequestUpcomingEngagementAlert   NotificationsRequestUpcomingEngagement = "alert"
	NotificationsRequestUpcomingEngagementMail    NotificationsRequestUpcomingEngagement = "mail"
	NotificationsRequestUpcomingEngagementMsteams NotificationsRequestUpcomingEngagement = "msteams"
	NotificationsRequestUpcomingEngagementSlack   NotificationsRequestUpcomingEngagement = "slack"
)

Defines values for NotificationsRequestUpcomingEngagement.

type NotificationsRequestUserMentioned added in v0.2.0

type NotificationsRequestUserMentioned string

NotificationsRequestUserMentioned * `slack` - slack * `msteams` - msteams * `mail` - mail * `alert` - alert

const (
	NotificationsRequestUserMentionedAlert   NotificationsRequestUserMentioned = "alert"
	NotificationsRequestUserMentionedMail    NotificationsRequestUserMentioned = "mail"
	NotificationsRequestUserMentionedMsteams NotificationsRequestUserMentioned = "msteams"
	NotificationsRequestUserMentionedSlack   NotificationsRequestUserMentioned = "slack"
)

Defines values for NotificationsRequestUserMentioned.

type NotificationsRetrieveParams

type NotificationsRetrieveParams struct {
	// Prefetch List of fields for which to prefetch model instances and add those to the response
	Prefetch *[]NotificationsRetrieveParamsPrefetch `form:"prefetch,omitempty" json:"prefetch,omitempty"`
}

NotificationsRetrieveParams defines parameters for NotificationsRetrieve.

type NotificationsRetrieveParamsPrefetch

type NotificationsRetrieveParamsPrefetch string

NotificationsRetrieveParamsPrefetch defines parameters for NotificationsRetrieve.

const (
	NotificationsRetrieveParamsPrefetchProduct NotificationsRetrieveParamsPrefetch = "product"
	NotificationsRetrieveParamsPrefetchUser    NotificationsRetrieveParamsPrefetch = "user"
)

Defines values for NotificationsRetrieveParamsPrefetch.

type NotificationsRetrieveResponse

type NotificationsRetrieveResponse struct {
	Body         []byte
	HTTPResponse *http.Response
	JSON200      *Notifications
}

func ParseNotificationsRetrieveResponse

func ParseNotificationsRetrieveResponse(rsp *http.Response) (*NotificationsRetrieveResponse, error)

ParseNotificationsRetrieveResponse parses an HTTP response from a NotificationsRetrieveWithResponse call

func (NotificationsRetrieveResponse) Status

Status returns HTTPResponse.Status

func (NotificationsRetrieveResponse) StatusCode

func (r NotificationsRetrieveResponse) StatusCode() int

StatusCode returns HTTPResponse.StatusCode

type NotificationsReviewRequested

type NotificationsReviewRequested string

NotificationsReviewRequested * `slack` - slack * `msteams` - msteams * `mail` - mail * `alert` - alert

const (
	NotificationsReviewRequestedAlert   NotificationsReviewRequested = "alert"
	NotificationsReviewRequestedMail    NotificationsReviewRequested = "mail"
	NotificationsReviewRequestedMsteams NotificationsReviewRequested = "msteams"
	NotificationsReviewRequestedSlack   NotificationsReviewRequested = "slack"
)

Defines values for NotificationsReviewRequested.

type NotificationsRiskAcceptanceExpiration

type NotificationsRiskAcceptanceExpiration string

NotificationsRiskAcceptanceExpiration * `slack` - slack * `msteams` - msteams * `mail` - mail * `alert` - alert

const (
	NotificationsRiskAcceptanceExpirationAlert   NotificationsRiskAcceptanceExpiration = "alert"
	NotificationsRiskAcceptanceExpirationMail    NotificationsRiskAcceptanceExpiration = "mail"
	NotificationsRiskAcceptanceExpirationMsteams NotificationsRiskAcceptanceExpiration = "msteams"
	NotificationsRiskAcceptanceExpirationSlack   NotificationsRiskAcceptanceExpiration = "slack"
)

Defines values for NotificationsRiskAcceptanceExpiration.

type NotificationsScanAdded

type NotificationsScanAdded string

NotificationsScanAdded * `slack` - slack * `msteams` - msteams * `mail` - mail * `alert` - alert

const (
	NotificationsScanAddedAlert   NotificationsScanAdded = "alert"
	NotificationsScanAddedMail    NotificationsScanAdded = "mail"
	NotificationsScanAddedMsteams NotificationsScanAdded = "msteams"
	NotificationsScanAddedSlack   NotificationsScanAdded = "slack"
)

Defines values for NotificationsScanAdded.

type NotificationsSlaBreach

type NotificationsSlaBreach string

NotificationsSlaBreach * `slack` - slack * `msteams` - msteams * `mail` - mail * `alert` - alert

const (
	NotificationsSlaBreachAlert   NotificationsSlaBreach = "alert"
	NotificationsSlaBreachMail    NotificationsSlaBreach = "mail"
	NotificationsSlaBreachMsteams NotificationsSlaBreach = "msteams"
	NotificationsSlaBreachSlack   NotificationsSlaBreach = "slack"
)

Defines values for NotificationsSlaBreach.

type NotificationsStaleEngagement

type NotificationsStaleEngagement string

NotificationsStaleEngagement * `slack` - slack * `msteams` - msteams * `mail` - mail * `alert` - alert

const (
	NotificationsStaleEngagementAlert   NotificationsStaleEngagement = "alert"
	NotificationsStaleEngagementMail    NotificationsStaleEngagement = "mail"
	NotificationsStaleEngagementMsteams NotificationsStaleEngagement = "msteams"
	NotificationsStaleEngagementSlack   NotificationsStaleEngagement = "slack"
)

Defines values for NotificationsStaleEngagement.

type NotificationsTestAdded

type NotificationsTestAdded string

NotificationsTestAdded * `slack` - slack * `msteams` - msteams * `mail` - mail * `alert` - alert

const (
	NotificationsTestAddedAlert   NotificationsTestAdded = "alert"
	NotificationsTestAddedMail    NotificationsTestAdded = "mail"
	NotificationsTestAddedMsteams NotificationsTestAdded = "msteams"
	NotificationsTestAddedSlack   NotificationsTestAdded = "slack"
)

Defines values for NotificationsTestAdded.

type NotificationsUpcomingEngagement

type NotificationsUpcomingEngagement string

NotificationsUpcomingEngagement * `slack` - slack * `msteams` - msteams * `mail` - mail * `alert` - alert

const (
	NotificationsUpcomingEngagementAlert   NotificationsUpcomingEngagement = "alert"
	NotificationsUpcomingEngagementMail    NotificationsUpcomingEngagement = "mail"
	NotificationsUpcomingEngagementMsteams NotificationsUpcomingEngagement = "msteams"
	NotificationsUpcomingEngagementSlack   NotificationsUpcomingEngagement = "slack"
)

Defines values for NotificationsUpcomingEngagement.

type NotificationsUpdateFormdataRequestBody added in v0.2.0

type NotificationsUpdateFormdataRequestBody = NotificationsRequest

NotificationsUpdateFormdataRequestBody defines body for NotificationsUpdate for application/x-www-form-urlencoded ContentType.

type NotificationsUpdateJSONRequestBody

type NotificationsUpdateJSONRequestBody = NotificationsRequest

NotificationsUpdateJSONRequestBody defines body for NotificationsUpdate for application/json ContentType.

type NotificationsUpdateMultipartRequestBody added in v0.2.0

type NotificationsUpdateMultipartRequestBody = NotificationsRequest

NotificationsUpdateMultipartRequestBody defines body for NotificationsUpdate for multipart/form-data ContentType.

type NotificationsUpdateResponse

type NotificationsUpdateResponse struct {
	Body         []byte
	HTTPResponse *http.Response
	JSON200      *Notifications
}

func ParseNotificationsUpdateResponse

func ParseNotificationsUpdateResponse(rsp *http.Response) (*NotificationsUpdateResponse, error)

ParseNotificationsUpdateResponse parses an HTTP response from a NotificationsUpdateWithResponse call

func (NotificationsUpdateResponse) Status

Status returns HTTPResponse.Status

func (NotificationsUpdateResponse) StatusCode

func (r NotificationsUpdateResponse) StatusCode() int

StatusCode returns HTTPResponse.StatusCode

type NotificationsUserMentioned

type NotificationsUserMentioned string

NotificationsUserMentioned * `slack` - slack * `msteams` - msteams * `mail` - mail * `alert` - alert

const (
	NotificationsUserMentionedAlert   NotificationsUserMentioned = "alert"
	NotificationsUserMentionedMail    NotificationsUserMentioned = "mail"
	NotificationsUserMentionedMsteams NotificationsUserMentioned = "msteams"
	NotificationsUserMentionedSlack   NotificationsUserMentioned = "slack"
)

Defines values for NotificationsUserMentioned.

type Oa3SchemaRetrieveParams

type Oa3SchemaRetrieveParams struct {
	Format *Oa3SchemaRetrieveParamsFormat `form:"format,omitempty" json:"format,omitempty"`
	Lang   *Oa3SchemaRetrieveParamsLang   `form:"lang,omitempty" json:"lang,omitempty"`
}

Oa3SchemaRetrieveParams defines parameters for Oa3SchemaRetrieve.

type Oa3SchemaRetrieveParamsFormat

type Oa3SchemaRetrieveParamsFormat string

Oa3SchemaRetrieveParamsFormat defines parameters for Oa3SchemaRetrieve.

const (
	Json Oa3SchemaRetrieveParamsFormat = "json"
	Yaml Oa3SchemaRetrieveParamsFormat = "yaml"
)

Defines values for Oa3SchemaRetrieveParamsFormat.

type Oa3SchemaRetrieveParamsLang

type Oa3SchemaRetrieveParamsLang string

Oa3SchemaRetrieveParamsLang defines parameters for Oa3SchemaRetrieve.

const (
	Oa3SchemaRetrieveParamsLangAf     Oa3SchemaRetrieveParamsLang = "af"
	Oa3SchemaRetrieveParamsLangAr     Oa3SchemaRetrieveParamsLang = "ar"
	Oa3SchemaRetrieveParamsLangArDz   Oa3SchemaRetrieveParamsLang = "ar-dz"
	Oa3SchemaRetrieveParamsLangAst    Oa3SchemaRetrieveParamsLang = "ast"
	Oa3SchemaRetrieveParamsLangAz     Oa3SchemaRetrieveParamsLang = "az"
	Oa3SchemaRetrieveParamsLangBe     Oa3SchemaRetrieveParamsLang = "be"
	Oa3SchemaRetrieveParamsLangBg     Oa3SchemaRetrieveParamsLang = "bg"
	Oa3SchemaRetrieveParamsLangBn     Oa3SchemaRetrieveParamsLang = "bn"
	Oa3SchemaRetrieveParamsLangBr     Oa3SchemaRetrieveParamsLang = "br"
	Oa3SchemaRetrieveParamsLangBs     Oa3SchemaRetrieveParamsLang = "bs"
	Oa3SchemaRetrieveParamsLangCa     Oa3SchemaRetrieveParamsLang = "ca"
	Oa3SchemaRetrieveParamsLangCs     Oa3SchemaRetrieveParamsLang = "cs"
	Oa3SchemaRetrieveParamsLangCy     Oa3SchemaRetrieveParamsLang = "cy"
	Oa3SchemaRetrieveParamsLangDa     Oa3SchemaRetrieveParamsLang = "da"
	Oa3SchemaRetrieveParamsLangDe     Oa3SchemaRetrieveParamsLang = "de"
	Oa3SchemaRetrieveParamsLangDsb    Oa3SchemaRetrieveParamsLang = "dsb"
	Oa3SchemaRetrieveParamsLangEl     Oa3SchemaRetrieveParamsLang = "el"
	Oa3SchemaRetrieveParamsLangEn     Oa3SchemaRetrieveParamsLang = "en"
	Oa3SchemaRetrieveParamsLangEnAu   Oa3SchemaRetrieveParamsLang = "en-au"
	Oa3SchemaRetrieveParamsLangEnGb   Oa3SchemaRetrieveParamsLang = "en-gb"
	Oa3SchemaRetrieveParamsLangEo     Oa3SchemaRetrieveParamsLang = "eo"
	Oa3SchemaRetrieveParamsLangEs     Oa3SchemaRetrieveParamsLang = "es"
	Oa3SchemaRetrieveParamsLangEsAr   Oa3SchemaRetrieveParamsLang = "es-ar"
	Oa3SchemaRetrieveParamsLangEsCo   Oa3SchemaRetrieveParamsLang = "es-co"
	Oa3SchemaRetrieveParamsLangEsMx   Oa3SchemaRetrieveParamsLang = "es-mx"
	Oa3SchemaRetrieveParamsLangEsNi   Oa3SchemaRetrieveParamsLang = "es-ni"
	Oa3SchemaRetrieveParamsLangEsVe   Oa3SchemaRetrieveParamsLang = "es-ve"
	Oa3SchemaRetrieveParamsLangEt     Oa3SchemaRetrieveParamsLang = "et"
	Oa3SchemaRetrieveParamsLangEu     Oa3SchemaRetrieveParamsLang = "eu"
	Oa3SchemaRetrieveParamsLangFa     Oa3SchemaRetrieveParamsLang = "fa"
	Oa3SchemaRetrieveParamsLangFi     Oa3SchemaRetrieveParamsLang = "fi"
	Oa3SchemaRetrieveParamsLangFr     Oa3SchemaRetrieveParamsLang = "fr"
	Oa3SchemaRetrieveParamsLangFy     Oa3SchemaRetrieveParamsLang = "fy"
	Oa3SchemaRetrieveParamsLangGa     Oa3SchemaRetrieveParamsLang = "ga"
	Oa3SchemaRetrieveParamsLangGd     Oa3SchemaRetrieveParamsLang = "gd"
	Oa3SchemaRetrieveParamsLangGl     Oa3SchemaRetrieveParamsLang = "gl"
	Oa3SchemaRetrieveParamsLangHe     Oa3SchemaRetrieveParamsLang = "he"
	Oa3SchemaRetrieveParamsLangHi     Oa3SchemaRetrieveParamsLang = "hi"
	Oa3SchemaRetrieveParamsLangHr     Oa3SchemaRetrieveParamsLang = "hr"
	Oa3SchemaRetrieveParamsLangHsb    Oa3SchemaRetrieveParamsLang = "hsb"
	Oa3SchemaRetrieveParamsLangHu     Oa3SchemaRetrieveParamsLang = "hu"
	Oa3SchemaRetrieveParamsLangHy     Oa3SchemaRetrieveParamsLang = "hy"
	Oa3SchemaRetrieveParamsLangIa     Oa3SchemaRetrieveParamsLang = "ia"
	Oa3SchemaRetrieveParamsLangId     Oa3SchemaRetrieveParamsLang = "id"
	Oa3SchemaRetrieveParamsLangIg     Oa3SchemaRetrieveParamsLang = "ig"
	Oa3SchemaRetrieveParamsLangIo     Oa3SchemaRetrieveParamsLang = "io"
	Oa3SchemaRetrieveParamsLangIs     Oa3SchemaRetrieveParamsLang = "is"
	Oa3SchemaRetrieveParamsLangIt     Oa3SchemaRetrieveParamsLang = "it"
	Oa3SchemaRetrieveParamsLangJa     Oa3SchemaRetrieveParamsLang = "ja"
	Oa3SchemaRetrieveParamsLangKa     Oa3SchemaRetrieveParamsLang = "ka"
	Oa3SchemaRetrieveParamsLangKab    Oa3SchemaRetrieveParamsLang = "kab"
	Oa3SchemaRetrieveParamsLangKk     Oa3SchemaRetrieveParamsLang = "kk"
	Oa3SchemaRetrieveParamsLangKm     Oa3SchemaRetrieveParamsLang = "km"
	Oa3SchemaRetrieveParamsLangKn     Oa3SchemaRetrieveParamsLang = "kn"
	Oa3SchemaRetrieveParamsLangKo     Oa3SchemaRetrieveParamsLang = "ko"
	Oa3SchemaRetrieveParamsLangKy     Oa3SchemaRetrieveParamsLang = "ky"
	Oa3SchemaRetrieveParamsLangLb     Oa3SchemaRetrieveParamsLang = "lb"
	Oa3SchemaRetrieveParamsLangLt     Oa3SchemaRetrieveParamsLang = "lt"
	Oa3SchemaRetrieveParamsLangLv     Oa3SchemaRetrieveParamsLang = "lv"
	Oa3SchemaRetrieveParamsLangMk     Oa3SchemaRetrieveParamsLang = "mk"
	Oa3SchemaRetrieveParamsLangMl     Oa3SchemaRetrieveParamsLang = "ml"
	Oa3SchemaRetrieveParamsLangMn     Oa3SchemaRetrieveParamsLang = "mn"
	Oa3SchemaRetrieveParamsLangMr     Oa3SchemaRetrieveParamsLang = "mr"
	Oa3SchemaRetrieveParamsLangMs     Oa3SchemaRetrieveParamsLang = "ms"
	Oa3SchemaRetrieveParamsLangMy     Oa3SchemaRetrieveParamsLang = "my"
	Oa3SchemaRetrieveParamsLangNb     Oa3SchemaRetrieveParamsLang = "nb"
	Oa3SchemaRetrieveParamsLangNe     Oa3SchemaRetrieveParamsLang = "ne"
	Oa3SchemaRetrieveParamsLangNl     Oa3SchemaRetrieveParamsLang = "nl"
	Oa3SchemaRetrieveParamsLangNn     Oa3SchemaRetrieveParamsLang = "nn"
	Oa3SchemaRetrieveParamsLangOs     Oa3SchemaRetrieveParamsLang = "os"
	Oa3SchemaRetrieveParamsLangPa     Oa3SchemaRetrieveParamsLang = "pa"
	Oa3SchemaRetrieveParamsLangPl     Oa3SchemaRetrieveParamsLang = "pl"
	Oa3SchemaRetrieveParamsLangPt     Oa3SchemaRetrieveParamsLang = "pt"
	Oa3SchemaRetrieveParamsLangPtBr   Oa3SchemaRetrieveParamsLang = "pt-br"
	Oa3SchemaRetrieveParamsLangRo     Oa3SchemaRetrieveParamsLang = "ro"
	Oa3SchemaRetrieveParamsLangRu     Oa3SchemaRetrieveParamsLang = "ru"
	Oa3SchemaRetrieveParamsLangSk     Oa3SchemaRetrieveParamsLang = "sk"
	Oa3SchemaRetrieveParamsLangSl     Oa3SchemaRetrieveParamsLang = "sl"
	Oa3SchemaRetrieveParamsLangSq     Oa3SchemaRetrieveParamsLang = "sq"
	Oa3SchemaRetrieveParamsLangSr     Oa3SchemaRetrieveParamsLang = "sr"
	Oa3SchemaRetrieveParamsLangSrLatn Oa3SchemaRetrieveParamsLang = "sr-latn"
	Oa3SchemaRetrieveParamsLangSv     Oa3SchemaRetrieveParamsLang = "sv"
	Oa3SchemaRetrieveParamsLangSw     Oa3SchemaRetrieveParamsLang = "sw"
	Oa3SchemaRetrieveParamsLangTa     Oa3SchemaRetrieveParamsLang = "ta"
	Oa3SchemaRetrieveParamsLangTe     Oa3SchemaRetrieveParamsLang = "te"
	Oa3SchemaRetrieveParamsLangTg     Oa3SchemaRetrieveParamsLang = "tg"
	Oa3SchemaRetrieveParamsLangTh     Oa3SchemaRetrieveParamsLang = "th"
	Oa3SchemaRetrieveParamsLangTk     Oa3SchemaRetrieveParamsLang = "tk"
	Oa3SchemaRetrieveParamsLangTr     Oa3SchemaRetrieveParamsLang = "tr"
	Oa3SchemaRetrieveParamsLangTt     Oa3SchemaRetrieveParamsLang = "tt"
	Oa3SchemaRetrieveParamsLangUdm    Oa3SchemaRetrieveParamsLang = "udm"
	Oa3SchemaRetrieveParamsLangUk     Oa3SchemaRetrieveParamsLang = "uk"
	Oa3SchemaRetrieveParamsLangUr     Oa3SchemaRetrieveParamsLang = "ur"
	Oa3SchemaRetrieveParamsLangUz     Oa3SchemaRetrieveParamsLang = "uz"
	Oa3SchemaRetrieveParamsLangVi     Oa3SchemaRetrieveParamsLang = "vi"
	Oa3SchemaRetrieveParamsLangZhHans Oa3SchemaRetrieveParamsLang = "zh-hans"
	Oa3SchemaRetrieveParamsLangZhHant Oa3SchemaRetrieveParamsLang = "zh-hant"
)

Defines values for Oa3SchemaRetrieveParamsLang.

type Oa3SchemaRetrieveResponse

type Oa3SchemaRetrieveResponse struct {
	Body                            []byte
	HTTPResponse                    *http.Response
	JSON200                         *map[string]interface{}
	ApplicationvndOaiOpenapiJSON200 *map[string]interface{}
	YAML200                         *map[string]interface{}
}

func ParseOa3SchemaRetrieveResponse

func ParseOa3SchemaRetrieveResponse(rsp *http.Response) (*Oa3SchemaRetrieveResponse, error)

ParseOa3SchemaRetrieveResponse parses an HTTP response from a Oa3SchemaRetrieveWithResponse call

func (Oa3SchemaRetrieveResponse) Status

func (r Oa3SchemaRetrieveResponse) Status() string

Status returns HTTPResponse.Status

func (Oa3SchemaRetrieveResponse) StatusCode

func (r Oa3SchemaRetrieveResponse) StatusCode() int

StatusCode returns HTTPResponse.StatusCode

type PaginatedAppAnalysisList

type PaginatedAppAnalysisList struct {
	Count    *int           `json:"count,omitempty"`
	Next     *string        `json:"next"`
	Previous *string        `json:"previous"`
	Results  *[]AppAnalysis `json:"results,omitempty"`
}

PaginatedAppAnalysisList defines model for PaginatedAppAnalysisList.

type PaginatedConfigurationPermissionList added in v0.2.0

type PaginatedConfigurationPermissionList struct {
	Count    *int                       `json:"count,omitempty"`
	Next     *string                    `json:"next"`
	Previous *string                    `json:"previous"`
	Results  *[]ConfigurationPermission `json:"results,omitempty"`
}

PaginatedConfigurationPermissionList defines model for PaginatedConfigurationPermissionList.

type PaginatedCredentialList added in v0.2.0

type PaginatedCredentialList struct {
	Count    *int          `json:"count,omitempty"`
	Next     *string       `json:"next"`
	Previous *string       `json:"previous"`
	Results  *[]Credential `json:"results,omitempty"`
}

PaginatedCredentialList defines model for PaginatedCredentialList.

type PaginatedCredentialMappingList added in v0.2.0

type PaginatedCredentialMappingList struct {
	Count    *int                 `json:"count,omitempty"`
	Next     *string              `json:"next"`
	Previous *string              `json:"previous"`
	Results  *[]CredentialMapping `json:"results,omitempty"`
}

PaginatedCredentialMappingList defines model for PaginatedCredentialMappingList.

type PaginatedDeletePreviewList added in v0.2.0

type PaginatedDeletePreviewList struct {
	Count    *int             `json:"count,omitempty"`
	Next     *string          `json:"next"`
	Previous *string          `json:"previous"`
	Results  *[]DeletePreview `json:"results,omitempty"`
}

PaginatedDeletePreviewList defines model for PaginatedDeletePreviewList.

type PaginatedDevelopmentEnvironmentList

type PaginatedDevelopmentEnvironmentList struct {
	Count    *int                      `json:"count,omitempty"`
	Next     *string                   `json:"next"`
	Previous *string                   `json:"previous"`
	Results  *[]DevelopmentEnvironment `json:"results,omitempty"`
}

PaginatedDevelopmentEnvironmentList defines model for PaginatedDevelopmentEnvironmentList.

type PaginatedDojoGroupList

type PaginatedDojoGroupList struct {
	Count    *int    `json:"count,omitempty"`
	Next     *string `json:"next"`
	Prefetch *struct {
		ProductGroups     *map[string]Product     `json:"product_groups,omitempty"`
		ProductTypeGroups *map[string]ProductType `json:"product_type_groups,omitempty"`
		Users             *map[string]UserStub    `json:"users,omitempty"`
	} `json:"prefetch,omitempty"`
	Previous *string      `json:"previous"`
	Results  *[]DojoGroup `json:"results,omitempty"`
}

PaginatedDojoGroupList defines model for PaginatedDojoGroupList.

type PaginatedDojoGroupMemberList

type PaginatedDojoGroupMemberList struct {
	Count    *int    `json:"count,omitempty"`
	Next     *string `json:"next"`
	Prefetch *struct {
		Group *map[string]DojoGroup `json:"group,omitempty"`
		Role  *map[string]Role      `json:"role,omitempty"`
		User  *map[string]UserStub  `json:"user,omitempty"`
	} `json:"prefetch,omitempty"`
	Previous *string            `json:"previous"`
	Results  *[]DojoGroupMember `json:"results,omitempty"`
}

PaginatedDojoGroupMemberList defines model for PaginatedDojoGroupMemberList.

type PaginatedEndpointList

type PaginatedEndpointList struct {
	Count    *int        `json:"count,omitempty"`
	Next     *string     `json:"next"`
	Previous *string     `json:"previous"`
	Results  *[]Endpoint `json:"results,omitempty"`
}

PaginatedEndpointList defines model for PaginatedEndpointList.

type PaginatedEndpointStatusList

type PaginatedEndpointStatusList struct {
	Count    *int              `json:"count,omitempty"`
	Next     *string           `json:"next"`
	Previous *string           `json:"previous"`
	Results  *[]EndpointStatus `json:"results,omitempty"`
}

PaginatedEndpointStatusList defines model for PaginatedEndpointStatusList.

type PaginatedEngagementList

type PaginatedEngagementList struct {
	Count    *int          `json:"count,omitempty"`
	Next     *string       `json:"next"`
	Previous *string       `json:"previous"`
	Results  *[]Engagement `json:"results,omitempty"`
}

PaginatedEngagementList defines model for PaginatedEngagementList.

type PaginatedEngagementPresetsList

type PaginatedEngagementPresetsList struct {
	Count    *int                 `json:"count,omitempty"`
	Next     *string              `json:"next"`
	Previous *string              `json:"previous"`
	Results  *[]EngagementPresets `json:"results,omitempty"`
}

PaginatedEngagementPresetsList defines model for PaginatedEngagementPresetsList.

type PaginatedFindingList

type PaginatedFindingList struct {
	Count    *int    `json:"count,omitempty"`
	Next     *string `json:"next"`
	Prefetch *struct {
		AuthIssues              *map[string]EngagementCheckList `json:"auth_issues,omitempty"`
		AuthorIssues            *map[string]EngagementCheckList `json:"author_issues,omitempty"`
		ConfigIssues            *map[string]EngagementCheckList `json:"config_issues,omitempty"`
		CryptoIssues            *map[string]EngagementCheckList `json:"crypto_issues,omitempty"`
		DataIssues              *map[string]EngagementCheckList `json:"data_issues,omitempty"`
		DefectReviewRequestedBy *map[string]UserStub            `json:"defect_review_requested_by,omitempty"`
		DuplicateFinding        *map[string]Finding             `json:"duplicate_finding,omitempty"`
		EndpointSet             *map[string]Endpoint            `json:"endpoint_set,omitempty"`
		Endpoints               *map[string]Endpoint            `json:"endpoints,omitempty"`
		Files                   *map[string]RawFile             `json:"files,omitempty"`
		FindingGroupSet         *map[string]FindingGroup        `json:"finding_group_set,omitempty"`
		FoundBy                 *map[string]TestType            `json:"found_by,omitempty"`
		LastReviewedBy          *map[string]UserStub            `json:"last_reviewed_by,omitempty"`
		MitigatedBy             *map[string]UserStub            `json:"mitigated_by,omitempty"`
		Notes                   *map[string]Note                `json:"notes,omitempty"`
		OtherIssues             *map[string]EngagementCheckList `json:"other_issues,omitempty"`
		Reporter                *map[string]UserStub            `json:"reporter,omitempty"`
		ReviewRequestedBy       *map[string]UserStub            `json:"review_requested_by,omitempty"`
		Reviewers               *map[string]UserStub            `json:"reviewers,omitempty"`
		RiskAcceptanceSet       *map[string]RiskAcceptance      `json:"risk_acceptance_set,omitempty"`
		SensitiveIssues         *map[string]EngagementCheckList `json:"sensitive_issues,omitempty"`
		SessionIssues           *map[string]EngagementCheckList `json:"session_issues,omitempty"`
		SonarqubeIssue          *map[string]SonarqubeIssue      `json:"sonarqube_issue,omitempty"`
		Test                    *map[string]Test                `json:"test,omitempty"`
		TestImportSet           *map[string]TestImport          `json:"test_import_set,omitempty"`
	} `json:"prefetch,omitempty"`
	Previous *string    `json:"previous"`
	Results  *[]Finding `json:"results,omitempty"`
}

PaginatedFindingList defines model for PaginatedFindingList.

type PaginatedFindingTemplateList

type PaginatedFindingTemplateList struct {
	Count    *int               `json:"count,omitempty"`
	Next     *string            `json:"next"`
	Previous *string            `json:"previous"`
	Results  *[]FindingTemplate `json:"results,omitempty"`
}

PaginatedFindingTemplateList defines model for PaginatedFindingTemplateList.

type PaginatedGlobalRoleList

type PaginatedGlobalRoleList struct {
	Count    *int          `json:"count,omitempty"`
	Next     *string       `json:"next"`
	Previous *string       `json:"previous"`
	Results  *[]GlobalRole `json:"results,omitempty"`
}

PaginatedGlobalRoleList defines model for PaginatedGlobalRoleList.

type PaginatedJIRAInstanceList

type PaginatedJIRAInstanceList struct {
	Count    *int            `json:"count,omitempty"`
	Next     *string         `json:"next"`
	Previous *string         `json:"previous"`
	Results  *[]JIRAInstance `json:"results,omitempty"`
}

PaginatedJIRAInstanceList defines model for PaginatedJIRAInstanceList.

type PaginatedJIRAIssueList

type PaginatedJIRAIssueList struct {
	Count    *int         `json:"count,omitempty"`
	Next     *string      `json:"next"`
	Previous *string      `json:"previous"`
	Results  *[]JIRAIssue `json:"results,omitempty"`
}

PaginatedJIRAIssueList defines model for PaginatedJIRAIssueList.

type PaginatedJIRAProjectList

type PaginatedJIRAProjectList struct {
	Count    *int           `json:"count,omitempty"`
	Next     *string        `json:"next"`
	Previous *string        `json:"previous"`
	Results  *[]JIRAProject `json:"results,omitempty"`
}

PaginatedJIRAProjectList defines model for PaginatedJIRAProjectList.

type PaginatedLanguageList

type PaginatedLanguageList struct {
	Count    *int    `json:"count,omitempty"`
	Next     *string `json:"next"`
	Prefetch *struct {
		Language *map[string]LanguageType `json:"language,omitempty"`
		Product  *map[string]Product      `json:"product,omitempty"`
		User     *map[string]UserStub     `json:"user,omitempty"`
	} `json:"prefetch,omitempty"`
	Previous *string     `json:"previous"`
	Results  *[]Language `json:"results,omitempty"`
}

PaginatedLanguageList defines model for PaginatedLanguageList.

type PaginatedLanguageTypeList

type PaginatedLanguageTypeList struct {
	Count    *int            `json:"count,omitempty"`
	Next     *string         `json:"next"`
	Previous *string         `json:"previous"`
	Results  *[]LanguageType `json:"results,omitempty"`
}

PaginatedLanguageTypeList defines model for PaginatedLanguageTypeList.

type PaginatedMetaList

type PaginatedMetaList struct {
	Count    *int    `json:"count,omitempty"`
	Next     *string `json:"next"`
	Prefetch *struct {
		Endpoint *map[string]Endpoint `json:"endpoint,omitempty"`
		Finding  *map[string]Finding  `json:"finding,omitempty"`
		Product  *map[string]Product  `json:"product,omitempty"`
	} `json:"prefetch,omitempty"`
	Previous *string `json:"previous"`
	Results  *[]Meta `json:"results,omitempty"`
}

PaginatedMetaList defines model for PaginatedMetaList.

type PaginatedNetworkLocationsList

type PaginatedNetworkLocationsList struct {
	Count    *int                `json:"count,omitempty"`
	Next     *string             `json:"next"`
	Previous *string             `json:"previous"`
	Results  *[]NetworkLocations `json:"results,omitempty"`
}

PaginatedNetworkLocationsList defines model for PaginatedNetworkLocationsList.

type PaginatedNoteList

type PaginatedNoteList struct {
	Count    *int    `json:"count,omitempty"`
	Next     *string `json:"next"`
	Previous *string `json:"previous"`
	Results  *[]Note `json:"results,omitempty"`
}

PaginatedNoteList defines model for PaginatedNoteList.

type PaginatedNoteTypeList

type PaginatedNoteTypeList struct {
	Count    *int        `json:"count,omitempty"`
	Next     *string     `json:"next"`
	Previous *string     `json:"previous"`
	Results  *[]NoteType `json:"results,omitempty"`
}

PaginatedNoteTypeList defines model for PaginatedNoteTypeList.

type PaginatedNotificationsList

type PaginatedNotificationsList struct {
	Count    *int    `json:"count,omitempty"`
	Next     *string `json:"next"`
	Prefetch *struct {
		Product *map[string]Product  `json:"product,omitempty"`
		User    *map[string]UserStub `json:"user,omitempty"`
	} `json:"prefetch,omitempty"`
	Previous *string          `json:"previous"`
	Results  *[]Notifications `json:"results,omitempty"`
}

PaginatedNotificationsList defines model for PaginatedNotificationsList.

type PaginatedProductAPIScanConfigurationList

type PaginatedProductAPIScanConfigurationList struct {
	Count    *int                           `json:"count,omitempty"`
	Next     *string                        `json:"next"`
	Previous *string                        `json:"previous"`
	Results  *[]ProductAPIScanConfiguration `json:"results,omitempty"`
}

PaginatedProductAPIScanConfigurationList defines model for PaginatedProductAPIScanConfigurationList.

type PaginatedProductGroupList

type PaginatedProductGroupList struct {
	Count    *int    `json:"count,omitempty"`
	Next     *string `json:"next"`
	Prefetch *struct {
		Group   *map[string]DojoGroup `json:"group,omitempty"`
		Product *map[string]Product   `json:"product,omitempty"`
		Role    *map[string]Role      `json:"role,omitempty"`
	} `json:"prefetch,omitempty"`
	Previous *string         `json:"previous"`
	Results  *[]ProductGroup `json:"results,omitempty"`
}

PaginatedProductGroupList defines model for PaginatedProductGroupList.

type PaginatedProductList

type PaginatedProductList struct {
	Count    *int    `json:"count,omitempty"`
	Next     *string `json:"next"`
	Prefetch *struct {
		AuthorizationGroups *map[string]DojoGroup        `json:"authorization_groups,omitempty"`
		Members             *map[string]UserStub         `json:"members,omitempty"`
		ProdType            *map[string]ProductType      `json:"prod_type,omitempty"`
		ProductManager      *map[string]UserStub         `json:"product_manager,omitempty"`
		Regulations         *map[string]Regulation       `json:"regulations,omitempty"`
		SlaConfiguration    *map[string]SLAConfiguration `json:"sla_configuration,omitempty"`
		TeamManager         *map[string]UserStub         `json:"team_manager,omitempty"`
		TechnicalContact    *map[string]UserStub         `json:"technical_contact,omitempty"`
	} `json:"prefetch,omitempty"`
	Previous *string    `json:"previous"`
	Results  *[]Product `json:"results,omitempty"`
}

PaginatedProductList defines model for PaginatedProductList.

type PaginatedProductMemberList

type PaginatedProductMemberList struct {
	Count    *int    `json:"count,omitempty"`
	Next     *string `json:"next"`
	Prefetch *struct {
		Product *map[string]Product  `json:"product,omitempty"`
		Role    *map[string]Role     `json:"role,omitempty"`
		User    *map[string]UserStub `json:"user,omitempty"`
	} `json:"prefetch,omitempty"`
	Previous *string          `json:"previous"`
	Results  *[]ProductMember `json:"results,omitempty"`
}

PaginatedProductMemberList defines model for PaginatedProductMemberList.

type PaginatedProductTypeGroupList

type PaginatedProductTypeGroupList struct {
	Count    *int    `json:"count,omitempty"`
	Next     *string `json:"next"`
	Prefetch *struct {
		Group       *map[string]DojoGroup   `json:"group,omitempty"`
		ProductType *map[string]ProductType `json:"product_type,omitempty"`
		Role        *map[string]Role        `json:"role,omitempty"`
	} `json:"prefetch,omitempty"`
	Previous *string             `json:"previous"`
	Results  *[]ProductTypeGroup `json:"results,omitempty"`
}

PaginatedProductTypeGroupList defines model for PaginatedProductTypeGroupList.

type PaginatedProductTypeList

type PaginatedProductTypeList struct {
	Count    *int    `json:"count,omitempty"`
	Next     *string `json:"next"`
	Prefetch *struct {
		AuthorizationGroups *map[string]DojoGroup `json:"authorization_groups,omitempty"`
		Members             *map[string]UserStub  `json:"members,omitempty"`
	} `json:"prefetch,omitempty"`
	Previous *string        `json:"previous"`
	Results  *[]ProductType `json:"results,omitempty"`
}

PaginatedProductTypeList defines model for PaginatedProductTypeList.

type PaginatedProductTypeMemberList

type PaginatedProductTypeMemberList struct {
	Count    *int    `json:"count,omitempty"`
	Next     *string `json:"next"`
	Prefetch *struct {
		ProductType *map[string]ProductType `json:"product_type,omitempty"`
		Role        *map[string]Role        `json:"role,omitempty"`
		User        *map[string]UserStub    `json:"user,omitempty"`
	} `json:"prefetch,omitempty"`
	Previous *string              `json:"previous"`
	Results  *[]ProductTypeMember `json:"results,omitempty"`
}

PaginatedProductTypeMemberList defines model for PaginatedProductTypeMemberList.

type PaginatedQuestionnaireAnswerList added in v0.2.0

type PaginatedQuestionnaireAnswerList struct {
	Count    *int                   `json:"count,omitempty"`
	Next     *string                `json:"next"`
	Previous *string                `json:"previous"`
	Results  *[]QuestionnaireAnswer `json:"results,omitempty"`
}

PaginatedQuestionnaireAnswerList defines model for PaginatedQuestionnaireAnswerList.

type PaginatedQuestionnaireAnsweredSurveyList added in v0.2.0

type PaginatedQuestionnaireAnsweredSurveyList struct {
	Count    *int                           `json:"count,omitempty"`
	Next     *string                        `json:"next"`
	Previous *string                        `json:"previous"`
	Results  *[]QuestionnaireAnsweredSurvey `json:"results,omitempty"`
}

PaginatedQuestionnaireAnsweredSurveyList defines model for PaginatedQuestionnaireAnsweredSurveyList.

type PaginatedQuestionnaireEngagementSurveyList added in v0.2.0

type PaginatedQuestionnaireEngagementSurveyList struct {
	Count    *int                             `json:"count,omitempty"`
	Next     *string                          `json:"next"`
	Previous *string                          `json:"previous"`
	Results  *[]QuestionnaireEngagementSurvey `json:"results,omitempty"`
}

PaginatedQuestionnaireEngagementSurveyList defines model for PaginatedQuestionnaireEngagementSurveyList.

type PaginatedQuestionnaireGeneralSurveyList added in v0.2.0

type PaginatedQuestionnaireGeneralSurveyList struct {
	Count    *int                          `json:"count,omitempty"`
	Next     *string                       `json:"next"`
	Previous *string                       `json:"previous"`
	Results  *[]QuestionnaireGeneralSurvey `json:"results,omitempty"`
}

PaginatedQuestionnaireGeneralSurveyList defines model for PaginatedQuestionnaireGeneralSurveyList.

type PaginatedQuestionnaireQuestionList added in v0.2.0

type PaginatedQuestionnaireQuestionList struct {
	Count    *int                     `json:"count,omitempty"`
	Next     *string                  `json:"next"`
	Previous *string                  `json:"previous"`
	Results  *[]QuestionnaireQuestion `json:"results,omitempty"`
}

PaginatedQuestionnaireQuestionList defines model for PaginatedQuestionnaireQuestionList.

type PaginatedRegulationList

type PaginatedRegulationList struct {
	Count    *int          `json:"count,omitempty"`
	Next     *string       `json:"next"`
	Previous *string       `json:"previous"`
	Results  *[]Regulation `json:"results,omitempty"`
}

PaginatedRegulationList defines model for PaginatedRegulationList.

type PaginatedRiskAcceptanceList

type PaginatedRiskAcceptanceList struct {
	Count    *int              `json:"count,omitempty"`
	Next     *string           `json:"next"`
	Previous *string           `json:"previous"`
	Results  *[]RiskAcceptance `json:"results,omitempty"`
}

PaginatedRiskAcceptanceList defines model for PaginatedRiskAcceptanceList.

type PaginatedRoleList

type PaginatedRoleList struct {
	Count    *int    `json:"count,omitempty"`
	Next     *string `json:"next"`
	Previous *string `json:"previous"`
	Results  *[]Role `json:"results,omitempty"`
}

PaginatedRoleList defines model for PaginatedRoleList.

type PaginatedSLAConfigurationList added in v0.2.0

type PaginatedSLAConfigurationList struct {
	Count    *int                `json:"count,omitempty"`
	Next     *string             `json:"next"`
	Previous *string             `json:"previous"`
	Results  *[]SLAConfiguration `json:"results,omitempty"`
}

PaginatedSLAConfigurationList defines model for PaginatedSLAConfigurationList.

type PaginatedSonarqubeIssueList

type PaginatedSonarqubeIssueList struct {
	Count    *int              `json:"count,omitempty"`
	Next     *string           `json:"next"`
	Previous *string           `json:"previous"`
	Results  *[]SonarqubeIssue `json:"results,omitempty"`
}

PaginatedSonarqubeIssueList defines model for PaginatedSonarqubeIssueList.

type PaginatedSonarqubeIssueTransitionList

type PaginatedSonarqubeIssueTransitionList struct {
	Count    *int                        `json:"count,omitempty"`
	Next     *string                     `json:"next"`
	Previous *string                     `json:"previous"`
	Results  *[]SonarqubeIssueTransition `json:"results,omitempty"`
}

PaginatedSonarqubeIssueTransitionList defines model for PaginatedSonarqubeIssueTransitionList.

type PaginatedStubFindingList

type PaginatedStubFindingList struct {
	Count    *int           `json:"count,omitempty"`
	Next     *string        `json:"next"`
	Previous *string        `json:"previous"`
	Results  *[]StubFinding `json:"results,omitempty"`
}

PaginatedStubFindingList defines model for PaginatedStubFindingList.

type PaginatedSystemSettingsList

type PaginatedSystemSettingsList struct {
	Count    *int              `json:"count,omitempty"`
	Next     *string           `json:"next"`
	Previous *string           `json:"previous"`
	Results  *[]SystemSettings `json:"results,omitempty"`
}

PaginatedSystemSettingsList defines model for PaginatedSystemSettingsList.

type PaginatedTestImportList

type PaginatedTestImportList struct {
	Count    *int    `json:"count,omitempty"`
	Next     *string `json:"next"`
	Prefetch *struct {
		FindingsAffected *map[string]Finding `json:"findings_affected,omitempty"`
		Test             *map[string]Test    `json:"test,omitempty"`
	} `json:"prefetch,omitempty"`
	Previous *string       `json:"previous"`
	Results  *[]TestImport `json:"results,omitempty"`
}

PaginatedTestImportList defines model for PaginatedTestImportList.

type PaginatedTestList

type PaginatedTestList struct {
	Count    *int    `json:"count,omitempty"`
	Next     *string `json:"next"`
	Previous *string `json:"previous"`
	Results  *[]Test `json:"results,omitempty"`
}

PaginatedTestList defines model for PaginatedTestList.

type PaginatedTestTypeList

type PaginatedTestTypeList struct {
	Count    *int        `json:"count,omitempty"`
	Next     *string     `json:"next"`
	Previous *string     `json:"previous"`
	Results  *[]TestType `json:"results,omitempty"`
}

PaginatedTestTypeList defines model for PaginatedTestTypeList.

type PaginatedToolConfigurationList

type PaginatedToolConfigurationList struct {
	Count    *int                 `json:"count,omitempty"`
	Next     *string              `json:"next"`
	Previous *string              `json:"previous"`
	Results  *[]ToolConfiguration `json:"results,omitempty"`
}

PaginatedToolConfigurationList defines model for PaginatedToolConfigurationList.

type PaginatedToolProductSettingsList

type PaginatedToolProductSettingsList struct {
	Count    *int                   `json:"count,omitempty"`
	Next     *string                `json:"next"`
	Previous *string                `json:"previous"`
	Results  *[]ToolProductSettings `json:"results,omitempty"`
}

PaginatedToolProductSettingsList defines model for PaginatedToolProductSettingsList.

type PaginatedToolTypeList

type PaginatedToolTypeList struct {
	Count    *int        `json:"count,omitempty"`
	Next     *string     `json:"next"`
	Previous *string     `json:"previous"`
	Results  *[]ToolType `json:"results,omitempty"`
}

PaginatedToolTypeList defines model for PaginatedToolTypeList.

type PaginatedUserContactInfoList

type PaginatedUserContactInfoList struct {
	Count    *int    `json:"count,omitempty"`
	Next     *string `json:"next"`
	Prefetch *struct {
		User *map[string]UserStub `json:"user,omitempty"`
	} `json:"prefetch,omitempty"`
	Previous *string            `json:"previous"`
	Results  *[]UserContactInfo `json:"results,omitempty"`
}

PaginatedUserContactInfoList defines model for PaginatedUserContactInfoList.

type PaginatedUserList

type PaginatedUserList struct {
	Count    *int    `json:"count,omitempty"`
	Next     *string `json:"next"`
	Previous *string `json:"previous"`
	Results  *[]User `json:"results,omitempty"`
}

PaginatedUserList defines model for PaginatedUserList.

type PatchedAppAnalysisRequest added in v0.2.0

type PatchedAppAnalysisRequest struct {
	Confidence   *int      `json:"confidence"`
	Icon         *string   `json:"icon"`
	Name         *string   `json:"name,omitempty"`
	Product      *int      `json:"product,omitempty"`
	Tags         *[]string `json:"tags,omitempty"`
	User         *int      `json:"user,omitempty"`
	Version      *string   `json:"version"`
	Website      *string   `json:"website"`
	WebsiteFound *string   `json:"website_found"`
}

PatchedAppAnalysisRequest defines model for PatchedAppAnalysisRequest.

type PatchedCredentialMappingRequest added in v0.2.0

type PatchedCredentialMappingRequest struct {
	CredId          *int    `json:"cred_id,omitempty"`
	Engagement      *int    `json:"engagement"`
	Finding         *int    `json:"finding"`
	IsAuthnProvider *bool   `json:"is_authn_provider,omitempty"`
	Product         *int    `json:"product"`
	Test            *int    `json:"test"`
	Url             *string `json:"url"`
}

PatchedCredentialMappingRequest defines model for PatchedCredentialMappingRequest.

type PatchedCredentialRequest added in v0.2.0

type PatchedCredentialRequest struct {
	// Authentication * `Form` - Form Authentication
	// * `SSO` - SSO Redirect
	Authentication *PatchedCredentialRequestAuthentication `json:"authentication,omitempty"`
	Description    *string                                 `json:"description"`
	Environment    *int                                    `json:"environment,omitempty"`

	// HttpAuthentication * `Basic` - Basic
	// * `NTLM` - NTLM
	HttpAuthentication *PatchedCredentialRequestHttpAuthentication `json:"http_authentication"`
	IsValid            *bool                                       `json:"is_valid,omitempty"`
	LoginRegex         *string                                     `json:"login_regex"`
	LogoutRegex        *string                                     `json:"logout_regex"`
	Name               *string                                     `json:"name,omitempty"`
	Role               *string                                     `json:"role,omitempty"`
	Url                *string                                     `json:"url,omitempty"`
	Username           *string                                     `json:"username,omitempty"`
}

PatchedCredentialRequest defines model for PatchedCredentialRequest.

type PatchedCredentialRequestAuthentication added in v0.2.0

type PatchedCredentialRequestAuthentication string

PatchedCredentialRequestAuthentication * `Form` - Form Authentication * `SSO` - SSO Redirect

Defines values for PatchedCredentialRequestAuthentication.

type PatchedCredentialRequestHttpAuthentication added in v0.2.0

type PatchedCredentialRequestHttpAuthentication string

PatchedCredentialRequestHttpAuthentication * `Basic` - Basic * `NTLM` - NTLM

const (
	PatchedCredentialRequestHttpAuthenticationBasic PatchedCredentialRequestHttpAuthentication = "Basic"
	PatchedCredentialRequestHttpAuthenticationEmpty PatchedCredentialRequestHttpAuthentication = ""
	PatchedCredentialRequestHttpAuthenticationNTLM  PatchedCredentialRequestHttpAuthentication = "NTLM"
	PatchedCredentialRequestHttpAuthenticationNil   PatchedCredentialRequestHttpAuthentication = "<nil>"
)

Defines values for PatchedCredentialRequestHttpAuthentication.

type PatchedDevelopmentEnvironmentRequest added in v0.2.0

type PatchedDevelopmentEnvironmentRequest struct {
	Name *string `json:"name,omitempty"`
}

PatchedDevelopmentEnvironmentRequest defines model for PatchedDevelopmentEnvironmentRequest.

type PatchedDojoGroupMemberRequest added in v0.2.0

type PatchedDojoGroupMemberRequest struct {
	Group *int `json:"group,omitempty"`

	// Role This role determines the permissions of the user to manage the group.
	Role *int `json:"role,omitempty"`
	User *int `json:"user,omitempty"`
}

PatchedDojoGroupMemberRequest defines model for PatchedDojoGroupMemberRequest.

type PatchedDojoGroupRequest added in v0.2.0

type PatchedDojoGroupRequest struct {
	ConfigurationPermissions *[]int  `json:"configuration_permissions,omitempty"`
	Description              *string `json:"description"`
	Name                     *string `json:"name,omitempty"`

	// SocialProvider Group imported from a social provider.
	//
	// * `AzureAD` - AzureAD
	SocialProvider *PatchedDojoGroupRequestSocialProvider `json:"social_provider"`
}

PatchedDojoGroupRequest defines model for PatchedDojoGroupRequest.

type PatchedDojoGroupRequestSocialProvider added in v0.2.0

type PatchedDojoGroupRequestSocialProvider string

PatchedDojoGroupRequestSocialProvider Group imported from a social provider.

* `AzureAD` - AzureAD

const (
	PatchedDojoGroupRequestSocialProviderAzureAD PatchedDojoGroupRequestSocialProvider = "AzureAD"
	PatchedDojoGroupRequestSocialProviderEmpty   PatchedDojoGroupRequestSocialProvider = ""
	PatchedDojoGroupRequestSocialProviderNil     PatchedDojoGroupRequestSocialProvider = "<nil>"
)

Defines values for PatchedDojoGroupRequestSocialProvider.

type PatchedEndpointRequest added in v0.2.0

type PatchedEndpointRequest struct {
	// Fragment The fragment identifier which follows the hash mark. The hash mark should be omitted. For example 'section-13', 'paragraph-2'.
	Fragment *string `json:"fragment"`

	// Host The host name or IP address. It must not include the port number. For example '127.0.0.1', 'localhost', 'yourdomain.com'.
	Host *string `json:"host"`

	// Path The location of the resource, it must not start with a '/'. For example endpoint/420/edit
	Path *string `json:"path"`

	// Port The network port associated with the endpoint.
	Port    *int `json:"port"`
	Product *int `json:"product"`

	// Protocol The communication protocol/scheme such as 'http', 'ftp', 'dns', etc.
	Protocol *string `json:"protocol"`

	// Query The query string, the question mark should be omitted.For example 'group=4&team=8'
	Query *string   `json:"query"`
	Tags  *[]string `json:"tags,omitempty"`

	// Userinfo User info as 'alice', 'bob', etc.
	Userinfo *string `json:"userinfo"`
}

PatchedEndpointRequest defines model for PatchedEndpointRequest.

type PatchedEndpointStatusRequest added in v0.2.0

type PatchedEndpointStatusRequest struct {
	Date          *openapi_types.Date `json:"date,omitempty"`
	Endpoint      *int                `json:"endpoint,omitempty"`
	FalsePositive *bool               `json:"false_positive,omitempty"`
	Finding       *int                `json:"finding,omitempty"`
	Mitigated     *bool               `json:"mitigated,omitempty"`
	MitigatedBy   *int                `json:"mitigated_by"`
	OutOfScope    *bool               `json:"out_of_scope,omitempty"`
	RiskAccepted  *bool               `json:"risk_accepted,omitempty"`
}

PatchedEndpointStatusRequest defines model for PatchedEndpointStatusRequest.

type PatchedEngagementPresetsRequest added in v0.2.0

type PatchedEngagementPresetsRequest struct {
	NetworkLocations *[]int `json:"network_locations,omitempty"`

	// Notes Description of what needs to be tested or setting up environment for testing
	Notes   *string `json:"notes"`
	Product *int    `json:"product,omitempty"`

	// Scope Scope of Engagement testing, IP's/Resources/URL's)
	Scope    *string `json:"scope,omitempty"`
	TestType *[]int  `json:"test_type,omitempty"`

	// Title Brief description of preset.
	Title *string `json:"title,omitempty"`
}

PatchedEngagementPresetsRequest defines model for PatchedEngagementPresetsRequest.

type PatchedEngagementRequest added in v0.2.0

type PatchedEngagementRequest struct {
	ApiTest *bool `json:"api_test,omitempty"`

	// BranchTag Tag or branch of the product the engagement tested.
	BranchTag *string `json:"branch_tag"`

	// BuildId Build ID of the product the engagement tested.
	BuildId *string `json:"build_id"`

	// BuildServer Build server responsible for CI/CD test
	BuildServer *int  `json:"build_server"`
	CheckList   *bool `json:"check_list,omitempty"`

	// CommitHash Commit hash from repo
	CommitHash *string `json:"commit_hash"`

	// DeduplicationOnEngagement If enabled deduplication will only mark a finding in this engagement as duplicate of another finding if both findings are in this engagement. If disabled, deduplication is on the product level.
	DeduplicationOnEngagement *bool   `json:"deduplication_on_engagement,omitempty"`
	Description               *string `json:"description"`

	// EngagementType * `Interactive` - Interactive
	// * `CI/CD` - CI/CD
	EngagementType *PatchedEngagementRequestEngagementType `json:"engagement_type"`
	FirstContacted *openapi_types.Date                     `json:"first_contacted"`
	Lead           *int                                    `json:"lead"`
	Name           *string                                 `json:"name"`

	// OrchestrationEngine Orchestration service responsible for CI/CD test
	OrchestrationEngine *int  `json:"orchestration_engine"`
	PenTest             *bool `json:"pen_test,omitempty"`

	// Preset Settings and notes for performing this engagement.
	Preset     *int    `json:"preset"`
	Product    *int    `json:"product,omitempty"`
	Reason     *string `json:"reason"`
	ReportType *int    `json:"report_type"`
	Requester  *int    `json:"requester"`

	// SourceCodeManagementServer Source code server for CI/CD test
	SourceCodeManagementServer *int `json:"source_code_management_server"`

	// SourceCodeManagementUri Resource link to source code
	SourceCodeManagementUri *string `json:"source_code_management_uri"`

	// Status * `Not Started` - Not Started
	// * `Blocked` - Blocked
	// * `Cancelled` - Cancelled
	// * `Completed` - Completed
	// * `In Progress` - In Progress
	// * `On Hold` - On Hold
	// * `Waiting for Resource` - Waiting for Resource
	Status       *PatchedEngagementRequestStatus `json:"status"`
	Tags         *[]string                       `json:"tags,omitempty"`
	TargetEnd    *openapi_types.Date             `json:"target_end,omitempty"`
	TargetStart  *openapi_types.Date             `json:"target_start,omitempty"`
	TestStrategy *string                         `json:"test_strategy"`
	ThreatModel  *bool                           `json:"threat_model,omitempty"`

	// Tracker Link to epic or ticket system with changes to version.
	Tracker *string `json:"tracker"`

	// Version Version of the product the engagement tested.
	Version *string `json:"version"`
}

PatchedEngagementRequest defines model for PatchedEngagementRequest.

type PatchedEngagementRequestEngagementType added in v0.2.0

type PatchedEngagementRequestEngagementType string

PatchedEngagementRequestEngagementType * `Interactive` - Interactive * `CI/CD` - CI/CD

const (
	PatchedEngagementRequestEngagementTypeCICD        PatchedEngagementRequestEngagementType = "CI/CD"
	PatchedEngagementRequestEngagementTypeInteractive PatchedEngagementRequestEngagementType = "Interactive"
	PatchedEngagementRequestEngagementTypeNil         PatchedEngagementRequestEngagementType = "<nil>"
)

Defines values for PatchedEngagementRequestEngagementType.

type PatchedEngagementRequestStatus added in v0.2.0

type PatchedEngagementRequestStatus string

PatchedEngagementRequestStatus * `Not Started` - Not Started * `Blocked` - Blocked * `Cancelled` - Cancelled * `Completed` - Completed * `In Progress` - In Progress * `On Hold` - On Hold * `Waiting for Resource` - Waiting for Resource

const (
	PatchedEngagementRequestStatusBlocked            PatchedEngagementRequestStatus = "Blocked"
	PatchedEngagementRequestStatusCancelled          PatchedEngagementRequestStatus = "Cancelled"
	PatchedEngagementRequestStatusCompleted          PatchedEngagementRequestStatus = "Completed"
	PatchedEngagementRequestStatusInProgress         PatchedEngagementRequestStatus = "In Progress"
	PatchedEngagementRequestStatusNil                PatchedEngagementRequestStatus = "<nil>"
	PatchedEngagementRequestStatusNotStarted         PatchedEngagementRequestStatus = "Not Started"
	PatchedEngagementRequestStatusOnHold             PatchedEngagementRequestStatus = "On Hold"
	PatchedEngagementRequestStatusWaitingForResource PatchedEngagementRequestStatus = "Waiting for Resource"
)

Defines values for PatchedEngagementRequestStatus.

type PatchedFindingNoteRequest added in v0.2.0

type PatchedFindingNoteRequest struct {
	NoteId *int `json:"note_id,omitempty"`
}

PatchedFindingNoteRequest defines model for PatchedFindingNoteRequest.

type PatchedFindingRequest added in v0.2.0

type PatchedFindingRequest struct {
	// Active Denotes if this flaw is active or not.
	Active *bool `json:"active,omitempty"`

	// ComponentName Name of the affected component (library name, part of a system, ...).
	ComponentName *string `json:"component_name"`

	// ComponentVersion Version of the affected component.
	ComponentVersion *string `json:"component_version"`

	// Cvssv3 Common Vulnerability Scoring System version 3 (CVSSv3) score associated with this flaw.
	Cvssv3 *string `json:"cvssv3"`

	// Cvssv3Score Numerical CVSSv3 score for the vulnerability. If the vector is given, the score is updated while saving the finding
	Cvssv3Score *float64 `json:"cvssv3_score"`

	// Cwe The CWE number associated with this flaw.
	Cwe *int `json:"cwe"`

	// Date The date the flaw was discovered.
	Date *openapi_types.Date `json:"date,omitempty"`

	// DefectReviewRequestedBy Documents who requested a defect review for this flaw.
	DefectReviewRequestedBy *int `json:"defect_review_requested_by"`

	// Description Longer more descriptive information about the flaw.
	Description *string `json:"description,omitempty"`

	// Duplicate Denotes if this flaw is a duplicate of other flaws reported.
	Duplicate *bool `json:"duplicate,omitempty"`

	// DynamicFinding Flaw has been detected from a Dynamic Application Security Testing tool (DAST).
	DynamicFinding *bool `json:"dynamic_finding,omitempty"`

	// EffortForFixing Effort for fixing / remediating the vulnerability (Low, Medium, High)
	EffortForFixing *string `json:"effort_for_fixing"`

	// FalseP Denotes if this flaw has been deemed a false positive by the tester.
	FalseP *bool `json:"false_p,omitempty"`

	// FilePath Identified file(s) containing the flaw.
	FilePath *string `json:"file_path"`

	// Impact Text describing the impact this flaw has on systems, products, enterprise, etc.
	Impact *string `json:"impact"`

	// IsMitigated Denotes if this flaw has been fixed.
	IsMitigated *bool `json:"is_mitigated,omitempty"`

	// Line Source line number of the attack vector.
	Line *int `json:"line"`

	// Mitigation Text describing how to best fix the flaw.
	Mitigation *string `json:"mitigation"`

	// NbOccurences Number of occurences in the source tool when several vulnerabilites were found and aggregated by the scanner.
	NbOccurences *int `json:"nb_occurences"`

	// NumericalSeverity The numerical representation of the severity (S0, S1, S2, S3, S4).
	NumericalSeverity *string `json:"numerical_severity,omitempty"`

	// OutOfScope Denotes if this flaw falls outside the scope of the test and/or engagement.
	OutOfScope *bool `json:"out_of_scope,omitempty"`

	// PlannedRemediationDate The date the flaw is expected to be remediated.
	PlannedRemediationDate *openapi_types.Date `json:"planned_remediation_date"`

	// PlannedRemediationVersion The target version when the vulnerability should be fixed / remediated
	PlannedRemediationVersion *string `json:"planned_remediation_version"`

	// PublishDate Date when this vulnerability was made publicly available.
	PublishDate *openapi_types.Date `json:"publish_date"`
	PushToJira  *bool               `json:"push_to_jira,omitempty"`

	// References The external documentation available for this flaw.
	References *string `json:"references"`

	// ReviewRequestedBy Documents who requested a review for this finding.
	ReviewRequestedBy *int `json:"review_requested_by"`

	// Reviewers Documents who reviewed the flaw.
	Reviewers *[]int `json:"reviewers,omitempty"`

	// RiskAccepted Denotes if this finding has been marked as an accepted risk.
	RiskAccepted *bool `json:"risk_accepted,omitempty"`

	// SastSinkObject Sink object (variable, function...) of the attack vector.
	SastSinkObject *string `json:"sast_sink_object"`

	// SastSourceFilePath Source file path of the attack vector.
	SastSourceFilePath *string `json:"sast_source_file_path"`

	// SastSourceLine Source line number of the attack vector.
	SastSourceLine *int `json:"sast_source_line"`

	// SastSourceObject Source object (variable, function...) of the attack vector.
	SastSourceObject *string `json:"sast_source_object"`

	// Service A service is a self-contained piece of functionality within a Product. This is an optional field which is used in deduplication of findings when set.
	Service *string `json:"service"`

	// Severity The severity level of this flaw (Critical, High, Medium, Low, Informational).
	Severity *string `json:"severity,omitempty"`

	// SeverityJustification Text describing why a certain severity was associated with this flaw.
	SeverityJustification *string `json:"severity_justification"`

	// SlaStartDate (readonly)The date used as start date for SLA calculation. Set by expiring risk acceptances. Empty by default, causing a fallback to 'date'.
	SlaStartDate *openapi_types.Date `json:"sla_start_date"`

	// SonarqubeIssue The SonarQube issue associated with this finding.
	SonarqubeIssue *int `json:"sonarqube_issue"`

	// StaticFinding Flaw has been detected from a Static Application Security Testing tool (SAST).
	StaticFinding *bool `json:"static_finding,omitempty"`

	// StepsToReproduce Text describing the steps that must be followed in order to reproduce the flaw / bug.
	StepsToReproduce *string   `json:"steps_to_reproduce"`
	Tags             *[]string `json:"tags,omitempty"`

	// Title A short description of the flaw.
	Title *string `json:"title,omitempty"`

	// UnderDefectReview Denotes if this finding is under defect review.
	UnderDefectReview *bool `json:"under_defect_review,omitempty"`

	// UnderReview Denotes is this flaw is currently being reviewed.
	UnderReview *bool `json:"under_review,omitempty"`

	// UniqueIdFromTool Vulnerability technical id from the source tool. Allows to track unique vulnerabilities.
	UniqueIdFromTool *string `json:"unique_id_from_tool"`

	// Verified Denotes if this flaw has been manually verified by the tester.
	Verified *bool `json:"verified,omitempty"`

	// VulnIdFromTool Non-unique technical id from the source tool associated with the vulnerability type.
	VulnIdFromTool   *string                   `json:"vuln_id_from_tool"`
	VulnerabilityIds *[]VulnerabilityIdRequest `json:"vulnerability_ids,omitempty"`
}

PatchedFindingRequest defines model for PatchedFindingRequest.

type PatchedFindingTemplateRequest added in v0.2.0

type PatchedFindingTemplateRequest struct {
	Cvssv3      *string   `json:"cvssv3"`
	Cwe         *int      `json:"cwe"`
	Description *string   `json:"description"`
	Impact      *string   `json:"impact"`
	Mitigation  *string   `json:"mitigation"`
	References  *string   `json:"references"`
	Severity    *string   `json:"severity"`
	Tags        *[]string `json:"tags,omitempty"`

	// TemplateMatch Enables this template for matching remediation advice. Match will be applied to all active, verified findings by CWE.
	TemplateMatch *bool `json:"template_match,omitempty"`

	// TemplateMatchTitle Matches by title text (contains search) and CWE.
	TemplateMatchTitle *bool                             `json:"template_match_title,omitempty"`
	Title              *string                           `json:"title,omitempty"`
	VulnerabilityIds   *[]VulnerabilityIdTemplateRequest `json:"vulnerability_ids,omitempty"`
}

PatchedFindingTemplateRequest defines model for PatchedFindingTemplateRequest.

type PatchedGlobalRoleRequest added in v0.2.0

type PatchedGlobalRoleRequest struct {
	Group *int `json:"group"`

	// Role The global role will be applied to all product types and products.
	Role *int `json:"role"`
	User *int `json:"user"`
}

PatchedGlobalRoleRequest defines model for PatchedGlobalRoleRequest.

type PatchedJIRAInstanceRequest added in v0.2.0

type PatchedJIRAInstanceRequest struct {
	// AcceptedMappingResolution JIRA resolution names (comma-separated values) that maps to an Accepted Finding
	AcceptedMappingResolution *string `json:"accepted_mapping_resolution"`

	// CloseStatusKey Transition ID to Close JIRA issues, visit https://<YOUR JIRA URL>/rest/api/latest/issue/<ANY VALID ISSUE KEY>/transitions?expand=transitions.fields to find the ID for your JIRA instance
	CloseStatusKey *int `json:"close_status_key,omitempty"`

	// ConfigurationName Enter a name to give to this configuration
	ConfigurationName *string `json:"configuration_name,omitempty"`

	// CriticalMappingSeverity Maps to the 'Priority' field in Jira. For example: Critical
	CriticalMappingSeverity *string `json:"critical_mapping_severity,omitempty"`

	// DefaultIssueType You can define extra issue types in settings.py
	//
	// * `Task` - Task
	// * `Story` - Story
	// * `Epic` - Epic
	// * `Spike` - Spike
	// * `Bug` - Bug
	// * `Security` - Security
	DefaultIssueType *PatchedJIRAInstanceRequestDefaultIssueType `json:"default_issue_type,omitempty"`

	// EpicNameId To obtain the 'Epic name id' visit https://<YOUR JIRA URL>/rest/api/2/field and search for Epic Name. Copy the number out of cf[number] and paste it here.
	EpicNameId *int `json:"epic_name_id,omitempty"`

	// FalsePositiveMappingResolution JIRA resolution names (comma-separated values) that maps to a False Positive Finding
	FalsePositiveMappingResolution *string `json:"false_positive_mapping_resolution"`

	// FindingJiraSync If enabled, this will sync changes to a Finding automatically to JIRA
	FindingJiraSync *bool `json:"finding_jira_sync,omitempty"`

	// FindingText Additional text that will be added to the finding in Jira. For example including how the finding was created or who to contact for more information.
	FindingText *string `json:"finding_text"`

	// GlobalJiraSlaNotification This setting can be overidden at the Product level
	GlobalJiraSlaNotification *bool `json:"global_jira_sla_notification,omitempty"`

	// HighMappingSeverity Maps to the 'Priority' field in Jira. For example: High
	HighMappingSeverity *string `json:"high_mapping_severity,omitempty"`

	// InfoMappingSeverity Maps to the 'Priority' field in Jira. For example: Info
	InfoMappingSeverity *string `json:"info_mapping_severity,omitempty"`

	// IssueTemplateDir Choose the folder containing the Django templates used to render the JIRA issue description. These are stored in dojo/templates/issue-trackers. Leave empty to use the default jira_full templates.
	IssueTemplateDir *string `json:"issue_template_dir"`

	// LowMappingSeverity Maps to the 'Priority' field in Jira. For example: Low
	LowMappingSeverity *string `json:"low_mapping_severity,omitempty"`

	// MediumMappingSeverity Maps to the 'Priority' field in Jira. For example: Medium
	MediumMappingSeverity *string `json:"medium_mapping_severity,omitempty"`

	// OpenStatusKey Transition ID to Re-Open JIRA issues, visit https://<YOUR JIRA URL>/rest/api/latest/issue/<ANY VALID ISSUE KEY>/transitions?expand=transitions.fields to find the ID for your JIRA instance
	OpenStatusKey *int    `json:"open_status_key,omitempty"`
	Password      *string `json:"password,omitempty"`

	// Url For more information how to configure Jira, read the DefectDojo documentation.
	Url      *string `json:"url,omitempty"`
	Username *string `json:"username,omitempty"`
}

PatchedJIRAInstanceRequest defines model for PatchedJIRAInstanceRequest.

type PatchedJIRAInstanceRequestDefaultIssueType added in v0.2.0

type PatchedJIRAInstanceRequestDefaultIssueType string

PatchedJIRAInstanceRequestDefaultIssueType You can define extra issue types in settings.py

* `Task` - Task * `Story` - Story * `Epic` - Epic * `Spike` - Spike * `Bug` - Bug * `Security` - Security

Defines values for PatchedJIRAInstanceRequestDefaultIssueType.

type PatchedJIRAIssueRequest added in v0.2.0

type PatchedJIRAIssueRequest struct {
	Engagement   *int `json:"engagement"`
	Finding      *int `json:"finding"`
	FindingGroup *int `json:"finding_group"`

	// JiraChange The date the linked Jira issue was last modified.
	JiraChange *time.Time `json:"jira_change"`

	// JiraCreation The date a Jira issue was created from this finding.
	JiraCreation *time.Time `json:"jira_creation"`
	JiraId       *string    `json:"jira_id,omitempty"`
	JiraKey      *string    `json:"jira_key,omitempty"`
	JiraProject  *int       `json:"jira_project"`
}

PatchedJIRAIssueRequest defines model for PatchedJIRAIssueRequest.

type PatchedJIRAProjectRequest added in v0.2.0

type PatchedJIRAProjectRequest struct {
	AddVulnerabilityIdToJiraLabel *bool   `json:"add_vulnerability_id_to_jira_label,omitempty"`
	Component                     *string `json:"component,omitempty"`

	// CustomFields JIRA custom field JSON mapping of Id to value, e.g. {"customfield_10122": [{"name": "8.0.1"}]}
	CustomFields *map[string]interface{} `json:"custom_fields"`

	// DefaultAssignee JIRA default assignee (name). If left blank then it defaults to whatever is configured in JIRA.
	DefaultAssignee             *string `json:"default_assignee"`
	EnableEngagementEpicMapping *bool   `json:"enable_engagement_epic_mapping,omitempty"`
	Engagement                  *int    `json:"engagement"`

	// IssueTemplateDir Choose the folder containing the Django templates used to render the JIRA issue description. These are stored in dojo/templates/issue-trackers. Leave empty to use the default jira_full templates.
	IssueTemplateDir *string `json:"issue_template_dir"`
	JiraInstance     *int    `json:"jira_instance"`

	// JiraLabels JIRA issue labels space seperated
	JiraLabels                 *string `json:"jira_labels"`
	Product                    *int    `json:"product"`
	ProductJiraSlaNotification *bool   `json:"product_jira_sla_notification,omitempty"`
	ProjectKey                 *string `json:"project_key,omitempty"`

	// PushAllIssues Automatically maintain parity with JIRA. Always create and update JIRA tickets for findings in this Product.
	PushAllIssues                        *bool `json:"push_all_issues,omitempty"`
	PushNotes                            *bool `json:"push_notes,omitempty"`
	RiskAcceptanceExpirationNotification *bool `json:"risk_acceptance_expiration_notification,omitempty"`
}

PatchedJIRAProjectRequest defines model for PatchedJIRAProjectRequest.

type PatchedLanguageRequest added in v0.2.0

type PatchedLanguageRequest struct {
	Blank    *int `json:"blank"`
	Code     *int `json:"code"`
	Comment  *int `json:"comment"`
	Files    *int `json:"files"`
	Language *int `json:"language,omitempty"`
	Product  *int `json:"product,omitempty"`
	User     *int `json:"user"`
}

PatchedLanguageRequest defines model for PatchedLanguageRequest.

type PatchedLanguageTypeRequest added in v0.2.0

type PatchedLanguageTypeRequest struct {
	Color    *string `json:"color"`
	Language *string `json:"language,omitempty"`
}

PatchedLanguageTypeRequest defines model for PatchedLanguageTypeRequest.

type PatchedMetaRequest added in v0.2.0

type PatchedMetaRequest struct {
	Endpoint *int    `json:"endpoint"`
	Finding  *int    `json:"finding"`
	Name     *string `json:"name,omitempty"`
	Product  *int    `json:"product"`
	Value    *string `json:"value,omitempty"`
}

PatchedMetaRequest defines model for PatchedMetaRequest.

type PatchedNetworkLocationsRequest added in v0.2.0

type PatchedNetworkLocationsRequest struct {
	// Location Location of network testing: Examples: VPN, Internet or Internal.
	Location *string `json:"location,omitempty"`
}

PatchedNetworkLocationsRequest defines model for PatchedNetworkLocationsRequest.

type PatchedNoteRequest added in v0.2.0

type PatchedNoteRequest struct {
	Edited  *bool   `json:"edited,omitempty"`
	Entry   *string `json:"entry,omitempty"`
	Private *bool   `json:"private,omitempty"`
}

PatchedNoteRequest defines model for PatchedNoteRequest.

type PatchedNoteTypeRequest added in v0.2.0

type PatchedNoteTypeRequest struct {
	Description *string `json:"description,omitempty"`
	IsActive    *bool   `json:"is_active,omitempty"`
	IsMandatory *bool   `json:"is_mandatory,omitempty"`
	IsSingle    *bool   `json:"is_single,omitempty"`
	Name        *string `json:"name,omitempty"`
}

PatchedNoteTypeRequest defines model for PatchedNoteTypeRequest.

type PatchedNotificationsRequest added in v0.2.0

type PatchedNotificationsRequest struct {
	AutoCloseEngagement      *[]PatchedNotificationsRequestAutoCloseEngagement      `json:"auto_close_engagement,omitempty"`
	CloseEngagement          *[]PatchedNotificationsRequestCloseEngagement          `json:"close_engagement,omitempty"`
	CodeReview               *[]PatchedNotificationsRequestCodeReview               `json:"code_review,omitempty"`
	EngagementAdded          *[]PatchedNotificationsRequestEngagementAdded          `json:"engagement_added,omitempty"`
	JiraUpdate               *[]PatchedNotificationsRequestJiraUpdate               `json:"jira_update,omitempty"`
	Other                    *[]PatchedNotificationsRequestOther                    `json:"other,omitempty"`
	Product                  *int                                                   `json:"product"`
	ProductAdded             *[]PatchedNotificationsRequestProductAdded             `json:"product_added,omitempty"`
	ProductTypeAdded         *[]PatchedNotificationsRequestProductTypeAdded         `json:"product_type_added,omitempty"`
	ReviewRequested          *[]PatchedNotificationsRequestReviewRequested          `json:"review_requested,omitempty"`
	RiskAcceptanceExpiration *[]PatchedNotificationsRequestRiskAcceptanceExpiration `json:"risk_acceptance_expiration,omitempty"`
	ScanAdded                *[]PatchedNotificationsRequestScanAdded                `json:"scan_added,omitempty"`
	SlaBreach                *[]PatchedNotificationsRequestSlaBreach                `json:"sla_breach,omitempty"`
	StaleEngagement          *[]PatchedNotificationsRequestStaleEngagement          `json:"stale_engagement,omitempty"`
	Template                 *bool                                                  `json:"template,omitempty"`
	TestAdded                *[]PatchedNotificationsRequestTestAdded                `json:"test_added,omitempty"`
	UpcomingEngagement       *[]PatchedNotificationsRequestUpcomingEngagement       `json:"upcoming_engagement,omitempty"`
	User                     *int                                                   `json:"user"`
	UserMentioned            *[]PatchedNotificationsRequestUserMentioned            `json:"user_mentioned,omitempty"`
}

PatchedNotificationsRequest defines model for PatchedNotificationsRequest.

type PatchedNotificationsRequestAutoCloseEngagement added in v0.2.0

type PatchedNotificationsRequestAutoCloseEngagement string

PatchedNotificationsRequestAutoCloseEngagement * `slack` - slack * `msteams` - msteams * `mail` - mail * `alert` - alert

const (
	PatchedNotificationsRequestAutoCloseEngagementAlert   PatchedNotificationsRequestAutoCloseEngagement = "alert"
	PatchedNotificationsRequestAutoCloseEngagementMail    PatchedNotificationsRequestAutoCloseEngagement = "mail"
	PatchedNotificationsRequestAutoCloseEngagementMsteams PatchedNotificationsRequestAutoCloseEngagement = "msteams"
	PatchedNotificationsRequestAutoCloseEngagementSlack   PatchedNotificationsRequestAutoCloseEngagement = "slack"
)

Defines values for PatchedNotificationsRequestAutoCloseEngagement.

type PatchedNotificationsRequestCloseEngagement added in v0.2.0

type PatchedNotificationsRequestCloseEngagement string

PatchedNotificationsRequestCloseEngagement * `slack` - slack * `msteams` - msteams * `mail` - mail * `alert` - alert

const (
	PatchedNotificationsRequestCloseEngagementAlert   PatchedNotificationsRequestCloseEngagement = "alert"
	PatchedNotificationsRequestCloseEngagementMail    PatchedNotificationsRequestCloseEngagement = "mail"
	PatchedNotificationsRequestCloseEngagementMsteams PatchedNotificationsRequestCloseEngagement = "msteams"
	PatchedNotificationsRequestCloseEngagementSlack   PatchedNotificationsRequestCloseEngagement = "slack"
)

Defines values for PatchedNotificationsRequestCloseEngagement.

type PatchedNotificationsRequestCodeReview added in v0.2.0

type PatchedNotificationsRequestCodeReview string

PatchedNotificationsRequestCodeReview * `slack` - slack * `msteams` - msteams * `mail` - mail * `alert` - alert

const (
	PatchedNotificationsRequestCodeReviewAlert   PatchedNotificationsRequestCodeReview = "alert"
	PatchedNotificationsRequestCodeReviewMail    PatchedNotificationsRequestCodeReview = "mail"
	PatchedNotificationsRequestCodeReviewMsteams PatchedNotificationsRequestCodeReview = "msteams"
	PatchedNotificationsRequestCodeReviewSlack   PatchedNotificationsRequestCodeReview = "slack"
)

Defines values for PatchedNotificationsRequestCodeReview.

type PatchedNotificationsRequestEngagementAdded added in v0.2.0

type PatchedNotificationsRequestEngagementAdded string

PatchedNotificationsRequestEngagementAdded * `slack` - slack * `msteams` - msteams * `mail` - mail * `alert` - alert

const (
	PatchedNotificationsRequestEngagementAddedAlert   PatchedNotificationsRequestEngagementAdded = "alert"
	PatchedNotificationsRequestEngagementAddedMail    PatchedNotificationsRequestEngagementAdded = "mail"
	PatchedNotificationsRequestEngagementAddedMsteams PatchedNotificationsRequestEngagementAdded = "msteams"
	PatchedNotificationsRequestEngagementAddedSlack   PatchedNotificationsRequestEngagementAdded = "slack"
)

Defines values for PatchedNotificationsRequestEngagementAdded.

type PatchedNotificationsRequestJiraUpdate added in v0.2.0

type PatchedNotificationsRequestJiraUpdate string

PatchedNotificationsRequestJiraUpdate * `slack` - slack * `msteams` - msteams * `mail` - mail * `alert` - alert

const (
	PatchedNotificationsRequestJiraUpdateAlert   PatchedNotificationsRequestJiraUpdate = "alert"
	PatchedNotificationsRequestJiraUpdateMail    PatchedNotificationsRequestJiraUpdate = "mail"
	PatchedNotificationsRequestJiraUpdateMsteams PatchedNotificationsRequestJiraUpdate = "msteams"
	PatchedNotificationsRequestJiraUpdateSlack   PatchedNotificationsRequestJiraUpdate = "slack"
)

Defines values for PatchedNotificationsRequestJiraUpdate.

type PatchedNotificationsRequestOther added in v0.2.0

type PatchedNotificationsRequestOther string

PatchedNotificationsRequestOther * `slack` - slack * `msteams` - msteams * `mail` - mail * `alert` - alert

const (
	PatchedNotificationsRequestOtherAlert   PatchedNotificationsRequestOther = "alert"
	PatchedNotificationsRequestOtherMail    PatchedNotificationsRequestOther = "mail"
	PatchedNotificationsRequestOtherMsteams PatchedNotificationsRequestOther = "msteams"
	PatchedNotificationsRequestOtherSlack   PatchedNotificationsRequestOther = "slack"
)

Defines values for PatchedNotificationsRequestOther.

type PatchedNotificationsRequestProductAdded added in v0.2.0

type PatchedNotificationsRequestProductAdded string

PatchedNotificationsRequestProductAdded * `slack` - slack * `msteams` - msteams * `mail` - mail * `alert` - alert

const (
	PatchedNotificationsRequestProductAddedAlert   PatchedNotificationsRequestProductAdded = "alert"
	PatchedNotificationsRequestProductAddedMail    PatchedNotificationsRequestProductAdded = "mail"
	PatchedNotificationsRequestProductAddedMsteams PatchedNotificationsRequestProductAdded = "msteams"
	PatchedNotificationsRequestProductAddedSlack   PatchedNotificationsRequestProductAdded = "slack"
)

Defines values for PatchedNotificationsRequestProductAdded.

type PatchedNotificationsRequestProductTypeAdded added in v0.2.0

type PatchedNotificationsRequestProductTypeAdded string

PatchedNotificationsRequestProductTypeAdded * `slack` - slack * `msteams` - msteams * `mail` - mail * `alert` - alert

const (
	PatchedNotificationsRequestProductTypeAddedAlert   PatchedNotificationsRequestProductTypeAdded = "alert"
	PatchedNotificationsRequestProductTypeAddedMail    PatchedNotificationsRequestProductTypeAdded = "mail"
	PatchedNotificationsRequestProductTypeAddedMsteams PatchedNotificationsRequestProductTypeAdded = "msteams"
	PatchedNotificationsRequestProductTypeAddedSlack   PatchedNotificationsRequestProductTypeAdded = "slack"
)

Defines values for PatchedNotificationsRequestProductTypeAdded.

type PatchedNotificationsRequestReviewRequested added in v0.2.0

type PatchedNotificationsRequestReviewRequested string

PatchedNotificationsRequestReviewRequested * `slack` - slack * `msteams` - msteams * `mail` - mail * `alert` - alert

const (
	PatchedNotificationsRequestReviewRequestedAlert   PatchedNotificationsRequestReviewRequested = "alert"
	PatchedNotificationsRequestReviewRequestedMail    PatchedNotificationsRequestReviewRequested = "mail"
	PatchedNotificationsRequestReviewRequestedMsteams PatchedNotificationsRequestReviewRequested = "msteams"
	PatchedNotificationsRequestReviewRequestedSlack   PatchedNotificationsRequestReviewRequested = "slack"
)

Defines values for PatchedNotificationsRequestReviewRequested.

type PatchedNotificationsRequestRiskAcceptanceExpiration added in v0.2.0

type PatchedNotificationsRequestRiskAcceptanceExpiration string

PatchedNotificationsRequestRiskAcceptanceExpiration * `slack` - slack * `msteams` - msteams * `mail` - mail * `alert` - alert

const (
	PatchedNotificationsRequestRiskAcceptanceExpirationAlert   PatchedNotificationsRequestRiskAcceptanceExpiration = "alert"
	PatchedNotificationsRequestRiskAcceptanceExpirationMail    PatchedNotificationsRequestRiskAcceptanceExpiration = "mail"
	PatchedNotificationsRequestRiskAcceptanceExpirationMsteams PatchedNotificationsRequestRiskAcceptanceExpiration = "msteams"
	PatchedNotificationsRequestRiskAcceptanceExpirationSlack   PatchedNotificationsRequestRiskAcceptanceExpiration = "slack"
)

Defines values for PatchedNotificationsRequestRiskAcceptanceExpiration.

type PatchedNotificationsRequestScanAdded added in v0.2.0

type PatchedNotificationsRequestScanAdded string

PatchedNotificationsRequestScanAdded * `slack` - slack * `msteams` - msteams * `mail` - mail * `alert` - alert

const (
	PatchedNotificationsRequestScanAddedAlert   PatchedNotificationsRequestScanAdded = "alert"
	PatchedNotificationsRequestScanAddedMail    PatchedNotificationsRequestScanAdded = "mail"
	PatchedNotificationsRequestScanAddedMsteams PatchedNotificationsRequestScanAdded = "msteams"
	PatchedNotificationsRequestScanAddedSlack   PatchedNotificationsRequestScanAdded = "slack"
)

Defines values for PatchedNotificationsRequestScanAdded.

type PatchedNotificationsRequestSlaBreach added in v0.2.0

type PatchedNotificationsRequestSlaBreach string

PatchedNotificationsRequestSlaBreach * `slack` - slack * `msteams` - msteams * `mail` - mail * `alert` - alert

const (
	PatchedNotificationsRequestSlaBreachAlert   PatchedNotificationsRequestSlaBreach = "alert"
	PatchedNotificationsRequestSlaBreachMail    PatchedNotificationsRequestSlaBreach = "mail"
	PatchedNotificationsRequestSlaBreachMsteams PatchedNotificationsRequestSlaBreach = "msteams"
	PatchedNotificationsRequestSlaBreachSlack   PatchedNotificationsRequestSlaBreach = "slack"
)

Defines values for PatchedNotificationsRequestSlaBreach.

type PatchedNotificationsRequestStaleEngagement added in v0.2.0

type PatchedNotificationsRequestStaleEngagement string

PatchedNotificationsRequestStaleEngagement * `slack` - slack * `msteams` - msteams * `mail` - mail * `alert` - alert

const (
	PatchedNotificationsRequestStaleEngagementAlert   PatchedNotificationsRequestStaleEngagement = "alert"
	PatchedNotificationsRequestStaleEngagementMail    PatchedNotificationsRequestStaleEngagement = "mail"
	PatchedNotificationsRequestStaleEngagementMsteams PatchedNotificationsRequestStaleEngagement = "msteams"
	PatchedNotificationsRequestStaleEngagementSlack   PatchedNotificationsRequestStaleEngagement = "slack"
)

Defines values for PatchedNotificationsRequestStaleEngagement.

type PatchedNotificationsRequestTestAdded added in v0.2.0

type PatchedNotificationsRequestTestAdded string

PatchedNotificationsRequestTestAdded * `slack` - slack * `msteams` - msteams * `mail` - mail * `alert` - alert

const (
	PatchedNotificationsRequestTestAddedAlert   PatchedNotificationsRequestTestAdded = "alert"
	PatchedNotificationsRequestTestAddedMail    PatchedNotificationsRequestTestAdded = "mail"
	PatchedNotificationsRequestTestAddedMsteams PatchedNotificationsRequestTestAdded = "msteams"
	PatchedNotificationsRequestTestAddedSlack   PatchedNotificationsRequestTestAdded = "slack"
)

Defines values for PatchedNotificationsRequestTestAdded.

type PatchedNotificationsRequestUpcomingEngagement added in v0.2.0

type PatchedNotificationsRequestUpcomingEngagement string

PatchedNotificationsRequestUpcomingEngagement * `slack` - slack * `msteams` - msteams * `mail` - mail * `alert` - alert

const (
	PatchedNotificationsRequestUpcomingEngagementAlert   PatchedNotificationsRequestUpcomingEngagement = "alert"
	PatchedNotificationsRequestUpcomingEngagementMail    PatchedNotificationsRequestUpcomingEngagement = "mail"
	PatchedNotificationsRequestUpcomingEngagementMsteams PatchedNotificationsRequestUpcomingEngagement = "msteams"
	PatchedNotificationsRequestUpcomingEngagementSlack   PatchedNotificationsRequestUpcomingEngagement = "slack"
)

Defines values for PatchedNotificationsRequestUpcomingEngagement.

type PatchedNotificationsRequestUserMentioned added in v0.2.0

type PatchedNotificationsRequestUserMentioned string

PatchedNotificationsRequestUserMentioned * `slack` - slack * `msteams` - msteams * `mail` - mail * `alert` - alert

const (
	PatchedNotificationsRequestUserMentionedAlert   PatchedNotificationsRequestUserMentioned = "alert"
	PatchedNotificationsRequestUserMentionedMail    PatchedNotificationsRequestUserMentioned = "mail"
	PatchedNotificationsRequestUserMentionedMsteams PatchedNotificationsRequestUserMentioned = "msteams"
	PatchedNotificationsRequestUserMentionedSlack   PatchedNotificationsRequestUserMentioned = "slack"
)

Defines values for PatchedNotificationsRequestUserMentioned.

type PatchedProductAPIScanConfigurationRequest added in v0.2.0

type PatchedProductAPIScanConfigurationRequest struct {
	Product           *int    `json:"product,omitempty"`
	ServiceKey1       *string `json:"service_key_1"`
	ServiceKey2       *string `json:"service_key_2"`
	ServiceKey3       *string `json:"service_key_3"`
	ToolConfiguration *int    `json:"tool_configuration,omitempty"`
}

PatchedProductAPIScanConfigurationRequest defines model for PatchedProductAPIScanConfigurationRequest.

type PatchedProductRequest added in v0.2.0

type PatchedProductRequest struct {
	// BusinessCriticality * `very high` - Very High
	// * `high` - High
	// * `medium` - Medium
	// * `low` - Low
	// * `very low` - Very Low
	// * `none` - None
	BusinessCriticality *PatchedProductRequestBusinessCriticality `json:"business_criticality"`
	Description         *string                                   `json:"description,omitempty"`

	// DisableSlaBreachNotifications Disable SLA breach notifications if configured in the global settings
	DisableSlaBreachNotifications *bool `json:"disable_sla_breach_notifications,omitempty"`

	// EnableFullRiskAcceptance Allows full risk acceptance using a risk acceptance form, expiration date, uploaded proof, etc.
	EnableFullRiskAcceptance *bool `json:"enable_full_risk_acceptance,omitempty"`

	// EnableProductTagInheritance Enables product tag inheritance. Any tags added on a product will automatically be added to all Engagements, Tests, and Findings
	EnableProductTagInheritance *bool `json:"enable_product_tag_inheritance,omitempty"`

	// EnableSimpleRiskAcceptance Allows simple risk acceptance by checking/unchecking a checkbox.
	EnableSimpleRiskAcceptance *bool `json:"enable_simple_risk_acceptance,omitempty"`

	// ExternalAudience Specify if the application is used by people outside the organization.
	ExternalAudience *bool `json:"external_audience,omitempty"`

	// InternetAccessible Specify if the application is accessible from the public internet.
	InternetAccessible *bool `json:"internet_accessible,omitempty"`

	// Lifecycle * `construction` - Construction
	// * `production` - Production
	// * `retirement` - Retirement
	Lifecycle *PatchedProductRequestLifecycle `json:"lifecycle"`
	Name      *string                         `json:"name,omitempty"`

	// Origin * `third party library` - Third Party Library
	// * `purchased` - Purchased
	// * `contractor` - Contractor Developed
	// * `internal` - Internally Developed
	// * `open source` - Open Source
	// * `outsourced` - Outsourced
	Origin *PatchedProductRequestOrigin `json:"origin"`

	// Platform * `web service` - API
	// * `desktop` - Desktop
	// * `iot` - Internet of Things
	// * `mobile` - Mobile
	// * `web` - Web
	Platform         *PatchedProductRequestPlatform `json:"platform"`
	ProdNumericGrade *int                           `json:"prod_numeric_grade"`
	ProdType         *int                           `json:"prod_type,omitempty"`
	ProductManager   *int                           `json:"product_manager"`
	Regulations      *[]int                         `json:"regulations,omitempty"`

	// Revenue Estimate the application's revenue.
	Revenue          *string   `json:"revenue"`
	SlaConfiguration *int      `json:"sla_configuration,omitempty"`
	Tags             *[]string `json:"tags,omitempty"`
	TeamManager      *int      `json:"team_manager"`
	TechnicalContact *int      `json:"technical_contact"`

	// UserRecords Estimate the number of user records within the application.
	UserRecords *int `json:"user_records"`
}

PatchedProductRequest defines model for PatchedProductRequest.

type PatchedProductRequestBusinessCriticality added in v0.2.0

type PatchedProductRequestBusinessCriticality string

PatchedProductRequestBusinessCriticality * `very high` - Very High * `high` - High * `medium` - Medium * `low` - Low * `very low` - Very Low * `none` - None

const (
	PatchedProductRequestBusinessCriticalityEmpty    PatchedProductRequestBusinessCriticality = ""
	PatchedProductRequestBusinessCriticalityHigh     PatchedProductRequestBusinessCriticality = "high"
	PatchedProductRequestBusinessCriticalityLow      PatchedProductRequestBusinessCriticality = "low"
	PatchedProductRequestBusinessCriticalityMedium   PatchedProductRequestBusinessCriticality = "medium"
	PatchedProductRequestBusinessCriticalityNil      PatchedProductRequestBusinessCriticality = "<nil>"
	PatchedProductRequestBusinessCriticalityNone     PatchedProductRequestBusinessCriticality = "none"
	PatchedProductRequestBusinessCriticalityVeryHigh PatchedProductRequestBusinessCriticality = "very high"
	PatchedProductRequestBusinessCriticalityVeryLow  PatchedProductRequestBusinessCriticality = "very low"
)

Defines values for PatchedProductRequestBusinessCriticality.

type PatchedProductRequestLifecycle added in v0.2.0

type PatchedProductRequestLifecycle string

PatchedProductRequestLifecycle * `construction` - Construction * `production` - Production * `retirement` - Retirement

const (
	PatchedProductRequestLifecycleConstruction PatchedProductRequestLifecycle = "construction"
	PatchedProductRequestLifecycleEmpty        PatchedProductRequestLifecycle = ""
	PatchedProductRequestLifecycleNil          PatchedProductRequestLifecycle = "<nil>"
	PatchedProductRequestLifecycleProduction   PatchedProductRequestLifecycle = "production"
	PatchedProductRequestLifecycleRetirement   PatchedProductRequestLifecycle = "retirement"
)

Defines values for PatchedProductRequestLifecycle.

type PatchedProductRequestOrigin added in v0.2.0

type PatchedProductRequestOrigin string

PatchedProductRequestOrigin * `third party library` - Third Party Library * `purchased` - Purchased * `contractor` - Contractor Developed * `internal` - Internally Developed * `open source` - Open Source * `outsourced` - Outsourced

const (
	PatchedProductRequestOriginContractor        PatchedProductRequestOrigin = "contractor"
	PatchedProductRequestOriginEmpty             PatchedProductRequestOrigin = ""
	PatchedProductRequestOriginInternal          PatchedProductRequestOrigin = "internal"
	PatchedProductRequestOriginNil               PatchedProductRequestOrigin = "<nil>"
	PatchedProductRequestOriginOpenSource        PatchedProductRequestOrigin = "open source"
	PatchedProductRequestOriginOutsourced        PatchedProductRequestOrigin = "outsourced"
	PatchedProductRequestOriginPurchased         PatchedProductRequestOrigin = "purchased"
	PatchedProductRequestOriginThirdPartyLibrary PatchedProductRequestOrigin = "third party library"
)

Defines values for PatchedProductRequestOrigin.

type PatchedProductRequestPlatform added in v0.2.0

type PatchedProductRequestPlatform string

PatchedProductRequestPlatform * `web service` - API * `desktop` - Desktop * `iot` - Internet of Things * `mobile` - Mobile * `web` - Web

const (
	PatchedProductRequestPlatformDesktop    PatchedProductRequestPlatform = "desktop"
	PatchedProductRequestPlatformEmpty      PatchedProductRequestPlatform = ""
	PatchedProductRequestPlatformIot        PatchedProductRequestPlatform = "iot"
	PatchedProductRequestPlatformMobile     PatchedProductRequestPlatform = "mobile"
	PatchedProductRequestPlatformNil        PatchedProductRequestPlatform = "<nil>"
	PatchedProductRequestPlatformWeb        PatchedProductRequestPlatform = "web"
	PatchedProductRequestPlatformWebService PatchedProductRequestPlatform = "web service"
)

Defines values for PatchedProductRequestPlatform.

type PatchedProductTypeRequest added in v0.2.0

type PatchedProductTypeRequest struct {
	CriticalProduct *bool   `json:"critical_product,omitempty"`
	Description     *string `json:"description"`
	KeyProduct      *bool   `json:"key_product,omitempty"`
	Name            *string `json:"name,omitempty"`
}

PatchedProductTypeRequest defines model for PatchedProductTypeRequest.

type PatchedRegulationRequest added in v0.2.0

type PatchedRegulationRequest struct {
	// Acronym A shortened representation of the name.
	Acronym *string `json:"acronym,omitempty"`

	// Category The subject of the regulation.
	//
	// * `privacy` - Privacy
	// * `finance` - Finance
	// * `education` - Education
	// * `medical` - Medical
	// * `corporate` - Corporate
	// * `other` - Other
	Category *PatchedRegulationRequestCategory `json:"category,omitempty"`

	// Description Information about the regulation's purpose.
	Description *string `json:"description,omitempty"`

	// Jurisdiction The territory over which the regulation applies.
	Jurisdiction *string `json:"jurisdiction,omitempty"`

	// Name The name of the regulation.
	Name *string `json:"name,omitempty"`

	// Reference An external URL for more information.
	Reference *string `json:"reference,omitempty"`
}

PatchedRegulationRequest defines model for PatchedRegulationRequest.

type PatchedRegulationRequestCategory added in v0.2.0

type PatchedRegulationRequestCategory string

PatchedRegulationRequestCategory The subject of the regulation.

* `privacy` - Privacy * `finance` - Finance * `education` - Education * `medical` - Medical * `corporate` - Corporate * `other` - Other

const (
	PatchedRegulationRequestCategoryCorporate PatchedRegulationRequestCategory = "corporate"
	PatchedRegulationRequestCategoryEducation PatchedRegulationRequestCategory = "education"
	PatchedRegulationRequestCategoryFinance   PatchedRegulationRequestCategory = "finance"
	PatchedRegulationRequestCategoryMedical   PatchedRegulationRequestCategory = "medical"
	PatchedRegulationRequestCategoryOther     PatchedRegulationRequestCategory = "other"
	PatchedRegulationRequestCategoryPrivacy   PatchedRegulationRequestCategory = "privacy"
)

Defines values for PatchedRegulationRequestCategory.

type PatchedSLAConfigurationRequest added in v0.2.0

type PatchedSLAConfigurationRequest struct {
	// Critical number of days to remediate a critical finding.
	Critical    *int    `json:"critical,omitempty"`
	Description *string `json:"description"`

	// High number of days to remediate a high finding.
	High *int `json:"high,omitempty"`

	// Low number of days to remediate a low finding.
	Low *int `json:"low,omitempty"`

	// Medium number of days to remediate a medium finding.
	Medium *int `json:"medium,omitempty"`

	// Name A unique name for the set of SLAs.
	Name *string `json:"name,omitempty"`
}

PatchedSLAConfigurationRequest defines model for PatchedSLAConfigurationRequest.

type PatchedSonarqubeIssueRequest added in v0.2.0

type PatchedSonarqubeIssueRequest struct {
	// Key SonarQube issue key
	Key *string `json:"key,omitempty"`

	// Status SonarQube issue status
	Status *string `json:"status,omitempty"`

	// Type SonarQube issue type
	Type *string `json:"type,omitempty"`
}

PatchedSonarqubeIssueRequest defines model for PatchedSonarqubeIssueRequest.

type PatchedSonarqubeIssueTransitionRequest added in v0.2.0

type PatchedSonarqubeIssueTransitionRequest struct {
	FindingStatus   *string `json:"finding_status,omitempty"`
	SonarqubeIssue  *int    `json:"sonarqube_issue,omitempty"`
	SonarqubeStatus *string `json:"sonarqube_status,omitempty"`
	Transitions     *string `json:"transitions,omitempty"`
}

PatchedSonarqubeIssueTransitionRequest defines model for PatchedSonarqubeIssueTransitionRequest.

type PatchedStubFindingRequest added in v0.2.0

type PatchedStubFindingRequest struct {
	Date        *openapi_types.Date `json:"date,omitempty"`
	Description *string             `json:"description"`
	Severity    *string             `json:"severity"`
	Title       *string             `json:"title,omitempty"`
}

PatchedStubFindingRequest defines model for PatchedStubFindingRequest.

type PatchedSystemSettingsRequest added in v0.2.0

type PatchedSystemSettingsRequest struct {
	AddVulnerabilityIdToJiraLabel *bool `json:"add_vulnerability_id_to_jira_label,omitempty"`

	// AllowAnonymousSurveyRepsonse Enable anyone with a link to the survey to answer a survey
	AllowAnonymousSurveyRepsonse *bool   `json:"allow_anonymous_survey_repsonse,omitempty"`
	Credentials                  *string `json:"credentials,omitempty"`

	// DefaultGroup New users will be assigned to this group.
	DefaultGroup *int `json:"default_group"`

	// DefaultGroupEmailPattern New users will only be assigned to the default group, when their email address matches this regex pattern. This is optional condition.
	DefaultGroupEmailPattern *string `json:"default_group_email_pattern,omitempty"`

	// DefaultGroupRole New users will be assigned to their default group with this role.
	DefaultGroupRole *int `json:"default_group_role"`

	// DeleteDuplicates Requires next setting: maximum number of duplicates to retain.
	DeleteDuplicates *bool `json:"delete_duplicates,omitempty"`

	// DisableJiraWebhookSecret Allows incoming requests without a secret (discouraged legacy behaviour)
	DisableJiraWebhookSecret *bool `json:"disable_jira_webhook_secret,omitempty"`

	// Disclaimer Include this custom disclaimer on all notifications and generated reports
	Disclaimer *string `json:"disclaimer,omitempty"`
	EmailFrom  *string `json:"email_from,omitempty"`

	// EnableAuditlog With this setting turned on, Dojo maintains an audit log of changes made to entities (Findings, Tests, Engagements, Procuts, ...)If you run big import you may want to disable this because the way django-auditlog currently works, there's a big performance hit. Especially during (re-)imports.
	EnableAuditlog *bool `json:"enable_auditlog,omitempty"`

	// EnableBenchmark Enables Benchmarks such as the OWASP ASVS (Application Security Verification Standard)
	EnableBenchmark *bool `json:"enable_benchmark,omitempty"`

	// EnableCalendar With this setting turned off, the Calendar will be disabled in the user interface.
	EnableCalendar *bool `json:"enable_calendar,omitempty"`

	// EnableChecklists With this setting turned off, checklists will be disabled in the user interface.
	EnableChecklists *bool `json:"enable_checklists,omitempty"`

	// EnableCredentials With this setting turned off, credentials will be disabled in the user interface.
	EnableCredentials *bool `json:"enable_credentials,omitempty"`

	// EnableDeduplication With this setting turned on, Dojo deduplicates findings by comparing endpoints, cwe fields, and titles. If two findings share a URL and have the same CWE or title, Dojo marks the less recent finding as a duplicate. When deduplication is enabled, a list of deduplicated findings is added to the engagement view.
	EnableDeduplication *bool `json:"enable_deduplication,omitempty"`

	// EnableEndpointMetadataImport With this setting turned off, endpoint metadata import will be disabled in the user interface.
	EnableEndpointMetadataImport *bool `json:"enable_endpoint_metadata_import,omitempty"`

	// EnableFindingGroups With this setting turned off, the Finding Groups will be disabled.
	EnableFindingGroups *bool `json:"enable_finding_groups,omitempty"`

	// EnableFindingSla Enables Finding SLA's for time to remediate.
	EnableFindingSla *bool `json:"enable_finding_sla,omitempty"`
	EnableGithub     *bool `json:"enable_github,omitempty"`
	EnableJira       *bool `json:"enable_jira,omitempty"`

	// EnableJiraWebHook Please note: It is strongly recommended to use a secret below and / or IP whitelist the JIRA server using a proxy such as Nginx.
	EnableJiraWebHook          *bool `json:"enable_jira_web_hook,omitempty"`
	EnableMailNotifications    *bool `json:"enable_mail_notifications,omitempty"`
	EnableMsteamsNotifications *bool `json:"enable_msteams_notifications,omitempty"`

	// EnableNotifySlaActive Enables Notify when time to remediate according to Finding SLA's is breached for active Findings.
	EnableNotifySlaActive *bool `json:"enable_notify_sla_active,omitempty"`

	// EnableNotifySlaActiveVerified Enables Notify when time to remediate according to Finding SLA's is breached for active, verified Findings.
	EnableNotifySlaActiveVerified *bool `json:"enable_notify_sla_active_verified,omitempty"`

	// EnableNotifySlaExponentialBackoff Enable an exponential backoff strategy for SLA breach notifications, e.g. 1, 2, 4, 8, etc. Otherwise it alerts every day
	EnableNotifySlaExponentialBackoff *bool `json:"enable_notify_sla_exponential_backoff,omitempty"`

	// EnableNotifySlaJiraOnly Enables Notify when time to remediate according to Finding SLA's is breached for Findings that are linked to JIRA issues. Notification is disabled for Findings not linked to JIRA issues
	EnableNotifySlaJiraOnly *bool `json:"enable_notify_sla_jira_only,omitempty"`

	// EnableProductGrade Displays a grade letter next to a product to show the overall health.
	EnableProductGrade *bool `json:"enable_product_grade,omitempty"`

	// EnableProductTagInheritance Enables product tag inheritance globally for all products. Any tags added on a product will automatically be added to all Engagements, Tests, and Findings
	EnableProductTagInheritance *bool `json:"enable_product_tag_inheritance,omitempty"`

	// EnableProductTrackingFiles With this setting turned off, the product tracking files will be disabled in the user interface.
	EnableProductTrackingFiles *bool `json:"enable_product_tracking_files,omitempty"`

	// EnableQuestionnaires With this setting turned off, questionnaires will be disabled in the user interface.
	EnableQuestionnaires     *bool `json:"enable_questionnaires,omitempty"`
	EnableSlackNotifications *bool `json:"enable_slack_notifications,omitempty"`

	// EnableTemplateMatch Enables global remediation advice and matching on CWE and Title. The text will be replaced for mitigation, impact and references on a finding. Useful for providing consistent impact and remediation advice regardless of the scanner.
	EnableTemplateMatch *bool `json:"enable_template_match,omitempty"`

	// EnableUserProfileEditable When turned on users can edit their profiles
	EnableUserProfileEditable *bool `json:"enable_user_profile_editable,omitempty"`

	// EngagementAutoClose Closes an engagement after 3 days (default) past due date including last update.
	EngagementAutoClose *bool `json:"engagement_auto_close,omitempty"`

	// EngagementAutoCloseDays Closes an engagement after the specified number of days past due date including last update.
	EngagementAutoCloseDays *int `json:"engagement_auto_close_days,omitempty"`

	// FalsePositiveHistory (EXPERIMENTAL) DefectDojo will automatically mark the finding as a false positive if an equal finding (according to its dedupe algorithm) has been previously marked as a false positive on the same product. ATTENTION: Although the deduplication algorithm is used to determine if a finding should be marked as a false positive, this feature will not work if deduplication is enabled since it doesn't make sense to use both.
	FalsePositiveHistory *bool `json:"false_positive_history,omitempty"`

	// JiraLabels JIRA issue labels space seperated
	JiraLabels *string `json:"jira_labels"`

	// JiraMinimumSeverity * `Critical` - Critical
	// * `High` - High
	// * `Medium` - Medium
	// * `Low` - Low
	// * `Info` - Info
	JiraMinimumSeverity *PatchedSystemSettingsRequestJiraMinimumSeverity `json:"jira_minimum_severity"`

	// JiraWebhookSecret Secret needed in URL for incoming JIRA Webhook
	JiraWebhookSecret *string `json:"jira_webhook_secret"`

	// LowercaseCharacterRequired Requires user passwords to contain at least one lowercase letter (a-z).
	LowercaseCharacterRequired *bool   `json:"lowercase_character_required,omitempty"`
	MailNotificationsTo        *string `json:"mail_notifications_to,omitempty"`

	// MaxDupes When enabled, if a single issue reaches the maximum number of duplicates, the oldest will be deleted. Duplicate will not be deleted when left empty. A value of 0 will remove all duplicates.
	MaxDupes *int `json:"max_dupes"`

	// MaximumPasswordLength Requires user to set passwords less than maximum length.
	MaximumPasswordLength *int `json:"maximum_password_length,omitempty"`

	// MinimumPasswordLength Requires user to set passwords greater than minimum length.
	MinimumPasswordLength *int `json:"minimum_password_length,omitempty"`

	// MsteamsUrl The full URL of the incoming webhook
	MsteamsUrl *string `json:"msteams_url,omitempty"`

	// NonCommonPasswordRequired Requires user passwords to not be part of list of common passwords.
	NonCommonPasswordRequired *bool `json:"non_common_password_required,omitempty"`

	// NumberCharacterRequired Requires user passwords to contain at least one digit (0-9).
	NumberCharacterRequired *bool   `json:"number_character_required,omitempty"`
	ProductGrade            *string `json:"product_grade,omitempty"`

	// ProductGradeA Percentage score for an 'A' >=
	ProductGradeA *int `json:"product_grade_a,omitempty"`

	// ProductGradeB Percentage score for a 'B' >=
	ProductGradeB *int `json:"product_grade_b,omitempty"`

	// ProductGradeC Percentage score for a 'C' >=
	ProductGradeC *int `json:"product_grade_c,omitempty"`

	// ProductGradeD Percentage score for a 'D' >=
	ProductGradeD *int `json:"product_grade_d,omitempty"`

	// ProductGradeF Percentage score for an 'F' <=
	ProductGradeF *int `json:"product_grade_f,omitempty"`

	// RetroactiveFalsePositiveHistory (EXPERIMENTAL) FP History will also retroactively mark/unmark all existing equal findings in the same product as a false positives. Only works if the False Positive History feature is also enabled.
	RetroactiveFalsePositiveHistory *bool `json:"retroactive_false_positive_history,omitempty"`

	// RiskAcceptanceFormDefaultDays Default expiry period for risk acceptance form.
	RiskAcceptanceFormDefaultDays *int `json:"risk_acceptance_form_default_days"`

	// RiskAcceptanceNotifyBeforeExpiration Notify X days before risk acceptance expires. Leave empty to disable.
	RiskAcceptanceNotifyBeforeExpiration *int `json:"risk_acceptance_notify_before_expiration"`

	// SlackChannel Optional. Needed if you want to send global notifications.
	SlackChannel *string `json:"slack_channel,omitempty"`

	// SlackToken Token required for interacting with Slack. Get one at https://api.slack.com/tokens
	SlackToken *string `json:"slack_token,omitempty"`

	// SlackUsername Optional. Will take your bot name otherwise.
	SlackUsername *string `json:"slack_username,omitempty"`

	// SpecialCharacterRequired Requires user passwords to contain at least one special character (()[]{}|\`~!@#$%^&*_-+=;:'",<>./?).
	SpecialCharacterRequired *bool   `json:"special_character_required,omitempty"`
	TeamName                 *string `json:"team_name,omitempty"`

	// TimeZone * `Africa/Abidjan` - Africa/Abidjan
	// * `Africa/Accra` - Africa/Accra
	// * `Africa/Addis_Ababa` - Africa/Addis_Ababa
	// * `Africa/Algiers` - Africa/Algiers
	// * `Africa/Asmara` - Africa/Asmara
	// * `Africa/Asmera` - Africa/Asmera
	// * `Africa/Bamako` - Africa/Bamako
	// * `Africa/Bangui` - Africa/Bangui
	// * `Africa/Banjul` - Africa/Banjul
	// * `Africa/Bissau` - Africa/Bissau
	// * `Africa/Blantyre` - Africa/Blantyre
	// * `Africa/Brazzaville` - Africa/Brazzaville
	// * `Africa/Bujumbura` - Africa/Bujumbura
	// * `Africa/Cairo` - Africa/Cairo
	// * `Africa/Casablanca` - Africa/Casablanca
	// * `Africa/Ceuta` - Africa/Ceuta
	// * `Africa/Conakry` - Africa/Conakry
	// * `Africa/Dakar` - Africa/Dakar
	// * `Africa/Dar_es_Salaam` - Africa/Dar_es_Salaam
	// * `Africa/Djibouti` - Africa/Djibouti
	// * `Africa/Douala` - Africa/Douala
	// * `Africa/El_Aaiun` - Africa/El_Aaiun
	// * `Africa/Freetown` - Africa/Freetown
	// * `Africa/Gaborone` - Africa/Gaborone
	// * `Africa/Harare` - Africa/Harare
	// * `Africa/Johannesburg` - Africa/Johannesburg
	// * `Africa/Juba` - Africa/Juba
	// * `Africa/Kampala` - Africa/Kampala
	// * `Africa/Khartoum` - Africa/Khartoum
	// * `Africa/Kigali` - Africa/Kigali
	// * `Africa/Kinshasa` - Africa/Kinshasa
	// * `Africa/Lagos` - Africa/Lagos
	// * `Africa/Libreville` - Africa/Libreville
	// * `Africa/Lome` - Africa/Lome
	// * `Africa/Luanda` - Africa/Luanda
	// * `Africa/Lubumbashi` - Africa/Lubumbashi
	// * `Africa/Lusaka` - Africa/Lusaka
	// * `Africa/Malabo` - Africa/Malabo
	// * `Africa/Maputo` - Africa/Maputo
	// * `Africa/Maseru` - Africa/Maseru
	// * `Africa/Mbabane` - Africa/Mbabane
	// * `Africa/Mogadishu` - Africa/Mogadishu
	// * `Africa/Monrovia` - Africa/Monrovia
	// * `Africa/Nairobi` - Africa/Nairobi
	// * `Africa/Ndjamena` - Africa/Ndjamena
	// * `Africa/Niamey` - Africa/Niamey
	// * `Africa/Nouakchott` - Africa/Nouakchott
	// * `Africa/Ouagadougou` - Africa/Ouagadougou
	// * `Africa/Porto-Novo` - Africa/Porto-Novo
	// * `Africa/Sao_Tome` - Africa/Sao_Tome
	// * `Africa/Timbuktu` - Africa/Timbuktu
	// * `Africa/Tripoli` - Africa/Tripoli
	// * `Africa/Tunis` - Africa/Tunis
	// * `Africa/Windhoek` - Africa/Windhoek
	// * `America/Adak` - America/Adak
	// * `America/Anchorage` - America/Anchorage
	// * `America/Anguilla` - America/Anguilla
	// * `America/Antigua` - America/Antigua
	// * `America/Araguaina` - America/Araguaina
	// * `America/Argentina/Buenos_Aires` - America/Argentina/Buenos_Aires
	// * `America/Argentina/Catamarca` - America/Argentina/Catamarca
	// * `America/Argentina/ComodRivadavia` - America/Argentina/ComodRivadavia
	// * `America/Argentina/Cordoba` - America/Argentina/Cordoba
	// * `America/Argentina/Jujuy` - America/Argentina/Jujuy
	// * `America/Argentina/La_Rioja` - America/Argentina/La_Rioja
	// * `America/Argentina/Mendoza` - America/Argentina/Mendoza
	// * `America/Argentina/Rio_Gallegos` - America/Argentina/Rio_Gallegos
	// * `America/Argentina/Salta` - America/Argentina/Salta
	// * `America/Argentina/San_Juan` - America/Argentina/San_Juan
	// * `America/Argentina/San_Luis` - America/Argentina/San_Luis
	// * `America/Argentina/Tucuman` - America/Argentina/Tucuman
	// * `America/Argentina/Ushuaia` - America/Argentina/Ushuaia
	// * `America/Aruba` - America/Aruba
	// * `America/Asuncion` - America/Asuncion
	// * `America/Atikokan` - America/Atikokan
	// * `America/Atka` - America/Atka
	// * `America/Bahia` - America/Bahia
	// * `America/Bahia_Banderas` - America/Bahia_Banderas
	// * `America/Barbados` - America/Barbados
	// * `America/Belem` - America/Belem
	// * `America/Belize` - America/Belize
	// * `America/Blanc-Sablon` - America/Blanc-Sablon
	// * `America/Boa_Vista` - America/Boa_Vista
	// * `America/Bogota` - America/Bogota
	// * `America/Boise` - America/Boise
	// * `America/Buenos_Aires` - America/Buenos_Aires
	// * `America/Cambridge_Bay` - America/Cambridge_Bay
	// * `America/Campo_Grande` - America/Campo_Grande
	// * `America/Cancun` - America/Cancun
	// * `America/Caracas` - America/Caracas
	// * `America/Catamarca` - America/Catamarca
	// * `America/Cayenne` - America/Cayenne
	// * `America/Cayman` - America/Cayman
	// * `America/Chicago` - America/Chicago
	// * `America/Chihuahua` - America/Chihuahua
	// * `America/Ciudad_Juarez` - America/Ciudad_Juarez
	// * `America/Coral_Harbour` - America/Coral_Harbour
	// * `America/Cordoba` - America/Cordoba
	// * `America/Costa_Rica` - America/Costa_Rica
	// * `America/Creston` - America/Creston
	// * `America/Cuiaba` - America/Cuiaba
	// * `America/Curacao` - America/Curacao
	// * `America/Danmarkshavn` - America/Danmarkshavn
	// * `America/Dawson` - America/Dawson
	// * `America/Dawson_Creek` - America/Dawson_Creek
	// * `America/Denver` - America/Denver
	// * `America/Detroit` - America/Detroit
	// * `America/Dominica` - America/Dominica
	// * `America/Edmonton` - America/Edmonton
	// * `America/Eirunepe` - America/Eirunepe
	// * `America/El_Salvador` - America/El_Salvador
	// * `America/Ensenada` - America/Ensenada
	// * `America/Fort_Nelson` - America/Fort_Nelson
	// * `America/Fort_Wayne` - America/Fort_Wayne
	// * `America/Fortaleza` - America/Fortaleza
	// * `America/Glace_Bay` - America/Glace_Bay
	// * `America/Godthab` - America/Godthab
	// * `America/Goose_Bay` - America/Goose_Bay
	// * `America/Grand_Turk` - America/Grand_Turk
	// * `America/Grenada` - America/Grenada
	// * `America/Guadeloupe` - America/Guadeloupe
	// * `America/Guatemala` - America/Guatemala
	// * `America/Guayaquil` - America/Guayaquil
	// * `America/Guyana` - America/Guyana
	// * `America/Halifax` - America/Halifax
	// * `America/Havana` - America/Havana
	// * `America/Hermosillo` - America/Hermosillo
	// * `America/Indiana/Indianapolis` - America/Indiana/Indianapolis
	// * `America/Indiana/Knox` - America/Indiana/Knox
	// * `America/Indiana/Marengo` - America/Indiana/Marengo
	// * `America/Indiana/Petersburg` - America/Indiana/Petersburg
	// * `America/Indiana/Tell_City` - America/Indiana/Tell_City
	// * `America/Indiana/Vevay` - America/Indiana/Vevay
	// * `America/Indiana/Vincennes` - America/Indiana/Vincennes
	// * `America/Indiana/Winamac` - America/Indiana/Winamac
	// * `America/Indianapolis` - America/Indianapolis
	// * `America/Inuvik` - America/Inuvik
	// * `America/Iqaluit` - America/Iqaluit
	// * `America/Jamaica` - America/Jamaica
	// * `America/Jujuy` - America/Jujuy
	// * `America/Juneau` - America/Juneau
	// * `America/Kentucky/Louisville` - America/Kentucky/Louisville
	// * `America/Kentucky/Monticello` - America/Kentucky/Monticello
	// * `America/Knox_IN` - America/Knox_IN
	// * `America/Kralendijk` - America/Kralendijk
	// * `America/La_Paz` - America/La_Paz
	// * `America/Lima` - America/Lima
	// * `America/Los_Angeles` - America/Los_Angeles
	// * `America/Louisville` - America/Louisville
	// * `America/Lower_Princes` - America/Lower_Princes
	// * `America/Maceio` - America/Maceio
	// * `America/Managua` - America/Managua
	// * `America/Manaus` - America/Manaus
	// * `America/Marigot` - America/Marigot
	// * `America/Martinique` - America/Martinique
	// * `America/Matamoros` - America/Matamoros
	// * `America/Mazatlan` - America/Mazatlan
	// * `America/Mendoza` - America/Mendoza
	// * `America/Menominee` - America/Menominee
	// * `America/Merida` - America/Merida
	// * `America/Metlakatla` - America/Metlakatla
	// * `America/Mexico_City` - America/Mexico_City
	// * `America/Miquelon` - America/Miquelon
	// * `America/Moncton` - America/Moncton
	// * `America/Monterrey` - America/Monterrey
	// * `America/Montevideo` - America/Montevideo
	// * `America/Montreal` - America/Montreal
	// * `America/Montserrat` - America/Montserrat
	// * `America/Nassau` - America/Nassau
	// * `America/New_York` - America/New_York
	// * `America/Nipigon` - America/Nipigon
	// * `America/Nome` - America/Nome
	// * `America/Noronha` - America/Noronha
	// * `America/North_Dakota/Beulah` - America/North_Dakota/Beulah
	// * `America/North_Dakota/Center` - America/North_Dakota/Center
	// * `America/North_Dakota/New_Salem` - America/North_Dakota/New_Salem
	// * `America/Nuuk` - America/Nuuk
	// * `America/Ojinaga` - America/Ojinaga
	// * `America/Panama` - America/Panama
	// * `America/Pangnirtung` - America/Pangnirtung
	// * `America/Paramaribo` - America/Paramaribo
	// * `America/Phoenix` - America/Phoenix
	// * `America/Port-au-Prince` - America/Port-au-Prince
	// * `America/Port_of_Spain` - America/Port_of_Spain
	// * `America/Porto_Acre` - America/Porto_Acre
	// * `America/Porto_Velho` - America/Porto_Velho
	// * `America/Puerto_Rico` - America/Puerto_Rico
	// * `America/Punta_Arenas` - America/Punta_Arenas
	// * `America/Rainy_River` - America/Rainy_River
	// * `America/Rankin_Inlet` - America/Rankin_Inlet
	// * `America/Recife` - America/Recife
	// * `America/Regina` - America/Regina
	// * `America/Resolute` - America/Resolute
	// * `America/Rio_Branco` - America/Rio_Branco
	// * `America/Rosario` - America/Rosario
	// * `America/Santa_Isabel` - America/Santa_Isabel
	// * `America/Santarem` - America/Santarem
	// * `America/Santiago` - America/Santiago
	// * `America/Santo_Domingo` - America/Santo_Domingo
	// * `America/Sao_Paulo` - America/Sao_Paulo
	// * `America/Scoresbysund` - America/Scoresbysund
	// * `America/Shiprock` - America/Shiprock
	// * `America/Sitka` - America/Sitka
	// * `America/St_Barthelemy` - America/St_Barthelemy
	// * `America/St_Johns` - America/St_Johns
	// * `America/St_Kitts` - America/St_Kitts
	// * `America/St_Lucia` - America/St_Lucia
	// * `America/St_Thomas` - America/St_Thomas
	// * `America/St_Vincent` - America/St_Vincent
	// * `America/Swift_Current` - America/Swift_Current
	// * `America/Tegucigalpa` - America/Tegucigalpa
	// * `America/Thule` - America/Thule
	// * `America/Thunder_Bay` - America/Thunder_Bay
	// * `America/Tijuana` - America/Tijuana
	// * `America/Toronto` - America/Toronto
	// * `America/Tortola` - America/Tortola
	// * `America/Vancouver` - America/Vancouver
	// * `America/Virgin` - America/Virgin
	// * `America/Whitehorse` - America/Whitehorse
	// * `America/Winnipeg` - America/Winnipeg
	// * `America/Yakutat` - America/Yakutat
	// * `America/Yellowknife` - America/Yellowknife
	// * `Antarctica/Casey` - Antarctica/Casey
	// * `Antarctica/Davis` - Antarctica/Davis
	// * `Antarctica/DumontDUrville` - Antarctica/DumontDUrville
	// * `Antarctica/Macquarie` - Antarctica/Macquarie
	// * `Antarctica/Mawson` - Antarctica/Mawson
	// * `Antarctica/McMurdo` - Antarctica/McMurdo
	// * `Antarctica/Palmer` - Antarctica/Palmer
	// * `Antarctica/Rothera` - Antarctica/Rothera
	// * `Antarctica/South_Pole` - Antarctica/South_Pole
	// * `Antarctica/Syowa` - Antarctica/Syowa
	// * `Antarctica/Troll` - Antarctica/Troll
	// * `Antarctica/Vostok` - Antarctica/Vostok
	// * `Arctic/Longyearbyen` - Arctic/Longyearbyen
	// * `Asia/Aden` - Asia/Aden
	// * `Asia/Almaty` - Asia/Almaty
	// * `Asia/Amman` - Asia/Amman
	// * `Asia/Anadyr` - Asia/Anadyr
	// * `Asia/Aqtau` - Asia/Aqtau
	// * `Asia/Aqtobe` - Asia/Aqtobe
	// * `Asia/Ashgabat` - Asia/Ashgabat
	// * `Asia/Ashkhabad` - Asia/Ashkhabad
	// * `Asia/Atyrau` - Asia/Atyrau
	// * `Asia/Baghdad` - Asia/Baghdad
	// * `Asia/Bahrain` - Asia/Bahrain
	// * `Asia/Baku` - Asia/Baku
	// * `Asia/Bangkok` - Asia/Bangkok
	// * `Asia/Barnaul` - Asia/Barnaul
	// * `Asia/Beirut` - Asia/Beirut
	// * `Asia/Bishkek` - Asia/Bishkek
	// * `Asia/Brunei` - Asia/Brunei
	// * `Asia/Calcutta` - Asia/Calcutta
	// * `Asia/Chita` - Asia/Chita
	// * `Asia/Choibalsan` - Asia/Choibalsan
	// * `Asia/Chongqing` - Asia/Chongqing
	// * `Asia/Chungking` - Asia/Chungking
	// * `Asia/Colombo` - Asia/Colombo
	// * `Asia/Dacca` - Asia/Dacca
	// * `Asia/Damascus` - Asia/Damascus
	// * `Asia/Dhaka` - Asia/Dhaka
	// * `Asia/Dili` - Asia/Dili
	// * `Asia/Dubai` - Asia/Dubai
	// * `Asia/Dushanbe` - Asia/Dushanbe
	// * `Asia/Famagusta` - Asia/Famagusta
	// * `Asia/Gaza` - Asia/Gaza
	// * `Asia/Harbin` - Asia/Harbin
	// * `Asia/Hebron` - Asia/Hebron
	// * `Asia/Ho_Chi_Minh` - Asia/Ho_Chi_Minh
	// * `Asia/Hong_Kong` - Asia/Hong_Kong
	// * `Asia/Hovd` - Asia/Hovd
	// * `Asia/Irkutsk` - Asia/Irkutsk
	// * `Asia/Istanbul` - Asia/Istanbul
	// * `Asia/Jakarta` - Asia/Jakarta
	// * `Asia/Jayapura` - Asia/Jayapura
	// * `Asia/Jerusalem` - Asia/Jerusalem
	// * `Asia/Kabul` - Asia/Kabul
	// * `Asia/Kamchatka` - Asia/Kamchatka
	// * `Asia/Karachi` - Asia/Karachi
	// * `Asia/Kashgar` - Asia/Kashgar
	// * `Asia/Kathmandu` - Asia/Kathmandu
	// * `Asia/Katmandu` - Asia/Katmandu
	// * `Asia/Khandyga` - Asia/Khandyga
	// * `Asia/Kolkata` - Asia/Kolkata
	// * `Asia/Krasnoyarsk` - Asia/Krasnoyarsk
	// * `Asia/Kuala_Lumpur` - Asia/Kuala_Lumpur
	// * `Asia/Kuching` - Asia/Kuching
	// * `Asia/Kuwait` - Asia/Kuwait
	// * `Asia/Macao` - Asia/Macao
	// * `Asia/Macau` - Asia/Macau
	// * `Asia/Magadan` - Asia/Magadan
	// * `Asia/Makassar` - Asia/Makassar
	// * `Asia/Manila` - Asia/Manila
	// * `Asia/Muscat` - Asia/Muscat
	// * `Asia/Nicosia` - Asia/Nicosia
	// * `Asia/Novokuznetsk` - Asia/Novokuznetsk
	// * `Asia/Novosibirsk` - Asia/Novosibirsk
	// * `Asia/Omsk` - Asia/Omsk
	// * `Asia/Oral` - Asia/Oral
	// * `Asia/Phnom_Penh` - Asia/Phnom_Penh
	// * `Asia/Pontianak` - Asia/Pontianak
	// * `Asia/Pyongyang` - Asia/Pyongyang
	// * `Asia/Qatar` - Asia/Qatar
	// * `Asia/Qostanay` - Asia/Qostanay
	// * `Asia/Qyzylorda` - Asia/Qyzylorda
	// * `Asia/Rangoon` - Asia/Rangoon
	// * `Asia/Riyadh` - Asia/Riyadh
	// * `Asia/Saigon` - Asia/Saigon
	// * `Asia/Sakhalin` - Asia/Sakhalin
	// * `Asia/Samarkand` - Asia/Samarkand
	// * `Asia/Seoul` - Asia/Seoul
	// * `Asia/Shanghai` - Asia/Shanghai
	// * `Asia/Singapore` - Asia/Singapore
	// * `Asia/Srednekolymsk` - Asia/Srednekolymsk
	// * `Asia/Taipei` - Asia/Taipei
	// * `Asia/Tashkent` - Asia/Tashkent
	// * `Asia/Tbilisi` - Asia/Tbilisi
	// * `Asia/Tehran` - Asia/Tehran
	// * `Asia/Tel_Aviv` - Asia/Tel_Aviv
	// * `Asia/Thimbu` - Asia/Thimbu
	// * `Asia/Thimphu` - Asia/Thimphu
	// * `Asia/Tokyo` - Asia/Tokyo
	// * `Asia/Tomsk` - Asia/Tomsk
	// * `Asia/Ujung_Pandang` - Asia/Ujung_Pandang
	// * `Asia/Ulaanbaatar` - Asia/Ulaanbaatar
	// * `Asia/Ulan_Bator` - Asia/Ulan_Bator
	// * `Asia/Urumqi` - Asia/Urumqi
	// * `Asia/Ust-Nera` - Asia/Ust-Nera
	// * `Asia/Vientiane` - Asia/Vientiane
	// * `Asia/Vladivostok` - Asia/Vladivostok
	// * `Asia/Yakutsk` - Asia/Yakutsk
	// * `Asia/Yangon` - Asia/Yangon
	// * `Asia/Yekaterinburg` - Asia/Yekaterinburg
	// * `Asia/Yerevan` - Asia/Yerevan
	// * `Atlantic/Azores` - Atlantic/Azores
	// * `Atlantic/Bermuda` - Atlantic/Bermuda
	// * `Atlantic/Canary` - Atlantic/Canary
	// * `Atlantic/Cape_Verde` - Atlantic/Cape_Verde
	// * `Atlantic/Faeroe` - Atlantic/Faeroe
	// * `Atlantic/Faroe` - Atlantic/Faroe
	// * `Atlantic/Jan_Mayen` - Atlantic/Jan_Mayen
	// * `Atlantic/Madeira` - Atlantic/Madeira
	// * `Atlantic/Reykjavik` - Atlantic/Reykjavik
	// * `Atlantic/South_Georgia` - Atlantic/South_Georgia
	// * `Atlantic/St_Helena` - Atlantic/St_Helena
	// * `Atlantic/Stanley` - Atlantic/Stanley
	// * `Australia/ACT` - Australia/ACT
	// * `Australia/Adelaide` - Australia/Adelaide
	// * `Australia/Brisbane` - Australia/Brisbane
	// * `Australia/Broken_Hill` - Australia/Broken_Hill
	// * `Australia/Canberra` - Australia/Canberra
	// * `Australia/Currie` - Australia/Currie
	// * `Australia/Darwin` - Australia/Darwin
	// * `Australia/Eucla` - Australia/Eucla
	// * `Australia/Hobart` - Australia/Hobart
	// * `Australia/LHI` - Australia/LHI
	// * `Australia/Lindeman` - Australia/Lindeman
	// * `Australia/Lord_Howe` - Australia/Lord_Howe
	// * `Australia/Melbourne` - Australia/Melbourne
	// * `Australia/NSW` - Australia/NSW
	// * `Australia/North` - Australia/North
	// * `Australia/Perth` - Australia/Perth
	// * `Australia/Queensland` - Australia/Queensland
	// * `Australia/South` - Australia/South
	// * `Australia/Sydney` - Australia/Sydney
	// * `Australia/Tasmania` - Australia/Tasmania
	// * `Australia/Victoria` - Australia/Victoria
	// * `Australia/West` - Australia/West
	// * `Australia/Yancowinna` - Australia/Yancowinna
	// * `Brazil/Acre` - Brazil/Acre
	// * `Brazil/DeNoronha` - Brazil/DeNoronha
	// * `Brazil/East` - Brazil/East
	// * `Brazil/West` - Brazil/West
	// * `CET` - CET
	// * `CST6CDT` - CST6CDT
	// * `Canada/Atlantic` - Canada/Atlantic
	// * `Canada/Central` - Canada/Central
	// * `Canada/Eastern` - Canada/Eastern
	// * `Canada/Mountain` - Canada/Mountain
	// * `Canada/Newfoundland` - Canada/Newfoundland
	// * `Canada/Pacific` - Canada/Pacific
	// * `Canada/Saskatchewan` - Canada/Saskatchewan
	// * `Canada/Yukon` - Canada/Yukon
	// * `Chile/Continental` - Chile/Continental
	// * `Chile/EasterIsland` - Chile/EasterIsland
	// * `Cuba` - Cuba
	// * `EET` - EET
	// * `EST` - EST
	// * `EST5EDT` - EST5EDT
	// * `Egypt` - Egypt
	// * `Eire` - Eire
	// * `Etc/GMT` - Etc/GMT
	// * `Etc/GMT+0` - Etc/GMT+0
	// * `Etc/GMT+1` - Etc/GMT+1
	// * `Etc/GMT+10` - Etc/GMT+10
	// * `Etc/GMT+11` - Etc/GMT+11
	// * `Etc/GMT+12` - Etc/GMT+12
	// * `Etc/GMT+2` - Etc/GMT+2
	// * `Etc/GMT+3` - Etc/GMT+3
	// * `Etc/GMT+4` - Etc/GMT+4
	// * `Etc/GMT+5` - Etc/GMT+5
	// * `Etc/GMT+6` - Etc/GMT+6
	// * `Etc/GMT+7` - Etc/GMT+7
	// * `Etc/GMT+8` - Etc/GMT+8
	// * `Etc/GMT+9` - Etc/GMT+9
	// * `Etc/GMT-0` - Etc/GMT-0
	// * `Etc/GMT-1` - Etc/GMT-1
	// * `Etc/GMT-10` - Etc/GMT-10
	// * `Etc/GMT-11` - Etc/GMT-11
	// * `Etc/GMT-12` - Etc/GMT-12
	// * `Etc/GMT-13` - Etc/GMT-13
	// * `Etc/GMT-14` - Etc/GMT-14
	// * `Etc/GMT-2` - Etc/GMT-2
	// * `Etc/GMT-3` - Etc/GMT-3
	// * `Etc/GMT-4` - Etc/GMT-4
	// * `Etc/GMT-5` - Etc/GMT-5
	// * `Etc/GMT-6` - Etc/GMT-6
	// * `Etc/GMT-7` - Etc/GMT-7
	// * `Etc/GMT-8` - Etc/GMT-8
	// * `Etc/GMT-9` - Etc/GMT-9
	// * `Etc/GMT0` - Etc/GMT0
	// * `Etc/Greenwich` - Etc/Greenwich
	// * `Etc/UCT` - Etc/UCT
	// * `Etc/UTC` - Etc/UTC
	// * `Etc/Universal` - Etc/Universal
	// * `Etc/Zulu` - Etc/Zulu
	// * `Europe/Amsterdam` - Europe/Amsterdam
	// * `Europe/Andorra` - Europe/Andorra
	// * `Europe/Astrakhan` - Europe/Astrakhan
	// * `Europe/Athens` - Europe/Athens
	// * `Europe/Belfast` - Europe/Belfast
	// * `Europe/Belgrade` - Europe/Belgrade
	// * `Europe/Berlin` - Europe/Berlin
	// * `Europe/Bratislava` - Europe/Bratislava
	// * `Europe/Brussels` - Europe/Brussels
	// * `Europe/Bucharest` - Europe/Bucharest
	// * `Europe/Budapest` - Europe/Budapest
	// * `Europe/Busingen` - Europe/Busingen
	// * `Europe/Chisinau` - Europe/Chisinau
	// * `Europe/Copenhagen` - Europe/Copenhagen
	// * `Europe/Dublin` - Europe/Dublin
	// * `Europe/Gibraltar` - Europe/Gibraltar
	// * `Europe/Guernsey` - Europe/Guernsey
	// * `Europe/Helsinki` - Europe/Helsinki
	// * `Europe/Isle_of_Man` - Europe/Isle_of_Man
	// * `Europe/Istanbul` - Europe/Istanbul
	// * `Europe/Jersey` - Europe/Jersey
	// * `Europe/Kaliningrad` - Europe/Kaliningrad
	// * `Europe/Kiev` - Europe/Kiev
	// * `Europe/Kirov` - Europe/Kirov
	// * `Europe/Kyiv` - Europe/Kyiv
	// * `Europe/Lisbon` - Europe/Lisbon
	// * `Europe/Ljubljana` - Europe/Ljubljana
	// * `Europe/London` - Europe/London
	// * `Europe/Luxembourg` - Europe/Luxembourg
	// * `Europe/Madrid` - Europe/Madrid
	// * `Europe/Malta` - Europe/Malta
	// * `Europe/Mariehamn` - Europe/Mariehamn
	// * `Europe/Minsk` - Europe/Minsk
	// * `Europe/Monaco` - Europe/Monaco
	// * `Europe/Moscow` - Europe/Moscow
	// * `Europe/Nicosia` - Europe/Nicosia
	// * `Europe/Oslo` - Europe/Oslo
	// * `Europe/Paris` - Europe/Paris
	// * `Europe/Podgorica` - Europe/Podgorica
	// * `Europe/Prague` - Europe/Prague
	// * `Europe/Riga` - Europe/Riga
	// * `Europe/Rome` - Europe/Rome
	// * `Europe/Samara` - Europe/Samara
	// * `Europe/San_Marino` - Europe/San_Marino
	// * `Europe/Sarajevo` - Europe/Sarajevo
	// * `Europe/Saratov` - Europe/Saratov
	// * `Europe/Simferopol` - Europe/Simferopol
	// * `Europe/Skopje` - Europe/Skopje
	// * `Europe/Sofia` - Europe/Sofia
	// * `Europe/Stockholm` - Europe/Stockholm
	// * `Europe/Tallinn` - Europe/Tallinn
	// * `Europe/Tirane` - Europe/Tirane
	// * `Europe/Tiraspol` - Europe/Tiraspol
	// * `Europe/Ulyanovsk` - Europe/Ulyanovsk
	// * `Europe/Uzhgorod` - Europe/Uzhgorod
	// * `Europe/Vaduz` - Europe/Vaduz
	// * `Europe/Vatican` - Europe/Vatican
	// * `Europe/Vienna` - Europe/Vienna
	// * `Europe/Vilnius` - Europe/Vilnius
	// * `Europe/Volgograd` - Europe/Volgograd
	// * `Europe/Warsaw` - Europe/Warsaw
	// * `Europe/Zagreb` - Europe/Zagreb
	// * `Europe/Zaporozhye` - Europe/Zaporozhye
	// * `Europe/Zurich` - Europe/Zurich
	// * `GB` - GB
	// * `GB-Eire` - GB-Eire
	// * `GMT` - GMT
	// * `GMT+0` - GMT+0
	// * `GMT-0` - GMT-0
	// * `GMT0` - GMT0
	// * `Greenwich` - Greenwich
	// * `HST` - HST
	// * `Hongkong` - Hongkong
	// * `Iceland` - Iceland
	// * `Indian/Antananarivo` - Indian/Antananarivo
	// * `Indian/Chagos` - Indian/Chagos
	// * `Indian/Christmas` - Indian/Christmas
	// * `Indian/Cocos` - Indian/Cocos
	// * `Indian/Comoro` - Indian/Comoro
	// * `Indian/Kerguelen` - Indian/Kerguelen
	// * `Indian/Mahe` - Indian/Mahe
	// * `Indian/Maldives` - Indian/Maldives
	// * `Indian/Mauritius` - Indian/Mauritius
	// * `Indian/Mayotte` - Indian/Mayotte
	// * `Indian/Reunion` - Indian/Reunion
	// * `Iran` - Iran
	// * `Israel` - Israel
	// * `Jamaica` - Jamaica
	// * `Japan` - Japan
	// * `Kwajalein` - Kwajalein
	// * `Libya` - Libya
	// * `MET` - MET
	// * `MST` - MST
	// * `MST7MDT` - MST7MDT
	// * `Mexico/BajaNorte` - Mexico/BajaNorte
	// * `Mexico/BajaSur` - Mexico/BajaSur
	// * `Mexico/General` - Mexico/General
	// * `NZ` - NZ
	// * `NZ-CHAT` - NZ-CHAT
	// * `Navajo` - Navajo
	// * `PRC` - PRC
	// * `PST8PDT` - PST8PDT
	// * `Pacific/Apia` - Pacific/Apia
	// * `Pacific/Auckland` - Pacific/Auckland
	// * `Pacific/Bougainville` - Pacific/Bougainville
	// * `Pacific/Chatham` - Pacific/Chatham
	// * `Pacific/Chuuk` - Pacific/Chuuk
	// * `Pacific/Easter` - Pacific/Easter
	// * `Pacific/Efate` - Pacific/Efate
	// * `Pacific/Enderbury` - Pacific/Enderbury
	// * `Pacific/Fakaofo` - Pacific/Fakaofo
	// * `Pacific/Fiji` - Pacific/Fiji
	// * `Pacific/Funafuti` - Pacific/Funafuti
	// * `Pacific/Galapagos` - Pacific/Galapagos
	// * `Pacific/Gambier` - Pacific/Gambier
	// * `Pacific/Guadalcanal` - Pacific/Guadalcanal
	// * `Pacific/Guam` - Pacific/Guam
	// * `Pacific/Honolulu` - Pacific/Honolulu
	// * `Pacific/Johnston` - Pacific/Johnston
	// * `Pacific/Kanton` - Pacific/Kanton
	// * `Pacific/Kiritimati` - Pacific/Kiritimati
	// * `Pacific/Kosrae` - Pacific/Kosrae
	// * `Pacific/Kwajalein` - Pacific/Kwajalein
	// * `Pacific/Majuro` - Pacific/Majuro
	// * `Pacific/Marquesas` - Pacific/Marquesas
	// * `Pacific/Midway` - Pacific/Midway
	// * `Pacific/Nauru` - Pacific/Nauru
	// * `Pacific/Niue` - Pacific/Niue
	// * `Pacific/Norfolk` - Pacific/Norfolk
	// * `Pacific/Noumea` - Pacific/Noumea
	// * `Pacific/Pago_Pago` - Pacific/Pago_Pago
	// * `Pacific/Palau` - Pacific/Palau
	// * `Pacific/Pitcairn` - Pacific/Pitcairn
	// * `Pacific/Pohnpei` - Pacific/Pohnpei
	// * `Pacific/Ponape` - Pacific/Ponape
	// * `Pacific/Port_Moresby` - Pacific/Port_Moresby
	// * `Pacific/Rarotonga` - Pacific/Rarotonga
	// * `Pacific/Saipan` - Pacific/Saipan
	// * `Pacific/Samoa` - Pacific/Samoa
	// * `Pacific/Tahiti` - Pacific/Tahiti
	// * `Pacific/Tarawa` - Pacific/Tarawa
	// * `Pacific/Tongatapu` - Pacific/Tongatapu
	// * `Pacific/Truk` - Pacific/Truk
	// * `Pacific/Wake` - Pacific/Wake
	// * `Pacific/Wallis` - Pacific/Wallis
	// * `Pacific/Yap` - Pacific/Yap
	// * `Poland` - Poland
	// * `Portugal` - Portugal
	// * `ROC` - ROC
	// * `ROK` - ROK
	// * `Singapore` - Singapore
	// * `Turkey` - Turkey
	// * `UCT` - UCT
	// * `US/Alaska` - US/Alaska
	// * `US/Aleutian` - US/Aleutian
	// * `US/Arizona` - US/Arizona
	// * `US/Central` - US/Central
	// * `US/East-Indiana` - US/East-Indiana
	// * `US/Eastern` - US/Eastern
	// * `US/Hawaii` - US/Hawaii
	// * `US/Indiana-Starke` - US/Indiana-Starke
	// * `US/Michigan` - US/Michigan
	// * `US/Mountain` - US/Mountain
	// * `US/Pacific` - US/Pacific
	// * `US/Samoa` - US/Samoa
	// * `UTC` - UTC
	// * `Universal` - Universal
	// * `W-SU` - W-SU
	// * `WET` - WET
	// * `Zulu` - Zulu
	TimeZone *PatchedSystemSettingsRequestTimeZone `json:"time_zone,omitempty"`

	// UppercaseCharacterRequired Requires user passwords to contain at least one uppercase letter (A-Z).
	UppercaseCharacterRequired *bool `json:"uppercase_character_required,omitempty"`

	// UrlPrefix URL prefix if DefectDojo is installed in it's own virtual subdirectory.
	UrlPrefix *string `json:"url_prefix,omitempty"`
}

PatchedSystemSettingsRequest defines model for PatchedSystemSettingsRequest.

type PatchedSystemSettingsRequestJiraMinimumSeverity added in v0.2.0

type PatchedSystemSettingsRequestJiraMinimumSeverity string

PatchedSystemSettingsRequestJiraMinimumSeverity * `Critical` - Critical * `High` - High * `Medium` - Medium * `Low` - Low * `Info` - Info

const (
	PatchedSystemSettingsRequestJiraMinimumSeverityCritical PatchedSystemSettingsRequestJiraMinimumSeverity = "Critical"
	PatchedSystemSettingsRequestJiraMinimumSeverityEmpty    PatchedSystemSettingsRequestJiraMinimumSeverity = ""
	PatchedSystemSettingsRequestJiraMinimumSeverityHigh     PatchedSystemSettingsRequestJiraMinimumSeverity = "High"
	PatchedSystemSettingsRequestJiraMinimumSeverityInfo     PatchedSystemSettingsRequestJiraMinimumSeverity = "Info"
	PatchedSystemSettingsRequestJiraMinimumSeverityLow      PatchedSystemSettingsRequestJiraMinimumSeverity = "Low"
	PatchedSystemSettingsRequestJiraMinimumSeverityMedium   PatchedSystemSettingsRequestJiraMinimumSeverity = "Medium"
	PatchedSystemSettingsRequestJiraMinimumSeverityNil      PatchedSystemSettingsRequestJiraMinimumSeverity = "<nil>"
)

Defines values for PatchedSystemSettingsRequestJiraMinimumSeverity.

type PatchedSystemSettingsRequestTimeZone added in v0.2.0

type PatchedSystemSettingsRequestTimeZone string

PatchedSystemSettingsRequestTimeZone * `Africa/Abidjan` - Africa/Abidjan * `Africa/Accra` - Africa/Accra * `Africa/Addis_Ababa` - Africa/Addis_Ababa * `Africa/Algiers` - Africa/Algiers * `Africa/Asmara` - Africa/Asmara * `Africa/Asmera` - Africa/Asmera * `Africa/Bamako` - Africa/Bamako * `Africa/Bangui` - Africa/Bangui * `Africa/Banjul` - Africa/Banjul * `Africa/Bissau` - Africa/Bissau * `Africa/Blantyre` - Africa/Blantyre * `Africa/Brazzaville` - Africa/Brazzaville * `Africa/Bujumbura` - Africa/Bujumbura * `Africa/Cairo` - Africa/Cairo * `Africa/Casablanca` - Africa/Casablanca * `Africa/Ceuta` - Africa/Ceuta * `Africa/Conakry` - Africa/Conakry * `Africa/Dakar` - Africa/Dakar * `Africa/Dar_es_Salaam` - Africa/Dar_es_Salaam * `Africa/Djibouti` - Africa/Djibouti * `Africa/Douala` - Africa/Douala * `Africa/El_Aaiun` - Africa/El_Aaiun * `Africa/Freetown` - Africa/Freetown * `Africa/Gaborone` - Africa/Gaborone * `Africa/Harare` - Africa/Harare * `Africa/Johannesburg` - Africa/Johannesburg * `Africa/Juba` - Africa/Juba * `Africa/Kampala` - Africa/Kampala * `Africa/Khartoum` - Africa/Khartoum * `Africa/Kigali` - Africa/Kigali * `Africa/Kinshasa` - Africa/Kinshasa * `Africa/Lagos` - Africa/Lagos * `Africa/Libreville` - Africa/Libreville * `Africa/Lome` - Africa/Lome * `Africa/Luanda` - Africa/Luanda * `Africa/Lubumbashi` - Africa/Lubumbashi * `Africa/Lusaka` - Africa/Lusaka * `Africa/Malabo` - Africa/Malabo * `Africa/Maputo` - Africa/Maputo * `Africa/Maseru` - Africa/Maseru * `Africa/Mbabane` - Africa/Mbabane * `Africa/Mogadishu` - Africa/Mogadishu * `Africa/Monrovia` - Africa/Monrovia * `Africa/Nairobi` - Africa/Nairobi * `Africa/Ndjamena` - Africa/Ndjamena * `Africa/Niamey` - Africa/Niamey * `Africa/Nouakchott` - Africa/Nouakchott * `Africa/Ouagadougou` - Africa/Ouagadougou * `Africa/Porto-Novo` - Africa/Porto-Novo * `Africa/Sao_Tome` - Africa/Sao_Tome * `Africa/Timbuktu` - Africa/Timbuktu * `Africa/Tripoli` - Africa/Tripoli * `Africa/Tunis` - Africa/Tunis * `Africa/Windhoek` - Africa/Windhoek * `America/Adak` - America/Adak * `America/Anchorage` - America/Anchorage * `America/Anguilla` - America/Anguilla * `America/Antigua` - America/Antigua * `America/Araguaina` - America/Araguaina * `America/Argentina/Buenos_Aires` - America/Argentina/Buenos_Aires * `America/Argentina/Catamarca` - America/Argentina/Catamarca * `America/Argentina/ComodRivadavia` - America/Argentina/ComodRivadavia * `America/Argentina/Cordoba` - America/Argentina/Cordoba * `America/Argentina/Jujuy` - America/Argentina/Jujuy * `America/Argentina/La_Rioja` - America/Argentina/La_Rioja * `America/Argentina/Mendoza` - America/Argentina/Mendoza * `America/Argentina/Rio_Gallegos` - America/Argentina/Rio_Gallegos * `America/Argentina/Salta` - America/Argentina/Salta * `America/Argentina/San_Juan` - America/Argentina/San_Juan * `America/Argentina/San_Luis` - America/Argentina/San_Luis * `America/Argentina/Tucuman` - America/Argentina/Tucuman * `America/Argentina/Ushuaia` - America/Argentina/Ushuaia * `America/Aruba` - America/Aruba * `America/Asuncion` - America/Asuncion * `America/Atikokan` - America/Atikokan * `America/Atka` - America/Atka * `America/Bahia` - America/Bahia * `America/Bahia_Banderas` - America/Bahia_Banderas * `America/Barbados` - America/Barbados * `America/Belem` - America/Belem * `America/Belize` - America/Belize * `America/Blanc-Sablon` - America/Blanc-Sablon * `America/Boa_Vista` - America/Boa_Vista * `America/Bogota` - America/Bogota * `America/Boise` - America/Boise * `America/Buenos_Aires` - America/Buenos_Aires * `America/Cambridge_Bay` - America/Cambridge_Bay * `America/Campo_Grande` - America/Campo_Grande * `America/Cancun` - America/Cancun * `America/Caracas` - America/Caracas * `America/Catamarca` - America/Catamarca * `America/Cayenne` - America/Cayenne * `America/Cayman` - America/Cayman * `America/Chicago` - America/Chicago * `America/Chihuahua` - America/Chihuahua * `America/Ciudad_Juarez` - America/Ciudad_Juarez * `America/Coral_Harbour` - America/Coral_Harbour * `America/Cordoba` - America/Cordoba * `America/Costa_Rica` - America/Costa_Rica * `America/Creston` - America/Creston * `America/Cuiaba` - America/Cuiaba * `America/Curacao` - America/Curacao * `America/Danmarkshavn` - America/Danmarkshavn * `America/Dawson` - America/Dawson * `America/Dawson_Creek` - America/Dawson_Creek * `America/Denver` - America/Denver * `America/Detroit` - America/Detroit * `America/Dominica` - America/Dominica * `America/Edmonton` - America/Edmonton * `America/Eirunepe` - America/Eirunepe * `America/El_Salvador` - America/El_Salvador * `America/Ensenada` - America/Ensenada * `America/Fort_Nelson` - America/Fort_Nelson * `America/Fort_Wayne` - America/Fort_Wayne * `America/Fortaleza` - America/Fortaleza * `America/Glace_Bay` - America/Glace_Bay * `America/Godthab` - America/Godthab * `America/Goose_Bay` - America/Goose_Bay * `America/Grand_Turk` - America/Grand_Turk * `America/Grenada` - America/Grenada * `America/Guadeloupe` - America/Guadeloupe * `America/Guatemala` - America/Guatemala * `America/Guayaquil` - America/Guayaquil * `America/Guyana` - America/Guyana * `America/Halifax` - America/Halifax * `America/Havana` - America/Havana * `America/Hermosillo` - America/Hermosillo * `America/Indiana/Indianapolis` - America/Indiana/Indianapolis * `America/Indiana/Knox` - America/Indiana/Knox * `America/Indiana/Marengo` - America/Indiana/Marengo * `America/Indiana/Petersburg` - America/Indiana/Petersburg * `America/Indiana/Tell_City` - America/Indiana/Tell_City * `America/Indiana/Vevay` - America/Indiana/Vevay * `America/Indiana/Vincennes` - America/Indiana/Vincennes * `America/Indiana/Winamac` - America/Indiana/Winamac * `America/Indianapolis` - America/Indianapolis * `America/Inuvik` - America/Inuvik * `America/Iqaluit` - America/Iqaluit * `America/Jamaica` - America/Jamaica * `America/Jujuy` - America/Jujuy * `America/Juneau` - America/Juneau * `America/Kentucky/Louisville` - America/Kentucky/Louisville * `America/Kentucky/Monticello` - America/Kentucky/Monticello * `America/Knox_IN` - America/Knox_IN * `America/Kralendijk` - America/Kralendijk * `America/La_Paz` - America/La_Paz * `America/Lima` - America/Lima * `America/Los_Angeles` - America/Los_Angeles * `America/Louisville` - America/Louisville * `America/Lower_Princes` - America/Lower_Princes * `America/Maceio` - America/Maceio * `America/Managua` - America/Managua * `America/Manaus` - America/Manaus * `America/Marigot` - America/Marigot * `America/Martinique` - America/Martinique * `America/Matamoros` - America/Matamoros * `America/Mazatlan` - America/Mazatlan * `America/Mendoza` - America/Mendoza * `America/Menominee` - America/Menominee * `America/Merida` - America/Merida * `America/Metlakatla` - America/Metlakatla * `America/Mexico_City` - America/Mexico_City * `America/Miquelon` - America/Miquelon * `America/Moncton` - America/Moncton * `America/Monterrey` - America/Monterrey * `America/Montevideo` - America/Montevideo * `America/Montreal` - America/Montreal * `America/Montserrat` - America/Montserrat * `America/Nassau` - America/Nassau * `America/New_York` - America/New_York * `America/Nipigon` - America/Nipigon * `America/Nome` - America/Nome * `America/Noronha` - America/Noronha * `America/North_Dakota/Beulah` - America/North_Dakota/Beulah * `America/North_Dakota/Center` - America/North_Dakota/Center * `America/North_Dakota/New_Salem` - America/North_Dakota/New_Salem * `America/Nuuk` - America/Nuuk * `America/Ojinaga` - America/Ojinaga * `America/Panama` - America/Panama * `America/Pangnirtung` - America/Pangnirtung * `America/Paramaribo` - America/Paramaribo * `America/Phoenix` - America/Phoenix * `America/Port-au-Prince` - America/Port-au-Prince * `America/Port_of_Spain` - America/Port_of_Spain * `America/Porto_Acre` - America/Porto_Acre * `America/Porto_Velho` - America/Porto_Velho * `America/Puerto_Rico` - America/Puerto_Rico * `America/Punta_Arenas` - America/Punta_Arenas * `America/Rainy_River` - America/Rainy_River * `America/Rankin_Inlet` - America/Rankin_Inlet * `America/Recife` - America/Recife * `America/Regina` - America/Regina * `America/Resolute` - America/Resolute * `America/Rio_Branco` - America/Rio_Branco * `America/Rosario` - America/Rosario * `America/Santa_Isabel` - America/Santa_Isabel * `America/Santarem` - America/Santarem * `America/Santiago` - America/Santiago * `America/Santo_Domingo` - America/Santo_Domingo * `America/Sao_Paulo` - America/Sao_Paulo * `America/Scoresbysund` - America/Scoresbysund * `America/Shiprock` - America/Shiprock * `America/Sitka` - America/Sitka * `America/St_Barthelemy` - America/St_Barthelemy * `America/St_Johns` - America/St_Johns * `America/St_Kitts` - America/St_Kitts * `America/St_Lucia` - America/St_Lucia * `America/St_Thomas` - America/St_Thomas * `America/St_Vincent` - America/St_Vincent * `America/Swift_Current` - America/Swift_Current * `America/Tegucigalpa` - America/Tegucigalpa * `America/Thule` - America/Thule * `America/Thunder_Bay` - America/Thunder_Bay * `America/Tijuana` - America/Tijuana * `America/Toronto` - America/Toronto * `America/Tortola` - America/Tortola * `America/Vancouver` - America/Vancouver * `America/Virgin` - America/Virgin * `America/Whitehorse` - America/Whitehorse * `America/Winnipeg` - America/Winnipeg * `America/Yakutat` - America/Yakutat * `America/Yellowknife` - America/Yellowknife * `Antarctica/Casey` - Antarctica/Casey * `Antarctica/Davis` - Antarctica/Davis * `Antarctica/DumontDUrville` - Antarctica/DumontDUrville * `Antarctica/Macquarie` - Antarctica/Macquarie * `Antarctica/Mawson` - Antarctica/Mawson * `Antarctica/McMurdo` - Antarctica/McMurdo * `Antarctica/Palmer` - Antarctica/Palmer * `Antarctica/Rothera` - Antarctica/Rothera * `Antarctica/South_Pole` - Antarctica/South_Pole * `Antarctica/Syowa` - Antarctica/Syowa * `Antarctica/Troll` - Antarctica/Troll * `Antarctica/Vostok` - Antarctica/Vostok * `Arctic/Longyearbyen` - Arctic/Longyearbyen * `Asia/Aden` - Asia/Aden * `Asia/Almaty` - Asia/Almaty * `Asia/Amman` - Asia/Amman * `Asia/Anadyr` - Asia/Anadyr * `Asia/Aqtau` - Asia/Aqtau * `Asia/Aqtobe` - Asia/Aqtobe * `Asia/Ashgabat` - Asia/Ashgabat * `Asia/Ashkhabad` - Asia/Ashkhabad * `Asia/Atyrau` - Asia/Atyrau * `Asia/Baghdad` - Asia/Baghdad * `Asia/Bahrain` - Asia/Bahrain * `Asia/Baku` - Asia/Baku * `Asia/Bangkok` - Asia/Bangkok * `Asia/Barnaul` - Asia/Barnaul * `Asia/Beirut` - Asia/Beirut * `Asia/Bishkek` - Asia/Bishkek * `Asia/Brunei` - Asia/Brunei * `Asia/Calcutta` - Asia/Calcutta * `Asia/Chita` - Asia/Chita * `Asia/Choibalsan` - Asia/Choibalsan * `Asia/Chongqing` - Asia/Chongqing * `Asia/Chungking` - Asia/Chungking * `Asia/Colombo` - Asia/Colombo * `Asia/Dacca` - Asia/Dacca * `Asia/Damascus` - Asia/Damascus * `Asia/Dhaka` - Asia/Dhaka * `Asia/Dili` - Asia/Dili * `Asia/Dubai` - Asia/Dubai * `Asia/Dushanbe` - Asia/Dushanbe * `Asia/Famagusta` - Asia/Famagusta * `Asia/Gaza` - Asia/Gaza * `Asia/Harbin` - Asia/Harbin * `Asia/Hebron` - Asia/Hebron * `Asia/Ho_Chi_Minh` - Asia/Ho_Chi_Minh * `Asia/Hong_Kong` - Asia/Hong_Kong * `Asia/Hovd` - Asia/Hovd * `Asia/Irkutsk` - Asia/Irkutsk * `Asia/Istanbul` - Asia/Istanbul * `Asia/Jakarta` - Asia/Jakarta * `Asia/Jayapura` - Asia/Jayapura * `Asia/Jerusalem` - Asia/Jerusalem * `Asia/Kabul` - Asia/Kabul * `Asia/Kamchatka` - Asia/Kamchatka * `Asia/Karachi` - Asia/Karachi * `Asia/Kashgar` - Asia/Kashgar * `Asia/Kathmandu` - Asia/Kathmandu * `Asia/Katmandu` - Asia/Katmandu * `Asia/Khandyga` - Asia/Khandyga * `Asia/Kolkata` - Asia/Kolkata * `Asia/Krasnoyarsk` - Asia/Krasnoyarsk * `Asia/Kuala_Lumpur` - Asia/Kuala_Lumpur * `Asia/Kuching` - Asia/Kuching * `Asia/Kuwait` - Asia/Kuwait * `Asia/Macao` - Asia/Macao * `Asia/Macau` - Asia/Macau * `Asia/Magadan` - Asia/Magadan * `Asia/Makassar` - Asia/Makassar * `Asia/Manila` - Asia/Manila * `Asia/Muscat` - Asia/Muscat * `Asia/Nicosia` - Asia/Nicosia * `Asia/Novokuznetsk` - Asia/Novokuznetsk * `Asia/Novosibirsk` - Asia/Novosibirsk * `Asia/Omsk` - Asia/Omsk * `Asia/Oral` - Asia/Oral * `Asia/Phnom_Penh` - Asia/Phnom_Penh * `Asia/Pontianak` - Asia/Pontianak * `Asia/Pyongyang` - Asia/Pyongyang * `Asia/Qatar` - Asia/Qatar * `Asia/Qostanay` - Asia/Qostanay * `Asia/Qyzylorda` - Asia/Qyzylorda * `Asia/Rangoon` - Asia/Rangoon * `Asia/Riyadh` - Asia/Riyadh * `Asia/Saigon` - Asia/Saigon * `Asia/Sakhalin` - Asia/Sakhalin * `Asia/Samarkand` - Asia/Samarkand * `Asia/Seoul` - Asia/Seoul * `Asia/Shanghai` - Asia/Shanghai * `Asia/Singapore` - Asia/Singapore * `Asia/Srednekolymsk` - Asia/Srednekolymsk * `Asia/Taipei` - Asia/Taipei * `Asia/Tashkent` - Asia/Tashkent * `Asia/Tbilisi` - Asia/Tbilisi * `Asia/Tehran` - Asia/Tehran * `Asia/Tel_Aviv` - Asia/Tel_Aviv * `Asia/Thimbu` - Asia/Thimbu * `Asia/Thimphu` - Asia/Thimphu * `Asia/Tokyo` - Asia/Tokyo * `Asia/Tomsk` - Asia/Tomsk * `Asia/Ujung_Pandang` - Asia/Ujung_Pandang * `Asia/Ulaanbaatar` - Asia/Ulaanbaatar * `Asia/Ulan_Bator` - Asia/Ulan_Bator * `Asia/Urumqi` - Asia/Urumqi * `Asia/Ust-Nera` - Asia/Ust-Nera * `Asia/Vientiane` - Asia/Vientiane * `Asia/Vladivostok` - Asia/Vladivostok * `Asia/Yakutsk` - Asia/Yakutsk * `Asia/Yangon` - Asia/Yangon * `Asia/Yekaterinburg` - Asia/Yekaterinburg * `Asia/Yerevan` - Asia/Yerevan * `Atlantic/Azores` - Atlantic/Azores * `Atlantic/Bermuda` - Atlantic/Bermuda * `Atlantic/Canary` - Atlantic/Canary * `Atlantic/Cape_Verde` - Atlantic/Cape_Verde * `Atlantic/Faeroe` - Atlantic/Faeroe * `Atlantic/Faroe` - Atlantic/Faroe * `Atlantic/Jan_Mayen` - Atlantic/Jan_Mayen * `Atlantic/Madeira` - Atlantic/Madeira * `Atlantic/Reykjavik` - Atlantic/Reykjavik * `Atlantic/South_Georgia` - Atlantic/South_Georgia * `Atlantic/St_Helena` - Atlantic/St_Helena * `Atlantic/Stanley` - Atlantic/Stanley * `Australia/ACT` - Australia/ACT * `Australia/Adelaide` - Australia/Adelaide * `Australia/Brisbane` - Australia/Brisbane * `Australia/Broken_Hill` - Australia/Broken_Hill * `Australia/Canberra` - Australia/Canberra * `Australia/Currie` - Australia/Currie * `Australia/Darwin` - Australia/Darwin * `Australia/Eucla` - Australia/Eucla * `Australia/Hobart` - Australia/Hobart * `Australia/LHI` - Australia/LHI * `Australia/Lindeman` - Australia/Lindeman * `Australia/Lord_Howe` - Australia/Lord_Howe * `Australia/Melbourne` - Australia/Melbourne * `Australia/NSW` - Australia/NSW * `Australia/North` - Australia/North * `Australia/Perth` - Australia/Perth * `Australia/Queensland` - Australia/Queensland * `Australia/South` - Australia/South * `Australia/Sydney` - Australia/Sydney * `Australia/Tasmania` - Australia/Tasmania * `Australia/Victoria` - Australia/Victoria * `Australia/West` - Australia/West * `Australia/Yancowinna` - Australia/Yancowinna * `Brazil/Acre` - Brazil/Acre * `Brazil/DeNoronha` - Brazil/DeNoronha * `Brazil/East` - Brazil/East * `Brazil/West` - Brazil/West * `CET` - CET * `CST6CDT` - CST6CDT * `Canada/Atlantic` - Canada/Atlantic * `Canada/Central` - Canada/Central * `Canada/Eastern` - Canada/Eastern * `Canada/Mountain` - Canada/Mountain * `Canada/Newfoundland` - Canada/Newfoundland * `Canada/Pacific` - Canada/Pacific * `Canada/Saskatchewan` - Canada/Saskatchewan * `Canada/Yukon` - Canada/Yukon * `Chile/Continental` - Chile/Continental * `Chile/EasterIsland` - Chile/EasterIsland * `Cuba` - Cuba * `EET` - EET * `EST` - EST * `EST5EDT` - EST5EDT * `Egypt` - Egypt * `Eire` - Eire * `Etc/GMT` - Etc/GMT * `Etc/GMT+0` - Etc/GMT+0 * `Etc/GMT+1` - Etc/GMT+1 * `Etc/GMT+10` - Etc/GMT+10 * `Etc/GMT+11` - Etc/GMT+11 * `Etc/GMT+12` - Etc/GMT+12 * `Etc/GMT+2` - Etc/GMT+2 * `Etc/GMT+3` - Etc/GMT+3 * `Etc/GMT+4` - Etc/GMT+4 * `Etc/GMT+5` - Etc/GMT+5 * `Etc/GMT+6` - Etc/GMT+6 * `Etc/GMT+7` - Etc/GMT+7 * `Etc/GMT+8` - Etc/GMT+8 * `Etc/GMT+9` - Etc/GMT+9 * `Etc/GMT-0` - Etc/GMT-0 * `Etc/GMT-1` - Etc/GMT-1 * `Etc/GMT-10` - Etc/GMT-10 * `Etc/GMT-11` - Etc/GMT-11 * `Etc/GMT-12` - Etc/GMT-12 * `Etc/GMT-13` - Etc/GMT-13 * `Etc/GMT-14` - Etc/GMT-14 * `Etc/GMT-2` - Etc/GMT-2 * `Etc/GMT-3` - Etc/GMT-3 * `Etc/GMT-4` - Etc/GMT-4 * `Etc/GMT-5` - Etc/GMT-5 * `Etc/GMT-6` - Etc/GMT-6 * `Etc/GMT-7` - Etc/GMT-7 * `Etc/GMT-8` - Etc/GMT-8 * `Etc/GMT-9` - Etc/GMT-9 * `Etc/GMT0` - Etc/GMT0 * `Etc/Greenwich` - Etc/Greenwich * `Etc/UCT` - Etc/UCT * `Etc/UTC` - Etc/UTC * `Etc/Universal` - Etc/Universal * `Etc/Zulu` - Etc/Zulu * `Europe/Amsterdam` - Europe/Amsterdam * `Europe/Andorra` - Europe/Andorra * `Europe/Astrakhan` - Europe/Astrakhan * `Europe/Athens` - Europe/Athens * `Europe/Belfast` - Europe/Belfast * `Europe/Belgrade` - Europe/Belgrade * `Europe/Berlin` - Europe/Berlin * `Europe/Bratislava` - Europe/Bratislava * `Europe/Brussels` - Europe/Brussels * `Europe/Bucharest` - Europe/Bucharest * `Europe/Budapest` - Europe/Budapest * `Europe/Busingen` - Europe/Busingen * `Europe/Chisinau` - Europe/Chisinau * `Europe/Copenhagen` - Europe/Copenhagen * `Europe/Dublin` - Europe/Dublin * `Europe/Gibraltar` - Europe/Gibraltar * `Europe/Guernsey` - Europe/Guernsey * `Europe/Helsinki` - Europe/Helsinki * `Europe/Isle_of_Man` - Europe/Isle_of_Man * `Europe/Istanbul` - Europe/Istanbul * `Europe/Jersey` - Europe/Jersey * `Europe/Kaliningrad` - Europe/Kaliningrad * `Europe/Kiev` - Europe/Kiev * `Europe/Kirov` - Europe/Kirov * `Europe/Kyiv` - Europe/Kyiv * `Europe/Lisbon` - Europe/Lisbon * `Europe/Ljubljana` - Europe/Ljubljana * `Europe/London` - Europe/London * `Europe/Luxembourg` - Europe/Luxembourg * `Europe/Madrid` - Europe/Madrid * `Europe/Malta` - Europe/Malta * `Europe/Mariehamn` - Europe/Mariehamn * `Europe/Minsk` - Europe/Minsk * `Europe/Monaco` - Europe/Monaco * `Europe/Moscow` - Europe/Moscow * `Europe/Nicosia` - Europe/Nicosia * `Europe/Oslo` - Europe/Oslo * `Europe/Paris` - Europe/Paris * `Europe/Podgorica` - Europe/Podgorica * `Europe/Prague` - Europe/Prague * `Europe/Riga` - Europe/Riga * `Europe/Rome` - Europe/Rome * `Europe/Samara` - Europe/Samara * `Europe/San_Marino` - Europe/San_Marino * `Europe/Sarajevo` - Europe/Sarajevo * `Europe/Saratov` - Europe/Saratov * `Europe/Simferopol` - Europe/Simferopol * `Europe/Skopje` - Europe/Skopje * `Europe/Sofia` - Europe/Sofia * `Europe/Stockholm` - Europe/Stockholm * `Europe/Tallinn` - Europe/Tallinn * `Europe/Tirane` - Europe/Tirane * `Europe/Tiraspol` - Europe/Tiraspol * `Europe/Ulyanovsk` - Europe/Ulyanovsk * `Europe/Uzhgorod` - Europe/Uzhgorod * `Europe/Vaduz` - Europe/Vaduz * `Europe/Vatican` - Europe/Vatican * `Europe/Vienna` - Europe/Vienna * `Europe/Vilnius` - Europe/Vilnius * `Europe/Volgograd` - Europe/Volgograd * `Europe/Warsaw` - Europe/Warsaw * `Europe/Zagreb` - Europe/Zagreb * `Europe/Zaporozhye` - Europe/Zaporozhye * `Europe/Zurich` - Europe/Zurich * `GB` - GB * `GB-Eire` - GB-Eire * `GMT` - GMT * `GMT+0` - GMT+0 * `GMT-0` - GMT-0 * `GMT0` - GMT0 * `Greenwich` - Greenwich * `HST` - HST * `Hongkong` - Hongkong * `Iceland` - Iceland * `Indian/Antananarivo` - Indian/Antananarivo * `Indian/Chagos` - Indian/Chagos * `Indian/Christmas` - Indian/Christmas * `Indian/Cocos` - Indian/Cocos * `Indian/Comoro` - Indian/Comoro * `Indian/Kerguelen` - Indian/Kerguelen * `Indian/Mahe` - Indian/Mahe * `Indian/Maldives` - Indian/Maldives * `Indian/Mauritius` - Indian/Mauritius * `Indian/Mayotte` - Indian/Mayotte * `Indian/Reunion` - Indian/Reunion * `Iran` - Iran * `Israel` - Israel * `Jamaica` - Jamaica * `Japan` - Japan * `Kwajalein` - Kwajalein * `Libya` - Libya * `MET` - MET * `MST` - MST * `MST7MDT` - MST7MDT * `Mexico/BajaNorte` - Mexico/BajaNorte * `Mexico/BajaSur` - Mexico/BajaSur * `Mexico/General` - Mexico/General * `NZ` - NZ * `NZ-CHAT` - NZ-CHAT * `Navajo` - Navajo * `PRC` - PRC * `PST8PDT` - PST8PDT * `Pacific/Apia` - Pacific/Apia * `Pacific/Auckland` - Pacific/Auckland * `Pacific/Bougainville` - Pacific/Bougainville * `Pacific/Chatham` - Pacific/Chatham * `Pacific/Chuuk` - Pacific/Chuuk * `Pacific/Easter` - Pacific/Easter * `Pacific/Efate` - Pacific/Efate * `Pacific/Enderbury` - Pacific/Enderbury * `Pacific/Fakaofo` - Pacific/Fakaofo * `Pacific/Fiji` - Pacific/Fiji * `Pacific/Funafuti` - Pacific/Funafuti * `Pacific/Galapagos` - Pacific/Galapagos * `Pacific/Gambier` - Pacific/Gambier * `Pacific/Guadalcanal` - Pacific/Guadalcanal * `Pacific/Guam` - Pacific/Guam * `Pacific/Honolulu` - Pacific/Honolulu * `Pacific/Johnston` - Pacific/Johnston * `Pacific/Kanton` - Pacific/Kanton * `Pacific/Kiritimati` - Pacific/Kiritimati * `Pacific/Kosrae` - Pacific/Kosrae * `Pacific/Kwajalein` - Pacific/Kwajalein * `Pacific/Majuro` - Pacific/Majuro * `Pacific/Marquesas` - Pacific/Marquesas * `Pacific/Midway` - Pacific/Midway * `Pacific/Nauru` - Pacific/Nauru * `Pacific/Niue` - Pacific/Niue * `Pacific/Norfolk` - Pacific/Norfolk * `Pacific/Noumea` - Pacific/Noumea * `Pacific/Pago_Pago` - Pacific/Pago_Pago * `Pacific/Palau` - Pacific/Palau * `Pacific/Pitcairn` - Pacific/Pitcairn * `Pacific/Pohnpei` - Pacific/Pohnpei * `Pacific/Ponape` - Pacific/Ponape * `Pacific/Port_Moresby` - Pacific/Port_Moresby * `Pacific/Rarotonga` - Pacific/Rarotonga * `Pacific/Saipan` - Pacific/Saipan * `Pacific/Samoa` - Pacific/Samoa * `Pacific/Tahiti` - Pacific/Tahiti * `Pacific/Tarawa` - Pacific/Tarawa * `Pacific/Tongatapu` - Pacific/Tongatapu * `Pacific/Truk` - Pacific/Truk * `Pacific/Wake` - Pacific/Wake * `Pacific/Wallis` - Pacific/Wallis * `Pacific/Yap` - Pacific/Yap * `Poland` - Poland * `Portugal` - Portugal * `ROC` - ROC * `ROK` - ROK * `Singapore` - Singapore * `Turkey` - Turkey * `UCT` - UCT * `US/Alaska` - US/Alaska * `US/Aleutian` - US/Aleutian * `US/Arizona` - US/Arizona * `US/Central` - US/Central * `US/East-Indiana` - US/East-Indiana * `US/Eastern` - US/Eastern * `US/Hawaii` - US/Hawaii * `US/Indiana-Starke` - US/Indiana-Starke * `US/Michigan` - US/Michigan * `US/Mountain` - US/Mountain * `US/Pacific` - US/Pacific * `US/Samoa` - US/Samoa * `UTC` - UTC * `Universal` - Universal * `W-SU` - W-SU * `WET` - WET * `Zulu` - Zulu

const (
	PatchedSystemSettingsRequestTimeZoneAfricaAbidjan                  PatchedSystemSettingsRequestTimeZone = "Africa/Abidjan"
	PatchedSystemSettingsRequestTimeZoneAfricaAccra                    PatchedSystemSettingsRequestTimeZone = "Africa/Accra"
	PatchedSystemSettingsRequestTimeZoneAfricaAddisAbaba               PatchedSystemSettingsRequestTimeZone = "Africa/Addis_Ababa"
	PatchedSystemSettingsRequestTimeZoneAfricaAlgiers                  PatchedSystemSettingsRequestTimeZone = "Africa/Algiers"
	PatchedSystemSettingsRequestTimeZoneAfricaAsmara                   PatchedSystemSettingsRequestTimeZone = "Africa/Asmara"
	PatchedSystemSettingsRequestTimeZoneAfricaAsmera                   PatchedSystemSettingsRequestTimeZone = "Africa/Asmera"
	PatchedSystemSettingsRequestTimeZoneAfricaBamako                   PatchedSystemSettingsRequestTimeZone = "Africa/Bamako"
	PatchedSystemSettingsRequestTimeZoneAfricaBangui                   PatchedSystemSettingsRequestTimeZone = "Africa/Bangui"
	PatchedSystemSettingsRequestTimeZoneAfricaBanjul                   PatchedSystemSettingsRequestTimeZone = "Africa/Banjul"
	PatchedSystemSettingsRequestTimeZoneAfricaBissau                   PatchedSystemSettingsRequestTimeZone = "Africa/Bissau"
	PatchedSystemSettingsRequestTimeZoneAfricaBlantyre                 PatchedSystemSettingsRequestTimeZone = "Africa/Blantyre"
	PatchedSystemSettingsRequestTimeZoneAfricaBrazzaville              PatchedSystemSettingsRequestTimeZone = "Africa/Brazzaville"
	PatchedSystemSettingsRequestTimeZoneAfricaBujumbura                PatchedSystemSettingsRequestTimeZone = "Africa/Bujumbura"
	PatchedSystemSettingsRequestTimeZoneAfricaCairo                    PatchedSystemSettingsRequestTimeZone = "Africa/Cairo"
	PatchedSystemSettingsRequestTimeZoneAfricaCasablanca               PatchedSystemSettingsRequestTimeZone = "Africa/Casablanca"
	PatchedSystemSettingsRequestTimeZoneAfricaCeuta                    PatchedSystemSettingsRequestTimeZone = "Africa/Ceuta"
	PatchedSystemSettingsRequestTimeZoneAfricaConakry                  PatchedSystemSettingsRequestTimeZone = "Africa/Conakry"
	PatchedSystemSettingsRequestTimeZoneAfricaDakar                    PatchedSystemSettingsRequestTimeZone = "Africa/Dakar"
	PatchedSystemSettingsRequestTimeZoneAfricaDarEsSalaam              PatchedSystemSettingsRequestTimeZone = "Africa/Dar_es_Salaam"
	PatchedSystemSettingsRequestTimeZoneAfricaDjibouti                 PatchedSystemSettingsRequestTimeZone = "Africa/Djibouti"
	PatchedSystemSettingsRequestTimeZoneAfricaDouala                   PatchedSystemSettingsRequestTimeZone = "Africa/Douala"
	PatchedSystemSettingsRequestTimeZoneAfricaElAaiun                  PatchedSystemSettingsRequestTimeZone = "Africa/El_Aaiun"
	PatchedSystemSettingsRequestTimeZoneAfricaFreetown                 PatchedSystemSettingsRequestTimeZone = "Africa/Freetown"
	PatchedSystemSettingsRequestTimeZoneAfricaGaborone                 PatchedSystemSettingsRequestTimeZone = "Africa/Gaborone"
	PatchedSystemSettingsRequestTimeZoneAfricaHarare                   PatchedSystemSettingsRequestTimeZone = "Africa/Harare"
	PatchedSystemSettingsRequestTimeZoneAfricaJohannesburg             PatchedSystemSettingsRequestTimeZone = "Africa/Johannesburg"
	PatchedSystemSettingsRequestTimeZoneAfricaJuba                     PatchedSystemSettingsRequestTimeZone = "Africa/Juba"
	PatchedSystemSettingsRequestTimeZoneAfricaKampala                  PatchedSystemSettingsRequestTimeZone = "Africa/Kampala"
	PatchedSystemSettingsRequestTimeZoneAfricaKhartoum                 PatchedSystemSettingsRequestTimeZone = "Africa/Khartoum"
	PatchedSystemSettingsRequestTimeZoneAfricaKigali                   PatchedSystemSettingsRequestTimeZone = "Africa/Kigali"
	PatchedSystemSettingsRequestTimeZoneAfricaKinshasa                 PatchedSystemSettingsRequestTimeZone = "Africa/Kinshasa"
	PatchedSystemSettingsRequestTimeZoneAfricaLagos                    PatchedSystemSettingsRequestTimeZone = "Africa/Lagos"
	PatchedSystemSettingsRequestTimeZoneAfricaLibreville               PatchedSystemSettingsRequestTimeZone = "Africa/Libreville"
	PatchedSystemSettingsRequestTimeZoneAfricaLome                     PatchedSystemSettingsRequestTimeZone = "Africa/Lome"
	PatchedSystemSettingsRequestTimeZoneAfricaLuanda                   PatchedSystemSettingsRequestTimeZone = "Africa/Luanda"
	PatchedSystemSettingsRequestTimeZoneAfricaLubumbashi               PatchedSystemSettingsRequestTimeZone = "Africa/Lubumbashi"
	PatchedSystemSettingsRequestTimeZoneAfricaLusaka                   PatchedSystemSettingsRequestTimeZone = "Africa/Lusaka"
	PatchedSystemSettingsRequestTimeZoneAfricaMalabo                   PatchedSystemSettingsRequestTimeZone = "Africa/Malabo"
	PatchedSystemSettingsRequestTimeZoneAfricaMaputo                   PatchedSystemSettingsRequestTimeZone = "Africa/Maputo"
	PatchedSystemSettingsRequestTimeZoneAfricaMaseru                   PatchedSystemSettingsRequestTimeZone = "Africa/Maseru"
	PatchedSystemSettingsRequestTimeZoneAfricaMbabane                  PatchedSystemSettingsRequestTimeZone = "Africa/Mbabane"
	PatchedSystemSettingsRequestTimeZoneAfricaMogadishu                PatchedSystemSettingsRequestTimeZone = "Africa/Mogadishu"
	PatchedSystemSettingsRequestTimeZoneAfricaMonrovia                 PatchedSystemSettingsRequestTimeZone = "Africa/Monrovia"
	PatchedSystemSettingsRequestTimeZoneAfricaNairobi                  PatchedSystemSettingsRequestTimeZone = "Africa/Nairobi"
	PatchedSystemSettingsRequestTimeZoneAfricaNdjamena                 PatchedSystemSettingsRequestTimeZone = "Africa/Ndjamena"
	PatchedSystemSettingsRequestTimeZoneAfricaNiamey                   PatchedSystemSettingsRequestTimeZone = "Africa/Niamey"
	PatchedSystemSettingsRequestTimeZoneAfricaNouakchott               PatchedSystemSettingsRequestTimeZone = "Africa/Nouakchott"
	PatchedSystemSettingsRequestTimeZoneAfricaOuagadougou              PatchedSystemSettingsRequestTimeZone = "Africa/Ouagadougou"
	PatchedSystemSettingsRequestTimeZoneAfricaPortoNovo                PatchedSystemSettingsRequestTimeZone = "Africa/Porto-Novo"
	PatchedSystemSettingsRequestTimeZoneAfricaSaoTome                  PatchedSystemSettingsRequestTimeZone = "Africa/Sao_Tome"
	PatchedSystemSettingsRequestTimeZoneAfricaTimbuktu                 PatchedSystemSettingsRequestTimeZone = "Africa/Timbuktu"
	PatchedSystemSettingsRequestTimeZoneAfricaTripoli                  PatchedSystemSettingsRequestTimeZone = "Africa/Tripoli"
	PatchedSystemSettingsRequestTimeZoneAfricaTunis                    PatchedSystemSettingsRequestTimeZone = "Africa/Tunis"
	PatchedSystemSettingsRequestTimeZoneAfricaWindhoek                 PatchedSystemSettingsRequestTimeZone = "Africa/Windhoek"
	PatchedSystemSettingsRequestTimeZoneAmericaAdak                    PatchedSystemSettingsRequestTimeZone = "America/Adak"
	PatchedSystemSettingsRequestTimeZoneAmericaAnchorage               PatchedSystemSettingsRequestTimeZone = "America/Anchorage"
	PatchedSystemSettingsRequestTimeZoneAmericaAnguilla                PatchedSystemSettingsRequestTimeZone = "America/Anguilla"
	PatchedSystemSettingsRequestTimeZoneAmericaAntigua                 PatchedSystemSettingsRequestTimeZone = "America/Antigua"
	PatchedSystemSettingsRequestTimeZoneAmericaAraguaina               PatchedSystemSettingsRequestTimeZone = "America/Araguaina"
	PatchedSystemSettingsRequestTimeZoneAmericaArgentinaBuenosAires    PatchedSystemSettingsRequestTimeZone = "America/Argentina/Buenos_Aires"
	PatchedSystemSettingsRequestTimeZoneAmericaArgentinaCatamarca      PatchedSystemSettingsRequestTimeZone = "America/Argentina/Catamarca"
	PatchedSystemSettingsRequestTimeZoneAmericaArgentinaComodRivadavia PatchedSystemSettingsRequestTimeZone = "America/Argentina/ComodRivadavia"
	PatchedSystemSettingsRequestTimeZoneAmericaArgentinaCordoba        PatchedSystemSettingsRequestTimeZone = "America/Argentina/Cordoba"
	PatchedSystemSettingsRequestTimeZoneAmericaArgentinaJujuy          PatchedSystemSettingsRequestTimeZone = "America/Argentina/Jujuy"
	PatchedSystemSettingsRequestTimeZoneAmericaArgentinaLaRioja        PatchedSystemSettingsRequestTimeZone = "America/Argentina/La_Rioja"
	PatchedSystemSettingsRequestTimeZoneAmericaArgentinaMendoza        PatchedSystemSettingsRequestTimeZone = "America/Argentina/Mendoza"
	PatchedSystemSettingsRequestTimeZoneAmericaArgentinaRioGallegos    PatchedSystemSettingsRequestTimeZone = "America/Argentina/Rio_Gallegos"
	PatchedSystemSettingsRequestTimeZoneAmericaArgentinaSalta          PatchedSystemSettingsRequestTimeZone = "America/Argentina/Salta"
	PatchedSystemSettingsRequestTimeZoneAmericaArgentinaSanJuan        PatchedSystemSettingsRequestTimeZone = "America/Argentina/San_Juan"
	PatchedSystemSettingsRequestTimeZoneAmericaArgentinaSanLuis        PatchedSystemSettingsRequestTimeZone = "America/Argentina/San_Luis"
	PatchedSystemSettingsRequestTimeZoneAmericaArgentinaTucuman        PatchedSystemSettingsRequestTimeZone = "America/Argentina/Tucuman"
	PatchedSystemSettingsRequestTimeZoneAmericaArgentinaUshuaia        PatchedSystemSettingsRequestTimeZone = "America/Argentina/Ushuaia"
	PatchedSystemSettingsRequestTimeZoneAmericaAruba                   PatchedSystemSettingsRequestTimeZone = "America/Aruba"
	PatchedSystemSettingsRequestTimeZoneAmericaAsuncion                PatchedSystemSettingsRequestTimeZone = "America/Asuncion"
	PatchedSystemSettingsRequestTimeZoneAmericaAtikokan                PatchedSystemSettingsRequestTimeZone = "America/Atikokan"
	PatchedSystemSettingsRequestTimeZoneAmericaAtka                    PatchedSystemSettingsRequestTimeZone = "America/Atka"
	PatchedSystemSettingsRequestTimeZoneAmericaBahia                   PatchedSystemSettingsRequestTimeZone = "America/Bahia"
	PatchedSystemSettingsRequestTimeZoneAmericaBahiaBanderas           PatchedSystemSettingsRequestTimeZone = "America/Bahia_Banderas"
	PatchedSystemSettingsRequestTimeZoneAmericaBarbados                PatchedSystemSettingsRequestTimeZone = "America/Barbados"
	PatchedSystemSettingsRequestTimeZoneAmericaBelem                   PatchedSystemSettingsRequestTimeZone = "America/Belem"
	PatchedSystemSettingsRequestTimeZoneAmericaBelize                  PatchedSystemSettingsRequestTimeZone = "America/Belize"
	PatchedSystemSettingsRequestTimeZoneAmericaBlancSablon             PatchedSystemSettingsRequestTimeZone = "America/Blanc-Sablon"
	PatchedSystemSettingsRequestTimeZoneAmericaBoaVista                PatchedSystemSettingsRequestTimeZone = "America/Boa_Vista"
	PatchedSystemSettingsRequestTimeZoneAmericaBogota                  PatchedSystemSettingsRequestTimeZone = "America/Bogota"
	PatchedSystemSettingsRequestTimeZoneAmericaBoise                   PatchedSystemSettingsRequestTimeZone = "America/Boise"
	PatchedSystemSettingsRequestTimeZoneAmericaBuenosAires             PatchedSystemSettingsRequestTimeZone = "America/Buenos_Aires"
	PatchedSystemSettingsRequestTimeZoneAmericaCambridgeBay            PatchedSystemSettingsRequestTimeZone = "America/Cambridge_Bay"
	PatchedSystemSettingsRequestTimeZoneAmericaCampoGrande             PatchedSystemSettingsRequestTimeZone = "America/Campo_Grande"
	PatchedSystemSettingsRequestTimeZoneAmericaCancun                  PatchedSystemSettingsRequestTimeZone = "America/Cancun"
	PatchedSystemSettingsRequestTimeZoneAmericaCaracas                 PatchedSystemSettingsRequestTimeZone = "America/Caracas"
	PatchedSystemSettingsRequestTimeZoneAmericaCatamarca               PatchedSystemSettingsRequestTimeZone = "America/Catamarca"
	PatchedSystemSettingsRequestTimeZoneAmericaCayenne                 PatchedSystemSettingsRequestTimeZone = "America/Cayenne"
	PatchedSystemSettingsRequestTimeZoneAmericaCayman                  PatchedSystemSettingsRequestTimeZone = "America/Cayman"
	PatchedSystemSettingsRequestTimeZoneAmericaChicago                 PatchedSystemSettingsRequestTimeZone = "America/Chicago"
	PatchedSystemSettingsRequestTimeZoneAmericaChihuahua               PatchedSystemSettingsRequestTimeZone = "America/Chihuahua"
	PatchedSystemSettingsRequestTimeZoneAmericaCiudadJuarez            PatchedSystemSettingsRequestTimeZone = "America/Ciudad_Juarez"
	PatchedSystemSettingsRequestTimeZoneAmericaCoralHarbour            PatchedSystemSettingsRequestTimeZone = "America/Coral_Harbour"
	PatchedSystemSettingsRequestTimeZoneAmericaCordoba                 PatchedSystemSettingsRequestTimeZone = "America/Cordoba"
	PatchedSystemSettingsRequestTimeZoneAmericaCostaRica               PatchedSystemSettingsRequestTimeZone = "America/Costa_Rica"
	PatchedSystemSettingsRequestTimeZoneAmericaCreston                 PatchedSystemSettingsRequestTimeZone = "America/Creston"
	PatchedSystemSettingsRequestTimeZoneAmericaCuiaba                  PatchedSystemSettingsRequestTimeZone = "America/Cuiaba"
	PatchedSystemSettingsRequestTimeZoneAmericaCuracao                 PatchedSystemSettingsRequestTimeZone = "America/Curacao"
	PatchedSystemSettingsRequestTimeZoneAmericaDanmarkshavn            PatchedSystemSettingsRequestTimeZone = "America/Danmarkshavn"
	PatchedSystemSettingsRequestTimeZoneAmericaDawson                  PatchedSystemSettingsRequestTimeZone = "America/Dawson"
	PatchedSystemSettingsRequestTimeZoneAmericaDawsonCreek             PatchedSystemSettingsRequestTimeZone = "America/Dawson_Creek"
	PatchedSystemSettingsRequestTimeZoneAmericaDenver                  PatchedSystemSettingsRequestTimeZone = "America/Denver"
	PatchedSystemSettingsRequestTimeZoneAmericaDetroit                 PatchedSystemSettingsRequestTimeZone = "America/Detroit"
	PatchedSystemSettingsRequestTimeZoneAmericaDominica                PatchedSystemSettingsRequestTimeZone = "America/Dominica"
	PatchedSystemSettingsRequestTimeZoneAmericaEdmonton                PatchedSystemSettingsRequestTimeZone = "America/Edmonton"
	PatchedSystemSettingsRequestTimeZoneAmericaEirunepe                PatchedSystemSettingsRequestTimeZone = "America/Eirunepe"
	PatchedSystemSettingsRequestTimeZoneAmericaElSalvador              PatchedSystemSettingsRequestTimeZone = "America/El_Salvador"
	PatchedSystemSettingsRequestTimeZoneAmericaEnsenada                PatchedSystemSettingsRequestTimeZone = "America/Ensenada"
	PatchedSystemSettingsRequestTimeZoneAmericaFortNelson              PatchedSystemSettingsRequestTimeZone = "America/Fort_Nelson"
	PatchedSystemSettingsRequestTimeZoneAmericaFortWayne               PatchedSystemSettingsRequestTimeZone = "America/Fort_Wayne"
	PatchedSystemSettingsRequestTimeZoneAmericaFortaleza               PatchedSystemSettingsRequestTimeZone = "America/Fortaleza"
	PatchedSystemSettingsRequestTimeZoneAmericaGlaceBay                PatchedSystemSettingsRequestTimeZone = "America/Glace_Bay"
	PatchedSystemSettingsRequestTimeZoneAmericaGodthab                 PatchedSystemSettingsRequestTimeZone = "America/Godthab"
	PatchedSystemSettingsRequestTimeZoneAmericaGooseBay                PatchedSystemSettingsRequestTimeZone = "America/Goose_Bay"
	PatchedSystemSettingsRequestTimeZoneAmericaGrandTurk               PatchedSystemSettingsRequestTimeZone = "America/Grand_Turk"
	PatchedSystemSettingsRequestTimeZoneAmericaGrenada                 PatchedSystemSettingsRequestTimeZone = "America/Grenada"
	PatchedSystemSettingsRequestTimeZoneAmericaGuadeloupe              PatchedSystemSettingsRequestTimeZone = "America/Guadeloupe"
	PatchedSystemSettingsRequestTimeZoneAmericaGuatemala               PatchedSystemSettingsRequestTimeZone = "America/Guatemala"
	PatchedSystemSettingsRequestTimeZoneAmericaGuayaquil               PatchedSystemSettingsRequestTimeZone = "America/Guayaquil"
	PatchedSystemSettingsRequestTimeZoneAmericaGuyana                  PatchedSystemSettingsRequestTimeZone = "America/Guyana"
	PatchedSystemSettingsRequestTimeZoneAmericaHalifax                 PatchedSystemSettingsRequestTimeZone = "America/Halifax"
	PatchedSystemSettingsRequestTimeZoneAmericaHavana                  PatchedSystemSettingsRequestTimeZone = "America/Havana"
	PatchedSystemSettingsRequestTimeZoneAmericaHermosillo              PatchedSystemSettingsRequestTimeZone = "America/Hermosillo"
	PatchedSystemSettingsRequestTimeZoneAmericaIndianaIndianapolis     PatchedSystemSettingsRequestTimeZone = "America/Indiana/Indianapolis"
	PatchedSystemSettingsRequestTimeZoneAmericaIndianaKnox             PatchedSystemSettingsRequestTimeZone = "America/Indiana/Knox"
	PatchedSystemSettingsRequestTimeZoneAmericaIndianaMarengo          PatchedSystemSettingsRequestTimeZone = "America/Indiana/Marengo"
	PatchedSystemSettingsRequestTimeZoneAmericaIndianaPetersburg       PatchedSystemSettingsRequestTimeZone = "America/Indiana/Petersburg"
	PatchedSystemSettingsRequestTimeZoneAmericaIndianaTellCity         PatchedSystemSettingsRequestTimeZone = "America/Indiana/Tell_City"
	PatchedSystemSettingsRequestTimeZoneAmericaIndianaVevay            PatchedSystemSettingsRequestTimeZone = "America/Indiana/Vevay"
	PatchedSystemSettingsRequestTimeZoneAmericaIndianaVincennes        PatchedSystemSettingsRequestTimeZone = "America/Indiana/Vincennes"
	PatchedSystemSettingsRequestTimeZoneAmericaIndianaWinamac          PatchedSystemSettingsRequestTimeZone = "America/Indiana/Winamac"
	PatchedSystemSettingsRequestTimeZoneAmericaIndianapolis            PatchedSystemSettingsRequestTimeZone = "America/Indianapolis"
	PatchedSystemSettingsRequestTimeZoneAmericaInuvik                  PatchedSystemSettingsRequestTimeZone = "America/Inuvik"
	PatchedSystemSettingsRequestTimeZoneAmericaIqaluit                 PatchedSystemSettingsRequestTimeZone = "America/Iqaluit"
	PatchedSystemSettingsRequestTimeZoneAmericaJamaica                 PatchedSystemSettingsRequestTimeZone = "America/Jamaica"
	PatchedSystemSettingsRequestTimeZoneAmericaJujuy                   PatchedSystemSettingsRequestTimeZone = "America/Jujuy"
	PatchedSystemSettingsRequestTimeZoneAmericaJuneau                  PatchedSystemSettingsRequestTimeZone = "America/Juneau"
	PatchedSystemSettingsRequestTimeZoneAmericaKentuckyLouisville      PatchedSystemSettingsRequestTimeZone = "America/Kentucky/Louisville"
	PatchedSystemSettingsRequestTimeZoneAmericaKentuckyMonticello      PatchedSystemSettingsRequestTimeZone = "America/Kentucky/Monticello"
	PatchedSystemSettingsRequestTimeZoneAmericaKnoxIN                  PatchedSystemSettingsRequestTimeZone = "America/Knox_IN"
	PatchedSystemSettingsRequestTimeZoneAmericaKralendijk              PatchedSystemSettingsRequestTimeZone = "America/Kralendijk"
	PatchedSystemSettingsRequestTimeZoneAmericaLaPaz                   PatchedSystemSettingsRequestTimeZone = "America/La_Paz"
	PatchedSystemSettingsRequestTimeZoneAmericaLima                    PatchedSystemSettingsRequestTimeZone = "America/Lima"
	PatchedSystemSettingsRequestTimeZoneAmericaLosAngeles              PatchedSystemSettingsRequestTimeZone = "America/Los_Angeles"
	PatchedSystemSettingsRequestTimeZoneAmericaLouisville              PatchedSystemSettingsRequestTimeZone = "America/Louisville"
	PatchedSystemSettingsRequestTimeZoneAmericaLowerPrinces            PatchedSystemSettingsRequestTimeZone = "America/Lower_Princes"
	PatchedSystemSettingsRequestTimeZoneAmericaMaceio                  PatchedSystemSettingsRequestTimeZone = "America/Maceio"
	PatchedSystemSettingsRequestTimeZoneAmericaManagua                 PatchedSystemSettingsRequestTimeZone = "America/Managua"
	PatchedSystemSettingsRequestTimeZoneAmericaManaus                  PatchedSystemSettingsRequestTimeZone = "America/Manaus"
	PatchedSystemSettingsRequestTimeZoneAmericaMarigot                 PatchedSystemSettingsRequestTimeZone = "America/Marigot"
	PatchedSystemSettingsRequestTimeZoneAmericaMartinique              PatchedSystemSettingsRequestTimeZone = "America/Martinique"
	PatchedSystemSettingsRequestTimeZoneAmericaMatamoros               PatchedSystemSettingsRequestTimeZone = "America/Matamoros"
	PatchedSystemSettingsRequestTimeZoneAmericaMazatlan                PatchedSystemSettingsRequestTimeZone = "America/Mazatlan"
	PatchedSystemSettingsRequestTimeZoneAmericaMendoza                 PatchedSystemSettingsRequestTimeZone = "America/Mendoza"
	PatchedSystemSettingsRequestTimeZoneAmericaMenominee               PatchedSystemSettingsRequestTimeZone = "America/Menominee"
	PatchedSystemSettingsRequestTimeZoneAmericaMerida                  PatchedSystemSettingsRequestTimeZone = "America/Merida"
	PatchedSystemSettingsRequestTimeZoneAmericaMetlakatla              PatchedSystemSettingsRequestTimeZone = "America/Metlakatla"
	PatchedSystemSettingsRequestTimeZoneAmericaMexicoCity              PatchedSystemSettingsRequestTimeZone = "America/Mexico_City"
	PatchedSystemSettingsRequestTimeZoneAmericaMiquelon                PatchedSystemSettingsRequestTimeZone = "America/Miquelon"
	PatchedSystemSettingsRequestTimeZoneAmericaMoncton                 PatchedSystemSettingsRequestTimeZone = "America/Moncton"
	PatchedSystemSettingsRequestTimeZoneAmericaMonterrey               PatchedSystemSettingsRequestTimeZone = "America/Monterrey"
	PatchedSystemSettingsRequestTimeZoneAmericaMontevideo              PatchedSystemSettingsRequestTimeZone = "America/Montevideo"
	PatchedSystemSettingsRequestTimeZoneAmericaMontreal                PatchedSystemSettingsRequestTimeZone = "America/Montreal"
	PatchedSystemSettingsRequestTimeZoneAmericaMontserrat              PatchedSystemSettingsRequestTimeZone = "America/Montserrat"
	PatchedSystemSettingsRequestTimeZoneAmericaNassau                  PatchedSystemSettingsRequestTimeZone = "America/Nassau"
	PatchedSystemSettingsRequestTimeZoneAmericaNewYork                 PatchedSystemSettingsRequestTimeZone = "America/New_York"
	PatchedSystemSettingsRequestTimeZoneAmericaNipigon                 PatchedSystemSettingsRequestTimeZone = "America/Nipigon"
	PatchedSystemSettingsRequestTimeZoneAmericaNome                    PatchedSystemSettingsRequestTimeZone = "America/Nome"
	PatchedSystemSettingsRequestTimeZoneAmericaNoronha                 PatchedSystemSettingsRequestTimeZone = "America/Noronha"
	PatchedSystemSettingsRequestTimeZoneAmericaNorthDakotaBeulah       PatchedSystemSettingsRequestTimeZone = "America/North_Dakota/Beulah"
	PatchedSystemSettingsRequestTimeZoneAmericaNorthDakotaCenter       PatchedSystemSettingsRequestTimeZone = "America/North_Dakota/Center"
	PatchedSystemSettingsRequestTimeZoneAmericaNorthDakotaNewSalem     PatchedSystemSettingsRequestTimeZone = "America/North_Dakota/New_Salem"
	PatchedSystemSettingsRequestTimeZoneAmericaNuuk                    PatchedSystemSettingsRequestTimeZone = "America/Nuuk"
	PatchedSystemSettingsRequestTimeZoneAmericaOjinaga                 PatchedSystemSettingsRequestTimeZone = "America/Ojinaga"
	PatchedSystemSettingsRequestTimeZoneAmericaPanama                  PatchedSystemSettingsRequestTimeZone = "America/Panama"
	PatchedSystemSettingsRequestTimeZoneAmericaPangnirtung             PatchedSystemSettingsRequestTimeZone = "America/Pangnirtung"
	PatchedSystemSettingsRequestTimeZoneAmericaParamaribo              PatchedSystemSettingsRequestTimeZone = "America/Paramaribo"
	PatchedSystemSettingsRequestTimeZoneAmericaPhoenix                 PatchedSystemSettingsRequestTimeZone = "America/Phoenix"
	PatchedSystemSettingsRequestTimeZoneAmericaPortAuPrince            PatchedSystemSettingsRequestTimeZone = "America/Port-au-Prince"
	PatchedSystemSettingsRequestTimeZoneAmericaPortOfSpain             PatchedSystemSettingsRequestTimeZone = "America/Port_of_Spain"
	PatchedSystemSettingsRequestTimeZoneAmericaPortoAcre               PatchedSystemSettingsRequestTimeZone = "America/Porto_Acre"
	PatchedSystemSettingsRequestTimeZoneAmericaPortoVelho              PatchedSystemSettingsRequestTimeZone = "America/Porto_Velho"
	PatchedSystemSettingsRequestTimeZoneAmericaPuertoRico              PatchedSystemSettingsRequestTimeZone = "America/Puerto_Rico"
	PatchedSystemSettingsRequestTimeZoneAmericaPuntaArenas             PatchedSystemSettingsRequestTimeZone = "America/Punta_Arenas"
	PatchedSystemSettingsRequestTimeZoneAmericaRainyRiver              PatchedSystemSettingsRequestTimeZone = "America/Rainy_River"
	PatchedSystemSettingsRequestTimeZoneAmericaRankinInlet             PatchedSystemSettingsRequestTimeZone = "America/Rankin_Inlet"
	PatchedSystemSettingsRequestTimeZoneAmericaRecife                  PatchedSystemSettingsRequestTimeZone = "America/Recife"
	PatchedSystemSettingsRequestTimeZoneAmericaRegina                  PatchedSystemSettingsRequestTimeZone = "America/Regina"
	PatchedSystemSettingsRequestTimeZoneAmericaResolute                PatchedSystemSettingsRequestTimeZone = "America/Resolute"
	PatchedSystemSettingsRequestTimeZoneAmericaRioBranco               PatchedSystemSettingsRequestTimeZone = "America/Rio_Branco"
	PatchedSystemSettingsRequestTimeZoneAmericaRosario                 PatchedSystemSettingsRequestTimeZone = "America/Rosario"
	PatchedSystemSettingsRequestTimeZoneAmericaSantaIsabel             PatchedSystemSettingsRequestTimeZone = "America/Santa_Isabel"
	PatchedSystemSettingsRequestTimeZoneAmericaSantarem                PatchedSystemSettingsRequestTimeZone = "America/Santarem"
	PatchedSystemSettingsRequestTimeZoneAmericaSantiago                PatchedSystemSettingsRequestTimeZone = "America/Santiago"
	PatchedSystemSettingsRequestTimeZoneAmericaSantoDomingo            PatchedSystemSettingsRequestTimeZone = "America/Santo_Domingo"
	PatchedSystemSettingsRequestTimeZoneAmericaSaoPaulo                PatchedSystemSettingsRequestTimeZone = "America/Sao_Paulo"
	PatchedSystemSettingsRequestTimeZoneAmericaScoresbysund            PatchedSystemSettingsRequestTimeZone = "America/Scoresbysund"
	PatchedSystemSettingsRequestTimeZoneAmericaShiprock                PatchedSystemSettingsRequestTimeZone = "America/Shiprock"
	PatchedSystemSettingsRequestTimeZoneAmericaSitka                   PatchedSystemSettingsRequestTimeZone = "America/Sitka"
	PatchedSystemSettingsRequestTimeZoneAmericaStBarthelemy            PatchedSystemSettingsRequestTimeZone = "America/St_Barthelemy"
	PatchedSystemSettingsRequestTimeZoneAmericaStJohns                 PatchedSystemSettingsRequestTimeZone = "America/St_Johns"
	PatchedSystemSettingsRequestTimeZoneAmericaStKitts                 PatchedSystemSettingsRequestTimeZone = "America/St_Kitts"
	PatchedSystemSettingsRequestTimeZoneAmericaStLucia                 PatchedSystemSettingsRequestTimeZone = "America/St_Lucia"
	PatchedSystemSettingsRequestTimeZoneAmericaStThomas                PatchedSystemSettingsRequestTimeZone = "America/St_Thomas"
	PatchedSystemSettingsRequestTimeZoneAmericaStVincent               PatchedSystemSettingsRequestTimeZone = "America/St_Vincent"
	PatchedSystemSettingsRequestTimeZoneAmericaSwiftCurrent            PatchedSystemSettingsRequestTimeZone = "America/Swift_Current"
	PatchedSystemSettingsRequestTimeZoneAmericaTegucigalpa             PatchedSystemSettingsRequestTimeZone = "America/Tegucigalpa"
	PatchedSystemSettingsRequestTimeZoneAmericaThule                   PatchedSystemSettingsRequestTimeZone = "America/Thule"
	PatchedSystemSettingsRequestTimeZoneAmericaThunderBay              PatchedSystemSettingsRequestTimeZone = "America/Thunder_Bay"
	PatchedSystemSettingsRequestTimeZoneAmericaTijuana                 PatchedSystemSettingsRequestTimeZone = "America/Tijuana"
	PatchedSystemSettingsRequestTimeZoneAmericaToronto                 PatchedSystemSettingsRequestTimeZone = "America/Toronto"
	PatchedSystemSettingsRequestTimeZoneAmericaTortola                 PatchedSystemSettingsRequestTimeZone = "America/Tortola"
	PatchedSystemSettingsRequestTimeZoneAmericaVancouver               PatchedSystemSettingsRequestTimeZone = "America/Vancouver"
	PatchedSystemSettingsRequestTimeZoneAmericaVirgin                  PatchedSystemSettingsRequestTimeZone = "America/Virgin"
	PatchedSystemSettingsRequestTimeZoneAmericaWhitehorse              PatchedSystemSettingsRequestTimeZone = "America/Whitehorse"
	PatchedSystemSettingsRequestTimeZoneAmericaWinnipeg                PatchedSystemSettingsRequestTimeZone = "America/Winnipeg"
	PatchedSystemSettingsRequestTimeZoneAmericaYakutat                 PatchedSystemSettingsRequestTimeZone = "America/Yakutat"
	PatchedSystemSettingsRequestTimeZoneAmericaYellowknife             PatchedSystemSettingsRequestTimeZone = "America/Yellowknife"
	PatchedSystemSettingsRequestTimeZoneAntarcticaCasey                PatchedSystemSettingsRequestTimeZone = "Antarctica/Casey"
	PatchedSystemSettingsRequestTimeZoneAntarcticaDavis                PatchedSystemSettingsRequestTimeZone = "Antarctica/Davis"
	PatchedSystemSettingsRequestTimeZoneAntarcticaDumontDUrville       PatchedSystemSettingsRequestTimeZone = "Antarctica/DumontDUrville"
	PatchedSystemSettingsRequestTimeZoneAntarcticaMacquarie            PatchedSystemSettingsRequestTimeZone = "Antarctica/Macquarie"
	PatchedSystemSettingsRequestTimeZoneAntarcticaMawson               PatchedSystemSettingsRequestTimeZone = "Antarctica/Mawson"
	PatchedSystemSettingsRequestTimeZoneAntarcticaMcMurdo              PatchedSystemSettingsRequestTimeZone = "Antarctica/McMurdo"
	PatchedSystemSettingsRequestTimeZoneAntarcticaPalmer               PatchedSystemSettingsRequestTimeZone = "Antarctica/Palmer"
	PatchedSystemSettingsRequestTimeZoneAntarcticaRothera              PatchedSystemSettingsRequestTimeZone = "Antarctica/Rothera"
	PatchedSystemSettingsRequestTimeZoneAntarcticaSouthPole            PatchedSystemSettingsRequestTimeZone = "Antarctica/South_Pole"
	PatchedSystemSettingsRequestTimeZoneAntarcticaSyowa                PatchedSystemSettingsRequestTimeZone = "Antarctica/Syowa"
	PatchedSystemSettingsRequestTimeZoneAntarcticaTroll                PatchedSystemSettingsRequestTimeZone = "Antarctica/Troll"
	PatchedSystemSettingsRequestTimeZoneAntarcticaVostok               PatchedSystemSettingsRequestTimeZone = "Antarctica/Vostok"
	PatchedSystemSettingsRequestTimeZoneArcticLongyearbyen             PatchedSystemSettingsRequestTimeZone = "Arctic/Longyearbyen"
	PatchedSystemSettingsRequestTimeZoneAsiaAden                       PatchedSystemSettingsRequestTimeZone = "Asia/Aden"
	PatchedSystemSettingsRequestTimeZoneAsiaAlmaty                     PatchedSystemSettingsRequestTimeZone = "Asia/Almaty"
	PatchedSystemSettingsRequestTimeZoneAsiaAmman                      PatchedSystemSettingsRequestTimeZone = "Asia/Amman"
	PatchedSystemSettingsRequestTimeZoneAsiaAnadyr                     PatchedSystemSettingsRequestTimeZone = "Asia/Anadyr"
	PatchedSystemSettingsRequestTimeZoneAsiaAqtau                      PatchedSystemSettingsRequestTimeZone = "Asia/Aqtau"
	PatchedSystemSettingsRequestTimeZoneAsiaAqtobe                     PatchedSystemSettingsRequestTimeZone = "Asia/Aqtobe"
	PatchedSystemSettingsRequestTimeZoneAsiaAshgabat                   PatchedSystemSettingsRequestTimeZone = "Asia/Ashgabat"
	PatchedSystemSettingsRequestTimeZoneAsiaAshkhabad                  PatchedSystemSettingsRequestTimeZone = "Asia/Ashkhabad"
	PatchedSystemSettingsRequestTimeZoneAsiaAtyrau                     PatchedSystemSettingsRequestTimeZone = "Asia/Atyrau"
	PatchedSystemSettingsRequestTimeZoneAsiaBaghdad                    PatchedSystemSettingsRequestTimeZone = "Asia/Baghdad"
	PatchedSystemSettingsRequestTimeZoneAsiaBahrain                    PatchedSystemSettingsRequestTimeZone = "Asia/Bahrain"
	PatchedSystemSettingsRequestTimeZoneAsiaBaku                       PatchedSystemSettingsRequestTimeZone = "Asia/Baku"
	PatchedSystemSettingsRequestTimeZoneAsiaBangkok                    PatchedSystemSettingsRequestTimeZone = "Asia/Bangkok"
	PatchedSystemSettingsRequestTimeZoneAsiaBarnaul                    PatchedSystemSettingsRequestTimeZone = "Asia/Barnaul"
	PatchedSystemSettingsRequestTimeZoneAsiaBeirut                     PatchedSystemSettingsRequestTimeZone = "Asia/Beirut"
	PatchedSystemSettingsRequestTimeZoneAsiaBishkek                    PatchedSystemSettingsRequestTimeZone = "Asia/Bishkek"
	PatchedSystemSettingsRequestTimeZoneAsiaBrunei                     PatchedSystemSettingsRequestTimeZone = "Asia/Brunei"
	PatchedSystemSettingsRequestTimeZoneAsiaCalcutta                   PatchedSystemSettingsRequestTimeZone = "Asia/Calcutta"
	PatchedSystemSettingsRequestTimeZoneAsiaChita                      PatchedSystemSettingsRequestTimeZone = "Asia/Chita"
	PatchedSystemSettingsRequestTimeZoneAsiaChoibalsan                 PatchedSystemSettingsRequestTimeZone = "Asia/Choibalsan"
	PatchedSystemSettingsRequestTimeZoneAsiaChongqing                  PatchedSystemSettingsRequestTimeZone = "Asia/Chongqing"
	PatchedSystemSettingsRequestTimeZoneAsiaChungking                  PatchedSystemSettingsRequestTimeZone = "Asia/Chungking"
	PatchedSystemSettingsRequestTimeZoneAsiaColombo                    PatchedSystemSettingsRequestTimeZone = "Asia/Colombo"
	PatchedSystemSettingsRequestTimeZoneAsiaDacca                      PatchedSystemSettingsRequestTimeZone = "Asia/Dacca"
	PatchedSystemSettingsRequestTimeZoneAsiaDamascus                   PatchedSystemSettingsRequestTimeZone = "Asia/Damascus"
	PatchedSystemSettingsRequestTimeZoneAsiaDhaka                      PatchedSystemSettingsRequestTimeZone = "Asia/Dhaka"
	PatchedSystemSettingsRequestTimeZoneAsiaDili                       PatchedSystemSettingsRequestTimeZone = "Asia/Dili"
	PatchedSystemSettingsRequestTimeZoneAsiaDubai                      PatchedSystemSettingsRequestTimeZone = "Asia/Dubai"
	PatchedSystemSettingsRequestTimeZoneAsiaDushanbe                   PatchedSystemSettingsRequestTimeZone = "Asia/Dushanbe"
	PatchedSystemSettingsRequestTimeZoneAsiaFamagusta                  PatchedSystemSettingsRequestTimeZone = "Asia/Famagusta"
	PatchedSystemSettingsRequestTimeZoneAsiaGaza                       PatchedSystemSettingsRequestTimeZone = "Asia/Gaza"
	PatchedSystemSettingsRequestTimeZoneAsiaHarbin                     PatchedSystemSettingsRequestTimeZone = "Asia/Harbin"
	PatchedSystemSettingsRequestTimeZoneAsiaHebron                     PatchedSystemSettingsRequestTimeZone = "Asia/Hebron"
	PatchedSystemSettingsRequestTimeZoneAsiaHoChiMinh                  PatchedSystemSettingsRequestTimeZone = "Asia/Ho_Chi_Minh"
	PatchedSystemSettingsRequestTimeZoneAsiaHongKong                   PatchedSystemSettingsRequestTimeZone = "Asia/Hong_Kong"
	PatchedSystemSettingsRequestTimeZoneAsiaHovd                       PatchedSystemSettingsRequestTimeZone = "Asia/Hovd"
	PatchedSystemSettingsRequestTimeZoneAsiaIrkutsk                    PatchedSystemSettingsRequestTimeZone = "Asia/Irkutsk"
	PatchedSystemSettingsRequestTimeZoneAsiaIstanbul                   PatchedSystemSettingsRequestTimeZone = "Asia/Istanbul"
	PatchedSystemSettingsRequestTimeZoneAsiaJakarta                    PatchedSystemSettingsRequestTimeZone = "Asia/Jakarta"
	PatchedSystemSettingsRequestTimeZoneAsiaJayapura                   PatchedSystemSettingsRequestTimeZone = "Asia/Jayapura"
	PatchedSystemSettingsRequestTimeZoneAsiaJerusalem                  PatchedSystemSettingsRequestTimeZone = "Asia/Jerusalem"
	PatchedSystemSettingsRequestTimeZoneAsiaKabul                      PatchedSystemSettingsRequestTimeZone = "Asia/Kabul"
	PatchedSystemSettingsRequestTimeZoneAsiaKamchatka                  PatchedSystemSettingsRequestTimeZone = "Asia/Kamchatka"
	PatchedSystemSettingsRequestTimeZoneAsiaKarachi                    PatchedSystemSettingsRequestTimeZone = "Asia/Karachi"
	PatchedSystemSettingsRequestTimeZoneAsiaKashgar                    PatchedSystemSettingsRequestTimeZone = "Asia/Kashgar"
	PatchedSystemSettingsRequestTimeZoneAsiaKathmandu                  PatchedSystemSettingsRequestTimeZone = "Asia/Kathmandu"
	PatchedSystemSettingsRequestTimeZoneAsiaKatmandu                   PatchedSystemSettingsRequestTimeZone = "Asia/Katmandu"
	PatchedSystemSettingsRequestTimeZoneAsiaKhandyga                   PatchedSystemSettingsRequestTimeZone = "Asia/Khandyga"
	PatchedSystemSettingsRequestTimeZoneAsiaKolkata                    PatchedSystemSettingsRequestTimeZone = "Asia/Kolkata"
	PatchedSystemSettingsRequestTimeZoneAsiaKrasnoyarsk                PatchedSystemSettingsRequestTimeZone = "Asia/Krasnoyarsk"
	PatchedSystemSettingsRequestTimeZoneAsiaKualaLumpur                PatchedSystemSettingsRequestTimeZone = "Asia/Kuala_Lumpur"
	PatchedSystemSettingsRequestTimeZoneAsiaKuching                    PatchedSystemSettingsRequestTimeZone = "Asia/Kuching"
	PatchedSystemSettingsRequestTimeZoneAsiaKuwait                     PatchedSystemSettingsRequestTimeZone = "Asia/Kuwait"
	PatchedSystemSettingsRequestTimeZoneAsiaMacao                      PatchedSystemSettingsRequestTimeZone = "Asia/Macao"
	PatchedSystemSettingsRequestTimeZoneAsiaMacau                      PatchedSystemSettingsRequestTimeZone = "Asia/Macau"
	PatchedSystemSettingsRequestTimeZoneAsiaMagadan                    PatchedSystemSettingsRequestTimeZone = "Asia/Magadan"
	PatchedSystemSettingsRequestTimeZoneAsiaMakassar                   PatchedSystemSettingsRequestTimeZone = "Asia/Makassar"
	PatchedSystemSettingsRequestTimeZoneAsiaManila                     PatchedSystemSettingsRequestTimeZone = "Asia/Manila"
	PatchedSystemSettingsRequestTimeZoneAsiaMuscat                     PatchedSystemSettingsRequestTimeZone = "Asia/Muscat"
	PatchedSystemSettingsRequestTimeZoneAsiaNicosia                    PatchedSystemSettingsRequestTimeZone = "Asia/Nicosia"
	PatchedSystemSettingsRequestTimeZoneAsiaNovokuznetsk               PatchedSystemSettingsRequestTimeZone = "Asia/Novokuznetsk"
	PatchedSystemSettingsRequestTimeZoneAsiaNovosibirsk                PatchedSystemSettingsRequestTimeZone = "Asia/Novosibirsk"
	PatchedSystemSettingsRequestTimeZoneAsiaOmsk                       PatchedSystemSettingsRequestTimeZone = "Asia/Omsk"
	PatchedSystemSettingsRequestTimeZoneAsiaOral                       PatchedSystemSettingsRequestTimeZone = "Asia/Oral"
	PatchedSystemSettingsRequestTimeZoneAsiaPhnomPenh                  PatchedSystemSettingsRequestTimeZone = "Asia/Phnom_Penh"
	PatchedSystemSettingsRequestTimeZoneAsiaPontianak                  PatchedSystemSettingsRequestTimeZone = "Asia/Pontianak"
	PatchedSystemSettingsRequestTimeZoneAsiaPyongyang                  PatchedSystemSettingsRequestTimeZone = "Asia/Pyongyang"
	PatchedSystemSettingsRequestTimeZoneAsiaQatar                      PatchedSystemSettingsRequestTimeZone = "Asia/Qatar"
	PatchedSystemSettingsRequestTimeZoneAsiaQostanay                   PatchedSystemSettingsRequestTimeZone = "Asia/Qostanay"
	PatchedSystemSettingsRequestTimeZoneAsiaQyzylorda                  PatchedSystemSettingsRequestTimeZone = "Asia/Qyzylorda"
	PatchedSystemSettingsRequestTimeZoneAsiaRangoon                    PatchedSystemSettingsRequestTimeZone = "Asia/Rangoon"
	PatchedSystemSettingsRequestTimeZoneAsiaRiyadh                     PatchedSystemSettingsRequestTimeZone = "Asia/Riyadh"
	PatchedSystemSettingsRequestTimeZoneAsiaSaigon                     PatchedSystemSettingsRequestTimeZone = "Asia/Saigon"
	PatchedSystemSettingsRequestTimeZoneAsiaSakhalin                   PatchedSystemSettingsRequestTimeZone = "Asia/Sakhalin"
	PatchedSystemSettingsRequestTimeZoneAsiaSamarkand                  PatchedSystemSettingsRequestTimeZone = "Asia/Samarkand"
	PatchedSystemSettingsRequestTimeZoneAsiaSeoul                      PatchedSystemSettingsRequestTimeZone = "Asia/Seoul"
	PatchedSystemSettingsRequestTimeZoneAsiaShanghai                   PatchedSystemSettingsRequestTimeZone = "Asia/Shanghai"
	PatchedSystemSettingsRequestTimeZoneAsiaSingapore                  PatchedSystemSettingsRequestTimeZone = "Asia/Singapore"
	PatchedSystemSettingsRequestTimeZoneAsiaSrednekolymsk              PatchedSystemSettingsRequestTimeZone = "Asia/Srednekolymsk"
	PatchedSystemSettingsRequestTimeZoneAsiaTaipei                     PatchedSystemSettingsRequestTimeZone = "Asia/Taipei"
	PatchedSystemSettingsRequestTimeZoneAsiaTashkent                   PatchedSystemSettingsRequestTimeZone = "Asia/Tashkent"
	PatchedSystemSettingsRequestTimeZoneAsiaTbilisi                    PatchedSystemSettingsRequestTimeZone = "Asia/Tbilisi"
	PatchedSystemSettingsRequestTimeZoneAsiaTehran                     PatchedSystemSettingsRequestTimeZone = "Asia/Tehran"
	PatchedSystemSettingsRequestTimeZoneAsiaTelAviv                    PatchedSystemSettingsRequestTimeZone = "Asia/Tel_Aviv"
	PatchedSystemSettingsRequestTimeZoneAsiaThimbu                     PatchedSystemSettingsRequestTimeZone = "Asia/Thimbu"
	PatchedSystemSettingsRequestTimeZoneAsiaThimphu                    PatchedSystemSettingsRequestTimeZone = "Asia/Thimphu"
	PatchedSystemSettingsRequestTimeZoneAsiaTokyo                      PatchedSystemSettingsRequestTimeZone = "Asia/Tokyo"
	PatchedSystemSettingsRequestTimeZoneAsiaTomsk                      PatchedSystemSettingsRequestTimeZone = "Asia/Tomsk"
	PatchedSystemSettingsRequestTimeZoneAsiaUjungPandang               PatchedSystemSettingsRequestTimeZone = "Asia/Ujung_Pandang"
	PatchedSystemSettingsRequestTimeZoneAsiaUlaanbaatar                PatchedSystemSettingsRequestTimeZone = "Asia/Ulaanbaatar"
	PatchedSystemSettingsRequestTimeZoneAsiaUlanBator                  PatchedSystemSettingsRequestTimeZone = "Asia/Ulan_Bator"
	PatchedSystemSettingsRequestTimeZoneAsiaUrumqi                     PatchedSystemSettingsRequestTimeZone = "Asia/Urumqi"
	PatchedSystemSettingsRequestTimeZoneAsiaUstNera                    PatchedSystemSettingsRequestTimeZone = "Asia/Ust-Nera"
	PatchedSystemSettingsRequestTimeZoneAsiaVientiane                  PatchedSystemSettingsRequestTimeZone = "Asia/Vientiane"
	PatchedSystemSettingsRequestTimeZoneAsiaVladivostok                PatchedSystemSettingsRequestTimeZone = "Asia/Vladivostok"
	PatchedSystemSettingsRequestTimeZoneAsiaYakutsk                    PatchedSystemSettingsRequestTimeZone = "Asia/Yakutsk"
	PatchedSystemSettingsRequestTimeZoneAsiaYangon                     PatchedSystemSettingsRequestTimeZone = "Asia/Yangon"
	PatchedSystemSettingsRequestTimeZoneAsiaYekaterinburg              PatchedSystemSettingsRequestTimeZone = "Asia/Yekaterinburg"
	PatchedSystemSettingsRequestTimeZoneAsiaYerevan                    PatchedSystemSettingsRequestTimeZone = "Asia/Yerevan"
	PatchedSystemSettingsRequestTimeZoneAtlanticAzores                 PatchedSystemSettingsRequestTimeZone = "Atlantic/Azores"
	PatchedSystemSettingsRequestTimeZoneAtlanticBermuda                PatchedSystemSettingsRequestTimeZone = "Atlantic/Bermuda"
	PatchedSystemSettingsRequestTimeZoneAtlanticCanary                 PatchedSystemSettingsRequestTimeZone = "Atlantic/Canary"
	PatchedSystemSettingsRequestTimeZoneAtlanticCapeVerde              PatchedSystemSettingsRequestTimeZone = "Atlantic/Cape_Verde"
	PatchedSystemSettingsRequestTimeZoneAtlanticFaeroe                 PatchedSystemSettingsRequestTimeZone = "Atlantic/Faeroe"
	PatchedSystemSettingsRequestTimeZoneAtlanticFaroe                  PatchedSystemSettingsRequestTimeZone = "Atlantic/Faroe"
	PatchedSystemSettingsRequestTimeZoneAtlanticJanMayen               PatchedSystemSettingsRequestTimeZone = "Atlantic/Jan_Mayen"
	PatchedSystemSettingsRequestTimeZoneAtlanticMadeira                PatchedSystemSettingsRequestTimeZone = "Atlantic/Madeira"
	PatchedSystemSettingsRequestTimeZoneAtlanticReykjavik              PatchedSystemSettingsRequestTimeZone = "Atlantic/Reykjavik"
	PatchedSystemSettingsRequestTimeZoneAtlanticSouthGeorgia           PatchedSystemSettingsRequestTimeZone = "Atlantic/South_Georgia"
	PatchedSystemSettingsRequestTimeZoneAtlanticStHelena               PatchedSystemSettingsRequestTimeZone = "Atlantic/St_Helena"
	PatchedSystemSettingsRequestTimeZoneAtlanticStanley                PatchedSystemSettingsRequestTimeZone = "Atlantic/Stanley"
	PatchedSystemSettingsRequestTimeZoneAustraliaACT                   PatchedSystemSettingsRequestTimeZone = "Australia/ACT"
	PatchedSystemSettingsRequestTimeZoneAustraliaAdelaide              PatchedSystemSettingsRequestTimeZone = "Australia/Adelaide"
	PatchedSystemSettingsRequestTimeZoneAustraliaBrisbane              PatchedSystemSettingsRequestTimeZone = "Australia/Brisbane"
	PatchedSystemSettingsRequestTimeZoneAustraliaBrokenHill            PatchedSystemSettingsRequestTimeZone = "Australia/Broken_Hill"
	PatchedSystemSettingsRequestTimeZoneAustraliaCanberra              PatchedSystemSettingsRequestTimeZone = "Australia/Canberra"
	PatchedSystemSettingsRequestTimeZoneAustraliaCurrie                PatchedSystemSettingsRequestTimeZone = "Australia/Currie"
	PatchedSystemSettingsRequestTimeZoneAustraliaDarwin                PatchedSystemSettingsRequestTimeZone = "Australia/Darwin"
	PatchedSystemSettingsRequestTimeZoneAustraliaEucla                 PatchedSystemSettingsRequestTimeZone = "Australia/Eucla"
	PatchedSystemSettingsRequestTimeZoneAustraliaHobart                PatchedSystemSettingsRequestTimeZone = "Australia/Hobart"
	PatchedSystemSettingsRequestTimeZoneAustraliaLHI                   PatchedSystemSettingsRequestTimeZone = "Australia/LHI"
	PatchedSystemSettingsRequestTimeZoneAustraliaLindeman              PatchedSystemSettingsRequestTimeZone = "Australia/Lindeman"
	PatchedSystemSettingsRequestTimeZoneAustraliaLordHowe              PatchedSystemSettingsRequestTimeZone = "Australia/Lord_Howe"
	PatchedSystemSettingsRequestTimeZoneAustraliaMelbourne             PatchedSystemSettingsRequestTimeZone = "Australia/Melbourne"
	PatchedSystemSettingsRequestTimeZoneAustraliaNSW                   PatchedSystemSettingsRequestTimeZone = "Australia/NSW"
	PatchedSystemSettingsRequestTimeZoneAustraliaNorth                 PatchedSystemSettingsRequestTimeZone = "Australia/North"
	PatchedSystemSettingsRequestTimeZoneAustraliaPerth                 PatchedSystemSettingsRequestTimeZone = "Australia/Perth"
	PatchedSystemSettingsRequestTimeZoneAustraliaQueensland            PatchedSystemSettingsRequestTimeZone = "Australia/Queensland"
	PatchedSystemSettingsRequestTimeZoneAustraliaSouth                 PatchedSystemSettingsRequestTimeZone = "Australia/South"
	PatchedSystemSettingsRequestTimeZoneAustraliaSydney                PatchedSystemSettingsRequestTimeZone = "Australia/Sydney"
	PatchedSystemSettingsRequestTimeZoneAustraliaTasmania              PatchedSystemSettingsRequestTimeZone = "Australia/Tasmania"
	PatchedSystemSettingsRequestTimeZoneAustraliaVictoria              PatchedSystemSettingsRequestTimeZone = "Australia/Victoria"
	PatchedSystemSettingsRequestTimeZoneAustraliaWest                  PatchedSystemSettingsRequestTimeZone = "Australia/West"
	PatchedSystemSettingsRequestTimeZoneAustraliaYancowinna            PatchedSystemSettingsRequestTimeZone = "Australia/Yancowinna"
	PatchedSystemSettingsRequestTimeZoneBrazilAcre                     PatchedSystemSettingsRequestTimeZone = "Brazil/Acre"
	PatchedSystemSettingsRequestTimeZoneBrazilDeNoronha                PatchedSystemSettingsRequestTimeZone = "Brazil/DeNoronha"
	PatchedSystemSettingsRequestTimeZoneBrazilEast                     PatchedSystemSettingsRequestTimeZone = "Brazil/East"
	PatchedSystemSettingsRequestTimeZoneBrazilWest                     PatchedSystemSettingsRequestTimeZone = "Brazil/West"
	PatchedSystemSettingsRequestTimeZoneCET                            PatchedSystemSettingsRequestTimeZone = "CET"
	PatchedSystemSettingsRequestTimeZoneCST6CDT                        PatchedSystemSettingsRequestTimeZone = "CST6CDT"
	PatchedSystemSettingsRequestTimeZoneCanadaAtlantic                 PatchedSystemSettingsRequestTimeZone = "Canada/Atlantic"
	PatchedSystemSettingsRequestTimeZoneCanadaCentral                  PatchedSystemSettingsRequestTimeZone = "Canada/Central"
	PatchedSystemSettingsRequestTimeZoneCanadaEastern                  PatchedSystemSettingsRequestTimeZone = "Canada/Eastern"
	PatchedSystemSettingsRequestTimeZoneCanadaMountain                 PatchedSystemSettingsRequestTimeZone = "Canada/Mountain"
	PatchedSystemSettingsRequestTimeZoneCanadaNewfoundland             PatchedSystemSettingsRequestTimeZone = "Canada/Newfoundland"
	PatchedSystemSettingsRequestTimeZoneCanadaPacific                  PatchedSystemSettingsRequestTimeZone = "Canada/Pacific"
	PatchedSystemSettingsRequestTimeZoneCanadaSaskatchewan             PatchedSystemSettingsRequestTimeZone = "Canada/Saskatchewan"
	PatchedSystemSettingsRequestTimeZoneCanadaYukon                    PatchedSystemSettingsRequestTimeZone = "Canada/Yukon"
	PatchedSystemSettingsRequestTimeZoneChileContinental               PatchedSystemSettingsRequestTimeZone = "Chile/Continental"
	PatchedSystemSettingsRequestTimeZoneChileEasterIsland              PatchedSystemSettingsRequestTimeZone = "Chile/EasterIsland"
	PatchedSystemSettingsRequestTimeZoneCuba                           PatchedSystemSettingsRequestTimeZone = "Cuba"
	PatchedSystemSettingsRequestTimeZoneEET                            PatchedSystemSettingsRequestTimeZone = "EET"
	PatchedSystemSettingsRequestTimeZoneEST                            PatchedSystemSettingsRequestTimeZone = "EST"
	PatchedSystemSettingsRequestTimeZoneEST5EDT                        PatchedSystemSettingsRequestTimeZone = "EST5EDT"
	PatchedSystemSettingsRequestTimeZoneEgypt                          PatchedSystemSettingsRequestTimeZone = "Egypt"
	PatchedSystemSettingsRequestTimeZoneEire                           PatchedSystemSettingsRequestTimeZone = "Eire"
	PatchedSystemSettingsRequestTimeZoneEtcGMT                         PatchedSystemSettingsRequestTimeZone = "Etc/GMT"
	PatchedSystemSettingsRequestTimeZoneEtcGMT0                        PatchedSystemSettingsRequestTimeZone = "Etc/GMT+0"
	PatchedSystemSettingsRequestTimeZoneEtcGMT01                       PatchedSystemSettingsRequestTimeZone = "Etc/GMT-0"
	PatchedSystemSettingsRequestTimeZoneEtcGMT02                       PatchedSystemSettingsRequestTimeZone = "Etc/GMT0"
	PatchedSystemSettingsRequestTimeZoneEtcGMT1                        PatchedSystemSettingsRequestTimeZone = "Etc/GMT+1"
	PatchedSystemSettingsRequestTimeZoneEtcGMT10                       PatchedSystemSettingsRequestTimeZone = "Etc/GMT+10"
	PatchedSystemSettingsRequestTimeZoneEtcGMT101                      PatchedSystemSettingsRequestTimeZone = "Etc/GMT-10"
	PatchedSystemSettingsRequestTimeZoneEtcGMT11                       PatchedSystemSettingsRequestTimeZone = "Etc/GMT-1"
	PatchedSystemSettingsRequestTimeZoneEtcGMT111                      PatchedSystemSettingsRequestTimeZone = "Etc/GMT-11"
	PatchedSystemSettingsRequestTimeZoneEtcGMT12                       PatchedSystemSettingsRequestTimeZone = "Etc/GMT+12"
	PatchedSystemSettingsRequestTimeZoneEtcGMT121                      PatchedSystemSettingsRequestTimeZone = "Etc/GMT-12"
	PatchedSystemSettingsRequestTimeZoneEtcGMT13                       PatchedSystemSettingsRequestTimeZone = "Etc/GMT-13"
	PatchedSystemSettingsRequestTimeZoneEtcGMT14                       PatchedSystemSettingsRequestTimeZone = "Etc/GMT-14"
	PatchedSystemSettingsRequestTimeZoneEtcGMT2                        PatchedSystemSettingsRequestTimeZone = "Etc/GMT+2"
	PatchedSystemSettingsRequestTimeZoneEtcGMT21                       PatchedSystemSettingsRequestTimeZone = "Etc/GMT-2"
	PatchedSystemSettingsRequestTimeZoneEtcGMT3                        PatchedSystemSettingsRequestTimeZone = "Etc/GMT+3"
	PatchedSystemSettingsRequestTimeZoneEtcGMT31                       PatchedSystemSettingsRequestTimeZone = "Etc/GMT-3"
	PatchedSystemSettingsRequestTimeZoneEtcGMT4                        PatchedSystemSettingsRequestTimeZone = "Etc/GMT+4"
	PatchedSystemSettingsRequestTimeZoneEtcGMT41                       PatchedSystemSettingsRequestTimeZone = "Etc/GMT-4"
	PatchedSystemSettingsRequestTimeZoneEtcGMT5                        PatchedSystemSettingsRequestTimeZone = "Etc/GMT+5"
	PatchedSystemSettingsRequestTimeZoneEtcGMT51                       PatchedSystemSettingsRequestTimeZone = "Etc/GMT-5"
	PatchedSystemSettingsRequestTimeZoneEtcGMT6                        PatchedSystemSettingsRequestTimeZone = "Etc/GMT+6"
	PatchedSystemSettingsRequestTimeZoneEtcGMT61                       PatchedSystemSettingsRequestTimeZone = "Etc/GMT-6"
	PatchedSystemSettingsRequestTimeZoneEtcGMT7                        PatchedSystemSettingsRequestTimeZone = "Etc/GMT+7"
	PatchedSystemSettingsRequestTimeZoneEtcGMT71                       PatchedSystemSettingsRequestTimeZone = "Etc/GMT-7"
	PatchedSystemSettingsRequestTimeZoneEtcGMT8                        PatchedSystemSettingsRequestTimeZone = "Etc/GMT+8"
	PatchedSystemSettingsRequestTimeZoneEtcGMT81                       PatchedSystemSettingsRequestTimeZone = "Etc/GMT-8"
	PatchedSystemSettingsRequestTimeZoneEtcGMT9                        PatchedSystemSettingsRequestTimeZone = "Etc/GMT+9"
	PatchedSystemSettingsRequestTimeZoneEtcGMT91                       PatchedSystemSettingsRequestTimeZone = "Etc/GMT-9"
	PatchedSystemSettingsRequestTimeZoneEtcGreenwich                   PatchedSystemSettingsRequestTimeZone = "Etc/Greenwich"
	PatchedSystemSettingsRequestTimeZoneEtcUCT                         PatchedSystemSettingsRequestTimeZone = "Etc/UCT"
	PatchedSystemSettingsRequestTimeZoneEtcUTC                         PatchedSystemSettingsRequestTimeZone = "Etc/UTC"
	PatchedSystemSettingsRequestTimeZoneEtcUniversal                   PatchedSystemSettingsRequestTimeZone = "Etc/Universal"
	PatchedSystemSettingsRequestTimeZoneEtcZulu                        PatchedSystemSettingsRequestTimeZone = "Etc/Zulu"
	PatchedSystemSettingsRequestTimeZoneEuropeAmsterdam                PatchedSystemSettingsRequestTimeZone = "Europe/Amsterdam"
	PatchedSystemSettingsRequestTimeZoneEuropeAndorra                  PatchedSystemSettingsRequestTimeZone = "Europe/Andorra"
	PatchedSystemSettingsRequestTimeZoneEuropeAstrakhan                PatchedSystemSettingsRequestTimeZone = "Europe/Astrakhan"
	PatchedSystemSettingsRequestTimeZoneEuropeAthens                   PatchedSystemSettingsRequestTimeZone = "Europe/Athens"
	PatchedSystemSettingsRequestTimeZoneEuropeBelfast                  PatchedSystemSettingsRequestTimeZone = "Europe/Belfast"
	PatchedSystemSettingsRequestTimeZoneEuropeBelgrade                 PatchedSystemSettingsRequestTimeZone = "Europe/Belgrade"
	PatchedSystemSettingsRequestTimeZoneEuropeBerlin                   PatchedSystemSettingsRequestTimeZone = "Europe/Berlin"
	PatchedSystemSettingsRequestTimeZoneEuropeBratislava               PatchedSystemSettingsRequestTimeZone = "Europe/Bratislava"
	PatchedSystemSettingsRequestTimeZoneEuropeBrussels                 PatchedSystemSettingsRequestTimeZone = "Europe/Brussels"
	PatchedSystemSettingsRequestTimeZoneEuropeBucharest                PatchedSystemSettingsRequestTimeZone = "Europe/Bucharest"
	PatchedSystemSettingsRequestTimeZoneEuropeBudapest                 PatchedSystemSettingsRequestTimeZone = "Europe/Budapest"
	PatchedSystemSettingsRequestTimeZoneEuropeBusingen                 PatchedSystemSettingsRequestTimeZone = "Europe/Busingen"
	PatchedSystemSettingsRequestTimeZoneEuropeChisinau                 PatchedSystemSettingsRequestTimeZone = "Europe/Chisinau"
	PatchedSystemSettingsRequestTimeZoneEuropeCopenhagen               PatchedSystemSettingsRequestTimeZone = "Europe/Copenhagen"
	PatchedSystemSettingsRequestTimeZoneEuropeDublin                   PatchedSystemSettingsRequestTimeZone = "Europe/Dublin"
	PatchedSystemSettingsRequestTimeZoneEuropeGibraltar                PatchedSystemSettingsRequestTimeZone = "Europe/Gibraltar"
	PatchedSystemSettingsRequestTimeZoneEuropeGuernsey                 PatchedSystemSettingsRequestTimeZone = "Europe/Guernsey"
	PatchedSystemSettingsRequestTimeZoneEuropeHelsinki                 PatchedSystemSettingsRequestTimeZone = "Europe/Helsinki"
	PatchedSystemSettingsRequestTimeZoneEuropeIsleOfMan                PatchedSystemSettingsRequestTimeZone = "Europe/Isle_of_Man"
	PatchedSystemSettingsRequestTimeZoneEuropeIstanbul                 PatchedSystemSettingsRequestTimeZone = "Europe/Istanbul"
	PatchedSystemSettingsRequestTimeZoneEuropeJersey                   PatchedSystemSettingsRequestTimeZone = "Europe/Jersey"
	PatchedSystemSettingsRequestTimeZoneEuropeKaliningrad              PatchedSystemSettingsRequestTimeZone = "Europe/Kaliningrad"
	PatchedSystemSettingsRequestTimeZoneEuropeKiev                     PatchedSystemSettingsRequestTimeZone = "Europe/Kiev"
	PatchedSystemSettingsRequestTimeZoneEuropeKirov                    PatchedSystemSettingsRequestTimeZone = "Europe/Kirov"
	PatchedSystemSettingsRequestTimeZoneEuropeKyiv                     PatchedSystemSettingsRequestTimeZone = "Europe/Kyiv"
	PatchedSystemSettingsRequestTimeZoneEuropeLisbon                   PatchedSystemSettingsRequestTimeZone = "Europe/Lisbon"
	PatchedSystemSettingsRequestTimeZoneEuropeLjubljana                PatchedSystemSettingsRequestTimeZone = "Europe/Ljubljana"
	PatchedSystemSettingsRequestTimeZoneEuropeLondon                   PatchedSystemSettingsRequestTimeZone = "Europe/London"
	PatchedSystemSettingsRequestTimeZoneEuropeLuxembourg               PatchedSystemSettingsRequestTimeZone = "Europe/Luxembourg"
	PatchedSystemSettingsRequestTimeZoneEuropeMadrid                   PatchedSystemSettingsRequestTimeZone = "Europe/Madrid"
	PatchedSystemSettingsRequestTimeZoneEuropeMalta                    PatchedSystemSettingsRequestTimeZone = "Europe/Malta"
	PatchedSystemSettingsRequestTimeZoneEuropeMariehamn                PatchedSystemSettingsRequestTimeZone = "Europe/Mariehamn"
	PatchedSystemSettingsRequestTimeZoneEuropeMinsk                    PatchedSystemSettingsRequestTimeZone = "Europe/Minsk"
	PatchedSystemSettingsRequestTimeZoneEuropeMonaco                   PatchedSystemSettingsRequestTimeZone = "Europe/Monaco"
	PatchedSystemSettingsRequestTimeZoneEuropeMoscow                   PatchedSystemSettingsRequestTimeZone = "Europe/Moscow"
	PatchedSystemSettingsRequestTimeZoneEuropeNicosia                  PatchedSystemSettingsRequestTimeZone = "Europe/Nicosia"
	PatchedSystemSettingsRequestTimeZoneEuropeOslo                     PatchedSystemSettingsRequestTimeZone = "Europe/Oslo"
	PatchedSystemSettingsRequestTimeZoneEuropeParis                    PatchedSystemSettingsRequestTimeZone = "Europe/Paris"
	PatchedSystemSettingsRequestTimeZoneEuropePodgorica                PatchedSystemSettingsRequestTimeZone = "Europe/Podgorica"
	PatchedSystemSettingsRequestTimeZoneEuropePrague                   PatchedSystemSettingsRequestTimeZone = "Europe/Prague"
	PatchedSystemSettingsRequestTimeZoneEuropeRiga                     PatchedSystemSettingsRequestTimeZone = "Europe/Riga"
	PatchedSystemSettingsRequestTimeZoneEuropeRome                     PatchedSystemSettingsRequestTimeZone = "Europe/Rome"
	PatchedSystemSettingsRequestTimeZoneEuropeSamara                   PatchedSystemSettingsRequestTimeZone = "Europe/Samara"
	PatchedSystemSettingsRequestTimeZoneEuropeSanMarino                PatchedSystemSettingsRequestTimeZone = "Europe/San_Marino"
	PatchedSystemSettingsRequestTimeZoneEuropeSarajevo                 PatchedSystemSettingsRequestTimeZone = "Europe/Sarajevo"
	PatchedSystemSettingsRequestTimeZoneEuropeSaratov                  PatchedSystemSettingsRequestTimeZone = "Europe/Saratov"
	PatchedSystemSettingsRequestTimeZoneEuropeSimferopol               PatchedSystemSettingsRequestTimeZone = "Europe/Simferopol"
	PatchedSystemSettingsRequestTimeZoneEuropeSkopje                   PatchedSystemSettingsRequestTimeZone = "Europe/Skopje"
	PatchedSystemSettingsRequestTimeZoneEuropeSofia                    PatchedSystemSettingsRequestTimeZone = "Europe/Sofia"
	PatchedSystemSettingsRequestTimeZoneEuropeStockholm                PatchedSystemSettingsRequestTimeZone = "Europe/Stockholm"
	PatchedSystemSettingsRequestTimeZoneEuropeTallinn                  PatchedSystemSettingsRequestTimeZone = "Europe/Tallinn"
	PatchedSystemSettingsRequestTimeZoneEuropeTirane                   PatchedSystemSettingsRequestTimeZone = "Europe/Tirane"
	PatchedSystemSettingsRequestTimeZoneEuropeTiraspol                 PatchedSystemSettingsRequestTimeZone = "Europe/Tiraspol"
	PatchedSystemSettingsRequestTimeZoneEuropeUlyanovsk                PatchedSystemSettingsRequestTimeZone = "Europe/Ulyanovsk"
	PatchedSystemSettingsRequestTimeZoneEuropeUzhgorod                 PatchedSystemSettingsRequestTimeZone = "Europe/Uzhgorod"
	PatchedSystemSettingsRequestTimeZoneEuropeVaduz                    PatchedSystemSettingsRequestTimeZone = "Europe/Vaduz"
	PatchedSystemSettingsRequestTimeZoneEuropeVatican                  PatchedSystemSettingsRequestTimeZone = "Europe/Vatican"
	PatchedSystemSettingsRequestTimeZoneEuropeVienna                   PatchedSystemSettingsRequestTimeZone = "Europe/Vienna"
	PatchedSystemSettingsRequestTimeZoneEuropeVilnius                  PatchedSystemSettingsRequestTimeZone = "Europe/Vilnius"
	PatchedSystemSettingsRequestTimeZoneEuropeVolgograd                PatchedSystemSettingsRequestTimeZone = "Europe/Volgograd"
	PatchedSystemSettingsRequestTimeZoneEuropeWarsaw                   PatchedSystemSettingsRequestTimeZone = "Europe/Warsaw"
	PatchedSystemSettingsRequestTimeZoneEuropeZagreb                   PatchedSystemSettingsRequestTimeZone = "Europe/Zagreb"
	PatchedSystemSettingsRequestTimeZoneEuropeZaporozhye               PatchedSystemSettingsRequestTimeZone = "Europe/Zaporozhye"
	PatchedSystemSettingsRequestTimeZoneEuropeZurich                   PatchedSystemSettingsRequestTimeZone = "Europe/Zurich"
	PatchedSystemSettingsRequestTimeZoneGB                             PatchedSystemSettingsRequestTimeZone = "GB"
	PatchedSystemSettingsRequestTimeZoneGBEire                         PatchedSystemSettingsRequestTimeZone = "GB-Eire"
	PatchedSystemSettingsRequestTimeZoneGMT                            PatchedSystemSettingsRequestTimeZone = "GMT"
	PatchedSystemSettingsRequestTimeZoneGMT0                           PatchedSystemSettingsRequestTimeZone = "GMT+0"
	PatchedSystemSettingsRequestTimeZoneGMT01                          PatchedSystemSettingsRequestTimeZone = "GMT-0"
	PatchedSystemSettingsRequestTimeZoneGMT02                          PatchedSystemSettingsRequestTimeZone = "GMT0"
	PatchedSystemSettingsRequestTimeZoneGreenwich                      PatchedSystemSettingsRequestTimeZone = "Greenwich"
	PatchedSystemSettingsRequestTimeZoneHST                            PatchedSystemSettingsRequestTimeZone = "HST"
	PatchedSystemSettingsRequestTimeZoneHongkong                       PatchedSystemSettingsRequestTimeZone = "Hongkong"
	PatchedSystemSettingsRequestTimeZoneIceland                        PatchedSystemSettingsRequestTimeZone = "Iceland"
	PatchedSystemSettingsRequestTimeZoneIndianAntananarivo             PatchedSystemSettingsRequestTimeZone = "Indian/Antananarivo"
	PatchedSystemSettingsRequestTimeZoneIndianChagos                   PatchedSystemSettingsRequestTimeZone = "Indian/Chagos"
	PatchedSystemSettingsRequestTimeZoneIndianChristmas                PatchedSystemSettingsRequestTimeZone = "Indian/Christmas"
	PatchedSystemSettingsRequestTimeZoneIndianCocos                    PatchedSystemSettingsRequestTimeZone = "Indian/Cocos"
	PatchedSystemSettingsRequestTimeZoneIndianComoro                   PatchedSystemSettingsRequestTimeZone = "Indian/Comoro"
	PatchedSystemSettingsRequestTimeZoneIndianKerguelen                PatchedSystemSettingsRequestTimeZone = "Indian/Kerguelen"
	PatchedSystemSettingsRequestTimeZoneIndianMahe                     PatchedSystemSettingsRequestTimeZone = "Indian/Mahe"
	PatchedSystemSettingsRequestTimeZoneIndianMaldives                 PatchedSystemSettingsRequestTimeZone = "Indian/Maldives"
	PatchedSystemSettingsRequestTimeZoneIndianMauritius                PatchedSystemSettingsRequestTimeZone = "Indian/Mauritius"
	PatchedSystemSettingsRequestTimeZoneIndianMayotte                  PatchedSystemSettingsRequestTimeZone = "Indian/Mayotte"
	PatchedSystemSettingsRequestTimeZoneIndianReunion                  PatchedSystemSettingsRequestTimeZone = "Indian/Reunion"
	PatchedSystemSettingsRequestTimeZoneIran                           PatchedSystemSettingsRequestTimeZone = "Iran"
	PatchedSystemSettingsRequestTimeZoneIsrael                         PatchedSystemSettingsRequestTimeZone = "Israel"
	PatchedSystemSettingsRequestTimeZoneJamaica                        PatchedSystemSettingsRequestTimeZone = "Jamaica"
	PatchedSystemSettingsRequestTimeZoneJapan                          PatchedSystemSettingsRequestTimeZone = "Japan"
	PatchedSystemSettingsRequestTimeZoneKwajalein                      PatchedSystemSettingsRequestTimeZone = "Kwajalein"
	PatchedSystemSettingsRequestTimeZoneLibya                          PatchedSystemSettingsRequestTimeZone = "Libya"
	PatchedSystemSettingsRequestTimeZoneMET                            PatchedSystemSettingsRequestTimeZone = "MET"
	PatchedSystemSettingsRequestTimeZoneMST                            PatchedSystemSettingsRequestTimeZone = "MST"
	PatchedSystemSettingsRequestTimeZoneMST7MDT                        PatchedSystemSettingsRequestTimeZone = "MST7MDT"
	PatchedSystemSettingsRequestTimeZoneMexicoBajaNorte                PatchedSystemSettingsRequestTimeZone = "Mexico/BajaNorte"
	PatchedSystemSettingsRequestTimeZoneMexicoBajaSur                  PatchedSystemSettingsRequestTimeZone = "Mexico/BajaSur"
	PatchedSystemSettingsRequestTimeZoneMexicoGeneral                  PatchedSystemSettingsRequestTimeZone = "Mexico/General"
	PatchedSystemSettingsRequestTimeZoneNZ                             PatchedSystemSettingsRequestTimeZone = "NZ"
	PatchedSystemSettingsRequestTimeZoneNZCHAT                         PatchedSystemSettingsRequestTimeZone = "NZ-CHAT"
	PatchedSystemSettingsRequestTimeZoneNavajo                         PatchedSystemSettingsRequestTimeZone = "Navajo"
	PatchedSystemSettingsRequestTimeZonePRC                            PatchedSystemSettingsRequestTimeZone = "PRC"
	PatchedSystemSettingsRequestTimeZonePST8PDT                        PatchedSystemSettingsRequestTimeZone = "PST8PDT"
	PatchedSystemSettingsRequestTimeZonePacificApia                    PatchedSystemSettingsRequestTimeZone = "Pacific/Apia"
	PatchedSystemSettingsRequestTimeZonePacificAuckland                PatchedSystemSettingsRequestTimeZone = "Pacific/Auckland"
	PatchedSystemSettingsRequestTimeZonePacificBougainville            PatchedSystemSettingsRequestTimeZone = "Pacific/Bougainville"
	PatchedSystemSettingsRequestTimeZonePacificChatham                 PatchedSystemSettingsRequestTimeZone = "Pacific/Chatham"
	PatchedSystemSettingsRequestTimeZonePacificChuuk                   PatchedSystemSettingsRequestTimeZone = "Pacific/Chuuk"
	PatchedSystemSettingsRequestTimeZonePacificEaster                  PatchedSystemSettingsRequestTimeZone = "Pacific/Easter"
	PatchedSystemSettingsRequestTimeZonePacificEfate                   PatchedSystemSettingsRequestTimeZone = "Pacific/Efate"
	PatchedSystemSettingsRequestTimeZonePacificEnderbury               PatchedSystemSettingsRequestTimeZone = "Pacific/Enderbury"
	PatchedSystemSettingsRequestTimeZonePacificFakaofo                 PatchedSystemSettingsRequestTimeZone = "Pacific/Fakaofo"
	PatchedSystemSettingsRequestTimeZonePacificFiji                    PatchedSystemSettingsRequestTimeZone = "Pacific/Fiji"
	PatchedSystemSettingsRequestTimeZonePacificFunafuti                PatchedSystemSettingsRequestTimeZone = "Pacific/Funafuti"
	PatchedSystemSettingsRequestTimeZonePacificGalapagos               PatchedSystemSettingsRequestTimeZone = "Pacific/Galapagos"
	PatchedSystemSettingsRequestTimeZonePacificGambier                 PatchedSystemSettingsRequestTimeZone = "Pacific/Gambier"
	PatchedSystemSettingsRequestTimeZonePacificGuadalcanal             PatchedSystemSettingsRequestTimeZone = "Pacific/Guadalcanal"
	PatchedSystemSettingsRequestTimeZonePacificGuam                    PatchedSystemSettingsRequestTimeZone = "Pacific/Guam"
	PatchedSystemSettingsRequestTimeZonePacificHonolulu                PatchedSystemSettingsRequestTimeZone = "Pacific/Honolulu"
	PatchedSystemSettingsRequestTimeZonePacificJohnston                PatchedSystemSettingsRequestTimeZone = "Pacific/Johnston"
	PatchedSystemSettingsRequestTimeZonePacificKanton                  PatchedSystemSettingsRequestTimeZone = "Pacific/Kanton"
	PatchedSystemSettingsRequestTimeZonePacificKiritimati              PatchedSystemSettingsRequestTimeZone = "Pacific/Kiritimati"
	PatchedSystemSettingsRequestTimeZonePacificKosrae                  PatchedSystemSettingsRequestTimeZone = "Pacific/Kosrae"
	PatchedSystemSettingsRequestTimeZonePacificKwajalein               PatchedSystemSettingsRequestTimeZone = "Pacific/Kwajalein"
	PatchedSystemSettingsRequestTimeZonePacificMajuro                  PatchedSystemSettingsRequestTimeZone = "Pacific/Majuro"
	PatchedSystemSettingsRequestTimeZonePacificMarquesas               PatchedSystemSettingsRequestTimeZone = "Pacific/Marquesas"
	PatchedSystemSettingsRequestTimeZonePacificMidway                  PatchedSystemSettingsRequestTimeZone = "Pacific/Midway"
	PatchedSystemSettingsRequestTimeZonePacificNauru                   PatchedSystemSettingsRequestTimeZone = "Pacific/Nauru"
	PatchedSystemSettingsRequestTimeZonePacificNiue                    PatchedSystemSettingsRequestTimeZone = "Pacific/Niue"
	PatchedSystemSettingsRequestTimeZonePacificNorfolk                 PatchedSystemSettingsRequestTimeZone = "Pacific/Norfolk"
	PatchedSystemSettingsRequestTimeZonePacificNoumea                  PatchedSystemSettingsRequestTimeZone = "Pacific/Noumea"
	PatchedSystemSettingsRequestTimeZonePacificPagoPago                PatchedSystemSettingsRequestTimeZone = "Pacific/Pago_Pago"
	PatchedSystemSettingsRequestTimeZonePacificPalau                   PatchedSystemSettingsRequestTimeZone = "Pacific/Palau"
	PatchedSystemSettingsRequestTimeZonePacificPitcairn                PatchedSystemSettingsRequestTimeZone = "Pacific/Pitcairn"
	PatchedSystemSettingsRequestTimeZonePacificPohnpei                 PatchedSystemSettingsRequestTimeZone = "Pacific/Pohnpei"
	PatchedSystemSettingsRequestTimeZonePacificPonape                  PatchedSystemSettingsRequestTimeZone = "Pacific/Ponape"
	PatchedSystemSettingsRequestTimeZonePacificPortMoresby             PatchedSystemSettingsRequestTimeZone = "Pacific/Port_Moresby"
	PatchedSystemSettingsRequestTimeZonePacificRarotonga               PatchedSystemSettingsRequestTimeZone = "Pacific/Rarotonga"
	PatchedSystemSettingsRequestTimeZonePacificSaipan                  PatchedSystemSettingsRequestTimeZone = "Pacific/Saipan"
	PatchedSystemSettingsRequestTimeZonePacificSamoa                   PatchedSystemSettingsRequestTimeZone = "Pacific/Samoa"
	PatchedSystemSettingsRequestTimeZonePacificTahiti                  PatchedSystemSettingsRequestTimeZone = "Pacific/Tahiti"
	PatchedSystemSettingsRequestTimeZonePacificTarawa                  PatchedSystemSettingsRequestTimeZone = "Pacific/Tarawa"
	PatchedSystemSettingsRequestTimeZonePacificTongatapu               PatchedSystemSettingsRequestTimeZone = "Pacific/Tongatapu"
	PatchedSystemSettingsRequestTimeZonePacificTruk                    PatchedSystemSettingsRequestTimeZone = "Pacific/Truk"
	PatchedSystemSettingsRequestTimeZonePacificWake                    PatchedSystemSettingsRequestTimeZone = "Pacific/Wake"
	PatchedSystemSettingsRequestTimeZonePacificWallis                  PatchedSystemSettingsRequestTimeZone = "Pacific/Wallis"
	PatchedSystemSettingsRequestTimeZonePacificYap                     PatchedSystemSettingsRequestTimeZone = "Pacific/Yap"
	PatchedSystemSettingsRequestTimeZonePoland                         PatchedSystemSettingsRequestTimeZone = "Poland"
	PatchedSystemSettingsRequestTimeZonePortugal                       PatchedSystemSettingsRequestTimeZone = "Portugal"
	PatchedSystemSettingsRequestTimeZoneROC                            PatchedSystemSettingsRequestTimeZone = "ROC"
	PatchedSystemSettingsRequestTimeZoneROK                            PatchedSystemSettingsRequestTimeZone = "ROK"
	PatchedSystemSettingsRequestTimeZoneSingapore                      PatchedSystemSettingsRequestTimeZone = "Singapore"
	PatchedSystemSettingsRequestTimeZoneTurkey                         PatchedSystemSettingsRequestTimeZone = "Turkey"
	PatchedSystemSettingsRequestTimeZoneUCT                            PatchedSystemSettingsRequestTimeZone = "UCT"
	PatchedSystemSettingsRequestTimeZoneUSAlaska                       PatchedSystemSettingsRequestTimeZone = "US/Alaska"
	PatchedSystemSettingsRequestTimeZoneUSAleutian                     PatchedSystemSettingsRequestTimeZone = "US/Aleutian"
	PatchedSystemSettingsRequestTimeZoneUSArizona                      PatchedSystemSettingsRequestTimeZone = "US/Arizona"
	PatchedSystemSettingsRequestTimeZoneUSCentral                      PatchedSystemSettingsRequestTimeZone = "US/Central"
	PatchedSystemSettingsRequestTimeZoneUSEastIndiana                  PatchedSystemSettingsRequestTimeZone = "US/East-Indiana"
	PatchedSystemSettingsRequestTimeZoneUSEastern                      PatchedSystemSettingsRequestTimeZone = "US/Eastern"
	PatchedSystemSettingsRequestTimeZoneUSHawaii                       PatchedSystemSettingsRequestTimeZone = "US/Hawaii"
	PatchedSystemSettingsRequestTimeZoneUSIndianaStarke                PatchedSystemSettingsRequestTimeZone = "US/Indiana-Starke"
	PatchedSystemSettingsRequestTimeZoneUSMichigan                     PatchedSystemSettingsRequestTimeZone = "US/Michigan"
	PatchedSystemSettingsRequestTimeZoneUSMountain                     PatchedSystemSettingsRequestTimeZone = "US/Mountain"
	PatchedSystemSettingsRequestTimeZoneUSPacific                      PatchedSystemSettingsRequestTimeZone = "US/Pacific"
	PatchedSystemSettingsRequestTimeZoneUSSamoa                        PatchedSystemSettingsRequestTimeZone = "US/Samoa"
	PatchedSystemSettingsRequestTimeZoneUTC                            PatchedSystemSettingsRequestTimeZone = "UTC"
	PatchedSystemSettingsRequestTimeZoneUniversal                      PatchedSystemSettingsRequestTimeZone = "Universal"
	PatchedSystemSettingsRequestTimeZoneWET                            PatchedSystemSettingsRequestTimeZone = "WET"
	PatchedSystemSettingsRequestTimeZoneWSU                            PatchedSystemSettingsRequestTimeZone = "W-SU"
	PatchedSystemSettingsRequestTimeZoneZulu                           PatchedSystemSettingsRequestTimeZone = "Zulu"
)

Defines values for PatchedSystemSettingsRequestTimeZone.

type PatchedTagRequest added in v0.2.0

type PatchedTagRequest struct {
	Tags *[]string `json:"tags,omitempty"`
}

PatchedTagRequest defines model for PatchedTagRequest.

type PatchedTestImportRequest added in v0.2.0

type PatchedTestImportRequest struct {
	// BranchTag Tag or branch that was tested, a reimport may update this field.
	BranchTag *string `json:"branch_tag"`

	// BuildId Build ID that was tested, a reimport may update this field.
	BuildId *string `json:"build_id"`

	// CommitHash Commit hash tested, a reimport may update this field.
	CommitHash     *string                 `json:"commit_hash"`
	ImportSettings *map[string]interface{} `json:"import_settings"`
	Type           *string                 `json:"type,omitempty"`
	Version        *string                 `json:"version"`
}

PatchedTestImportRequest defines model for PatchedTestImportRequest.

type PatchedTestRequest added in v0.2.0

type PatchedTestRequest struct {
	ApiScanConfiguration *int `json:"api_scan_configuration"`

	// BranchTag Tag or branch that was tested, a reimport may update this field.
	BranchTag *string `json:"branch_tag"`

	// BuildId Build ID that was tested, a reimport may update this field.
	BuildId *string `json:"build_id"`

	// CommitHash Commit hash tested, a reimport may update this field.
	CommitHash      *string    `json:"commit_hash"`
	Description     *string    `json:"description"`
	Environment     *int       `json:"environment"`
	Lead            *int       `json:"lead"`
	PercentComplete *int       `json:"percent_complete"`
	ScanType        *string    `json:"scan_type"`
	Tags            *[]string  `json:"tags,omitempty"`
	TargetEnd       *time.Time `json:"target_end,omitempty"`
	TargetStart     *time.Time `json:"target_start,omitempty"`
	TestType        *int       `json:"test_type,omitempty"`
	Title           *string    `json:"title"`
	Version         *string    `json:"version"`
}

PatchedTestRequest defines model for PatchedTestRequest.

type PatchedTestTypeRequest added in v0.2.0

type PatchedTestTypeRequest struct {
	Active      *bool     `json:"active,omitempty"`
	DynamicTool *bool     `json:"dynamic_tool,omitempty"`
	Name        *string   `json:"name,omitempty"`
	StaticTool  *bool     `json:"static_tool,omitempty"`
	Tags        *[]string `json:"tags,omitempty"`
}

PatchedTestTypeRequest defines model for PatchedTestTypeRequest.

type PatchedToolConfigurationRequest added in v0.2.0

type PatchedToolConfigurationRequest struct {
	ApiKey    *string `json:"api_key"`
	AuthTitle *string `json:"auth_title"`

	// AuthenticationType * `API` - API Key
	// * `Password` - Username/Password
	// * `SSH` - SSH
	AuthenticationType *PatchedToolConfigurationRequestAuthenticationType `json:"authentication_type"`
	Description        *string                                            `json:"description"`

	// Extras Additional definitions that will be consumed by scanner
	Extras   *string `json:"extras"`
	Name     *string `json:"name,omitempty"`
	Password *string `json:"password"`
	Ssh      *string `json:"ssh"`
	ToolType *int    `json:"tool_type,omitempty"`
	Url      *string `json:"url"`
	Username *string `json:"username"`
}

PatchedToolConfigurationRequest defines model for PatchedToolConfigurationRequest.

type PatchedToolConfigurationRequestAuthenticationType added in v0.2.0

type PatchedToolConfigurationRequestAuthenticationType string

PatchedToolConfigurationRequestAuthenticationType * `API` - API Key * `Password` - Username/Password * `SSH` - SSH

const (
	PatchedToolConfigurationRequestAuthenticationTypeAPI      PatchedToolConfigurationRequestAuthenticationType = "API"
	PatchedToolConfigurationRequestAuthenticationTypeEmpty    PatchedToolConfigurationRequestAuthenticationType = ""
	PatchedToolConfigurationRequestAuthenticationTypeNil      PatchedToolConfigurationRequestAuthenticationType = "<nil>"
	PatchedToolConfigurationRequestAuthenticationTypePassword PatchedToolConfigurationRequestAuthenticationType = "Password"
	PatchedToolConfigurationRequestAuthenticationTypeSSH      PatchedToolConfigurationRequestAuthenticationType = "SSH"
)

Defines values for PatchedToolConfigurationRequestAuthenticationType.

type PatchedToolProductSettingsRequest added in v0.2.0

type PatchedToolProductSettingsRequest struct {
	Description       *string `json:"description"`
	Name              *string `json:"name,omitempty"`
	Product           *int    `json:"product,omitempty"`
	SettingUrl        *string `json:"setting_url,omitempty"`
	ToolConfiguration *int    `json:"tool_configuration,omitempty"`
	ToolProjectId     *string `json:"tool_project_id"`
	Url               *string `json:"url"`
}

PatchedToolProductSettingsRequest defines model for PatchedToolProductSettingsRequest.

type PatchedToolTypeRequest added in v0.2.0

type PatchedToolTypeRequest struct {
	Description *string `json:"description"`
	Name        *string `json:"name,omitempty"`
}

PatchedToolTypeRequest defines model for PatchedToolTypeRequest.

type PatchedUserContactInfoRequest added in v0.2.0

type PatchedUserContactInfoRequest struct {
	// BlockExecution Instead of async deduping a finding the findings will be deduped synchronously and will 'block' the user until completion.
	BlockExecution *bool `json:"block_execution,omitempty"`

	// CellNumber Phone number must be entered in the format: '+999999999'. Up to 15 digits allowed.
	CellNumber *string `json:"cell_number,omitempty"`

	// ForcePasswordReset Forces this user to reset their password on next login.
	ForcePasswordReset *bool   `json:"force_password_reset,omitempty"`
	GithubUsername     *string `json:"github_username"`

	// PhoneNumber Phone number must be entered in the format: '+999999999'. Up to 15 digits allowed.
	PhoneNumber *string `json:"phone_number,omitempty"`
	SlackUserId *string `json:"slack_user_id"`

	// SlackUsername Email address associated with your slack account
	SlackUsername   *string `json:"slack_username"`
	Title           *string `json:"title"`
	TwitterUsername *string `json:"twitter_username"`
	User            *int    `json:"user,omitempty"`
}

PatchedUserContactInfoRequest defines model for PatchedUserContactInfoRequest.

type PatchedUserRequest added in v0.2.0

type PatchedUserRequest struct {
	ConfigurationPermissions *[]int               `json:"configuration_permissions,omitempty"`
	Email                    *openapi_types.Email `json:"email,omitempty"`
	FirstName                *string              `json:"first_name,omitempty"`

	// IsActive Designates whether this user should be treated as active. Unselect this instead of deleting accounts.
	IsActive *bool `json:"is_active,omitempty"`

	// IsSuperuser Designates that this user has all permissions without explicitly assigning them.
	IsSuperuser *bool   `json:"is_superuser,omitempty"`
	LastName    *string `json:"last_name,omitempty"`
	Password    *string `json:"password,omitempty"`

	// Username Required. 150 characters or fewer. Letters, digits and @/./+/-/_ only.
	Username *string `json:"username,omitempty"`
}

PatchedUserRequest defines model for PatchedUserRequest.

type Product

type Product struct {
	AuthorizationGroups *[]int `json:"authorization_groups,omitempty"`

	// BusinessCriticality * `very high` - Very High
	// * `high` - High
	// * `medium` - Medium
	// * `low` - Low
	// * `very low` - Very Low
	// * `none` - None
	BusinessCriticality *ProductBusinessCriticality `json:"business_criticality"`
	Created             *time.Time                  `json:"created"`
	Description         string                      `json:"description"`

	// DisableSlaBreachNotifications Disable SLA breach notifications if configured in the global settings
	DisableSlaBreachNotifications *bool `json:"disable_sla_breach_notifications,omitempty"`

	// EnableFullRiskAcceptance Allows full risk acceptance using a risk acceptance form, expiration date, uploaded proof, etc.
	EnableFullRiskAcceptance *bool `json:"enable_full_risk_acceptance,omitempty"`

	// EnableProductTagInheritance Enables product tag inheritance. Any tags added on a product will automatically be added to all Engagements, Tests, and Findings
	EnableProductTagInheritance *bool `json:"enable_product_tag_inheritance,omitempty"`

	// EnableSimpleRiskAcceptance Allows simple risk acceptance by checking/unchecking a checkbox.
	EnableSimpleRiskAcceptance *bool `json:"enable_simple_risk_acceptance,omitempty"`

	// ExternalAudience Specify if the application is used by people outside the organization.
	ExternalAudience *bool  `json:"external_audience,omitempty"`
	FindingsCount    *int   `json:"findings_count,omitempty"`
	FindingsList     *[]int `json:"findings_list,omitempty"`
	Id               *int   `json:"id,omitempty"`

	// InternetAccessible Specify if the application is accessible from the public internet.
	InternetAccessible *bool `json:"internet_accessible,omitempty"`

	// Lifecycle * `construction` - Construction
	// * `production` - Production
	// * `retirement` - Retirement
	Lifecycle *ProductLifecycle `json:"lifecycle"`
	Members   *[]int            `json:"members,omitempty"`
	Name      string            `json:"name"`

	// Origin * `third party library` - Third Party Library
	// * `purchased` - Purchased
	// * `contractor` - Contractor Developed
	// * `internal` - Internally Developed
	// * `open source` - Open Source
	// * `outsourced` - Outsourced
	Origin *ProductOrigin `json:"origin"`

	// Platform * `web service` - API
	// * `desktop` - Desktop
	// * `iot` - Internet of Things
	// * `mobile` - Mobile
	// * `web` - Web
	Platform *ProductPlatform `json:"platform"`
	Prefetch *struct {
		AuthorizationGroups *map[string]DojoGroup        `json:"authorization_groups,omitempty"`
		Members             *map[string]UserStub         `json:"members,omitempty"`
		ProdType            *map[string]ProductType      `json:"prod_type,omitempty"`
		ProductManager      *map[string]UserStub         `json:"product_manager,omitempty"`
		Regulations         *map[string]Regulation       `json:"regulations,omitempty"`
		SlaConfiguration    *map[string]SLAConfiguration `json:"sla_configuration,omitempty"`
		TeamManager         *map[string]UserStub         `json:"team_manager,omitempty"`
		TechnicalContact    *map[string]UserStub         `json:"technical_contact,omitempty"`
	} `json:"prefetch,omitempty"`
	ProdNumericGrade *int           `json:"prod_numeric_grade"`
	ProdType         int            `json:"prod_type"`
	ProductManager   *int           `json:"product_manager"`
	ProductMeta      *[]ProductMeta `json:"product_meta,omitempty"`
	Regulations      *[]int         `json:"regulations,omitempty"`

	// Revenue Estimate the application's revenue.
	Revenue          *string   `json:"revenue"`
	SlaConfiguration *int      `json:"sla_configuration,omitempty"`
	Tags             *[]string `json:"tags,omitempty"`
	TeamManager      *int      `json:"team_manager"`
	TechnicalContact *int      `json:"technical_contact"`

	// UserRecords Estimate the number of user records within the application.
	UserRecords *int `json:"user_records"`
}

Product defines model for Product.

type ProductAPIScanConfiguration

type ProductAPIScanConfiguration struct {
	Id                *int    `json:"id,omitempty"`
	Product           int     `json:"product"`
	ServiceKey1       *string `json:"service_key_1"`
	ServiceKey2       *string `json:"service_key_2"`
	ServiceKey3       *string `json:"service_key_3"`
	ToolConfiguration int     `json:"tool_configuration"`
}

ProductAPIScanConfiguration defines model for ProductAPIScanConfiguration.

type ProductAPIScanConfigurationRequest added in v0.2.0

type ProductAPIScanConfigurationRequest struct {
	Product           int     `json:"product"`
	ServiceKey1       *string `json:"service_key_1"`
	ServiceKey2       *string `json:"service_key_2"`
	ServiceKey3       *string `json:"service_key_3"`
	ToolConfiguration int     `json:"tool_configuration"`
}

ProductAPIScanConfigurationRequest defines model for ProductAPIScanConfigurationRequest.

type ProductApiScanConfigurationsCreateFormdataRequestBody added in v0.2.0

type ProductApiScanConfigurationsCreateFormdataRequestBody = ProductAPIScanConfigurationRequest

ProductApiScanConfigurationsCreateFormdataRequestBody defines body for ProductApiScanConfigurationsCreate for application/x-www-form-urlencoded ContentType.

type ProductApiScanConfigurationsCreateJSONRequestBody

type ProductApiScanConfigurationsCreateJSONRequestBody = ProductAPIScanConfigurationRequest

ProductApiScanConfigurationsCreateJSONRequestBody defines body for ProductApiScanConfigurationsCreate for application/json ContentType.

type ProductApiScanConfigurationsCreateMultipartRequestBody added in v0.2.0

type ProductApiScanConfigurationsCreateMultipartRequestBody = ProductAPIScanConfigurationRequest

ProductApiScanConfigurationsCreateMultipartRequestBody defines body for ProductApiScanConfigurationsCreate for multipart/form-data ContentType.

type ProductApiScanConfigurationsCreateResponse

type ProductApiScanConfigurationsCreateResponse struct {
	Body         []byte
	HTTPResponse *http.Response
	JSON201      *ProductAPIScanConfiguration
}

func ParseProductApiScanConfigurationsCreateResponse

func ParseProductApiScanConfigurationsCreateResponse(rsp *http.Response) (*ProductApiScanConfigurationsCreateResponse, error)

ParseProductApiScanConfigurationsCreateResponse parses an HTTP response from a ProductApiScanConfigurationsCreateWithResponse call

func (ProductApiScanConfigurationsCreateResponse) Status

Status returns HTTPResponse.Status

func (ProductApiScanConfigurationsCreateResponse) StatusCode

StatusCode returns HTTPResponse.StatusCode

type ProductApiScanConfigurationsDeletePreviewListParams added in v0.2.0

type ProductApiScanConfigurationsDeletePreviewListParams struct {
	// Limit Number of results to return per page.
	Limit *int `form:"limit,omitempty" json:"limit,omitempty"`

	// Offset The initial index from which to return the results.
	Offset *int `form:"offset,omitempty" json:"offset,omitempty"`
}

ProductApiScanConfigurationsDeletePreviewListParams defines parameters for ProductApiScanConfigurationsDeletePreviewList.

type ProductApiScanConfigurationsDeletePreviewListResponse added in v0.2.0

type ProductApiScanConfigurationsDeletePreviewListResponse struct {
	Body         []byte
	HTTPResponse *http.Response
	JSON200      *PaginatedDeletePreviewList
}

func ParseProductApiScanConfigurationsDeletePreviewListResponse added in v0.2.0

func ParseProductApiScanConfigurationsDeletePreviewListResponse(rsp *http.Response) (*ProductApiScanConfigurationsDeletePreviewListResponse, error)

ParseProductApiScanConfigurationsDeletePreviewListResponse parses an HTTP response from a ProductApiScanConfigurationsDeletePreviewListWithResponse call

func (ProductApiScanConfigurationsDeletePreviewListResponse) Status added in v0.2.0

Status returns HTTPResponse.Status

func (ProductApiScanConfigurationsDeletePreviewListResponse) StatusCode added in v0.2.0

StatusCode returns HTTPResponse.StatusCode

type ProductApiScanConfigurationsDestroyResponse

type ProductApiScanConfigurationsDestroyResponse struct {
	Body         []byte
	HTTPResponse *http.Response
}

func ParseProductApiScanConfigurationsDestroyResponse

func ParseProductApiScanConfigurationsDestroyResponse(rsp *http.Response) (*ProductApiScanConfigurationsDestroyResponse, error)

ParseProductApiScanConfigurationsDestroyResponse parses an HTTP response from a ProductApiScanConfigurationsDestroyWithResponse call

func (ProductApiScanConfigurationsDestroyResponse) Status

Status returns HTTPResponse.Status

func (ProductApiScanConfigurationsDestroyResponse) StatusCode

StatusCode returns HTTPResponse.StatusCode

type ProductApiScanConfigurationsListParams

type ProductApiScanConfigurationsListParams struct {
	Id *int `form:"id,omitempty" json:"id,omitempty"`

	// Limit Number of results to return per page.
	Limit *int `form:"limit,omitempty" json:"limit,omitempty"`

	// Offset The initial index from which to return the results.
	Offset            *int    `form:"offset,omitempty" json:"offset,omitempty"`
	Product           *int    `form:"product,omitempty" json:"product,omitempty"`
	ServiceKey1       *string `form:"service_key_1,omitempty" json:"service_key_1,omitempty"`
	ServiceKey2       *string `form:"service_key_2,omitempty" json:"service_key_2,omitempty"`
	ServiceKey3       *string `form:"service_key_3,omitempty" json:"service_key_3,omitempty"`
	ToolConfiguration *int    `form:"tool_configuration,omitempty" json:"tool_configuration,omitempty"`
}

ProductApiScanConfigurationsListParams defines parameters for ProductApiScanConfigurationsList.

type ProductApiScanConfigurationsListResponse

type ProductApiScanConfigurationsListResponse struct {
	Body         []byte
	HTTPResponse *http.Response
	JSON200      *PaginatedProductAPIScanConfigurationList
}

func ParseProductApiScanConfigurationsListResponse

func ParseProductApiScanConfigurationsListResponse(rsp *http.Response) (*ProductApiScanConfigurationsListResponse, error)

ParseProductApiScanConfigurationsListResponse parses an HTTP response from a ProductApiScanConfigurationsListWithResponse call

func (ProductApiScanConfigurationsListResponse) Status

Status returns HTTPResponse.Status

func (ProductApiScanConfigurationsListResponse) StatusCode

StatusCode returns HTTPResponse.StatusCode

type ProductApiScanConfigurationsPartialUpdateFormdataRequestBody added in v0.2.0

type ProductApiScanConfigurationsPartialUpdateFormdataRequestBody = PatchedProductAPIScanConfigurationRequest

ProductApiScanConfigurationsPartialUpdateFormdataRequestBody defines body for ProductApiScanConfigurationsPartialUpdate for application/x-www-form-urlencoded ContentType.

type ProductApiScanConfigurationsPartialUpdateJSONRequestBody

type ProductApiScanConfigurationsPartialUpdateJSONRequestBody = PatchedProductAPIScanConfigurationRequest

ProductApiScanConfigurationsPartialUpdateJSONRequestBody defines body for ProductApiScanConfigurationsPartialUpdate for application/json ContentType.

type ProductApiScanConfigurationsPartialUpdateMultipartRequestBody added in v0.2.0

type ProductApiScanConfigurationsPartialUpdateMultipartRequestBody = PatchedProductAPIScanConfigurationRequest

ProductApiScanConfigurationsPartialUpdateMultipartRequestBody defines body for ProductApiScanConfigurationsPartialUpdate for multipart/form-data ContentType.

type ProductApiScanConfigurationsPartialUpdateResponse

type ProductApiScanConfigurationsPartialUpdateResponse struct {
	Body         []byte
	HTTPResponse *http.Response
	JSON200      *ProductAPIScanConfiguration
}

func ParseProductApiScanConfigurationsPartialUpdateResponse

func ParseProductApiScanConfigurationsPartialUpdateResponse(rsp *http.Response) (*ProductApiScanConfigurationsPartialUpdateResponse, error)

ParseProductApiScanConfigurationsPartialUpdateResponse parses an HTTP response from a ProductApiScanConfigurationsPartialUpdateWithResponse call

func (ProductApiScanConfigurationsPartialUpdateResponse) Status

Status returns HTTPResponse.Status

func (ProductApiScanConfigurationsPartialUpdateResponse) StatusCode

StatusCode returns HTTPResponse.StatusCode

type ProductApiScanConfigurationsRetrieveResponse

type ProductApiScanConfigurationsRetrieveResponse struct {
	Body         []byte
	HTTPResponse *http.Response
	JSON200      *ProductAPIScanConfiguration
}

func ParseProductApiScanConfigurationsRetrieveResponse

func ParseProductApiScanConfigurationsRetrieveResponse(rsp *http.Response) (*ProductApiScanConfigurationsRetrieveResponse, error)

ParseProductApiScanConfigurationsRetrieveResponse parses an HTTP response from a ProductApiScanConfigurationsRetrieveWithResponse call

func (ProductApiScanConfigurationsRetrieveResponse) Status

Status returns HTTPResponse.Status

func (ProductApiScanConfigurationsRetrieveResponse) StatusCode

StatusCode returns HTTPResponse.StatusCode

type ProductApiScanConfigurationsUpdateFormdataRequestBody added in v0.2.0

type ProductApiScanConfigurationsUpdateFormdataRequestBody = ProductAPIScanConfigurationRequest

ProductApiScanConfigurationsUpdateFormdataRequestBody defines body for ProductApiScanConfigurationsUpdate for application/x-www-form-urlencoded ContentType.

type ProductApiScanConfigurationsUpdateJSONRequestBody

type ProductApiScanConfigurationsUpdateJSONRequestBody = ProductAPIScanConfigurationRequest

ProductApiScanConfigurationsUpdateJSONRequestBody defines body for ProductApiScanConfigurationsUpdate for application/json ContentType.

type ProductApiScanConfigurationsUpdateMultipartRequestBody added in v0.2.0

type ProductApiScanConfigurationsUpdateMultipartRequestBody = ProductAPIScanConfigurationRequest

ProductApiScanConfigurationsUpdateMultipartRequestBody defines body for ProductApiScanConfigurationsUpdate for multipart/form-data ContentType.

type ProductApiScanConfigurationsUpdateResponse

type ProductApiScanConfigurationsUpdateResponse struct {
	Body         []byte
	HTTPResponse *http.Response
	JSON200      *ProductAPIScanConfiguration
}

func ParseProductApiScanConfigurationsUpdateResponse

func ParseProductApiScanConfigurationsUpdateResponse(rsp *http.Response) (*ProductApiScanConfigurationsUpdateResponse, error)

ParseProductApiScanConfigurationsUpdateResponse parses an HTTP response from a ProductApiScanConfigurationsUpdateWithResponse call

func (ProductApiScanConfigurationsUpdateResponse) Status

Status returns HTTPResponse.Status

func (ProductApiScanConfigurationsUpdateResponse) StatusCode

StatusCode returns HTTPResponse.StatusCode

type ProductBusinessCriticality

type ProductBusinessCriticality string

ProductBusinessCriticality * `very high` - Very High * `high` - High * `medium` - Medium * `low` - Low * `very low` - Very Low * `none` - None

const (
	ProductBusinessCriticalityEmpty    ProductBusinessCriticality = ""
	ProductBusinessCriticalityHigh     ProductBusinessCriticality = "high"
	ProductBusinessCriticalityLow      ProductBusinessCriticality = "low"
	ProductBusinessCriticalityMedium   ProductBusinessCriticality = "medium"
	ProductBusinessCriticalityNil      ProductBusinessCriticality = "<nil>"
	ProductBusinessCriticalityNone     ProductBusinessCriticality = "none"
	ProductBusinessCriticalityVeryHigh ProductBusinessCriticality = "very high"
	ProductBusinessCriticalityVeryLow  ProductBusinessCriticality = "very low"
)

Defines values for ProductBusinessCriticality.

type ProductGroup

type ProductGroup struct {
	Group    int  `json:"group"`
	Id       *int `json:"id,omitempty"`
	Prefetch *struct {
		Group   *map[string]DojoGroup `json:"group,omitempty"`
		Product *map[string]Product   `json:"product,omitempty"`
		Role    *map[string]Role      `json:"role,omitempty"`
	} `json:"prefetch,omitempty"`
	Product int `json:"product"`
	Role    int `json:"role"`
}

ProductGroup defines model for ProductGroup.

type ProductGroupRequest added in v0.2.0

type ProductGroupRequest struct {
	Group   int `json:"group"`
	Product int `json:"product"`
	Role    int `json:"role"`
}

ProductGroupRequest defines model for ProductGroupRequest.

type ProductGroupsCreateFormdataRequestBody added in v0.2.0

type ProductGroupsCreateFormdataRequestBody = ProductGroupRequest

ProductGroupsCreateFormdataRequestBody defines body for ProductGroupsCreate for application/x-www-form-urlencoded ContentType.

type ProductGroupsCreateJSONRequestBody

type ProductGroupsCreateJSONRequestBody = ProductGroupRequest

ProductGroupsCreateJSONRequestBody defines body for ProductGroupsCreate for application/json ContentType.

type ProductGroupsCreateMultipartRequestBody added in v0.2.0

type ProductGroupsCreateMultipartRequestBody = ProductGroupRequest

ProductGroupsCreateMultipartRequestBody defines body for ProductGroupsCreate for multipart/form-data ContentType.

type ProductGroupsCreateResponse

type ProductGroupsCreateResponse struct {
	Body         []byte
	HTTPResponse *http.Response
	JSON201      *ProductGroup
}

func ParseProductGroupsCreateResponse

func ParseProductGroupsCreateResponse(rsp *http.Response) (*ProductGroupsCreateResponse, error)

ParseProductGroupsCreateResponse parses an HTTP response from a ProductGroupsCreateWithResponse call

func (ProductGroupsCreateResponse) Status

Status returns HTTPResponse.Status

func (ProductGroupsCreateResponse) StatusCode

func (r ProductGroupsCreateResponse) StatusCode() int

StatusCode returns HTTPResponse.StatusCode

type ProductGroupsDeletePreviewListParams added in v0.2.0

type ProductGroupsDeletePreviewListParams struct {
	// Limit Number of results to return per page.
	Limit *int `form:"limit,omitempty" json:"limit,omitempty"`

	// Offset The initial index from which to return the results.
	Offset *int `form:"offset,omitempty" json:"offset,omitempty"`
}

ProductGroupsDeletePreviewListParams defines parameters for ProductGroupsDeletePreviewList.

type ProductGroupsDeletePreviewListResponse added in v0.2.0

type ProductGroupsDeletePreviewListResponse struct {
	Body         []byte
	HTTPResponse *http.Response
	JSON200      *PaginatedDeletePreviewList
}

func ParseProductGroupsDeletePreviewListResponse added in v0.2.0

func ParseProductGroupsDeletePreviewListResponse(rsp *http.Response) (*ProductGroupsDeletePreviewListResponse, error)

ParseProductGroupsDeletePreviewListResponse parses an HTTP response from a ProductGroupsDeletePreviewListWithResponse call

func (ProductGroupsDeletePreviewListResponse) Status added in v0.2.0

Status returns HTTPResponse.Status

func (ProductGroupsDeletePreviewListResponse) StatusCode added in v0.2.0

StatusCode returns HTTPResponse.StatusCode

type ProductGroupsDestroyResponse

type ProductGroupsDestroyResponse struct {
	Body         []byte
	HTTPResponse *http.Response
}

func ParseProductGroupsDestroyResponse

func ParseProductGroupsDestroyResponse(rsp *http.Response) (*ProductGroupsDestroyResponse, error)

ParseProductGroupsDestroyResponse parses an HTTP response from a ProductGroupsDestroyWithResponse call

func (ProductGroupsDestroyResponse) Status

Status returns HTTPResponse.Status

func (ProductGroupsDestroyResponse) StatusCode

func (r ProductGroupsDestroyResponse) StatusCode() int

StatusCode returns HTTPResponse.StatusCode

type ProductGroupsListParams

type ProductGroupsListParams struct {
	GroupId *int `form:"group_id,omitempty" json:"group_id,omitempty"`
	Id      *int `form:"id,omitempty" json:"id,omitempty"`

	// Limit Number of results to return per page.
	Limit *int `form:"limit,omitempty" json:"limit,omitempty"`

	// Offset The initial index from which to return the results.
	Offset *int `form:"offset,omitempty" json:"offset,omitempty"`

	// Prefetch List of fields for which to prefetch model instances and add those to the response
	Prefetch  *[]ProductGroupsListParamsPrefetch `form:"prefetch,omitempty" json:"prefetch,omitempty"`
	ProductId *int                               `form:"product_id,omitempty" json:"product_id,omitempty"`
}

ProductGroupsListParams defines parameters for ProductGroupsList.

type ProductGroupsListParamsPrefetch

type ProductGroupsListParamsPrefetch string

ProductGroupsListParamsPrefetch defines parameters for ProductGroupsList.

const (
	ProductGroupsListParamsPrefetchGroup   ProductGroupsListParamsPrefetch = "group"
	ProductGroupsListParamsPrefetchProduct ProductGroupsListParamsPrefetch = "product"
	ProductGroupsListParamsPrefetchRole    ProductGroupsListParamsPrefetch = "role"
)

Defines values for ProductGroupsListParamsPrefetch.

type ProductGroupsListResponse

type ProductGroupsListResponse struct {
	Body         []byte
	HTTPResponse *http.Response
	JSON200      *PaginatedProductGroupList
}

func ParseProductGroupsListResponse

func ParseProductGroupsListResponse(rsp *http.Response) (*ProductGroupsListResponse, error)

ParseProductGroupsListResponse parses an HTTP response from a ProductGroupsListWithResponse call

func (ProductGroupsListResponse) Status

func (r ProductGroupsListResponse) Status() string

Status returns HTTPResponse.Status

func (ProductGroupsListResponse) StatusCode

func (r ProductGroupsListResponse) StatusCode() int

StatusCode returns HTTPResponse.StatusCode

type ProductGroupsPartialUpdateResponse

type ProductGroupsPartialUpdateResponse struct {
	Body         []byte
	HTTPResponse *http.Response
}

func ParseProductGroupsPartialUpdateResponse

func ParseProductGroupsPartialUpdateResponse(rsp *http.Response) (*ProductGroupsPartialUpdateResponse, error)

ParseProductGroupsPartialUpdateResponse parses an HTTP response from a ProductGroupsPartialUpdateWithResponse call

func (ProductGroupsPartialUpdateResponse) Status

Status returns HTTPResponse.Status

func (ProductGroupsPartialUpdateResponse) StatusCode

func (r ProductGroupsPartialUpdateResponse) StatusCode() int

StatusCode returns HTTPResponse.StatusCode

type ProductGroupsRetrieveParams

type ProductGroupsRetrieveParams struct {
	// Prefetch List of fields for which to prefetch model instances and add those to the response
	Prefetch *[]ProductGroupsRetrieveParamsPrefetch `form:"prefetch,omitempty" json:"prefetch,omitempty"`
}

ProductGroupsRetrieveParams defines parameters for ProductGroupsRetrieve.

type ProductGroupsRetrieveParamsPrefetch

type ProductGroupsRetrieveParamsPrefetch string

ProductGroupsRetrieveParamsPrefetch defines parameters for ProductGroupsRetrieve.

const (
	ProductGroupsRetrieveParamsPrefetchGroup   ProductGroupsRetrieveParamsPrefetch = "group"
	ProductGroupsRetrieveParamsPrefetchProduct ProductGroupsRetrieveParamsPrefetch = "product"
	ProductGroupsRetrieveParamsPrefetchRole    ProductGroupsRetrieveParamsPrefetch = "role"
)

Defines values for ProductGroupsRetrieveParamsPrefetch.

type ProductGroupsRetrieveResponse

type ProductGroupsRetrieveResponse struct {
	Body         []byte
	HTTPResponse *http.Response
	JSON200      *ProductGroup
}

func ParseProductGroupsRetrieveResponse

func ParseProductGroupsRetrieveResponse(rsp *http.Response) (*ProductGroupsRetrieveResponse, error)

ParseProductGroupsRetrieveResponse parses an HTTP response from a ProductGroupsRetrieveWithResponse call

func (ProductGroupsRetrieveResponse) Status

Status returns HTTPResponse.Status

func (ProductGroupsRetrieveResponse) StatusCode

func (r ProductGroupsRetrieveResponse) StatusCode() int

StatusCode returns HTTPResponse.StatusCode

type ProductGroupsUpdateFormdataRequestBody added in v0.2.0

type ProductGroupsUpdateFormdataRequestBody = ProductGroupRequest

ProductGroupsUpdateFormdataRequestBody defines body for ProductGroupsUpdate for application/x-www-form-urlencoded ContentType.

type ProductGroupsUpdateJSONRequestBody

type ProductGroupsUpdateJSONRequestBody = ProductGroupRequest

ProductGroupsUpdateJSONRequestBody defines body for ProductGroupsUpdate for application/json ContentType.

type ProductGroupsUpdateMultipartRequestBody added in v0.2.0

type ProductGroupsUpdateMultipartRequestBody = ProductGroupRequest

ProductGroupsUpdateMultipartRequestBody defines body for ProductGroupsUpdate for multipart/form-data ContentType.

type ProductGroupsUpdateResponse

type ProductGroupsUpdateResponse struct {
	Body         []byte
	HTTPResponse *http.Response
	JSON200      *ProductGroup
}

func ParseProductGroupsUpdateResponse

func ParseProductGroupsUpdateResponse(rsp *http.Response) (*ProductGroupsUpdateResponse, error)

ParseProductGroupsUpdateResponse parses an HTTP response from a ProductGroupsUpdateWithResponse call

func (ProductGroupsUpdateResponse) Status

Status returns HTTPResponse.Status

func (ProductGroupsUpdateResponse) StatusCode

func (r ProductGroupsUpdateResponse) StatusCode() int

StatusCode returns HTTPResponse.StatusCode

type ProductLifecycle

type ProductLifecycle string

ProductLifecycle * `construction` - Construction * `production` - Production * `retirement` - Retirement

const (
	ProductLifecycleConstruction ProductLifecycle = "construction"
	ProductLifecycleEmpty        ProductLifecycle = ""
	ProductLifecycleNil          ProductLifecycle = "<nil>"
	ProductLifecycleProduction   ProductLifecycle = "production"
	ProductLifecycleRetirement   ProductLifecycle = "retirement"
)

Defines values for ProductLifecycle.

type ProductMember

type ProductMember struct {
	Id       *int `json:"id,omitempty"`
	Prefetch *struct {
		Product *map[string]Product  `json:"product,omitempty"`
		Role    *map[string]Role     `json:"role,omitempty"`
		User    *map[string]UserStub `json:"user,omitempty"`
	} `json:"prefetch,omitempty"`
	Product int `json:"product"`
	Role    int `json:"role"`
	User    int `json:"user"`
}

ProductMember defines model for ProductMember.

type ProductMemberRequest added in v0.2.0

type ProductMemberRequest struct {
	Product int `json:"product"`
	Role    int `json:"role"`
	User    int `json:"user"`
}

ProductMemberRequest defines model for ProductMemberRequest.

type ProductMembersCreateFormdataRequestBody added in v0.2.0

type ProductMembersCreateFormdataRequestBody = ProductMemberRequest

ProductMembersCreateFormdataRequestBody defines body for ProductMembersCreate for application/x-www-form-urlencoded ContentType.

type ProductMembersCreateJSONRequestBody

type ProductMembersCreateJSONRequestBody = ProductMemberRequest

ProductMembersCreateJSONRequestBody defines body for ProductMembersCreate for application/json ContentType.

type ProductMembersCreateMultipartRequestBody added in v0.2.0

type ProductMembersCreateMultipartRequestBody = ProductMemberRequest

ProductMembersCreateMultipartRequestBody defines body for ProductMembersCreate for multipart/form-data ContentType.

type ProductMembersCreateResponse

type ProductMembersCreateResponse struct {
	Body         []byte
	HTTPResponse *http.Response
	JSON201      *ProductMember
}

func ParseProductMembersCreateResponse

func ParseProductMembersCreateResponse(rsp *http.Response) (*ProductMembersCreateResponse, error)

ParseProductMembersCreateResponse parses an HTTP response from a ProductMembersCreateWithResponse call

func (ProductMembersCreateResponse) Status

Status returns HTTPResponse.Status

func (ProductMembersCreateResponse) StatusCode

func (r ProductMembersCreateResponse) StatusCode() int

StatusCode returns HTTPResponse.StatusCode

type ProductMembersDeletePreviewListParams added in v0.2.0

type ProductMembersDeletePreviewListParams struct {
	// Limit Number of results to return per page.
	Limit *int `form:"limit,omitempty" json:"limit,omitempty"`

	// Offset The initial index from which to return the results.
	Offset *int `form:"offset,omitempty" json:"offset,omitempty"`
}

ProductMembersDeletePreviewListParams defines parameters for ProductMembersDeletePreviewList.

type ProductMembersDeletePreviewListResponse added in v0.2.0

type ProductMembersDeletePreviewListResponse struct {
	Body         []byte
	HTTPResponse *http.Response
	JSON200      *PaginatedDeletePreviewList
}

func ParseProductMembersDeletePreviewListResponse added in v0.2.0

func ParseProductMembersDeletePreviewListResponse(rsp *http.Response) (*ProductMembersDeletePreviewListResponse, error)

ParseProductMembersDeletePreviewListResponse parses an HTTP response from a ProductMembersDeletePreviewListWithResponse call

func (ProductMembersDeletePreviewListResponse) Status added in v0.2.0

Status returns HTTPResponse.Status

func (ProductMembersDeletePreviewListResponse) StatusCode added in v0.2.0

StatusCode returns HTTPResponse.StatusCode

type ProductMembersDestroyResponse

type ProductMembersDestroyResponse struct {
	Body         []byte
	HTTPResponse *http.Response
}

func ParseProductMembersDestroyResponse

func ParseProductMembersDestroyResponse(rsp *http.Response) (*ProductMembersDestroyResponse, error)

ParseProductMembersDestroyResponse parses an HTTP response from a ProductMembersDestroyWithResponse call

func (ProductMembersDestroyResponse) Status

Status returns HTTPResponse.Status

func (ProductMembersDestroyResponse) StatusCode

func (r ProductMembersDestroyResponse) StatusCode() int

StatusCode returns HTTPResponse.StatusCode

type ProductMembersListParams

type ProductMembersListParams struct {
	Id *int `form:"id,omitempty" json:"id,omitempty"`

	// Limit Number of results to return per page.
	Limit *int `form:"limit,omitempty" json:"limit,omitempty"`

	// Offset The initial index from which to return the results.
	Offset *int `form:"offset,omitempty" json:"offset,omitempty"`

	// Prefetch List of fields for which to prefetch model instances and add those to the response
	Prefetch  *[]ProductMembersListParamsPrefetch `form:"prefetch,omitempty" json:"prefetch,omitempty"`
	ProductId *int                                `form:"product_id,omitempty" json:"product_id,omitempty"`
	UserId    *int                                `form:"user_id,omitempty" json:"user_id,omitempty"`
}

ProductMembersListParams defines parameters for ProductMembersList.

type ProductMembersListParamsPrefetch

type ProductMembersListParamsPrefetch string

ProductMembersListParamsPrefetch defines parameters for ProductMembersList.

const (
	ProductMembersListParamsPrefetchProduct ProductMembersListParamsPrefetch = "product"
	ProductMembersListParamsPrefetchRole    ProductMembersListParamsPrefetch = "role"
	ProductMembersListParamsPrefetchUser    ProductMembersListParamsPrefetch = "user"
)

Defines values for ProductMembersListParamsPrefetch.

type ProductMembersListResponse

type ProductMembersListResponse struct {
	Body         []byte
	HTTPResponse *http.Response
	JSON200      *PaginatedProductMemberList
}

func ParseProductMembersListResponse

func ParseProductMembersListResponse(rsp *http.Response) (*ProductMembersListResponse, error)

ParseProductMembersListResponse parses an HTTP response from a ProductMembersListWithResponse call

func (ProductMembersListResponse) Status

Status returns HTTPResponse.Status

func (ProductMembersListResponse) StatusCode

func (r ProductMembersListResponse) StatusCode() int

StatusCode returns HTTPResponse.StatusCode

type ProductMembersPartialUpdateResponse

type ProductMembersPartialUpdateResponse struct {
	Body         []byte
	HTTPResponse *http.Response
}

func ParseProductMembersPartialUpdateResponse

func ParseProductMembersPartialUpdateResponse(rsp *http.Response) (*ProductMembersPartialUpdateResponse, error)

ParseProductMembersPartialUpdateResponse parses an HTTP response from a ProductMembersPartialUpdateWithResponse call

func (ProductMembersPartialUpdateResponse) Status

Status returns HTTPResponse.Status

func (ProductMembersPartialUpdateResponse) StatusCode

StatusCode returns HTTPResponse.StatusCode

type ProductMembersRetrieveParams

type ProductMembersRetrieveParams struct {
	// Prefetch List of fields for which to prefetch model instances and add those to the response
	Prefetch *[]ProductMembersRetrieveParamsPrefetch `form:"prefetch,omitempty" json:"prefetch,omitempty"`
}

ProductMembersRetrieveParams defines parameters for ProductMembersRetrieve.

type ProductMembersRetrieveParamsPrefetch

type ProductMembersRetrieveParamsPrefetch string

ProductMembersRetrieveParamsPrefetch defines parameters for ProductMembersRetrieve.

const (
	ProductMembersRetrieveParamsPrefetchProduct ProductMembersRetrieveParamsPrefetch = "product"
	ProductMembersRetrieveParamsPrefetchRole    ProductMembersRetrieveParamsPrefetch = "role"
	ProductMembersRetrieveParamsPrefetchUser    ProductMembersRetrieveParamsPrefetch = "user"
)

Defines values for ProductMembersRetrieveParamsPrefetch.

type ProductMembersRetrieveResponse

type ProductMembersRetrieveResponse struct {
	Body         []byte
	HTTPResponse *http.Response
	JSON200      *ProductMember
}

func ParseProductMembersRetrieveResponse

func ParseProductMembersRetrieveResponse(rsp *http.Response) (*ProductMembersRetrieveResponse, error)

ParseProductMembersRetrieveResponse parses an HTTP response from a ProductMembersRetrieveWithResponse call

func (ProductMembersRetrieveResponse) Status

Status returns HTTPResponse.Status

func (ProductMembersRetrieveResponse) StatusCode

func (r ProductMembersRetrieveResponse) StatusCode() int

StatusCode returns HTTPResponse.StatusCode

type ProductMembersUpdateFormdataRequestBody added in v0.2.0

type ProductMembersUpdateFormdataRequestBody = ProductMemberRequest

ProductMembersUpdateFormdataRequestBody defines body for ProductMembersUpdate for application/x-www-form-urlencoded ContentType.

type ProductMembersUpdateJSONRequestBody

type ProductMembersUpdateJSONRequestBody = ProductMemberRequest

ProductMembersUpdateJSONRequestBody defines body for ProductMembersUpdate for application/json ContentType.

type ProductMembersUpdateMultipartRequestBody added in v0.2.0

type ProductMembersUpdateMultipartRequestBody = ProductMemberRequest

ProductMembersUpdateMultipartRequestBody defines body for ProductMembersUpdate for multipart/form-data ContentType.

type ProductMembersUpdateResponse

type ProductMembersUpdateResponse struct {
	Body         []byte
	HTTPResponse *http.Response
	JSON200      *ProductMember
}

func ParseProductMembersUpdateResponse

func ParseProductMembersUpdateResponse(rsp *http.Response) (*ProductMembersUpdateResponse, error)

ParseProductMembersUpdateResponse parses an HTTP response from a ProductMembersUpdateWithResponse call

func (ProductMembersUpdateResponse) Status

Status returns HTTPResponse.Status

func (ProductMembersUpdateResponse) StatusCode

func (r ProductMembersUpdateResponse) StatusCode() int

StatusCode returns HTTPResponse.StatusCode

type ProductMeta

type ProductMeta struct {
	Name  string `json:"name"`
	Value string `json:"value"`
}

ProductMeta defines model for ProductMeta.

type ProductOrigin

type ProductOrigin string

ProductOrigin * `third party library` - Third Party Library * `purchased` - Purchased * `contractor` - Contractor Developed * `internal` - Internally Developed * `open source` - Open Source * `outsourced` - Outsourced

const (
	ProductOriginContractor        ProductOrigin = "contractor"
	ProductOriginEmpty             ProductOrigin = ""
	ProductOriginInternal          ProductOrigin = "internal"
	ProductOriginNil               ProductOrigin = "<nil>"
	ProductOriginOpenSource        ProductOrigin = "open source"
	ProductOriginOutsourced        ProductOrigin = "outsourced"
	ProductOriginPurchased         ProductOrigin = "purchased"
	ProductOriginThirdPartyLibrary ProductOrigin = "third party library"
)

Defines values for ProductOrigin.

type ProductPlatform

type ProductPlatform string

ProductPlatform * `web service` - API * `desktop` - Desktop * `iot` - Internet of Things * `mobile` - Mobile * `web` - Web

const (
	ProductPlatformDesktop    ProductPlatform = "desktop"
	ProductPlatformEmpty      ProductPlatform = ""
	ProductPlatformIot        ProductPlatform = "iot"
	ProductPlatformMobile     ProductPlatform = "mobile"
	ProductPlatformNil        ProductPlatform = "<nil>"
	ProductPlatformWeb        ProductPlatform = "web"
	ProductPlatformWebService ProductPlatform = "web service"
)

Defines values for ProductPlatform.

type ProductRequest added in v0.2.0

type ProductRequest struct {
	// BusinessCriticality * `very high` - Very High
	// * `high` - High
	// * `medium` - Medium
	// * `low` - Low
	// * `very low` - Very Low
	// * `none` - None
	BusinessCriticality *ProductRequestBusinessCriticality `json:"business_criticality"`
	Description         string                             `json:"description"`

	// DisableSlaBreachNotifications Disable SLA breach notifications if configured in the global settings
	DisableSlaBreachNotifications *bool `json:"disable_sla_breach_notifications,omitempty"`

	// EnableFullRiskAcceptance Allows full risk acceptance using a risk acceptance form, expiration date, uploaded proof, etc.
	EnableFullRiskAcceptance *bool `json:"enable_full_risk_acceptance,omitempty"`

	// EnableProductTagInheritance Enables product tag inheritance. Any tags added on a product will automatically be added to all Engagements, Tests, and Findings
	EnableProductTagInheritance *bool `json:"enable_product_tag_inheritance,omitempty"`

	// EnableSimpleRiskAcceptance Allows simple risk acceptance by checking/unchecking a checkbox.
	EnableSimpleRiskAcceptance *bool `json:"enable_simple_risk_acceptance,omitempty"`

	// ExternalAudience Specify if the application is used by people outside the organization.
	ExternalAudience *bool `json:"external_audience,omitempty"`

	// InternetAccessible Specify if the application is accessible from the public internet.
	InternetAccessible *bool `json:"internet_accessible,omitempty"`

	// Lifecycle * `construction` - Construction
	// * `production` - Production
	// * `retirement` - Retirement
	Lifecycle *ProductRequestLifecycle `json:"lifecycle"`
	Name      string                   `json:"name"`

	// Origin * `third party library` - Third Party Library
	// * `purchased` - Purchased
	// * `contractor` - Contractor Developed
	// * `internal` - Internally Developed
	// * `open source` - Open Source
	// * `outsourced` - Outsourced
	Origin *ProductRequestOrigin `json:"origin"`

	// Platform * `web service` - API
	// * `desktop` - Desktop
	// * `iot` - Internet of Things
	// * `mobile` - Mobile
	// * `web` - Web
	Platform         *ProductRequestPlatform `json:"platform"`
	ProdNumericGrade *int                    `json:"prod_numeric_grade"`
	ProdType         int                     `json:"prod_type"`
	ProductManager   *int                    `json:"product_manager"`
	Regulations      *[]int                  `json:"regulations,omitempty"`

	// Revenue Estimate the application's revenue.
	Revenue          *string   `json:"revenue"`
	SlaConfiguration *int      `json:"sla_configuration,omitempty"`
	Tags             *[]string `json:"tags,omitempty"`
	TeamManager      *int      `json:"team_manager"`
	TechnicalContact *int      `json:"technical_contact"`

	// UserRecords Estimate the number of user records within the application.
	UserRecords *int `json:"user_records"`
}

ProductRequest defines model for ProductRequest.

type ProductRequestBusinessCriticality added in v0.2.0

type ProductRequestBusinessCriticality string

ProductRequestBusinessCriticality * `very high` - Very High * `high` - High * `medium` - Medium * `low` - Low * `very low` - Very Low * `none` - None

const (
	ProductRequestBusinessCriticalityEmpty    ProductRequestBusinessCriticality = ""
	ProductRequestBusinessCriticalityHigh     ProductRequestBusinessCriticality = "high"
	ProductRequestBusinessCriticalityLow      ProductRequestBusinessCriticality = "low"
	ProductRequestBusinessCriticalityMedium   ProductRequestBusinessCriticality = "medium"
	ProductRequestBusinessCriticalityNil      ProductRequestBusinessCriticality = "<nil>"
	ProductRequestBusinessCriticalityNone     ProductRequestBusinessCriticality = "none"
	ProductRequestBusinessCriticalityVeryHigh ProductRequestBusinessCriticality = "very high"
	ProductRequestBusinessCriticalityVeryLow  ProductRequestBusinessCriticality = "very low"
)

Defines values for ProductRequestBusinessCriticality.

type ProductRequestLifecycle added in v0.2.0

type ProductRequestLifecycle string

ProductRequestLifecycle * `construction` - Construction * `production` - Production * `retirement` - Retirement

const (
	ProductRequestLifecycleConstruction ProductRequestLifecycle = "construction"
	ProductRequestLifecycleEmpty        ProductRequestLifecycle = ""
	ProductRequestLifecycleNil          ProductRequestLifecycle = "<nil>"
	ProductRequestLifecycleProduction   ProductRequestLifecycle = "production"
	ProductRequestLifecycleRetirement   ProductRequestLifecycle = "retirement"
)

Defines values for ProductRequestLifecycle.

type ProductRequestOrigin added in v0.2.0

type ProductRequestOrigin string

ProductRequestOrigin * `third party library` - Third Party Library * `purchased` - Purchased * `contractor` - Contractor Developed * `internal` - Internally Developed * `open source` - Open Source * `outsourced` - Outsourced

const (
	ProductRequestOriginContractor        ProductRequestOrigin = "contractor"
	ProductRequestOriginEmpty             ProductRequestOrigin = ""
	ProductRequestOriginInternal          ProductRequestOrigin = "internal"
	ProductRequestOriginNil               ProductRequestOrigin = "<nil>"
	ProductRequestOriginOpenSource        ProductRequestOrigin = "open source"
	ProductRequestOriginOutsourced        ProductRequestOrigin = "outsourced"
	ProductRequestOriginPurchased         ProductRequestOrigin = "purchased"
	ProductRequestOriginThirdPartyLibrary ProductRequestOrigin = "third party library"
)

Defines values for ProductRequestOrigin.

type ProductRequestPlatform added in v0.2.0

type ProductRequestPlatform string

ProductRequestPlatform * `web service` - API * `desktop` - Desktop * `iot` - Internet of Things * `mobile` - Mobile * `web` - Web

const (
	ProductRequestPlatformDesktop    ProductRequestPlatform = "desktop"
	ProductRequestPlatformEmpty      ProductRequestPlatform = ""
	ProductRequestPlatformIot        ProductRequestPlatform = "iot"
	ProductRequestPlatformMobile     ProductRequestPlatform = "mobile"
	ProductRequestPlatformNil        ProductRequestPlatform = "<nil>"
	ProductRequestPlatformWeb        ProductRequestPlatform = "web"
	ProductRequestPlatformWebService ProductRequestPlatform = "web service"
)

Defines values for ProductRequestPlatform.

type ProductType

type ProductType struct {
	AuthorizationGroups *[]int     `json:"authorization_groups,omitempty"`
	Created             *time.Time `json:"created"`
	CriticalProduct     *bool      `json:"critical_product,omitempty"`
	Description         *string    `json:"description"`
	Id                  *int       `json:"id,omitempty"`
	KeyProduct          *bool      `json:"key_product,omitempty"`
	Members             *[]int     `json:"members,omitempty"`
	Name                string     `json:"name"`
	Prefetch            *struct {
		AuthorizationGroups *map[string]DojoGroup `json:"authorization_groups,omitempty"`
		Members             *map[string]UserStub  `json:"members,omitempty"`
	} `json:"prefetch,omitempty"`
	Updated *time.Time `json:"updated"`
}

ProductType defines model for ProductType.

type ProductTypeGroup

type ProductTypeGroup struct {
	Group    int  `json:"group"`
	Id       *int `json:"id,omitempty"`
	Prefetch *struct {
		Group       *map[string]DojoGroup   `json:"group,omitempty"`
		ProductType *map[string]ProductType `json:"product_type,omitempty"`
		Role        *map[string]Role        `json:"role,omitempty"`
	} `json:"prefetch,omitempty"`
	ProductType int `json:"product_type"`
	Role        int `json:"role"`
}

ProductTypeGroup defines model for ProductTypeGroup.

type ProductTypeGroupRequest added in v0.2.0

type ProductTypeGroupRequest struct {
	Group       int `json:"group"`
	ProductType int `json:"product_type"`
	Role        int `json:"role"`
}

ProductTypeGroupRequest defines model for ProductTypeGroupRequest.

type ProductTypeGroupsCreateFormdataRequestBody added in v0.2.0

type ProductTypeGroupsCreateFormdataRequestBody = ProductTypeGroupRequest

ProductTypeGroupsCreateFormdataRequestBody defines body for ProductTypeGroupsCreate for application/x-www-form-urlencoded ContentType.

type ProductTypeGroupsCreateJSONRequestBody

type ProductTypeGroupsCreateJSONRequestBody = ProductTypeGroupRequest

ProductTypeGroupsCreateJSONRequestBody defines body for ProductTypeGroupsCreate for application/json ContentType.

type ProductTypeGroupsCreateMultipartRequestBody added in v0.2.0

type ProductTypeGroupsCreateMultipartRequestBody = ProductTypeGroupRequest

ProductTypeGroupsCreateMultipartRequestBody defines body for ProductTypeGroupsCreate for multipart/form-data ContentType.

type ProductTypeGroupsCreateResponse

type ProductTypeGroupsCreateResponse struct {
	Body         []byte
	HTTPResponse *http.Response
	JSON201      *ProductTypeGroup
}

func ParseProductTypeGroupsCreateResponse

func ParseProductTypeGroupsCreateResponse(rsp *http.Response) (*ProductTypeGroupsCreateResponse, error)

ParseProductTypeGroupsCreateResponse parses an HTTP response from a ProductTypeGroupsCreateWithResponse call

func (ProductTypeGroupsCreateResponse) Status

Status returns HTTPResponse.Status

func (ProductTypeGroupsCreateResponse) StatusCode

func (r ProductTypeGroupsCreateResponse) StatusCode() int

StatusCode returns HTTPResponse.StatusCode

type ProductTypeGroupsDeletePreviewListParams added in v0.2.0

type ProductTypeGroupsDeletePreviewListParams struct {
	// Limit Number of results to return per page.
	Limit *int `form:"limit,omitempty" json:"limit,omitempty"`

	// Offset The initial index from which to return the results.
	Offset *int `form:"offset,omitempty" json:"offset,omitempty"`
}

ProductTypeGroupsDeletePreviewListParams defines parameters for ProductTypeGroupsDeletePreviewList.

type ProductTypeGroupsDeletePreviewListResponse added in v0.2.0

type ProductTypeGroupsDeletePreviewListResponse struct {
	Body         []byte
	HTTPResponse *http.Response
	JSON200      *PaginatedDeletePreviewList
}

func ParseProductTypeGroupsDeletePreviewListResponse added in v0.2.0

func ParseProductTypeGroupsDeletePreviewListResponse(rsp *http.Response) (*ProductTypeGroupsDeletePreviewListResponse, error)

ParseProductTypeGroupsDeletePreviewListResponse parses an HTTP response from a ProductTypeGroupsDeletePreviewListWithResponse call

func (ProductTypeGroupsDeletePreviewListResponse) Status added in v0.2.0

Status returns HTTPResponse.Status

func (ProductTypeGroupsDeletePreviewListResponse) StatusCode added in v0.2.0

StatusCode returns HTTPResponse.StatusCode

type ProductTypeGroupsDestroyResponse

type ProductTypeGroupsDestroyResponse struct {
	Body         []byte
	HTTPResponse *http.Response
}

func ParseProductTypeGroupsDestroyResponse

func ParseProductTypeGroupsDestroyResponse(rsp *http.Response) (*ProductTypeGroupsDestroyResponse, error)

ParseProductTypeGroupsDestroyResponse parses an HTTP response from a ProductTypeGroupsDestroyWithResponse call

func (ProductTypeGroupsDestroyResponse) Status

Status returns HTTPResponse.Status

func (ProductTypeGroupsDestroyResponse) StatusCode

func (r ProductTypeGroupsDestroyResponse) StatusCode() int

StatusCode returns HTTPResponse.StatusCode

type ProductTypeGroupsListParams

type ProductTypeGroupsListParams struct {
	GroupId *int `form:"group_id,omitempty" json:"group_id,omitempty"`
	Id      *int `form:"id,omitempty" json:"id,omitempty"`

	// Limit Number of results to return per page.
	Limit *int `form:"limit,omitempty" json:"limit,omitempty"`

	// Offset The initial index from which to return the results.
	Offset *int `form:"offset,omitempty" json:"offset,omitempty"`

	// Prefetch List of fields for which to prefetch model instances and add those to the response
	Prefetch      *[]ProductTypeGroupsListParamsPrefetch `form:"prefetch,omitempty" json:"prefetch,omitempty"`
	ProductTypeId *int                                   `form:"product_type_id,omitempty" json:"product_type_id,omitempty"`
}

ProductTypeGroupsListParams defines parameters for ProductTypeGroupsList.

type ProductTypeGroupsListParamsPrefetch

type ProductTypeGroupsListParamsPrefetch string

ProductTypeGroupsListParamsPrefetch defines parameters for ProductTypeGroupsList.

const (
	ProductTypeGroupsListParamsPrefetchGroup       ProductTypeGroupsListParamsPrefetch = "group"
	ProductTypeGroupsListParamsPrefetchProductType ProductTypeGroupsListParamsPrefetch = "product_type"
	ProductTypeGroupsListParamsPrefetchRole        ProductTypeGroupsListParamsPrefetch = "role"
)

Defines values for ProductTypeGroupsListParamsPrefetch.

type ProductTypeGroupsListResponse

type ProductTypeGroupsListResponse struct {
	Body         []byte
	HTTPResponse *http.Response
	JSON200      *PaginatedProductTypeGroupList
}

func ParseProductTypeGroupsListResponse

func ParseProductTypeGroupsListResponse(rsp *http.Response) (*ProductTypeGroupsListResponse, error)

ParseProductTypeGroupsListResponse parses an HTTP response from a ProductTypeGroupsListWithResponse call

func (ProductTypeGroupsListResponse) Status

Status returns HTTPResponse.Status

func (ProductTypeGroupsListResponse) StatusCode

func (r ProductTypeGroupsListResponse) StatusCode() int

StatusCode returns HTTPResponse.StatusCode

type ProductTypeGroupsPartialUpdateResponse

type ProductTypeGroupsPartialUpdateResponse struct {
	Body         []byte
	HTTPResponse *http.Response
}

func ParseProductTypeGroupsPartialUpdateResponse

func ParseProductTypeGroupsPartialUpdateResponse(rsp *http.Response) (*ProductTypeGroupsPartialUpdateResponse, error)

ParseProductTypeGroupsPartialUpdateResponse parses an HTTP response from a ProductTypeGroupsPartialUpdateWithResponse call

func (ProductTypeGroupsPartialUpdateResponse) Status

Status returns HTTPResponse.Status

func (ProductTypeGroupsPartialUpdateResponse) StatusCode

StatusCode returns HTTPResponse.StatusCode

type ProductTypeGroupsRetrieveParams

type ProductTypeGroupsRetrieveParams struct {
	// Prefetch List of fields for which to prefetch model instances and add those to the response
	Prefetch *[]ProductTypeGroupsRetrieveParamsPrefetch `form:"prefetch,omitempty" json:"prefetch,omitempty"`
}

ProductTypeGroupsRetrieveParams defines parameters for ProductTypeGroupsRetrieve.

type ProductTypeGroupsRetrieveParamsPrefetch

type ProductTypeGroupsRetrieveParamsPrefetch string

ProductTypeGroupsRetrieveParamsPrefetch defines parameters for ProductTypeGroupsRetrieve.

const (
	ProductTypeGroupsRetrieveParamsPrefetchGroup       ProductTypeGroupsRetrieveParamsPrefetch = "group"
	ProductTypeGroupsRetrieveParamsPrefetchProductType ProductTypeGroupsRetrieveParamsPrefetch = "product_type"
	ProductTypeGroupsRetrieveParamsPrefetchRole        ProductTypeGroupsRetrieveParamsPrefetch = "role"
)

Defines values for ProductTypeGroupsRetrieveParamsPrefetch.

type ProductTypeGroupsRetrieveResponse

type ProductTypeGroupsRetrieveResponse struct {
	Body         []byte
	HTTPResponse *http.Response
	JSON200      *ProductTypeGroup
}

func ParseProductTypeGroupsRetrieveResponse

func ParseProductTypeGroupsRetrieveResponse(rsp *http.Response) (*ProductTypeGroupsRetrieveResponse, error)

ParseProductTypeGroupsRetrieveResponse parses an HTTP response from a ProductTypeGroupsRetrieveWithResponse call

func (ProductTypeGroupsRetrieveResponse) Status

Status returns HTTPResponse.Status

func (ProductTypeGroupsRetrieveResponse) StatusCode

func (r ProductTypeGroupsRetrieveResponse) StatusCode() int

StatusCode returns HTTPResponse.StatusCode

type ProductTypeGroupsUpdateFormdataRequestBody added in v0.2.0

type ProductTypeGroupsUpdateFormdataRequestBody = ProductTypeGroupRequest

ProductTypeGroupsUpdateFormdataRequestBody defines body for ProductTypeGroupsUpdate for application/x-www-form-urlencoded ContentType.

type ProductTypeGroupsUpdateJSONRequestBody

type ProductTypeGroupsUpdateJSONRequestBody = ProductTypeGroupRequest

ProductTypeGroupsUpdateJSONRequestBody defines body for ProductTypeGroupsUpdate for application/json ContentType.

type ProductTypeGroupsUpdateMultipartRequestBody added in v0.2.0

type ProductTypeGroupsUpdateMultipartRequestBody = ProductTypeGroupRequest

ProductTypeGroupsUpdateMultipartRequestBody defines body for ProductTypeGroupsUpdate for multipart/form-data ContentType.

type ProductTypeGroupsUpdateResponse

type ProductTypeGroupsUpdateResponse struct {
	Body         []byte
	HTTPResponse *http.Response
	JSON200      *ProductTypeGroup
}

func ParseProductTypeGroupsUpdateResponse

func ParseProductTypeGroupsUpdateResponse(rsp *http.Response) (*ProductTypeGroupsUpdateResponse, error)

ParseProductTypeGroupsUpdateResponse parses an HTTP response from a ProductTypeGroupsUpdateWithResponse call

func (ProductTypeGroupsUpdateResponse) Status

Status returns HTTPResponse.Status

func (ProductTypeGroupsUpdateResponse) StatusCode

func (r ProductTypeGroupsUpdateResponse) StatusCode() int

StatusCode returns HTTPResponse.StatusCode

type ProductTypeMember

type ProductTypeMember struct {
	Id       *int `json:"id,omitempty"`
	Prefetch *struct {
		ProductType *map[string]ProductType `json:"product_type,omitempty"`
		Role        *map[string]Role        `json:"role,omitempty"`
		User        *map[string]UserStub    `json:"user,omitempty"`
	} `json:"prefetch,omitempty"`
	ProductType int `json:"product_type"`
	Role        int `json:"role"`
	User        int `json:"user"`
}

ProductTypeMember defines model for ProductTypeMember.

type ProductTypeMemberRequest added in v0.2.0

type ProductTypeMemberRequest struct {
	ProductType int `json:"product_type"`
	Role        int `json:"role"`
	User        int `json:"user"`
}

ProductTypeMemberRequest defines model for ProductTypeMemberRequest.

type ProductTypeMembersCreateFormdataRequestBody added in v0.2.0

type ProductTypeMembersCreateFormdataRequestBody = ProductTypeMemberRequest

ProductTypeMembersCreateFormdataRequestBody defines body for ProductTypeMembersCreate for application/x-www-form-urlencoded ContentType.

type ProductTypeMembersCreateJSONRequestBody

type ProductTypeMembersCreateJSONRequestBody = ProductTypeMemberRequest

ProductTypeMembersCreateJSONRequestBody defines body for ProductTypeMembersCreate for application/json ContentType.

type ProductTypeMembersCreateMultipartRequestBody added in v0.2.0

type ProductTypeMembersCreateMultipartRequestBody = ProductTypeMemberRequest

ProductTypeMembersCreateMultipartRequestBody defines body for ProductTypeMembersCreate for multipart/form-data ContentType.

type ProductTypeMembersCreateResponse

type ProductTypeMembersCreateResponse struct {
	Body         []byte
	HTTPResponse *http.Response
	JSON201      *ProductTypeMember
}

func ParseProductTypeMembersCreateResponse

func ParseProductTypeMembersCreateResponse(rsp *http.Response) (*ProductTypeMembersCreateResponse, error)

ParseProductTypeMembersCreateResponse parses an HTTP response from a ProductTypeMembersCreateWithResponse call

func (ProductTypeMembersCreateResponse) Status

Status returns HTTPResponse.Status

func (ProductTypeMembersCreateResponse) StatusCode

func (r ProductTypeMembersCreateResponse) StatusCode() int

StatusCode returns HTTPResponse.StatusCode

type ProductTypeMembersDeletePreviewListParams added in v0.2.0

type ProductTypeMembersDeletePreviewListParams struct {
	// Limit Number of results to return per page.
	Limit *int `form:"limit,omitempty" json:"limit,omitempty"`

	// Offset The initial index from which to return the results.
	Offset *int `form:"offset,omitempty" json:"offset,omitempty"`
}

ProductTypeMembersDeletePreviewListParams defines parameters for ProductTypeMembersDeletePreviewList.

type ProductTypeMembersDeletePreviewListResponse added in v0.2.0

type ProductTypeMembersDeletePreviewListResponse struct {
	Body         []byte
	HTTPResponse *http.Response
	JSON200      *PaginatedDeletePreviewList
}

func ParseProductTypeMembersDeletePreviewListResponse added in v0.2.0

func ParseProductTypeMembersDeletePreviewListResponse(rsp *http.Response) (*ProductTypeMembersDeletePreviewListResponse, error)

ParseProductTypeMembersDeletePreviewListResponse parses an HTTP response from a ProductTypeMembersDeletePreviewListWithResponse call

func (ProductTypeMembersDeletePreviewListResponse) Status added in v0.2.0

Status returns HTTPResponse.Status

func (ProductTypeMembersDeletePreviewListResponse) StatusCode added in v0.2.0

StatusCode returns HTTPResponse.StatusCode

type ProductTypeMembersDestroyResponse

type ProductTypeMembersDestroyResponse struct {
	Body         []byte
	HTTPResponse *http.Response
}

func ParseProductTypeMembersDestroyResponse

func ParseProductTypeMembersDestroyResponse(rsp *http.Response) (*ProductTypeMembersDestroyResponse, error)

ParseProductTypeMembersDestroyResponse parses an HTTP response from a ProductTypeMembersDestroyWithResponse call

func (ProductTypeMembersDestroyResponse) Status

Status returns HTTPResponse.Status

func (ProductTypeMembersDestroyResponse) StatusCode

func (r ProductTypeMembersDestroyResponse) StatusCode() int

StatusCode returns HTTPResponse.StatusCode

type ProductTypeMembersListParams

type ProductTypeMembersListParams struct {
	Id *int `form:"id,omitempty" json:"id,omitempty"`

	// Limit Number of results to return per page.
	Limit *int `form:"limit,omitempty" json:"limit,omitempty"`

	// Offset The initial index from which to return the results.
	Offset *int `form:"offset,omitempty" json:"offset,omitempty"`

	// Prefetch List of fields for which to prefetch model instances and add those to the response
	Prefetch      *[]ProductTypeMembersListParamsPrefetch `form:"prefetch,omitempty" json:"prefetch,omitempty"`
	ProductTypeId *int                                    `form:"product_type_id,omitempty" json:"product_type_id,omitempty"`
	UserId        *int                                    `form:"user_id,omitempty" json:"user_id,omitempty"`
}

ProductTypeMembersListParams defines parameters for ProductTypeMembersList.

type ProductTypeMembersListParamsPrefetch

type ProductTypeMembersListParamsPrefetch string

ProductTypeMembersListParamsPrefetch defines parameters for ProductTypeMembersList.

const (
	ProductTypeMembersListParamsPrefetchProductType ProductTypeMembersListParamsPrefetch = "product_type"
	ProductTypeMembersListParamsPrefetchRole        ProductTypeMembersListParamsPrefetch = "role"
	ProductTypeMembersListParamsPrefetchUser        ProductTypeMembersListParamsPrefetch = "user"
)

Defines values for ProductTypeMembersListParamsPrefetch.

type ProductTypeMembersListResponse

type ProductTypeMembersListResponse struct {
	Body         []byte
	HTTPResponse *http.Response
	JSON200      *PaginatedProductTypeMemberList
}

func ParseProductTypeMembersListResponse

func ParseProductTypeMembersListResponse(rsp *http.Response) (*ProductTypeMembersListResponse, error)

ParseProductTypeMembersListResponse parses an HTTP response from a ProductTypeMembersListWithResponse call

func (ProductTypeMembersListResponse) Status

Status returns HTTPResponse.Status

func (ProductTypeMembersListResponse) StatusCode

func (r ProductTypeMembersListResponse) StatusCode() int

StatusCode returns HTTPResponse.StatusCode

type ProductTypeMembersPartialUpdateResponse

type ProductTypeMembersPartialUpdateResponse struct {
	Body         []byte
	HTTPResponse *http.Response
}

func ParseProductTypeMembersPartialUpdateResponse

func ParseProductTypeMembersPartialUpdateResponse(rsp *http.Response) (*ProductTypeMembersPartialUpdateResponse, error)

ParseProductTypeMembersPartialUpdateResponse parses an HTTP response from a ProductTypeMembersPartialUpdateWithResponse call

func (ProductTypeMembersPartialUpdateResponse) Status

Status returns HTTPResponse.Status

func (ProductTypeMembersPartialUpdateResponse) StatusCode

StatusCode returns HTTPResponse.StatusCode

type ProductTypeMembersRetrieveParams

type ProductTypeMembersRetrieveParams struct {
	// Prefetch List of fields for which to prefetch model instances and add those to the response
	Prefetch *[]ProductTypeMembersRetrieveParamsPrefetch `form:"prefetch,omitempty" json:"prefetch,omitempty"`
}

ProductTypeMembersRetrieveParams defines parameters for ProductTypeMembersRetrieve.

type ProductTypeMembersRetrieveParamsPrefetch

type ProductTypeMembersRetrieveParamsPrefetch string

ProductTypeMembersRetrieveParamsPrefetch defines parameters for ProductTypeMembersRetrieve.

const (
	ProductTypeMembersRetrieveParamsPrefetchProductType ProductTypeMembersRetrieveParamsPrefetch = "product_type"
	ProductTypeMembersRetrieveParamsPrefetchRole        ProductTypeMembersRetrieveParamsPrefetch = "role"
	ProductTypeMembersRetrieveParamsPrefetchUser        ProductTypeMembersRetrieveParamsPrefetch = "user"
)

Defines values for ProductTypeMembersRetrieveParamsPrefetch.

type ProductTypeMembersRetrieveResponse

type ProductTypeMembersRetrieveResponse struct {
	Body         []byte
	HTTPResponse *http.Response
	JSON200      *ProductTypeMember
}

func ParseProductTypeMembersRetrieveResponse

func ParseProductTypeMembersRetrieveResponse(rsp *http.Response) (*ProductTypeMembersRetrieveResponse, error)

ParseProductTypeMembersRetrieveResponse parses an HTTP response from a ProductTypeMembersRetrieveWithResponse call

func (ProductTypeMembersRetrieveResponse) Status

Status returns HTTPResponse.Status

func (ProductTypeMembersRetrieveResponse) StatusCode

func (r ProductTypeMembersRetrieveResponse) StatusCode() int

StatusCode returns HTTPResponse.StatusCode

type ProductTypeMembersUpdateFormdataRequestBody added in v0.2.0

type ProductTypeMembersUpdateFormdataRequestBody = ProductTypeMemberRequest

ProductTypeMembersUpdateFormdataRequestBody defines body for ProductTypeMembersUpdate for application/x-www-form-urlencoded ContentType.

type ProductTypeMembersUpdateJSONRequestBody

type ProductTypeMembersUpdateJSONRequestBody = ProductTypeMemberRequest

ProductTypeMembersUpdateJSONRequestBody defines body for ProductTypeMembersUpdate for application/json ContentType.

type ProductTypeMembersUpdateMultipartRequestBody added in v0.2.0

type ProductTypeMembersUpdateMultipartRequestBody = ProductTypeMemberRequest

ProductTypeMembersUpdateMultipartRequestBody defines body for ProductTypeMembersUpdate for multipart/form-data ContentType.

type ProductTypeMembersUpdateResponse

type ProductTypeMembersUpdateResponse struct {
	Body         []byte
	HTTPResponse *http.Response
	JSON200      *ProductTypeMember
}

func ParseProductTypeMembersUpdateResponse

func ParseProductTypeMembersUpdateResponse(rsp *http.Response) (*ProductTypeMembersUpdateResponse, error)

ParseProductTypeMembersUpdateResponse parses an HTTP response from a ProductTypeMembersUpdateWithResponse call

func (ProductTypeMembersUpdateResponse) Status

Status returns HTTPResponse.Status

func (ProductTypeMembersUpdateResponse) StatusCode

func (r ProductTypeMembersUpdateResponse) StatusCode() int

StatusCode returns HTTPResponse.StatusCode

type ProductTypeRequest added in v0.2.0

type ProductTypeRequest struct {
	CriticalProduct *bool   `json:"critical_product,omitempty"`
	Description     *string `json:"description"`
	KeyProduct      *bool   `json:"key_product,omitempty"`
	Name            string  `json:"name"`
}

ProductTypeRequest defines model for ProductTypeRequest.

type ProductTypesCreateFormdataRequestBody added in v0.2.0

type ProductTypesCreateFormdataRequestBody = ProductTypeRequest

ProductTypesCreateFormdataRequestBody defines body for ProductTypesCreate for application/x-www-form-urlencoded ContentType.

type ProductTypesCreateJSONRequestBody

type ProductTypesCreateJSONRequestBody = ProductTypeRequest

ProductTypesCreateJSONRequestBody defines body for ProductTypesCreate for application/json ContentType.

type ProductTypesCreateMultipartRequestBody added in v0.2.0

type ProductTypesCreateMultipartRequestBody = ProductTypeRequest

ProductTypesCreateMultipartRequestBody defines body for ProductTypesCreate for multipart/form-data ContentType.

type ProductTypesCreateResponse

type ProductTypesCreateResponse struct {
	Body         []byte
	HTTPResponse *http.Response
	JSON201      *ProductType
}

func ParseProductTypesCreateResponse

func ParseProductTypesCreateResponse(rsp *http.Response) (*ProductTypesCreateResponse, error)

ParseProductTypesCreateResponse parses an HTTP response from a ProductTypesCreateWithResponse call

func (ProductTypesCreateResponse) Status

Status returns HTTPResponse.Status

func (ProductTypesCreateResponse) StatusCode

func (r ProductTypesCreateResponse) StatusCode() int

StatusCode returns HTTPResponse.StatusCode

type ProductTypesDeletePreviewListParams added in v0.2.0

type ProductTypesDeletePreviewListParams struct {
	// Limit Number of results to return per page.
	Limit *int `form:"limit,omitempty" json:"limit,omitempty"`

	// Offset The initial index from which to return the results.
	Offset *int `form:"offset,omitempty" json:"offset,omitempty"`
}

ProductTypesDeletePreviewListParams defines parameters for ProductTypesDeletePreviewList.

type ProductTypesDeletePreviewListResponse added in v0.2.0

type ProductTypesDeletePreviewListResponse struct {
	Body         []byte
	HTTPResponse *http.Response
	JSON200      *PaginatedDeletePreviewList
}

func ParseProductTypesDeletePreviewListResponse added in v0.2.0

func ParseProductTypesDeletePreviewListResponse(rsp *http.Response) (*ProductTypesDeletePreviewListResponse, error)

ParseProductTypesDeletePreviewListResponse parses an HTTP response from a ProductTypesDeletePreviewListWithResponse call

func (ProductTypesDeletePreviewListResponse) Status added in v0.2.0

Status returns HTTPResponse.Status

func (ProductTypesDeletePreviewListResponse) StatusCode added in v0.2.0

StatusCode returns HTTPResponse.StatusCode

type ProductTypesDestroyResponse

type ProductTypesDestroyResponse struct {
	Body         []byte
	HTTPResponse *http.Response
}

func ParseProductTypesDestroyResponse

func ParseProductTypesDestroyResponse(rsp *http.Response) (*ProductTypesDestroyResponse, error)

ParseProductTypesDestroyResponse parses an HTTP response from a ProductTypesDestroyWithResponse call

func (ProductTypesDestroyResponse) Status

Status returns HTTPResponse.Status

func (ProductTypesDestroyResponse) StatusCode

func (r ProductTypesDestroyResponse) StatusCode() int

StatusCode returns HTTPResponse.StatusCode

type ProductTypesGenerateReportCreateFormdataRequestBody added in v0.2.0

type ProductTypesGenerateReportCreateFormdataRequestBody = ReportGenerateOptionRequest

ProductTypesGenerateReportCreateFormdataRequestBody defines body for ProductTypesGenerateReportCreate for application/x-www-form-urlencoded ContentType.

type ProductTypesGenerateReportCreateJSONRequestBody

type ProductTypesGenerateReportCreateJSONRequestBody = ReportGenerateOptionRequest

ProductTypesGenerateReportCreateJSONRequestBody defines body for ProductTypesGenerateReportCreate for application/json ContentType.

type ProductTypesGenerateReportCreateMultipartRequestBody added in v0.2.0

type ProductTypesGenerateReportCreateMultipartRequestBody = ReportGenerateOptionRequest

ProductTypesGenerateReportCreateMultipartRequestBody defines body for ProductTypesGenerateReportCreate for multipart/form-data ContentType.

type ProductTypesGenerateReportCreateResponse

type ProductTypesGenerateReportCreateResponse struct {
	Body         []byte
	HTTPResponse *http.Response
	JSON200      *ReportGenerate
}

func ParseProductTypesGenerateReportCreateResponse

func ParseProductTypesGenerateReportCreateResponse(rsp *http.Response) (*ProductTypesGenerateReportCreateResponse, error)

ParseProductTypesGenerateReportCreateResponse parses an HTTP response from a ProductTypesGenerateReportCreateWithResponse call

func (ProductTypesGenerateReportCreateResponse) Status

Status returns HTTPResponse.Status

func (ProductTypesGenerateReportCreateResponse) StatusCode

StatusCode returns HTTPResponse.StatusCode

type ProductTypesListParams

type ProductTypesListParams struct {
	Created         *time.Time `form:"created,omitempty" json:"created,omitempty"`
	CriticalProduct *bool      `form:"critical_product,omitempty" json:"critical_product,omitempty"`
	Id              *int       `form:"id,omitempty" json:"id,omitempty"`
	KeyProduct      *bool      `form:"key_product,omitempty" json:"key_product,omitempty"`

	// Limit Number of results to return per page.
	Limit *int    `form:"limit,omitempty" json:"limit,omitempty"`
	Name  *string `form:"name,omitempty" json:"name,omitempty"`

	// Offset The initial index from which to return the results.
	Offset *int `form:"offset,omitempty" json:"offset,omitempty"`

	// Prefetch List of fields for which to prefetch model instances and add those to the response
	Prefetch *[]ProductTypesListParamsPrefetch `form:"prefetch,omitempty" json:"prefetch,omitempty"`
	Updated  *time.Time                        `form:"updated,omitempty" json:"updated,omitempty"`
}

ProductTypesListParams defines parameters for ProductTypesList.

type ProductTypesListParamsPrefetch

type ProductTypesListParamsPrefetch string

ProductTypesListParamsPrefetch defines parameters for ProductTypesList.

const (
	ProductTypesListParamsPrefetchAuthorizationGroups ProductTypesListParamsPrefetch = "authorization_groups"
	ProductTypesListParamsPrefetchMembers             ProductTypesListParamsPrefetch = "members"
)

Defines values for ProductTypesListParamsPrefetch.

type ProductTypesListResponse

type ProductTypesListResponse struct {
	Body         []byte
	HTTPResponse *http.Response
	JSON200      *PaginatedProductTypeList
}

func ParseProductTypesListResponse

func ParseProductTypesListResponse(rsp *http.Response) (*ProductTypesListResponse, error)

ParseProductTypesListResponse parses an HTTP response from a ProductTypesListWithResponse call

func (ProductTypesListResponse) Status

func (r ProductTypesListResponse) Status() string

Status returns HTTPResponse.Status

func (ProductTypesListResponse) StatusCode

func (r ProductTypesListResponse) StatusCode() int

StatusCode returns HTTPResponse.StatusCode

type ProductTypesPartialUpdateFormdataRequestBody added in v0.2.0

type ProductTypesPartialUpdateFormdataRequestBody = PatchedProductTypeRequest

ProductTypesPartialUpdateFormdataRequestBody defines body for ProductTypesPartialUpdate for application/x-www-form-urlencoded ContentType.

type ProductTypesPartialUpdateJSONRequestBody

type ProductTypesPartialUpdateJSONRequestBody = PatchedProductTypeRequest

ProductTypesPartialUpdateJSONRequestBody defines body for ProductTypesPartialUpdate for application/json ContentType.

type ProductTypesPartialUpdateMultipartRequestBody added in v0.2.0

type ProductTypesPartialUpdateMultipartRequestBody = PatchedProductTypeRequest

ProductTypesPartialUpdateMultipartRequestBody defines body for ProductTypesPartialUpdate for multipart/form-data ContentType.

type ProductTypesPartialUpdateResponse

type ProductTypesPartialUpdateResponse struct {
	Body         []byte
	HTTPResponse *http.Response
	JSON200      *ProductType
}

func ParseProductTypesPartialUpdateResponse

func ParseProductTypesPartialUpdateResponse(rsp *http.Response) (*ProductTypesPartialUpdateResponse, error)

ParseProductTypesPartialUpdateResponse parses an HTTP response from a ProductTypesPartialUpdateWithResponse call

func (ProductTypesPartialUpdateResponse) Status

Status returns HTTPResponse.Status

func (ProductTypesPartialUpdateResponse) StatusCode

func (r ProductTypesPartialUpdateResponse) StatusCode() int

StatusCode returns HTTPResponse.StatusCode

type ProductTypesRetrieveParams

type ProductTypesRetrieveParams struct {
	// Prefetch List of fields for which to prefetch model instances and add those to the response
	Prefetch *[]ProductTypesRetrieveParamsPrefetch `form:"prefetch,omitempty" json:"prefetch,omitempty"`
}

ProductTypesRetrieveParams defines parameters for ProductTypesRetrieve.

type ProductTypesRetrieveParamsPrefetch

type ProductTypesRetrieveParamsPrefetch string

ProductTypesRetrieveParamsPrefetch defines parameters for ProductTypesRetrieve.

const (
	ProductTypesRetrieveParamsPrefetchAuthorizationGroups ProductTypesRetrieveParamsPrefetch = "authorization_groups"
	ProductTypesRetrieveParamsPrefetchMembers             ProductTypesRetrieveParamsPrefetch = "members"
)

Defines values for ProductTypesRetrieveParamsPrefetch.

type ProductTypesRetrieveResponse

type ProductTypesRetrieveResponse struct {
	Body         []byte
	HTTPResponse *http.Response
	JSON200      *ProductType
}

func ParseProductTypesRetrieveResponse

func ParseProductTypesRetrieveResponse(rsp *http.Response) (*ProductTypesRetrieveResponse, error)

ParseProductTypesRetrieveResponse parses an HTTP response from a ProductTypesRetrieveWithResponse call

func (ProductTypesRetrieveResponse) Status

Status returns HTTPResponse.Status

func (ProductTypesRetrieveResponse) StatusCode

func (r ProductTypesRetrieveResponse) StatusCode() int

StatusCode returns HTTPResponse.StatusCode

type ProductTypesUpdateFormdataRequestBody added in v0.2.0

type ProductTypesUpdateFormdataRequestBody = ProductTypeRequest

ProductTypesUpdateFormdataRequestBody defines body for ProductTypesUpdate for application/x-www-form-urlencoded ContentType.

type ProductTypesUpdateJSONRequestBody

type ProductTypesUpdateJSONRequestBody = ProductTypeRequest

ProductTypesUpdateJSONRequestBody defines body for ProductTypesUpdate for application/json ContentType.

type ProductTypesUpdateMultipartRequestBody added in v0.2.0

type ProductTypesUpdateMultipartRequestBody = ProductTypeRequest

ProductTypesUpdateMultipartRequestBody defines body for ProductTypesUpdate for multipart/form-data ContentType.

type ProductTypesUpdateResponse

type ProductTypesUpdateResponse struct {
	Body         []byte
	HTTPResponse *http.Response
	JSON200      *ProductType
}

func ParseProductTypesUpdateResponse

func ParseProductTypesUpdateResponse(rsp *http.Response) (*ProductTypesUpdateResponse, error)

ParseProductTypesUpdateResponse parses an HTTP response from a ProductTypesUpdateWithResponse call

func (ProductTypesUpdateResponse) Status

Status returns HTTPResponse.Status

func (ProductTypesUpdateResponse) StatusCode

func (r ProductTypesUpdateResponse) StatusCode() int

StatusCode returns HTTPResponse.StatusCode

type ProductsCreateFormdataRequestBody added in v0.2.0

type ProductsCreateFormdataRequestBody = ProductRequest

ProductsCreateFormdataRequestBody defines body for ProductsCreate for application/x-www-form-urlencoded ContentType.

type ProductsCreateJSONRequestBody

type ProductsCreateJSONRequestBody = ProductRequest

ProductsCreateJSONRequestBody defines body for ProductsCreate for application/json ContentType.

type ProductsCreateMultipartRequestBody added in v0.2.0

type ProductsCreateMultipartRequestBody = ProductRequest

ProductsCreateMultipartRequestBody defines body for ProductsCreate for multipart/form-data ContentType.

type ProductsCreateResponse

type ProductsCreateResponse struct {
	Body         []byte
	HTTPResponse *http.Response
	JSON201      *Product
}

func ParseProductsCreateResponse

func ParseProductsCreateResponse(rsp *http.Response) (*ProductsCreateResponse, error)

ParseProductsCreateResponse parses an HTTP response from a ProductsCreateWithResponse call

func (ProductsCreateResponse) Status

func (r ProductsCreateResponse) Status() string

Status returns HTTPResponse.Status

func (ProductsCreateResponse) StatusCode

func (r ProductsCreateResponse) StatusCode() int

StatusCode returns HTTPResponse.StatusCode

type ProductsDeletePreviewListParams added in v0.2.0

type ProductsDeletePreviewListParams struct {
	// Limit Number of results to return per page.
	Limit *int `form:"limit,omitempty" json:"limit,omitempty"`

	// Offset The initial index from which to return the results.
	Offset *int `form:"offset,omitempty" json:"offset,omitempty"`
}

ProductsDeletePreviewListParams defines parameters for ProductsDeletePreviewList.

type ProductsDeletePreviewListResponse added in v0.2.0

type ProductsDeletePreviewListResponse struct {
	Body         []byte
	HTTPResponse *http.Response
	JSON200      *PaginatedDeletePreviewList
}

func ParseProductsDeletePreviewListResponse added in v0.2.0

func ParseProductsDeletePreviewListResponse(rsp *http.Response) (*ProductsDeletePreviewListResponse, error)

ParseProductsDeletePreviewListResponse parses an HTTP response from a ProductsDeletePreviewListWithResponse call

func (ProductsDeletePreviewListResponse) Status added in v0.2.0

Status returns HTTPResponse.Status

func (ProductsDeletePreviewListResponse) StatusCode added in v0.2.0

func (r ProductsDeletePreviewListResponse) StatusCode() int

StatusCode returns HTTPResponse.StatusCode

type ProductsDestroyResponse

type ProductsDestroyResponse struct {
	Body         []byte
	HTTPResponse *http.Response
}

func ParseProductsDestroyResponse

func ParseProductsDestroyResponse(rsp *http.Response) (*ProductsDestroyResponse, error)

ParseProductsDestroyResponse parses an HTTP response from a ProductsDestroyWithResponse call

func (ProductsDestroyResponse) Status

func (r ProductsDestroyResponse) Status() string

Status returns HTTPResponse.Status

func (ProductsDestroyResponse) StatusCode

func (r ProductsDestroyResponse) StatusCode() int

StatusCode returns HTTPResponse.StatusCode

type ProductsGenerateReportCreateFormdataRequestBody added in v0.2.0

type ProductsGenerateReportCreateFormdataRequestBody = ReportGenerateOptionRequest

ProductsGenerateReportCreateFormdataRequestBody defines body for ProductsGenerateReportCreate for application/x-www-form-urlencoded ContentType.

type ProductsGenerateReportCreateJSONRequestBody

type ProductsGenerateReportCreateJSONRequestBody = ReportGenerateOptionRequest

ProductsGenerateReportCreateJSONRequestBody defines body for ProductsGenerateReportCreate for application/json ContentType.

type ProductsGenerateReportCreateMultipartRequestBody added in v0.2.0

type ProductsGenerateReportCreateMultipartRequestBody = ReportGenerateOptionRequest

ProductsGenerateReportCreateMultipartRequestBody defines body for ProductsGenerateReportCreate for multipart/form-data ContentType.

type ProductsGenerateReportCreateResponse

type ProductsGenerateReportCreateResponse struct {
	Body         []byte
	HTTPResponse *http.Response
	JSON200      *ReportGenerate
}

func ParseProductsGenerateReportCreateResponse

func ParseProductsGenerateReportCreateResponse(rsp *http.Response) (*ProductsGenerateReportCreateResponse, error)

ParseProductsGenerateReportCreateResponse parses an HTTP response from a ProductsGenerateReportCreateWithResponse call

func (ProductsGenerateReportCreateResponse) Status

Status returns HTTPResponse.Status

func (ProductsGenerateReportCreateResponse) StatusCode

StatusCode returns HTTPResponse.StatusCode

type ProductsListParams

type ProductsListParams struct {
	BusinessCriticality *string `form:"business_criticality,omitempty" json:"business_criticality,omitempty"`

	// Created * “ - Any date
	// * `1` - Today
	// * `2` - Past 7 days
	// * `3` - Past 30 days
	// * `4` - Past 90 days
	// * `5` - Current month
	// * `6` - Current year
	// * `7` - Past year
	Created          *ProductsListParamsCreated `form:"created,omitempty" json:"created,omitempty"`
	Description      *string                    `form:"description,omitempty" json:"description,omitempty"`
	ExternalAudience *bool                      `form:"external_audience,omitempty" json:"external_audience,omitempty"`

	// Id Multiple values may be separated by commas.
	Id                 *[]int  `form:"id,omitempty" json:"id,omitempty"`
	InternetAccessible *bool   `form:"internet_accessible,omitempty" json:"internet_accessible,omitempty"`
	Lifecycle          *string `form:"lifecycle,omitempty" json:"lifecycle,omitempty"`

	// Limit Number of results to return per page.
	Limit     *int    `form:"limit,omitempty" json:"limit,omitempty"`
	Name      *string `form:"name,omitempty" json:"name,omitempty"`
	NameExact *string `form:"name_exact,omitempty" json:"name_exact,omitempty"`

	// NotTag Not Tag name contains
	NotTag *string `form:"not_tag,omitempty" json:"not_tag,omitempty"`

	// NotTags Comma seperated list of exact tags not present on product
	NotTags *[]string `form:"not_tags,omitempty" json:"not_tags,omitempty"`

	// O Ordering
	//
	// * `id` - Id
	// * `-id` - Id (descending)
	// * `tid` - Tid
	// * `-tid` - Tid (descending)
	// * `name` - Name
	// * `-name` - Name (descending)
	// * `created` - Created
	// * `-created` - Created (descending)
	// * `prod_numeric_grade` - Prod numeric grade
	// * `-prod_numeric_grade` - Prod numeric grade (descending)
	// * `business_criticality` - Business criticality
	// * `-business_criticality` - Business criticality (descending)
	// * `platform` - Platform
	// * `-platform` - Platform (descending)
	// * `lifecycle` - Lifecycle
	// * `-lifecycle` - Lifecycle (descending)
	// * `origin` - Origin
	// * `-origin` - Origin (descending)
	// * `revenue` - Revenue
	// * `-revenue` - Revenue (descending)
	// * `external_audience` - External audience
	// * `-external_audience` - External audience (descending)
	// * `internet_accessible` - Internet accessible
	// * `-internet_accessible` - Internet accessible (descending)
	// * `product_manager` - Product manager
	// * `-product_manager` - Product manager (descending)
	// * `product_manager__first_name` - Product manager  first name
	// * `-product_manager__first_name` - Product manager  first name (descending)
	// * `product_manager__last_name` - Product manager  last name
	// * `-product_manager__last_name` - Product manager  last name (descending)
	// * `technical_contact` - Technical contact
	// * `-technical_contact` - Technical contact (descending)
	// * `technical_contact__first_name` - Technical contact  first name
	// * `-technical_contact__first_name` - Technical contact  first name (descending)
	// * `technical_contact__last_name` - Technical contact  last name
	// * `-technical_contact__last_name` - Technical contact  last name (descending)
	// * `team_manager` - Team manager
	// * `-team_manager` - Team manager (descending)
	// * `team_manager__first_name` - Team manager  first name
	// * `-team_manager__first_name` - Team manager  first name (descending)
	// * `team_manager__last_name` - Team manager  last name
	// * `-team_manager__last_name` - Team manager  last name (descending)
	// * `prod_type` - Prod type
	// * `-prod_type` - Prod type (descending)
	// * `prod_type__name` - Prod type  name
	// * `-prod_type__name` - Prod type  name (descending)
	// * `updated` - Updated
	// * `-updated` - Updated (descending)
	// * `user_records` - User records
	// * `-user_records` - User records (descending)
	O *[]ProductsListParamsO `form:"o,omitempty" json:"o,omitempty"`

	// Offset The initial index from which to return the results.
	Offset   *int    `form:"offset,omitempty" json:"offset,omitempty"`
	Origin   *string `form:"origin,omitempty" json:"origin,omitempty"`
	Platform *string `form:"platform,omitempty" json:"platform,omitempty"`

	// Prefetch List of fields for which to prefetch model instances and add those to the response
	Prefetch *[]ProductsListParamsPrefetch `form:"prefetch,omitempty" json:"prefetch,omitempty"`

	// ProdNumericGrade Multiple values may be separated by commas.
	ProdNumericGrade *[]int `form:"prod_numeric_grade,omitempty" json:"prod_numeric_grade,omitempty"`

	// ProdType Multiple values may be separated by commas.
	ProdType *[]int `form:"prod_type,omitempty" json:"prod_type,omitempty"`

	// ProductManager Multiple values may be separated by commas.
	ProductManager *[]int `form:"product_manager,omitempty" json:"product_manager,omitempty"`

	// Regulations Multiple values may be separated by commas.
	Regulations *[]int   `form:"regulations,omitempty" json:"regulations,omitempty"`
	Revenue     *float32 `form:"revenue,omitempty" json:"revenue,omitempty"`

	// Tag Tag name contains
	Tag *string `form:"tag,omitempty" json:"tag,omitempty"`

	// Tags Comma seperated list of exact tags
	Tags *[]string `form:"tags,omitempty" json:"tags,omitempty"`

	// TeamManager Multiple values may be separated by commas.
	TeamManager *[]int `form:"team_manager,omitempty" json:"team_manager,omitempty"`

	// TechnicalContact Multiple values may be separated by commas.
	TechnicalContact *[]int `form:"technical_contact,omitempty" json:"technical_contact,omitempty"`

	// Tid Multiple values may be separated by commas.
	Tid *[]int `form:"tid,omitempty" json:"tid,omitempty"`

	// Updated * “ - Any date
	// * `1` - Today
	// * `2` - Past 7 days
	// * `3` - Past 30 days
	// * `4` - Past 90 days
	// * `5` - Current month
	// * `6` - Current year
	// * `7` - Past year
	Updated *ProductsListParamsUpdated `form:"updated,omitempty" json:"updated,omitempty"`

	// UserRecords Multiple values may be separated by commas.
	UserRecords *[]int `form:"user_records,omitempty" json:"user_records,omitempty"`
}

ProductsListParams defines parameters for ProductsList.

type ProductsListParamsCreated

type ProductsListParamsCreated float32

ProductsListParamsCreated defines parameters for ProductsList.

const (
	ProductsListParamsCreatedN1 ProductsListParamsCreated = 1
	ProductsListParamsCreatedN2 ProductsListParamsCreated = 2
	ProductsListParamsCreatedN3 ProductsListParamsCreated = 3
	ProductsListParamsCreatedN4 ProductsListParamsCreated = 4
	ProductsListParamsCreatedN5 ProductsListParamsCreated = 5
	ProductsListParamsCreatedN6 ProductsListParamsCreated = 6
	ProductsListParamsCreatedN7 ProductsListParamsCreated = 7
)

Defines values for ProductsListParamsCreated.

type ProductsListParamsO

type ProductsListParamsO string

ProductsListParamsO defines parameters for ProductsList.

const (
	ProductsListParamsOBusinessCriticality            ProductsListParamsO = "business_criticality"
	ProductsListParamsOCreated                        ProductsListParamsO = "created"
	ProductsListParamsOExternalAudience               ProductsListParamsO = "external_audience"
	ProductsListParamsOId                             ProductsListParamsO = "id"
	ProductsListParamsOInternetAccessible             ProductsListParamsO = "internet_accessible"
	ProductsListParamsOLifecycle                      ProductsListParamsO = "lifecycle"
	ProductsListParamsOMinusBusinessCriticality       ProductsListParamsO = "-business_criticality"
	ProductsListParamsOMinusCreated                   ProductsListParamsO = "-created"
	ProductsListParamsOMinusExternalAudience          ProductsListParamsO = "-external_audience"
	ProductsListParamsOMinusId                        ProductsListParamsO = "-id"
	ProductsListParamsOMinusInternetAccessible        ProductsListParamsO = "-internet_accessible"
	ProductsListParamsOMinusLifecycle                 ProductsListParamsO = "-lifecycle"
	ProductsListParamsOMinusName                      ProductsListParamsO = "-name"
	ProductsListParamsOMinusOrigin                    ProductsListParamsO = "-origin"
	ProductsListParamsOMinusPlatform                  ProductsListParamsO = "-platform"
	ProductsListParamsOMinusProdNumericGrade          ProductsListParamsO = "-prod_numeric_grade"
	ProductsListParamsOMinusProdType                  ProductsListParamsO = "-prod_type"
	ProductsListParamsOMinusProdTypeName              ProductsListParamsO = "-prod_type__name"
	ProductsListParamsOMinusProductManager            ProductsListParamsO = "-product_manager"
	ProductsListParamsOMinusProductManagerFirstName   ProductsListParamsO = "-product_manager__first_name"
	ProductsListParamsOMinusProductManagerLastName    ProductsListParamsO = "-product_manager__last_name"
	ProductsListParamsOMinusRevenue                   ProductsListParamsO = "-revenue"
	ProductsListParamsOMinusTeamManager               ProductsListParamsO = "-team_manager"
	ProductsListParamsOMinusTeamManagerFirstName      ProductsListParamsO = "-team_manager__first_name"
	ProductsListParamsOMinusTeamManagerLastName       ProductsListParamsO = "-team_manager__last_name"
	ProductsListParamsOMinusTechnicalContact          ProductsListParamsO = "-technical_contact"
	ProductsListParamsOMinusTechnicalContactFirstName ProductsListParamsO = "-technical_contact__first_name"
	ProductsListParamsOMinusTechnicalContactLastName  ProductsListParamsO = "-technical_contact__last_name"
	ProductsListParamsOMinusTid                       ProductsListParamsO = "-tid"
	ProductsListParamsOMinusUpdated                   ProductsListParamsO = "-updated"
	ProductsListParamsOMinusUserRecords               ProductsListParamsO = "-user_records"
	ProductsListParamsOName                           ProductsListParamsO = "name"
	ProductsListParamsOOrigin                         ProductsListParamsO = "origin"
	ProductsListParamsOPlatform                       ProductsListParamsO = "platform"
	ProductsListParamsOProdNumericGrade               ProductsListParamsO = "prod_numeric_grade"
	ProductsListParamsOProdType                       ProductsListParamsO = "prod_type"
	ProductsListParamsOProdTypeName                   ProductsListParamsO = "prod_type__name"
	ProductsListParamsOProductManager                 ProductsListParamsO = "product_manager"
	ProductsListParamsOProductManagerFirstName        ProductsListParamsO = "product_manager__first_name"
	ProductsListParamsOProductManagerLastName         ProductsListParamsO = "product_manager__last_name"
	ProductsListParamsORevenue                        ProductsListParamsO = "revenue"
	ProductsListParamsOTeamManager                    ProductsListParamsO = "team_manager"
	ProductsListParamsOTeamManagerFirstName           ProductsListParamsO = "team_manager__first_name"
	ProductsListParamsOTeamManagerLastName            ProductsListParamsO = "team_manager__last_name"
	ProductsListParamsOTechnicalContact               ProductsListParamsO = "technical_contact"
	ProductsListParamsOTechnicalContactFirstName      ProductsListParamsO = "technical_contact__first_name"
	ProductsListParamsOTechnicalContactLastName       ProductsListParamsO = "technical_contact__last_name"
	ProductsListParamsOTid                            ProductsListParamsO = "tid"
	ProductsListParamsOUpdated                        ProductsListParamsO = "updated"
	ProductsListParamsOUserRecords                    ProductsListParamsO = "user_records"
)

Defines values for ProductsListParamsO.

type ProductsListParamsPrefetch

type ProductsListParamsPrefetch string

ProductsListParamsPrefetch defines parameters for ProductsList.

const (
	ProductsListParamsPrefetchAuthorizationGroups ProductsListParamsPrefetch = "authorization_groups"
	ProductsListParamsPrefetchMembers             ProductsListParamsPrefetch = "members"
	ProductsListParamsPrefetchProdType            ProductsListParamsPrefetch = "prod_type"
	ProductsListParamsPrefetchProductManager      ProductsListParamsPrefetch = "product_manager"
	ProductsListParamsPrefetchRegulations         ProductsListParamsPrefetch = "regulations"
	ProductsListParamsPrefetchSlaConfiguration    ProductsListParamsPrefetch = "sla_configuration"
	ProductsListParamsPrefetchTeamManager         ProductsListParamsPrefetch = "team_manager"
	ProductsListParamsPrefetchTechnicalContact    ProductsListParamsPrefetch = "technical_contact"
)

Defines values for ProductsListParamsPrefetch.

type ProductsListParamsUpdated

type ProductsListParamsUpdated float32

ProductsListParamsUpdated defines parameters for ProductsList.

const (
	ProductsListParamsUpdatedN1 ProductsListParamsUpdated = 1
	ProductsListParamsUpdatedN2 ProductsListParamsUpdated = 2
	ProductsListParamsUpdatedN3 ProductsListParamsUpdated = 3
	ProductsListParamsUpdatedN4 ProductsListParamsUpdated = 4
	ProductsListParamsUpdatedN5 ProductsListParamsUpdated = 5
	ProductsListParamsUpdatedN6 ProductsListParamsUpdated = 6
	ProductsListParamsUpdatedN7 ProductsListParamsUpdated = 7
)

Defines values for ProductsListParamsUpdated.

type ProductsListResponse

type ProductsListResponse struct {
	Body         []byte
	HTTPResponse *http.Response
	JSON200      *PaginatedProductList
}

func ParseProductsListResponse

func ParseProductsListResponse(rsp *http.Response) (*ProductsListResponse, error)

ParseProductsListResponse parses an HTTP response from a ProductsListWithResponse call

func (ProductsListResponse) Status

func (r ProductsListResponse) Status() string

Status returns HTTPResponse.Status

func (ProductsListResponse) StatusCode

func (r ProductsListResponse) StatusCode() int

StatusCode returns HTTPResponse.StatusCode

type ProductsPartialUpdateFormdataRequestBody added in v0.2.0

type ProductsPartialUpdateFormdataRequestBody = PatchedProductRequest

ProductsPartialUpdateFormdataRequestBody defines body for ProductsPartialUpdate for application/x-www-form-urlencoded ContentType.

type ProductsPartialUpdateJSONRequestBody

type ProductsPartialUpdateJSONRequestBody = PatchedProductRequest

ProductsPartialUpdateJSONRequestBody defines body for ProductsPartialUpdate for application/json ContentType.

type ProductsPartialUpdateMultipartRequestBody added in v0.2.0

type ProductsPartialUpdateMultipartRequestBody = PatchedProductRequest

ProductsPartialUpdateMultipartRequestBody defines body for ProductsPartialUpdate for multipart/form-data ContentType.

type ProductsPartialUpdateResponse

type ProductsPartialUpdateResponse struct {
	Body         []byte
	HTTPResponse *http.Response
	JSON200      *Product
}

func ParseProductsPartialUpdateResponse

func ParseProductsPartialUpdateResponse(rsp *http.Response) (*ProductsPartialUpdateResponse, error)

ParseProductsPartialUpdateResponse parses an HTTP response from a ProductsPartialUpdateWithResponse call

func (ProductsPartialUpdateResponse) Status

Status returns HTTPResponse.Status

func (ProductsPartialUpdateResponse) StatusCode

func (r ProductsPartialUpdateResponse) StatusCode() int

StatusCode returns HTTPResponse.StatusCode

type ProductsRetrieveParams

type ProductsRetrieveParams struct {
	// Prefetch List of fields for which to prefetch model instances and add those to the response
	Prefetch *[]ProductsRetrieveParamsPrefetch `form:"prefetch,omitempty" json:"prefetch,omitempty"`
}

ProductsRetrieveParams defines parameters for ProductsRetrieve.

type ProductsRetrieveParamsPrefetch

type ProductsRetrieveParamsPrefetch string

ProductsRetrieveParamsPrefetch defines parameters for ProductsRetrieve.

const (
	ProductsRetrieveParamsPrefetchAuthorizationGroups ProductsRetrieveParamsPrefetch = "authorization_groups"
	ProductsRetrieveParamsPrefetchMembers             ProductsRetrieveParamsPrefetch = "members"
	ProductsRetrieveParamsPrefetchProdType            ProductsRetrieveParamsPrefetch = "prod_type"
	ProductsRetrieveParamsPrefetchProductManager      ProductsRetrieveParamsPrefetch = "product_manager"
	ProductsRetrieveParamsPrefetchRegulations         ProductsRetrieveParamsPrefetch = "regulations"
	ProductsRetrieveParamsPrefetchSlaConfiguration    ProductsRetrieveParamsPrefetch = "sla_configuration"
	ProductsRetrieveParamsPrefetchTeamManager         ProductsRetrieveParamsPrefetch = "team_manager"
	ProductsRetrieveParamsPrefetchTechnicalContact    ProductsRetrieveParamsPrefetch = "technical_contact"
)

Defines values for ProductsRetrieveParamsPrefetch.

type ProductsRetrieveResponse

type ProductsRetrieveResponse struct {
	Body         []byte
	HTTPResponse *http.Response
	JSON200      *Product
}

func ParseProductsRetrieveResponse

func ParseProductsRetrieveResponse(rsp *http.Response) (*ProductsRetrieveResponse, error)

ParseProductsRetrieveResponse parses an HTTP response from a ProductsRetrieveWithResponse call

func (ProductsRetrieveResponse) Status

func (r ProductsRetrieveResponse) Status() string

Status returns HTTPResponse.Status

func (ProductsRetrieveResponse) StatusCode

func (r ProductsRetrieveResponse) StatusCode() int

StatusCode returns HTTPResponse.StatusCode

type ProductsUpdateFormdataRequestBody added in v0.2.0

type ProductsUpdateFormdataRequestBody = ProductRequest

ProductsUpdateFormdataRequestBody defines body for ProductsUpdate for application/x-www-form-urlencoded ContentType.

type ProductsUpdateJSONRequestBody

type ProductsUpdateJSONRequestBody = ProductRequest

ProductsUpdateJSONRequestBody defines body for ProductsUpdate for application/json ContentType.

type ProductsUpdateMultipartRequestBody added in v0.2.0

type ProductsUpdateMultipartRequestBody = ProductRequest

ProductsUpdateMultipartRequestBody defines body for ProductsUpdate for multipart/form-data ContentType.

type ProductsUpdateResponse

type ProductsUpdateResponse struct {
	Body         []byte
	HTTPResponse *http.Response
	JSON200      *Product
}

func ParseProductsUpdateResponse

func ParseProductsUpdateResponse(rsp *http.Response) (*ProductsUpdateResponse, error)

ParseProductsUpdateResponse parses an HTTP response from a ProductsUpdateWithResponse call

func (ProductsUpdateResponse) Status

func (r ProductsUpdateResponse) Status() string

Status returns HTTPResponse.Status

func (ProductsUpdateResponse) StatusCode

func (r ProductsUpdateResponse) StatusCode() int

StatusCode returns HTTPResponse.StatusCode

type QuestionnaireAnswer added in v0.2.0

type QuestionnaireAnswer struct {
	AnsweredSurvey int        `json:"answered_survey"`
	Created        *time.Time `json:"created,omitempty"`
	Id             *int       `json:"id,omitempty"`
	Modified       *time.Time `json:"modified,omitempty"`
	Question       int        `json:"question"`
}

QuestionnaireAnswer defines model for QuestionnaireAnswer.

type QuestionnaireAnsweredQuestionnairesListParams added in v0.2.0

type QuestionnaireAnsweredQuestionnairesListParams struct {
	// Limit Number of results to return per page.
	Limit *int `form:"limit,omitempty" json:"limit,omitempty"`

	// Offset The initial index from which to return the results.
	Offset *int `form:"offset,omitempty" json:"offset,omitempty"`
}

QuestionnaireAnsweredQuestionnairesListParams defines parameters for QuestionnaireAnsweredQuestionnairesList.

type QuestionnaireAnsweredQuestionnairesListResponse added in v0.2.0

type QuestionnaireAnsweredQuestionnairesListResponse struct {
	Body         []byte
	HTTPResponse *http.Response
	JSON200      *PaginatedQuestionnaireAnsweredSurveyList
}

func ParseQuestionnaireAnsweredQuestionnairesListResponse added in v0.2.0

func ParseQuestionnaireAnsweredQuestionnairesListResponse(rsp *http.Response) (*QuestionnaireAnsweredQuestionnairesListResponse, error)

ParseQuestionnaireAnsweredQuestionnairesListResponse parses an HTTP response from a QuestionnaireAnsweredQuestionnairesListWithResponse call

func (QuestionnaireAnsweredQuestionnairesListResponse) Status added in v0.2.0

Status returns HTTPResponse.Status

func (QuestionnaireAnsweredQuestionnairesListResponse) StatusCode added in v0.2.0

StatusCode returns HTTPResponse.StatusCode

type QuestionnaireAnsweredQuestionnairesRetrieveResponse added in v0.2.0

type QuestionnaireAnsweredQuestionnairesRetrieveResponse struct {
	Body         []byte
	HTTPResponse *http.Response
	JSON200      *QuestionnaireAnsweredSurvey
}

func ParseQuestionnaireAnsweredQuestionnairesRetrieveResponse added in v0.2.0

func ParseQuestionnaireAnsweredQuestionnairesRetrieveResponse(rsp *http.Response) (*QuestionnaireAnsweredQuestionnairesRetrieveResponse, error)

ParseQuestionnaireAnsweredQuestionnairesRetrieveResponse parses an HTTP response from a QuestionnaireAnsweredQuestionnairesRetrieveWithResponse call

func (QuestionnaireAnsweredQuestionnairesRetrieveResponse) Status added in v0.2.0

Status returns HTTPResponse.Status

func (QuestionnaireAnsweredQuestionnairesRetrieveResponse) StatusCode added in v0.2.0

StatusCode returns HTTPResponse.StatusCode

type QuestionnaireAnsweredSurvey added in v0.2.0

type QuestionnaireAnsweredSurvey struct {
	AnsweredOn *openapi_types.Date `json:"answered_on"`
	Assignee   *int                `json:"assignee"`
	Completed  *bool               `json:"completed,omitempty"`
	Engagement *int                `json:"engagement"`
	Id         *int                `json:"id,omitempty"`
	Responder  *int                `json:"responder"`
	Survey     int                 `json:"survey"`
}

QuestionnaireAnsweredSurvey defines model for QuestionnaireAnsweredSurvey.

type QuestionnaireAnswersListParams added in v0.2.0

type QuestionnaireAnswersListParams struct {
	// Limit Number of results to return per page.
	Limit *int `form:"limit,omitempty" json:"limit,omitempty"`

	// Offset The initial index from which to return the results.
	Offset *int `form:"offset,omitempty" json:"offset,omitempty"`
}

QuestionnaireAnswersListParams defines parameters for QuestionnaireAnswersList.

type QuestionnaireAnswersListResponse added in v0.2.0

type QuestionnaireAnswersListResponse struct {
	Body         []byte
	HTTPResponse *http.Response
	JSON200      *PaginatedQuestionnaireAnswerList
}

func ParseQuestionnaireAnswersListResponse added in v0.2.0

func ParseQuestionnaireAnswersListResponse(rsp *http.Response) (*QuestionnaireAnswersListResponse, error)

ParseQuestionnaireAnswersListResponse parses an HTTP response from a QuestionnaireAnswersListWithResponse call

func (QuestionnaireAnswersListResponse) Status added in v0.2.0

Status returns HTTPResponse.Status

func (QuestionnaireAnswersListResponse) StatusCode added in v0.2.0

func (r QuestionnaireAnswersListResponse) StatusCode() int

StatusCode returns HTTPResponse.StatusCode

type QuestionnaireAnswersRetrieveResponse added in v0.2.0

type QuestionnaireAnswersRetrieveResponse struct {
	Body         []byte
	HTTPResponse *http.Response
	JSON200      *QuestionnaireAnswer
}

func ParseQuestionnaireAnswersRetrieveResponse added in v0.2.0

func ParseQuestionnaireAnswersRetrieveResponse(rsp *http.Response) (*QuestionnaireAnswersRetrieveResponse, error)

ParseQuestionnaireAnswersRetrieveResponse parses an HTTP response from a QuestionnaireAnswersRetrieveWithResponse call

func (QuestionnaireAnswersRetrieveResponse) Status added in v0.2.0

Status returns HTTPResponse.Status

func (QuestionnaireAnswersRetrieveResponse) StatusCode added in v0.2.0

StatusCode returns HTTPResponse.StatusCode

type QuestionnaireEngagementQuestionnairesListParams added in v0.2.0

type QuestionnaireEngagementQuestionnairesListParams struct {
	// Limit Number of results to return per page.
	Limit *int `form:"limit,omitempty" json:"limit,omitempty"`

	// Offset The initial index from which to return the results.
	Offset *int `form:"offset,omitempty" json:"offset,omitempty"`
}

QuestionnaireEngagementQuestionnairesListParams defines parameters for QuestionnaireEngagementQuestionnairesList.

type QuestionnaireEngagementQuestionnairesListResponse added in v0.2.0

type QuestionnaireEngagementQuestionnairesListResponse struct {
	Body         []byte
	HTTPResponse *http.Response
	JSON200      *PaginatedQuestionnaireEngagementSurveyList
}

func ParseQuestionnaireEngagementQuestionnairesListResponse added in v0.2.0

func ParseQuestionnaireEngagementQuestionnairesListResponse(rsp *http.Response) (*QuestionnaireEngagementQuestionnairesListResponse, error)

ParseQuestionnaireEngagementQuestionnairesListResponse parses an HTTP response from a QuestionnaireEngagementQuestionnairesListWithResponse call

func (QuestionnaireEngagementQuestionnairesListResponse) Status added in v0.2.0

Status returns HTTPResponse.Status

func (QuestionnaireEngagementQuestionnairesListResponse) StatusCode added in v0.2.0

StatusCode returns HTTPResponse.StatusCode

type QuestionnaireEngagementQuestionnairesRetrieveResponse added in v0.2.0

type QuestionnaireEngagementQuestionnairesRetrieveResponse struct {
	Body         []byte
	HTTPResponse *http.Response
	JSON200      *QuestionnaireEngagementSurvey
}

func ParseQuestionnaireEngagementQuestionnairesRetrieveResponse added in v0.2.0

func ParseQuestionnaireEngagementQuestionnairesRetrieveResponse(rsp *http.Response) (*QuestionnaireEngagementQuestionnairesRetrieveResponse, error)

ParseQuestionnaireEngagementQuestionnairesRetrieveResponse parses an HTTP response from a QuestionnaireEngagementQuestionnairesRetrieveWithResponse call

func (QuestionnaireEngagementQuestionnairesRetrieveResponse) Status added in v0.2.0

Status returns HTTPResponse.Status

func (QuestionnaireEngagementQuestionnairesRetrieveResponse) StatusCode added in v0.2.0

StatusCode returns HTTPResponse.StatusCode

type QuestionnaireEngagementSurvey added in v0.2.0

type QuestionnaireEngagementSurvey struct {
	Active      *bool     `json:"active,omitempty"`
	Description *string   `json:"description,omitempty"`
	Id          *int      `json:"id,omitempty"`
	Name        *string   `json:"name,omitempty"`
	Questions   *[]string `json:"questions,omitempty"`
}

QuestionnaireEngagementSurvey defines model for QuestionnaireEngagementSurvey.

type QuestionnaireGeneralQuestionnairesListParams added in v0.2.0

type QuestionnaireGeneralQuestionnairesListParams struct {
	// Limit Number of results to return per page.
	Limit *int `form:"limit,omitempty" json:"limit,omitempty"`

	// Offset The initial index from which to return the results.
	Offset *int `form:"offset,omitempty" json:"offset,omitempty"`
}

QuestionnaireGeneralQuestionnairesListParams defines parameters for QuestionnaireGeneralQuestionnairesList.

type QuestionnaireGeneralQuestionnairesListResponse added in v0.2.0

type QuestionnaireGeneralQuestionnairesListResponse struct {
	Body         []byte
	HTTPResponse *http.Response
	JSON200      *PaginatedQuestionnaireGeneralSurveyList
}

func ParseQuestionnaireGeneralQuestionnairesListResponse added in v0.2.0

func ParseQuestionnaireGeneralQuestionnairesListResponse(rsp *http.Response) (*QuestionnaireGeneralQuestionnairesListResponse, error)

ParseQuestionnaireGeneralQuestionnairesListResponse parses an HTTP response from a QuestionnaireGeneralQuestionnairesListWithResponse call

func (QuestionnaireGeneralQuestionnairesListResponse) Status added in v0.2.0

Status returns HTTPResponse.Status

func (QuestionnaireGeneralQuestionnairesListResponse) StatusCode added in v0.2.0

StatusCode returns HTTPResponse.StatusCode

type QuestionnaireGeneralQuestionnairesRetrieveResponse added in v0.2.0

type QuestionnaireGeneralQuestionnairesRetrieveResponse struct {
	Body         []byte
	HTTPResponse *http.Response
	JSON200      *QuestionnaireGeneralSurvey
}

func ParseQuestionnaireGeneralQuestionnairesRetrieveResponse added in v0.2.0

func ParseQuestionnaireGeneralQuestionnairesRetrieveResponse(rsp *http.Response) (*QuestionnaireGeneralQuestionnairesRetrieveResponse, error)

ParseQuestionnaireGeneralQuestionnairesRetrieveResponse parses an HTTP response from a QuestionnaireGeneralQuestionnairesRetrieveWithResponse call

func (QuestionnaireGeneralQuestionnairesRetrieveResponse) Status added in v0.2.0

Status returns HTTPResponse.Status

func (QuestionnaireGeneralQuestionnairesRetrieveResponse) StatusCode added in v0.2.0

StatusCode returns HTTPResponse.StatusCode

type QuestionnaireGeneralSurvey added in v0.2.0

type QuestionnaireGeneralSurvey struct {
	Expiration   time.Time                     `json:"expiration"`
	Generated    *time.Time                    `json:"generated"`
	Id           *int                          `json:"id,omitempty"`
	NumResponses *int                          `json:"num_responses,omitempty"`
	Survey       QuestionnaireEngagementSurvey `json:"survey"`
}

QuestionnaireGeneralSurvey defines model for QuestionnaireGeneralSurvey.

type QuestionnaireQuestion added in v0.2.0

type QuestionnaireQuestion struct {
	Created  *time.Time `json:"created,omitempty"`
	Id       *int       `json:"id,omitempty"`
	Modified *time.Time `json:"modified,omitempty"`

	// Optional If selected, user doesn't have to answer this question
	Optional *bool `json:"optional,omitempty"`

	// Order The render order
	Order *int `json:"order,omitempty"`

	// Text The question text
	Text *string `json:"text,omitempty"`
}

QuestionnaireQuestion defines model for QuestionnaireQuestion.

type QuestionnaireQuestionsListParams added in v0.2.0

type QuestionnaireQuestionsListParams struct {
	// Limit Number of results to return per page.
	Limit *int `form:"limit,omitempty" json:"limit,omitempty"`

	// Offset The initial index from which to return the results.
	Offset *int `form:"offset,omitempty" json:"offset,omitempty"`
}

QuestionnaireQuestionsListParams defines parameters for QuestionnaireQuestionsList.

type QuestionnaireQuestionsListResponse added in v0.2.0

type QuestionnaireQuestionsListResponse struct {
	Body         []byte
	HTTPResponse *http.Response
	JSON200      *PaginatedQuestionnaireQuestionList
}

func ParseQuestionnaireQuestionsListResponse added in v0.2.0

func ParseQuestionnaireQuestionsListResponse(rsp *http.Response) (*QuestionnaireQuestionsListResponse, error)

ParseQuestionnaireQuestionsListResponse parses an HTTP response from a QuestionnaireQuestionsListWithResponse call

func (QuestionnaireQuestionsListResponse) Status added in v0.2.0

Status returns HTTPResponse.Status

func (QuestionnaireQuestionsListResponse) StatusCode added in v0.2.0

func (r QuestionnaireQuestionsListResponse) StatusCode() int

StatusCode returns HTTPResponse.StatusCode

type QuestionnaireQuestionsRetrieveResponse added in v0.2.0

type QuestionnaireQuestionsRetrieveResponse struct {
	Body         []byte
	HTTPResponse *http.Response
	JSON200      *QuestionnaireQuestion
}

func ParseQuestionnaireQuestionsRetrieveResponse added in v0.2.0

func ParseQuestionnaireQuestionsRetrieveResponse(rsp *http.Response) (*QuestionnaireQuestionsRetrieveResponse, error)

ParseQuestionnaireQuestionsRetrieveResponse parses an HTTP response from a QuestionnaireQuestionsRetrieveWithResponse call

func (QuestionnaireQuestionsRetrieveResponse) Status added in v0.2.0

Status returns HTTPResponse.Status

func (QuestionnaireQuestionsRetrieveResponse) StatusCode added in v0.2.0

StatusCode returns HTTPResponse.StatusCode

type RawFile added in v0.2.0

type RawFile struct {
	File string `json:"file"`
}

RawFile defines model for RawFile.

type ReImportScan

type ReImportScan struct {
	// Active Override the active setting from the tool.
	Active               bool  `json:"active"`
	ApiScanConfiguration *int  `json:"api_scan_configuration"`
	AutoCreateContext    *bool `json:"auto_create_context,omitempty"`

	// BranchTag Branch or Tag that was scanned.
	BranchTag *string `json:"branch_tag,omitempty"`

	// BuildId ID of the build that was scanned.
	BuildId *string `json:"build_id,omitempty"`

	// CloseOldFindings Select if old findings no longer present in the report get closed as mitigated when importing.
	CloseOldFindings *bool `json:"close_old_findings,omitempty"`

	// CloseOldFindingsProductScope Select if close_old_findings applies to all findings of the same type in the product. By default, it is false meaning that only old findings of the same type in the engagement are in scope. Note that this only applies on the first call to reimport-scan.
	CloseOldFindingsProductScope *bool `json:"close_old_findings_product_scope,omitempty"`

	// CommitHash Commit that was scanned.
	CommitHash *string `json:"commit_hash,omitempty"`

	// CreateFindingGroupsForAllFindings If set to false, finding groups will only be created when there is more than one grouped finding
	CreateFindingGroupsForAllFindings *bool `json:"create_finding_groups_for_all_findings,omitempty"`
	DeduplicationOnEngagement         *bool `json:"deduplication_on_engagement,omitempty"`

	// DoNotReactivate Select if the import should ignore active findings from the report, useful for triage-less scanners. Will keep existing findings closed, without reactivating them. For more information check the docs.
	DoNotReactivate *bool `json:"do_not_reactivate,omitempty"`
	EndpointToAdd   *int  `json:"endpoint_to_add,omitempty"`

	// EngagementEndDate End Date for Engagement. Default is current time + 365 days. Required format year-month-day
	EngagementEndDate *openapi_types.Date `json:"engagement_end_date,omitempty"`
	EngagementId      *int                `json:"engagement_id,omitempty"`
	EngagementName    *string             `json:"engagement_name,omitempty"`
	Environment       *string             `json:"environment,omitempty"`
	File              *string             `json:"file,omitempty"`

	// GroupBy Choose an option to automatically group new findings by the chosen option.
	//
	// * `component_name` - Component Name
	// * `component_name+component_version` - Component Name + Version
	// * `file_path` - File path
	// * `finding_title` - Finding Title
	GroupBy *ReImportScanGroupBy `json:"group_by,omitempty"`
	Lead    *int                 `json:"lead"`

	// MinimumSeverity Minimum severity level to be imported
	//
	// * `Info` - Info
	// * `Low` - Low
	// * `Medium` - Medium
	// * `High` - High
	// * `Critical` - Critical
	MinimumSeverity *ReImportScanMinimumSeverity `json:"minimum_severity,omitempty"`
	ProductId       *int                         `json:"product_id,omitempty"`
	ProductName     *string                      `json:"product_name,omitempty"`
	ProductTypeId   *int                         `json:"product_type_id,omitempty"`
	ProductTypeName *string                      `json:"product_type_name,omitempty"`
	PushToJira      *bool                        `json:"push_to_jira,omitempty"`

	// ScanDate Scan completion date will be used on all findings.
	ScanDate *openapi_types.Date `json:"scan_date,omitempty"`

	// ScanType * `Acunetix Scan` - Acunetix Scan
	// * `Acunetix360 Scan` - Acunetix360 Scan
	// * `Anchore Engine Scan` - Anchore Engine Scan
	// * `Anchore Enterprise Policy Check` - Anchore Enterprise Policy Check
	// * `Anchore Grype` - Anchore Grype
	// * `AnchoreCTL Policies Report` - AnchoreCTL Policies Report
	// * `AnchoreCTL Vuln Report` - AnchoreCTL Vuln Report
	// * `AppSpider Scan` - AppSpider Scan
	// * `Aqua Scan` - Aqua Scan
	// * `Arachni Scan` - Arachni Scan
	// * `AuditJS Scan` - AuditJS Scan
	// * `AWS Prowler Scan` - AWS Prowler Scan
	// * `AWS Prowler V3` - AWS Prowler V3
	// * `AWS Scout2 Scan` - AWS Scout2 Scan
	// * `AWS Security Finding Format (ASFF) Scan` - AWS Security Finding Format (ASFF) Scan
	// * `AWS Security Hub Scan` - AWS Security Hub Scan
	// * `Azure Security Center Recommendations Scan` - Azure Security Center Recommendations Scan
	// * `Bandit Scan` - Bandit Scan
	// * `BlackDuck API` - BlackDuck API
	// * `Blackduck Component Risk` - Blackduck Component Risk
	// * `Blackduck Hub Scan` - Blackduck Hub Scan
	// * `Brakeman Scan` - Brakeman Scan
	// * `Bugcrowd API Import` - Bugcrowd API Import
	// * `BugCrowd Scan` - BugCrowd Scan
	// * `Bundler-Audit Scan` - Bundler-Audit Scan
	// * `Burp Enterprise Scan` - Burp Enterprise Scan
	// * `Burp GraphQL API` - Burp GraphQL API
	// * `Burp REST API` - Burp REST API
	// * `Burp Scan` - Burp Scan
	// * `CargoAudit Scan` - CargoAudit Scan
	// * `Checkmarx OSA` - Checkmarx OSA
	// * `Checkmarx Scan` - Checkmarx Scan
	// * `Checkmarx Scan detailed` - Checkmarx Scan detailed
	// * `Checkov Scan` - Checkov Scan
	// * `Clair Klar Scan` - Clair Klar Scan
	// * `Clair Scan` - Clair Scan
	// * `Cloudsploit Scan` - Cloudsploit Scan
	// * `Cobalt.io API Import` - Cobalt.io API Import
	// * `Cobalt.io Scan` - Cobalt.io Scan
	// * `Codechecker Report native` - Codechecker Report native
	// * `Contrast Scan` - Contrast Scan
	// * `Coverity API` - Coverity API
	// * `Crashtest Security JSON File` - Crashtest Security JSON File
	// * `Crashtest Security XML File` - Crashtest Security XML File
	// * `CredScan Scan` - CredScan Scan
	// * `CycloneDX Scan` - CycloneDX Scan
	// * `DawnScanner Scan` - DawnScanner Scan
	// * `Dependency Check Scan` - Dependency Check Scan
	// * `Dependency Track Finding Packaging Format (FPF) Export` - Dependency Track Finding Packaging Format (FPF) Export
	// * `Detect-secrets Scan` - Detect-secrets Scan
	// * `docker-bench-security Scan` - docker-bench-security Scan
	// * `Dockle Scan` - Dockle Scan
	// * `DrHeader JSON Importer` - DrHeader JSON Importer
	// * `DSOP Scan` - DSOP Scan
	// * `Edgescan Scan` - Edgescan Scan
	// * `ESLint Scan` - ESLint Scan
	// * `Fortify Scan` - Fortify Scan
	// * `Generic Findings Import` - Generic Findings Import
	// * `Ggshield Scan` - Ggshield Scan
	// * `Github Vulnerability Scan` - Github Vulnerability Scan
	// * `GitLab API Fuzzing Report Scan` - GitLab API Fuzzing Report Scan
	// * `GitLab Container Scan` - GitLab Container Scan
	// * `GitLab DAST Report` - GitLab DAST Report
	// * `GitLab Dependency Scanning Report` - GitLab Dependency Scanning Report
	// * `GitLab SAST Report` - GitLab SAST Report
	// * `GitLab Secret Detection Report` - GitLab Secret Detection Report
	// * `Gitleaks Scan` - Gitleaks Scan
	// * `Gosec Scanner` - Gosec Scanner
	// * `Govulncheck Scanner` - Govulncheck Scanner
	// * `HackerOne Cases` - HackerOne Cases
	// * `Hadolint Dockerfile check` - Hadolint Dockerfile check
	// * `Harbor Vulnerability Scan` - Harbor Vulnerability Scan
	// * `Horusec Scan` - Horusec Scan
	// * `HuskyCI Report` - HuskyCI Report
	// * `Hydra Scan` - Hydra Scan
	// * `IBM AppScan DAST` - IBM AppScan DAST
	// * `Immuniweb Scan` - Immuniweb Scan
	// * `IntSights Report` - IntSights Report
	// * `JFrog Xray API Summary Artifact Scan` - JFrog Xray API Summary Artifact Scan
	// * `JFrog Xray Scan` - JFrog Xray Scan
	// * `JFrog Xray Unified Scan` - JFrog Xray Unified Scan
	// * `KICS Scan` - KICS Scan
	// * `Kiuwan Scan` - Kiuwan Scan
	// * `kube-bench Scan` - kube-bench Scan
	// * `Meterian Scan` - Meterian Scan
	// * `Microfocus Webinspect Scan` - Microfocus Webinspect Scan
	// * `MobSF Scan` - MobSF Scan
	// * `Mobsfscan Scan` - Mobsfscan Scan
	// * `Mozilla Observatory Scan` - Mozilla Observatory Scan
	// * `Netsparker Scan` - Netsparker Scan
	// * `NeuVector (compliance)` - NeuVector (compliance)
	// * `NeuVector (REST)` - NeuVector (REST)
	// * `Nexpose Scan` - Nexpose Scan
	// * `Nikto Scan` - Nikto Scan
	// * `Nmap Scan` - Nmap Scan
	// * `Node Security Platform Scan` - Node Security Platform Scan
	// * `NPM Audit Scan` - NPM Audit Scan
	// * `Nuclei Scan` - Nuclei Scan
	// * `Openscap Vulnerability Scan` - Openscap Vulnerability Scan
	// * `OpenVAS CSV` - OpenVAS CSV
	// * `ORT evaluated model Importer` - ORT evaluated model Importer
	// * `OssIndex Devaudit SCA Scan Importer` - OssIndex Devaudit SCA Scan Importer
	// * `Outpost24 Scan` - Outpost24 Scan
	// * `PHP Security Audit v2` - PHP Security Audit v2
	// * `PHP Symfony Security Check` - PHP Symfony Security Check
	// * `pip-audit Scan` - pip-audit Scan
	// * `PMD Scan` - PMD Scan
	// * `Popeye Scan` - Popeye Scan
	// * `PWN SAST` - PWN SAST
	// * `Qualys Infrastructure Scan (WebGUI XML)` - Qualys Infrastructure Scan (WebGUI XML)
	// * `Qualys Scan` - Qualys Scan
	// * `Qualys Webapp Scan` - Qualys Webapp Scan
	// * `Retire.js Scan` - Retire.js Scan
	// * `Risk Recon API Importer` - Risk Recon API Importer
	// * `Rubocop Scan` - Rubocop Scan
	// * `Rusty Hog Scan` - Rusty Hog Scan
	// * `SARIF` - SARIF
	// * `Scantist Scan` - Scantist Scan
	// * `Scout Suite Scan` - Scout Suite Scan
	// * `Semgrep JSON Report` - Semgrep JSON Report
	// * `SKF Scan` - SKF Scan
	// * `Snyk Scan` - Snyk Scan
	// * `Solar Appscreener Scan` - Solar Appscreener Scan
	// * `SonarQube API Import` - SonarQube API Import
	// * `SonarQube Scan` - SonarQube Scan
	// * `SonarQube Scan detailed` - SonarQube Scan detailed
	// * `Sonatype Application Scan` - Sonatype Application Scan
	// * `SpotBugs Scan` - SpotBugs Scan
	// * `SSL Labs Scan` - SSL Labs Scan
	// * `Sslscan` - Sslscan
	// * `Sslyze Scan` - Sslyze Scan
	// * `SSLyze Scan (JSON)` - SSLyze Scan (JSON)
	// * `StackHawk HawkScan` - StackHawk HawkScan
	// * `Talisman Scan` - Talisman Scan
	// * `Tenable Scan` - Tenable Scan
	// * `Terrascan Scan` - Terrascan Scan
	// * `Testssl Scan` - Testssl Scan
	// * `TFSec Scan` - TFSec Scan
	// * `Trivy Operator Scan` - Trivy Operator Scan
	// * `Trivy Scan` - Trivy Scan
	// * `Trufflehog Scan` - Trufflehog Scan
	// * `Trufflehog3 Scan` - Trufflehog3 Scan
	// * `Trustwave Fusion API Scan` - Trustwave Fusion API Scan
	// * `Trustwave Scan (CSV)` - Trustwave Scan (CSV)
	// * `Twistlock Image Scan` - Twistlock Image Scan
	// * `VCG Scan` - VCG Scan
	// * `Veracode Scan` - Veracode Scan
	// * `Veracode SourceClear Scan` - Veracode SourceClear Scan
	// * `Vulners` - Vulners
	// * `Wapiti Scan` - Wapiti Scan
	// * `Wazuh` - Wazuh
	// * `WFuzz JSON report` - WFuzz JSON report
	// * `Whispers Scan` - Whispers Scan
	// * `WhiteHat Sentinel` - WhiteHat Sentinel
	// * `Whitesource Scan` - Whitesource Scan
	// * `Wpscan` - Wpscan
	// * `Xanitizer Scan` - Xanitizer Scan
	// * `Yarn Audit Scan` - Yarn Audit Scan
	// * `ZAP Scan` - ZAP Scan
	ScanType ReImportScanScanType `json:"scan_type"`

	// Service A service is a self-contained piece of functionality within a Product. This is an optional field which is used in deduplication and closing of old findings when set. This affects the whole engagement/product depending on your deduplication scope.
	Service *string `json:"service,omitempty"`

	// SourceCodeManagementUri Resource link to source code
	SourceCodeManagementUri *string           `json:"source_code_management_uri,omitempty"`
	Statistics              *ImportStatistics `json:"statistics,omitempty"`

	// Tags Modify existing tags that help describe this scan. (Existing test tags will be overwritten)
	Tags      *[]string `json:"tags,omitempty"`
	Test      *int      `json:"test,omitempty"`
	TestId    *int      `json:"test_id,omitempty"`
	TestTitle *string   `json:"test_title,omitempty"`

	// Verified Override the verified setting from the tool.
	Verified bool `json:"verified"`

	// Version Version that will be set on existing Test object. Leave empty to leave existing value in place.
	Version *string `json:"version,omitempty"`
}

ReImportScan defines model for ReImportScan.

type ReImportScanGroupBy

type ReImportScanGroupBy string

ReImportScanGroupBy Choose an option to automatically group new findings by the chosen option.

* `component_name` - Component Name * `component_name+component_version` - Component Name + Version * `file_path` - File path * `finding_title` - Finding Title

const (
	ReImportScanGroupByComponentName                 ReImportScanGroupBy = "component_name"
	ReImportScanGroupByComponentNameComponentVersion ReImportScanGroupBy = "component_name+component_version"
	ReImportScanGroupByFilePath                      ReImportScanGroupBy = "file_path"
	ReImportScanGroupByFindingTitle                  ReImportScanGroupBy = "finding_title"
)

Defines values for ReImportScanGroupBy.

type ReImportScanMinimumSeverity

type ReImportScanMinimumSeverity string

ReImportScanMinimumSeverity Minimum severity level to be imported

* `Info` - Info * `Low` - Low * `Medium` - Medium * `High` - High * `Critical` - Critical

const (
	ReImportScanMinimumSeverityCritical ReImportScanMinimumSeverity = "Critical"
	ReImportScanMinimumSeverityHigh     ReImportScanMinimumSeverity = "High"
	ReImportScanMinimumSeverityInfo     ReImportScanMinimumSeverity = "Info"
	ReImportScanMinimumSeverityLow      ReImportScanMinimumSeverity = "Low"
	ReImportScanMinimumSeverityMedium   ReImportScanMinimumSeverity = "Medium"
)

Defines values for ReImportScanMinimumSeverity.

type ReImportScanRequest added in v0.2.0

type ReImportScanRequest struct {
	// Active Override the active setting from the tool.
	Active               bool  `json:"active"`
	ApiScanConfiguration *int  `json:"api_scan_configuration"`
	AutoCreateContext    *bool `json:"auto_create_context,omitempty"`

	// BranchTag Branch or Tag that was scanned.
	BranchTag *string `json:"branch_tag,omitempty"`

	// BuildId ID of the build that was scanned.
	BuildId *string `json:"build_id,omitempty"`

	// CloseOldFindings Select if old findings no longer present in the report get closed as mitigated when importing.
	CloseOldFindings *bool `json:"close_old_findings,omitempty"`

	// CloseOldFindingsProductScope Select if close_old_findings applies to all findings of the same type in the product. By default, it is false meaning that only old findings of the same type in the engagement are in scope. Note that this only applies on the first call to reimport-scan.
	CloseOldFindingsProductScope *bool `json:"close_old_findings_product_scope,omitempty"`

	// CommitHash Commit that was scanned.
	CommitHash *string `json:"commit_hash,omitempty"`

	// CreateFindingGroupsForAllFindings If set to false, finding groups will only be created when there is more than one grouped finding
	CreateFindingGroupsForAllFindings *bool `json:"create_finding_groups_for_all_findings,omitempty"`
	DeduplicationOnEngagement         *bool `json:"deduplication_on_engagement,omitempty"`

	// DoNotReactivate Select if the import should ignore active findings from the report, useful for triage-less scanners. Will keep existing findings closed, without reactivating them. For more information check the docs.
	DoNotReactivate *bool `json:"do_not_reactivate,omitempty"`
	EndpointToAdd   *int  `json:"endpoint_to_add,omitempty"`

	// EngagementEndDate End Date for Engagement. Default is current time + 365 days. Required format year-month-day
	EngagementEndDate *openapi_types.Date `json:"engagement_end_date,omitempty"`
	EngagementName    *string             `json:"engagement_name,omitempty"`
	Environment       *string             `json:"environment,omitempty"`
	File              *openapi_types.File `json:"file,omitempty"`

	// GroupBy Choose an option to automatically group new findings by the chosen option.
	//
	// * `component_name` - Component Name
	// * `component_name+component_version` - Component Name + Version
	// * `file_path` - File path
	// * `finding_title` - Finding Title
	GroupBy *ReImportScanRequestGroupBy `json:"group_by,omitempty"`
	Lead    *int                        `json:"lead"`

	// MinimumSeverity Minimum severity level to be imported
	//
	// * `Info` - Info
	// * `Low` - Low
	// * `Medium` - Medium
	// * `High` - High
	// * `Critical` - Critical
	MinimumSeverity *ReImportScanRequestMinimumSeverity `json:"minimum_severity,omitempty"`
	ProductName     *string                             `json:"product_name,omitempty"`
	ProductTypeName *string                             `json:"product_type_name,omitempty"`
	PushToJira      *bool                               `json:"push_to_jira,omitempty"`

	// ScanDate Scan completion date will be used on all findings.
	ScanDate *openapi_types.Date `json:"scan_date,omitempty"`

	// ScanType * `Acunetix Scan` - Acunetix Scan
	// * `Acunetix360 Scan` - Acunetix360 Scan
	// * `Anchore Engine Scan` - Anchore Engine Scan
	// * `Anchore Enterprise Policy Check` - Anchore Enterprise Policy Check
	// * `Anchore Grype` - Anchore Grype
	// * `AnchoreCTL Policies Report` - AnchoreCTL Policies Report
	// * `AnchoreCTL Vuln Report` - AnchoreCTL Vuln Report
	// * `AppSpider Scan` - AppSpider Scan
	// * `Aqua Scan` - Aqua Scan
	// * `Arachni Scan` - Arachni Scan
	// * `AuditJS Scan` - AuditJS Scan
	// * `AWS Prowler Scan` - AWS Prowler Scan
	// * `AWS Prowler V3` - AWS Prowler V3
	// * `AWS Scout2 Scan` - AWS Scout2 Scan
	// * `AWS Security Finding Format (ASFF) Scan` - AWS Security Finding Format (ASFF) Scan
	// * `AWS Security Hub Scan` - AWS Security Hub Scan
	// * `Azure Security Center Recommendations Scan` - Azure Security Center Recommendations Scan
	// * `Bandit Scan` - Bandit Scan
	// * `BlackDuck API` - BlackDuck API
	// * `Blackduck Component Risk` - Blackduck Component Risk
	// * `Blackduck Hub Scan` - Blackduck Hub Scan
	// * `Brakeman Scan` - Brakeman Scan
	// * `Bugcrowd API Import` - Bugcrowd API Import
	// * `BugCrowd Scan` - BugCrowd Scan
	// * `Bundler-Audit Scan` - Bundler-Audit Scan
	// * `Burp Enterprise Scan` - Burp Enterprise Scan
	// * `Burp GraphQL API` - Burp GraphQL API
	// * `Burp REST API` - Burp REST API
	// * `Burp Scan` - Burp Scan
	// * `CargoAudit Scan` - CargoAudit Scan
	// * `Checkmarx OSA` - Checkmarx OSA
	// * `Checkmarx Scan` - Checkmarx Scan
	// * `Checkmarx Scan detailed` - Checkmarx Scan detailed
	// * `Checkov Scan` - Checkov Scan
	// * `Clair Klar Scan` - Clair Klar Scan
	// * `Clair Scan` - Clair Scan
	// * `Cloudsploit Scan` - Cloudsploit Scan
	// * `Cobalt.io API Import` - Cobalt.io API Import
	// * `Cobalt.io Scan` - Cobalt.io Scan
	// * `Codechecker Report native` - Codechecker Report native
	// * `Contrast Scan` - Contrast Scan
	// * `Coverity API` - Coverity API
	// * `Crashtest Security JSON File` - Crashtest Security JSON File
	// * `Crashtest Security XML File` - Crashtest Security XML File
	// * `CredScan Scan` - CredScan Scan
	// * `CycloneDX Scan` - CycloneDX Scan
	// * `DawnScanner Scan` - DawnScanner Scan
	// * `Dependency Check Scan` - Dependency Check Scan
	// * `Dependency Track Finding Packaging Format (FPF) Export` - Dependency Track Finding Packaging Format (FPF) Export
	// * `Detect-secrets Scan` - Detect-secrets Scan
	// * `docker-bench-security Scan` - docker-bench-security Scan
	// * `Dockle Scan` - Dockle Scan
	// * `DrHeader JSON Importer` - DrHeader JSON Importer
	// * `DSOP Scan` - DSOP Scan
	// * `Edgescan Scan` - Edgescan Scan
	// * `ESLint Scan` - ESLint Scan
	// * `Fortify Scan` - Fortify Scan
	// * `Generic Findings Import` - Generic Findings Import
	// * `Ggshield Scan` - Ggshield Scan
	// * `Github Vulnerability Scan` - Github Vulnerability Scan
	// * `GitLab API Fuzzing Report Scan` - GitLab API Fuzzing Report Scan
	// * `GitLab Container Scan` - GitLab Container Scan
	// * `GitLab DAST Report` - GitLab DAST Report
	// * `GitLab Dependency Scanning Report` - GitLab Dependency Scanning Report
	// * `GitLab SAST Report` - GitLab SAST Report
	// * `GitLab Secret Detection Report` - GitLab Secret Detection Report
	// * `Gitleaks Scan` - Gitleaks Scan
	// * `Gosec Scanner` - Gosec Scanner
	// * `Govulncheck Scanner` - Govulncheck Scanner
	// * `HackerOne Cases` - HackerOne Cases
	// * `Hadolint Dockerfile check` - Hadolint Dockerfile check
	// * `Harbor Vulnerability Scan` - Harbor Vulnerability Scan
	// * `Horusec Scan` - Horusec Scan
	// * `HuskyCI Report` - HuskyCI Report
	// * `Hydra Scan` - Hydra Scan
	// * `IBM AppScan DAST` - IBM AppScan DAST
	// * `Immuniweb Scan` - Immuniweb Scan
	// * `IntSights Report` - IntSights Report
	// * `JFrog Xray API Summary Artifact Scan` - JFrog Xray API Summary Artifact Scan
	// * `JFrog Xray Scan` - JFrog Xray Scan
	// * `JFrog Xray Unified Scan` - JFrog Xray Unified Scan
	// * `KICS Scan` - KICS Scan
	// * `Kiuwan Scan` - Kiuwan Scan
	// * `kube-bench Scan` - kube-bench Scan
	// * `Meterian Scan` - Meterian Scan
	// * `Microfocus Webinspect Scan` - Microfocus Webinspect Scan
	// * `MobSF Scan` - MobSF Scan
	// * `Mobsfscan Scan` - Mobsfscan Scan
	// * `Mozilla Observatory Scan` - Mozilla Observatory Scan
	// * `Netsparker Scan` - Netsparker Scan
	// * `NeuVector (compliance)` - NeuVector (compliance)
	// * `NeuVector (REST)` - NeuVector (REST)
	// * `Nexpose Scan` - Nexpose Scan
	// * `Nikto Scan` - Nikto Scan
	// * `Nmap Scan` - Nmap Scan
	// * `Node Security Platform Scan` - Node Security Platform Scan
	// * `NPM Audit Scan` - NPM Audit Scan
	// * `Nuclei Scan` - Nuclei Scan
	// * `Openscap Vulnerability Scan` - Openscap Vulnerability Scan
	// * `OpenVAS CSV` - OpenVAS CSV
	// * `ORT evaluated model Importer` - ORT evaluated model Importer
	// * `OssIndex Devaudit SCA Scan Importer` - OssIndex Devaudit SCA Scan Importer
	// * `Outpost24 Scan` - Outpost24 Scan
	// * `PHP Security Audit v2` - PHP Security Audit v2
	// * `PHP Symfony Security Check` - PHP Symfony Security Check
	// * `pip-audit Scan` - pip-audit Scan
	// * `PMD Scan` - PMD Scan
	// * `Popeye Scan` - Popeye Scan
	// * `PWN SAST` - PWN SAST
	// * `Qualys Infrastructure Scan (WebGUI XML)` - Qualys Infrastructure Scan (WebGUI XML)
	// * `Qualys Scan` - Qualys Scan
	// * `Qualys Webapp Scan` - Qualys Webapp Scan
	// * `Retire.js Scan` - Retire.js Scan
	// * `Risk Recon API Importer` - Risk Recon API Importer
	// * `Rubocop Scan` - Rubocop Scan
	// * `Rusty Hog Scan` - Rusty Hog Scan
	// * `SARIF` - SARIF
	// * `Scantist Scan` - Scantist Scan
	// * `Scout Suite Scan` - Scout Suite Scan
	// * `Semgrep JSON Report` - Semgrep JSON Report
	// * `SKF Scan` - SKF Scan
	// * `Snyk Scan` - Snyk Scan
	// * `Solar Appscreener Scan` - Solar Appscreener Scan
	// * `SonarQube API Import` - SonarQube API Import
	// * `SonarQube Scan` - SonarQube Scan
	// * `SonarQube Scan detailed` - SonarQube Scan detailed
	// * `Sonatype Application Scan` - Sonatype Application Scan
	// * `SpotBugs Scan` - SpotBugs Scan
	// * `SSL Labs Scan` - SSL Labs Scan
	// * `Sslscan` - Sslscan
	// * `Sslyze Scan` - Sslyze Scan
	// * `SSLyze Scan (JSON)` - SSLyze Scan (JSON)
	// * `StackHawk HawkScan` - StackHawk HawkScan
	// * `Talisman Scan` - Talisman Scan
	// * `Tenable Scan` - Tenable Scan
	// * `Terrascan Scan` - Terrascan Scan
	// * `Testssl Scan` - Testssl Scan
	// * `TFSec Scan` - TFSec Scan
	// * `Trivy Operator Scan` - Trivy Operator Scan
	// * `Trivy Scan` - Trivy Scan
	// * `Trufflehog Scan` - Trufflehog Scan
	// * `Trufflehog3 Scan` - Trufflehog3 Scan
	// * `Trustwave Fusion API Scan` - Trustwave Fusion API Scan
	// * `Trustwave Scan (CSV)` - Trustwave Scan (CSV)
	// * `Twistlock Image Scan` - Twistlock Image Scan
	// * `VCG Scan` - VCG Scan
	// * `Veracode Scan` - Veracode Scan
	// * `Veracode SourceClear Scan` - Veracode SourceClear Scan
	// * `Vulners` - Vulners
	// * `Wapiti Scan` - Wapiti Scan
	// * `Wazuh` - Wazuh
	// * `WFuzz JSON report` - WFuzz JSON report
	// * `Whispers Scan` - Whispers Scan
	// * `WhiteHat Sentinel` - WhiteHat Sentinel
	// * `Whitesource Scan` - Whitesource Scan
	// * `Wpscan` - Wpscan
	// * `Xanitizer Scan` - Xanitizer Scan
	// * `Yarn Audit Scan` - Yarn Audit Scan
	// * `ZAP Scan` - ZAP Scan
	ScanType ReImportScanRequestScanType `json:"scan_type"`

	// Service A service is a self-contained piece of functionality within a Product. This is an optional field which is used in deduplication and closing of old findings when set. This affects the whole engagement/product depending on your deduplication scope.
	Service *string `json:"service,omitempty"`

	// SourceCodeManagementUri Resource link to source code
	SourceCodeManagementUri *string `json:"source_code_management_uri,omitempty"`

	// Tags Modify existing tags that help describe this scan. (Existing test tags will be overwritten)
	Tags      *[]string `json:"tags,omitempty"`
	Test      *int      `json:"test,omitempty"`
	TestTitle *string   `json:"test_title,omitempty"`

	// Verified Override the verified setting from the tool.
	Verified bool `json:"verified"`

	// Version Version that will be set on existing Test object. Leave empty to leave existing value in place.
	Version *string `json:"version,omitempty"`
}

ReImportScanRequest defines model for ReImportScanRequest.

type ReImportScanRequestGroupBy added in v0.2.0

type ReImportScanRequestGroupBy string

ReImportScanRequestGroupBy Choose an option to automatically group new findings by the chosen option.

* `component_name` - Component Name * `component_name+component_version` - Component Name + Version * `file_path` - File path * `finding_title` - Finding Title

const (
	ReImportScanRequestGroupByComponentName                 ReImportScanRequestGroupBy = "component_name"
	ReImportScanRequestGroupByComponentNameComponentVersion ReImportScanRequestGroupBy = "component_name+component_version"
	ReImportScanRequestGroupByFilePath                      ReImportScanRequestGroupBy = "file_path"
	ReImportScanRequestGroupByFindingTitle                  ReImportScanRequestGroupBy = "finding_title"
)

Defines values for ReImportScanRequestGroupBy.

type ReImportScanRequestMinimumSeverity added in v0.2.0

type ReImportScanRequestMinimumSeverity string

ReImportScanRequestMinimumSeverity Minimum severity level to be imported

* `Info` - Info * `Low` - Low * `Medium` - Medium * `High` - High * `Critical` - Critical

const (
	ReImportScanRequestMinimumSeverityCritical ReImportScanRequestMinimumSeverity = "Critical"
	ReImportScanRequestMinimumSeverityHigh     ReImportScanRequestMinimumSeverity = "High"
	ReImportScanRequestMinimumSeverityInfo     ReImportScanRequestMinimumSeverity = "Info"
	ReImportScanRequestMinimumSeverityLow      ReImportScanRequestMinimumSeverity = "Low"
	ReImportScanRequestMinimumSeverityMedium   ReImportScanRequestMinimumSeverity = "Medium"
)

Defines values for ReImportScanRequestMinimumSeverity.

type ReImportScanRequestScanType added in v0.2.0

type ReImportScanRequestScanType string

ReImportScanRequestScanType * `Acunetix Scan` - Acunetix Scan * `Acunetix360 Scan` - Acunetix360 Scan * `Anchore Engine Scan` - Anchore Engine Scan * `Anchore Enterprise Policy Check` - Anchore Enterprise Policy Check * `Anchore Grype` - Anchore Grype * `AnchoreCTL Policies Report` - AnchoreCTL Policies Report * `AnchoreCTL Vuln Report` - AnchoreCTL Vuln Report * `AppSpider Scan` - AppSpider Scan * `Aqua Scan` - Aqua Scan * `Arachni Scan` - Arachni Scan * `AuditJS Scan` - AuditJS Scan * `AWS Prowler Scan` - AWS Prowler Scan * `AWS Prowler V3` - AWS Prowler V3 * `AWS Scout2 Scan` - AWS Scout2 Scan * `AWS Security Finding Format (ASFF) Scan` - AWS Security Finding Format (ASFF) Scan * `AWS Security Hub Scan` - AWS Security Hub Scan * `Azure Security Center Recommendations Scan` - Azure Security Center Recommendations Scan * `Bandit Scan` - Bandit Scan * `BlackDuck API` - BlackDuck API * `Blackduck Component Risk` - Blackduck Component Risk * `Blackduck Hub Scan` - Blackduck Hub Scan * `Brakeman Scan` - Brakeman Scan * `Bugcrowd API Import` - Bugcrowd API Import * `BugCrowd Scan` - BugCrowd Scan * `Bundler-Audit Scan` - Bundler-Audit Scan * `Burp Enterprise Scan` - Burp Enterprise Scan * `Burp GraphQL API` - Burp GraphQL API * `Burp REST API` - Burp REST API * `Burp Scan` - Burp Scan * `CargoAudit Scan` - CargoAudit Scan * `Checkmarx OSA` - Checkmarx OSA * `Checkmarx Scan` - Checkmarx Scan * `Checkmarx Scan detailed` - Checkmarx Scan detailed * `Checkov Scan` - Checkov Scan * `Clair Klar Scan` - Clair Klar Scan * `Clair Scan` - Clair Scan * `Cloudsploit Scan` - Cloudsploit Scan * `Cobalt.io API Import` - Cobalt.io API Import * `Cobalt.io Scan` - Cobalt.io Scan * `Codechecker Report native` - Codechecker Report native * `Contrast Scan` - Contrast Scan * `Coverity API` - Coverity API * `Crashtest Security JSON File` - Crashtest Security JSON File * `Crashtest Security XML File` - Crashtest Security XML File * `CredScan Scan` - CredScan Scan * `CycloneDX Scan` - CycloneDX Scan * `DawnScanner Scan` - DawnScanner Scan * `Dependency Check Scan` - Dependency Check Scan * `Dependency Track Finding Packaging Format (FPF) Export` - Dependency Track Finding Packaging Format (FPF) Export * `Detect-secrets Scan` - Detect-secrets Scan * `docker-bench-security Scan` - docker-bench-security Scan * `Dockle Scan` - Dockle Scan * `DrHeader JSON Importer` - DrHeader JSON Importer * `DSOP Scan` - DSOP Scan * `Edgescan Scan` - Edgescan Scan * `ESLint Scan` - ESLint Scan * `Fortify Scan` - Fortify Scan * `Generic Findings Import` - Generic Findings Import * `Ggshield Scan` - Ggshield Scan * `Github Vulnerability Scan` - Github Vulnerability Scan * `GitLab API Fuzzing Report Scan` - GitLab API Fuzzing Report Scan * `GitLab Container Scan` - GitLab Container Scan * `GitLab DAST Report` - GitLab DAST Report * `GitLab Dependency Scanning Report` - GitLab Dependency Scanning Report * `GitLab SAST Report` - GitLab SAST Report * `GitLab Secret Detection Report` - GitLab Secret Detection Report * `Gitleaks Scan` - Gitleaks Scan * `Gosec Scanner` - Gosec Scanner * `Govulncheck Scanner` - Govulncheck Scanner * `HackerOne Cases` - HackerOne Cases * `Hadolint Dockerfile check` - Hadolint Dockerfile check * `Harbor Vulnerability Scan` - Harbor Vulnerability Scan * `Horusec Scan` - Horusec Scan * `HuskyCI Report` - HuskyCI Report * `Hydra Scan` - Hydra Scan * `IBM AppScan DAST` - IBM AppScan DAST * `Immuniweb Scan` - Immuniweb Scan * `IntSights Report` - IntSights Report * `JFrog Xray API Summary Artifact Scan` - JFrog Xray API Summary Artifact Scan * `JFrog Xray Scan` - JFrog Xray Scan * `JFrog Xray Unified Scan` - JFrog Xray Unified Scan * `KICS Scan` - KICS Scan * `Kiuwan Scan` - Kiuwan Scan * `kube-bench Scan` - kube-bench Scan * `Meterian Scan` - Meterian Scan * `Microfocus Webinspect Scan` - Microfocus Webinspect Scan * `MobSF Scan` - MobSF Scan * `Mobsfscan Scan` - Mobsfscan Scan * `Mozilla Observatory Scan` - Mozilla Observatory Scan * `Netsparker Scan` - Netsparker Scan * `NeuVector (compliance)` - NeuVector (compliance) * `NeuVector (REST)` - NeuVector (REST) * `Nexpose Scan` - Nexpose Scan * `Nikto Scan` - Nikto Scan * `Nmap Scan` - Nmap Scan * `Node Security Platform Scan` - Node Security Platform Scan * `NPM Audit Scan` - NPM Audit Scan * `Nuclei Scan` - Nuclei Scan * `Openscap Vulnerability Scan` - Openscap Vulnerability Scan * `OpenVAS CSV` - OpenVAS CSV * `ORT evaluated model Importer` - ORT evaluated model Importer * `OssIndex Devaudit SCA Scan Importer` - OssIndex Devaudit SCA Scan Importer * `Outpost24 Scan` - Outpost24 Scan * `PHP Security Audit v2` - PHP Security Audit v2 * `PHP Symfony Security Check` - PHP Symfony Security Check * `pip-audit Scan` - pip-audit Scan * `PMD Scan` - PMD Scan * `Popeye Scan` - Popeye Scan * `PWN SAST` - PWN SAST * `Qualys Infrastructure Scan (WebGUI XML)` - Qualys Infrastructure Scan (WebGUI XML) * `Qualys Scan` - Qualys Scan * `Qualys Webapp Scan` - Qualys Webapp Scan * `Retire.js Scan` - Retire.js Scan * `Risk Recon API Importer` - Risk Recon API Importer * `Rubocop Scan` - Rubocop Scan * `Rusty Hog Scan` - Rusty Hog Scan * `SARIF` - SARIF * `Scantist Scan` - Scantist Scan * `Scout Suite Scan` - Scout Suite Scan * `Semgrep JSON Report` - Semgrep JSON Report * `SKF Scan` - SKF Scan * `Snyk Scan` - Snyk Scan * `Solar Appscreener Scan` - Solar Appscreener Scan * `SonarQube API Import` - SonarQube API Import * `SonarQube Scan` - SonarQube Scan * `SonarQube Scan detailed` - SonarQube Scan detailed * `Sonatype Application Scan` - Sonatype Application Scan * `SpotBugs Scan` - SpotBugs Scan * `SSL Labs Scan` - SSL Labs Scan * `Sslscan` - Sslscan * `Sslyze Scan` - Sslyze Scan * `SSLyze Scan (JSON)` - SSLyze Scan (JSON) * `StackHawk HawkScan` - StackHawk HawkScan * `Talisman Scan` - Talisman Scan * `Tenable Scan` - Tenable Scan * `Terrascan Scan` - Terrascan Scan * `Testssl Scan` - Testssl Scan * `TFSec Scan` - TFSec Scan * `Trivy Operator Scan` - Trivy Operator Scan * `Trivy Scan` - Trivy Scan * `Trufflehog Scan` - Trufflehog Scan * `Trufflehog3 Scan` - Trufflehog3 Scan * `Trustwave Fusion API Scan` - Trustwave Fusion API Scan * `Trustwave Scan (CSV)` - Trustwave Scan (CSV) * `Twistlock Image Scan` - Twistlock Image Scan * `VCG Scan` - VCG Scan * `Veracode Scan` - Veracode Scan * `Veracode SourceClear Scan` - Veracode SourceClear Scan * `Vulners` - Vulners * `Wapiti Scan` - Wapiti Scan * `Wazuh` - Wazuh * `WFuzz JSON report` - WFuzz JSON report * `Whispers Scan` - Whispers Scan * `WhiteHat Sentinel` - WhiteHat Sentinel * `Whitesource Scan` - Whitesource Scan * `Wpscan` - Wpscan * `Xanitizer Scan` - Xanitizer Scan * `Yarn Audit Scan` - Yarn Audit Scan * `ZAP Scan` - ZAP Scan

const (
	ReImportScanRequestScanTypeAWSProwlerScan                                 ReImportScanRequestScanType = "AWS Prowler Scan"
	ReImportScanRequestScanTypeAWSProwlerV3                                   ReImportScanRequestScanType = "AWS Prowler V3"
	ReImportScanRequestScanTypeAWSScout2Scan                                  ReImportScanRequestScanType = "AWS Scout2 Scan"
	ReImportScanRequestScanTypeAWSSecurityFindingFormatASFFScan               ReImportScanRequestScanType = "AWS Security Finding Format (ASFF) Scan"
	ReImportScanRequestScanTypeAWSSecurityHubScan                             ReImportScanRequestScanType = "AWS Security Hub Scan"
	ReImportScanRequestScanTypeAcunetix360Scan                                ReImportScanRequestScanType = "Acunetix360 Scan"
	ReImportScanRequestScanTypeAcunetixScan                                   ReImportScanRequestScanType = "Acunetix Scan"
	ReImportScanRequestScanTypeAnchoreCTLPoliciesReport                       ReImportScanRequestScanType = "AnchoreCTL Policies Report"
	ReImportScanRequestScanTypeAnchoreCTLVulnReport                           ReImportScanRequestScanType = "AnchoreCTL Vuln Report"
	ReImportScanRequestScanTypeAnchoreEngineScan                              ReImportScanRequestScanType = "Anchore Engine Scan"
	ReImportScanRequestScanTypeAnchoreEnterprisePolicyCheck                   ReImportScanRequestScanType = "Anchore Enterprise Policy Check"
	ReImportScanRequestScanTypeAnchoreGrype                                   ReImportScanRequestScanType = "Anchore Grype"
	ReImportScanRequestScanTypeAppSpiderScan                                  ReImportScanRequestScanType = "AppSpider Scan"
	ReImportScanRequestScanTypeAquaScan                                       ReImportScanRequestScanType = "Aqua Scan"
	ReImportScanRequestScanTypeArachniScan                                    ReImportScanRequestScanType = "Arachni Scan"
	ReImportScanRequestScanTypeAuditJSScan                                    ReImportScanRequestScanType = "AuditJS Scan"
	ReImportScanRequestScanTypeAzureSecurityCenterRecommendationsScan         ReImportScanRequestScanType = "Azure Security Center Recommendations Scan"
	ReImportScanRequestScanTypeBanditScan                                     ReImportScanRequestScanType = "Bandit Scan"
	ReImportScanRequestScanTypeBlackDuckAPI                                   ReImportScanRequestScanType = "BlackDuck API"
	ReImportScanRequestScanTypeBlackduckComponentRisk                         ReImportScanRequestScanType = "Blackduck Component Risk"
	ReImportScanRequestScanTypeBlackduckHubScan                               ReImportScanRequestScanType = "Blackduck Hub Scan"
	ReImportScanRequestScanTypeBrakemanScan                                   ReImportScanRequestScanType = "Brakeman Scan"
	ReImportScanRequestScanTypeBugCrowdScan                                   ReImportScanRequestScanType = "BugCrowd Scan"
	ReImportScanRequestScanTypeBugcrowdAPIImport                              ReImportScanRequestScanType = "Bugcrowd API Import"
	ReImportScanRequestScanTypeBundlerAuditScan                               ReImportScanRequestScanType = "Bundler-Audit Scan"
	ReImportScanRequestScanTypeBurpEnterpriseScan                             ReImportScanRequestScanType = "Burp Enterprise Scan"
	ReImportScanRequestScanTypeBurpGraphQLAPI                                 ReImportScanRequestScanType = "Burp GraphQL API"
	ReImportScanRequestScanTypeBurpRESTAPI                                    ReImportScanRequestScanType = "Burp REST API"
	ReImportScanRequestScanTypeBurpScan                                       ReImportScanRequestScanType = "Burp Scan"
	ReImportScanRequestScanTypeCargoAuditScan                                 ReImportScanRequestScanType = "CargoAudit Scan"
	ReImportScanRequestScanTypeCheckmarxOSA                                   ReImportScanRequestScanType = "Checkmarx OSA"
	ReImportScanRequestScanTypeCheckmarxScan                                  ReImportScanRequestScanType = "Checkmarx Scan"
	ReImportScanRequestScanTypeCheckmarxScanDetailed                          ReImportScanRequestScanType = "Checkmarx Scan detailed"
	ReImportScanRequestScanTypeCheckovScan                                    ReImportScanRequestScanType = "Checkov Scan"
	ReImportScanRequestScanTypeClairKlarScan                                  ReImportScanRequestScanType = "Clair Klar Scan"
	ReImportScanRequestScanTypeClairScan                                      ReImportScanRequestScanType = "Clair Scan"
	ReImportScanRequestScanTypeCloudsploitScan                                ReImportScanRequestScanType = "Cloudsploit Scan"
	ReImportScanRequestScanTypeCobaltIoAPIImport                              ReImportScanRequestScanType = "Cobalt.io API Import"
	ReImportScanRequestScanTypeCobaltIoScan                                   ReImportScanRequestScanType = "Cobalt.io Scan"
	ReImportScanRequestScanTypeCodecheckerReportNative                        ReImportScanRequestScanType = "Codechecker Report native"
	ReImportScanRequestScanTypeContrastScan                                   ReImportScanRequestScanType = "Contrast Scan"
	ReImportScanRequestScanTypeCoverityAPI                                    ReImportScanRequestScanType = "Coverity API"
	ReImportScanRequestScanTypeCrashtestSecurityJSONFile                      ReImportScanRequestScanType = "Crashtest Security JSON File"
	ReImportScanRequestScanTypeCrashtestSecurityXMLFile                       ReImportScanRequestScanType = "Crashtest Security XML File"
	ReImportScanRequestScanTypeCredScanScan                                   ReImportScanRequestScanType = "CredScan Scan"
	ReImportScanRequestScanTypeCycloneDXScan                                  ReImportScanRequestScanType = "CycloneDX Scan"
	ReImportScanRequestScanTypeDSOPScan                                       ReImportScanRequestScanType = "DSOP Scan"
	ReImportScanRequestScanTypeDawnScannerScan                                ReImportScanRequestScanType = "DawnScanner Scan"
	ReImportScanRequestScanTypeDependencyCheckScan                            ReImportScanRequestScanType = "Dependency Check Scan"
	ReImportScanRequestScanTypeDependencyTrackFindingPackagingFormatFPFExport ReImportScanRequestScanType = "Dependency Track Finding Packaging Format (FPF) Export"
	ReImportScanRequestScanTypeDetectSecretsScan                              ReImportScanRequestScanType = "Detect-secrets Scan"
	ReImportScanRequestScanTypeDockerBenchSecurityScan                        ReImportScanRequestScanType = "docker-bench-security Scan"
	ReImportScanRequestScanTypeDockleScan                                     ReImportScanRequestScanType = "Dockle Scan"
	ReImportScanRequestScanTypeDrHeaderJSONImporter                           ReImportScanRequestScanType = "DrHeader JSON Importer"
	ReImportScanRequestScanTypeESLintScan                                     ReImportScanRequestScanType = "ESLint Scan"
	ReImportScanRequestScanTypeEdgescanScan                                   ReImportScanRequestScanType = "Edgescan Scan"
	ReImportScanRequestScanTypeFortifyScan                                    ReImportScanRequestScanType = "Fortify Scan"
	ReImportScanRequestScanTypeGenericFindingsImport                          ReImportScanRequestScanType = "Generic Findings Import"
	ReImportScanRequestScanTypeGgshieldScan                                   ReImportScanRequestScanType = "Ggshield Scan"
	ReImportScanRequestScanTypeGitLabAPIFuzzingReportScan                     ReImportScanRequestScanType = "GitLab API Fuzzing Report Scan"
	ReImportScanRequestScanTypeGitLabContainerScan                            ReImportScanRequestScanType = "GitLab Container Scan"
	ReImportScanRequestScanTypeGitLabDASTReport                               ReImportScanRequestScanType = "GitLab DAST Report"
	ReImportScanRequestScanTypeGitLabDependencyScanningReport                 ReImportScanRequestScanType = "GitLab Dependency Scanning Report"
	ReImportScanRequestScanTypeGitLabSASTReport                               ReImportScanRequestScanType = "GitLab SAST Report"
	ReImportScanRequestScanTypeGitLabSecretDetectionReport                    ReImportScanRequestScanType = "GitLab Secret Detection Report"
	ReImportScanRequestScanTypeGithubVulnerabilityScan                        ReImportScanRequestScanType = "Github Vulnerability Scan"
	ReImportScanRequestScanTypeGitleaksScan                                   ReImportScanRequestScanType = "Gitleaks Scan"
	ReImportScanRequestScanTypeGosecScanner                                   ReImportScanRequestScanType = "Gosec Scanner"
	ReImportScanRequestScanTypeGovulncheckScanner                             ReImportScanRequestScanType = "Govulncheck Scanner"
	ReImportScanRequestScanTypeHackerOneCases                                 ReImportScanRequestScanType = "HackerOne Cases"
	ReImportScanRequestScanTypeHadolintDockerfileCheck                        ReImportScanRequestScanType = "Hadolint Dockerfile check"
	ReImportScanRequestScanTypeHarborVulnerabilityScan                        ReImportScanRequestScanType = "Harbor Vulnerability Scan"
	ReImportScanRequestScanTypeHorusecScan                                    ReImportScanRequestScanType = "Horusec Scan"
	ReImportScanRequestScanTypeHuskyCIReport                                  ReImportScanRequestScanType = "HuskyCI Report"
	ReImportScanRequestScanTypeHydraScan                                      ReImportScanRequestScanType = "Hydra Scan"
	ReImportScanRequestScanTypeIBMAppScanDAST                                 ReImportScanRequestScanType = "IBM AppScan DAST"
	ReImportScanRequestScanTypeImmuniwebScan                                  ReImportScanRequestScanType = "Immuniweb Scan"
	ReImportScanRequestScanTypeIntSightsReport                                ReImportScanRequestScanType = "IntSights Report"
	ReImportScanRequestScanTypeJFrogXrayAPISummaryArtifactScan                ReImportScanRequestScanType = "JFrog Xray API Summary Artifact Scan"
	ReImportScanRequestScanTypeJFrogXrayScan                                  ReImportScanRequestScanType = "JFrog Xray Scan"
	ReImportScanRequestScanTypeJFrogXrayUnifiedScan                           ReImportScanRequestScanType = "JFrog Xray Unified Scan"
	ReImportScanRequestScanTypeKICSScan                                       ReImportScanRequestScanType = "KICS Scan"
	ReImportScanRequestScanTypeKiuwanScan                                     ReImportScanRequestScanType = "Kiuwan Scan"
	ReImportScanRequestScanTypeKubeBenchScan                                  ReImportScanRequestScanType = "kube-bench Scan"
	ReImportScanRequestScanTypeMeterianScan                                   ReImportScanRequestScanType = "Meterian Scan"
	ReImportScanRequestScanTypeMicrofocusWebinspectScan                       ReImportScanRequestScanType = "Microfocus Webinspect Scan"
	ReImportScanRequestScanTypeMobSFScan                                      ReImportScanRequestScanType = "MobSF Scan"
	ReImportScanRequestScanTypeMobsfscanScan                                  ReImportScanRequestScanType = "Mobsfscan Scan"
	ReImportScanRequestScanTypeMozillaObservatoryScan                         ReImportScanRequestScanType = "Mozilla Observatory Scan"
	ReImportScanRequestScanTypeNPMAuditScan                                   ReImportScanRequestScanType = "NPM Audit Scan"
	ReImportScanRequestScanTypeNetsparkerScan                                 ReImportScanRequestScanType = "Netsparker Scan"
	ReImportScanRequestScanTypeNeuVectorCompliance                            ReImportScanRequestScanType = "NeuVector (compliance)"
	ReImportScanRequestScanTypeNeuVectorREST                                  ReImportScanRequestScanType = "NeuVector (REST)"
	ReImportScanRequestScanTypeNexposeScan                                    ReImportScanRequestScanType = "Nexpose Scan"
	ReImportScanRequestScanTypeNiktoScan                                      ReImportScanRequestScanType = "Nikto Scan"
	ReImportScanRequestScanTypeNmapScan                                       ReImportScanRequestScanType = "Nmap Scan"
	ReImportScanRequestScanTypeNodeSecurityPlatformScan                       ReImportScanRequestScanType = "Node Security Platform Scan"
	ReImportScanRequestScanTypeNucleiScan                                     ReImportScanRequestScanType = "Nuclei Scan"
	ReImportScanRequestScanTypeORTEvaluatedModelImporter                      ReImportScanRequestScanType = "ORT evaluated model Importer"
	ReImportScanRequestScanTypeOpenVASCSV                                     ReImportScanRequestScanType = "OpenVAS CSV"
	ReImportScanRequestScanTypeOpenscapVulnerabilityScan                      ReImportScanRequestScanType = "Openscap Vulnerability Scan"
	ReImportScanRequestScanTypeOssIndexDevauditSCAScanImporter                ReImportScanRequestScanType = "OssIndex Devaudit SCA Scan Importer"
	ReImportScanRequestScanTypeOutpost24Scan                                  ReImportScanRequestScanType = "Outpost24 Scan"
	ReImportScanRequestScanTypePHPSecurityAuditV2                             ReImportScanRequestScanType = "PHP Security Audit v2"
	ReImportScanRequestScanTypePHPSymfonySecurityCheck                        ReImportScanRequestScanType = "PHP Symfony Security Check"
	ReImportScanRequestScanTypePMDScan                                        ReImportScanRequestScanType = "PMD Scan"
	ReImportScanRequestScanTypePWNSAST                                        ReImportScanRequestScanType = "PWN SAST"
	ReImportScanRequestScanTypePipAuditScan                                   ReImportScanRequestScanType = "pip-audit Scan"
	ReImportScanRequestScanTypePopeyeScan                                     ReImportScanRequestScanType = "Popeye Scan"
	ReImportScanRequestScanTypeQualysInfrastructureScanWebGUIXML              ReImportScanRequestScanType = "Qualys Infrastructure Scan (WebGUI XML)"
	ReImportScanRequestScanTypeQualysScan                                     ReImportScanRequestScanType = "Qualys Scan"
	ReImportScanRequestScanTypeQualysWebappScan                               ReImportScanRequestScanType = "Qualys Webapp Scan"
	ReImportScanRequestScanTypeRetireJsScan                                   ReImportScanRequestScanType = "Retire.js Scan"
	ReImportScanRequestScanTypeRiskReconAPIImporter                           ReImportScanRequestScanType = "Risk Recon API Importer"
	ReImportScanRequestScanTypeRubocopScan                                    ReImportScanRequestScanType = "Rubocop Scan"
	ReImportScanRequestScanTypeRustyHogScan                                   ReImportScanRequestScanType = "Rusty Hog Scan"
	ReImportScanRequestScanTypeSARIF                                          ReImportScanRequestScanType = "SARIF"
	ReImportScanRequestScanTypeSKFScan                                        ReImportScanRequestScanType = "SKF Scan"
	ReImportScanRequestScanTypeSSLLabsScan                                    ReImportScanRequestScanType = "SSL Labs Scan"
	ReImportScanRequestScanTypeSSLyzeScanJSON                                 ReImportScanRequestScanType = "SSLyze Scan (JSON)"
	ReImportScanRequestScanTypeScantistScan                                   ReImportScanRequestScanType = "Scantist Scan"
	ReImportScanRequestScanTypeScoutSuiteScan                                 ReImportScanRequestScanType = "Scout Suite Scan"
	ReImportScanRequestScanTypeSemgrepJSONReport                              ReImportScanRequestScanType = "Semgrep JSON Report"
	ReImportScanRequestScanTypeSnykScan                                       ReImportScanRequestScanType = "Snyk Scan"
	ReImportScanRequestScanTypeSolarAppscreenerScan                           ReImportScanRequestScanType = "Solar Appscreener Scan"
	ReImportScanRequestScanTypeSonarQubeAPIImport                             ReImportScanRequestScanType = "SonarQube API Import"
	ReImportScanRequestScanTypeSonarQubeScan                                  ReImportScanRequestScanType = "SonarQube Scan"
	ReImportScanRequestScanTypeSonarQubeScanDetailed                          ReImportScanRequestScanType = "SonarQube Scan detailed"
	ReImportScanRequestScanTypeSonatypeApplicationScan                        ReImportScanRequestScanType = "Sonatype Application Scan"
	ReImportScanRequestScanTypeSpotBugsScan                                   ReImportScanRequestScanType = "SpotBugs Scan"
	ReImportScanRequestScanTypeSslscan                                        ReImportScanRequestScanType = "Sslscan"
	ReImportScanRequestScanTypeSslyzeScan                                     ReImportScanRequestScanType = "Sslyze Scan"
	ReImportScanRequestScanTypeStackHawkHawkScan                              ReImportScanRequestScanType = "StackHawk HawkScan"
	ReImportScanRequestScanTypeTFSecScan                                      ReImportScanRequestScanType = "TFSec Scan"
	ReImportScanRequestScanTypeTalismanScan                                   ReImportScanRequestScanType = "Talisman Scan"
	ReImportScanRequestScanTypeTenableScan                                    ReImportScanRequestScanType = "Tenable Scan"
	ReImportScanRequestScanTypeTerrascanScan                                  ReImportScanRequestScanType = "Terrascan Scan"
	ReImportScanRequestScanTypeTestsslScan                                    ReImportScanRequestScanType = "Testssl Scan"
	ReImportScanRequestScanTypeTrivyOperatorScan                              ReImportScanRequestScanType = "Trivy Operator Scan"
	ReImportScanRequestScanTypeTrivyScan                                      ReImportScanRequestScanType = "Trivy Scan"
	ReImportScanRequestScanTypeTrufflehog3Scan                                ReImportScanRequestScanType = "Trufflehog3 Scan"
	ReImportScanRequestScanTypeTrufflehogScan                                 ReImportScanRequestScanType = "Trufflehog Scan"
	ReImportScanRequestScanTypeTrustwaveFusionAPIScan                         ReImportScanRequestScanType = "Trustwave Fusion API Scan"
	ReImportScanRequestScanTypeTrustwaveScanCSV                               ReImportScanRequestScanType = "Trustwave Scan (CSV)"
	ReImportScanRequestScanTypeTwistlockImageScan                             ReImportScanRequestScanType = "Twistlock Image Scan"
	ReImportScanRequestScanTypeVCGScan                                        ReImportScanRequestScanType = "VCG Scan"
	ReImportScanRequestScanTypeVeracodeScan                                   ReImportScanRequestScanType = "Veracode Scan"
	ReImportScanRequestScanTypeVeracodeSourceClearScan                        ReImportScanRequestScanType = "Veracode SourceClear Scan"
	ReImportScanRequestScanTypeVulners                                        ReImportScanRequestScanType = "Vulners"
	ReImportScanRequestScanTypeWFuzzJSONReport                                ReImportScanRequestScanType = "WFuzz JSON report"
	ReImportScanRequestScanTypeWapitiScan                                     ReImportScanRequestScanType = "Wapiti Scan"
	ReImportScanRequestScanTypeWazuh                                          ReImportScanRequestScanType = "Wazuh"
	ReImportScanRequestScanTypeWhispersScan                                   ReImportScanRequestScanType = "Whispers Scan"
	ReImportScanRequestScanTypeWhiteHatSentinel                               ReImportScanRequestScanType = "WhiteHat Sentinel"
	ReImportScanRequestScanTypeWhitesourceScan                                ReImportScanRequestScanType = "Whitesource Scan"
	ReImportScanRequestScanTypeWpscan                                         ReImportScanRequestScanType = "Wpscan"
	ReImportScanRequestScanTypeXanitizerScan                                  ReImportScanRequestScanType = "Xanitizer Scan"
	ReImportScanRequestScanTypeYarnAuditScan                                  ReImportScanRequestScanType = "Yarn Audit Scan"
	ReImportScanRequestScanTypeZAPScan                                        ReImportScanRequestScanType = "ZAP Scan"
)

Defines values for ReImportScanRequestScanType.

type ReImportScanScanType

type ReImportScanScanType string

ReImportScanScanType * `Acunetix Scan` - Acunetix Scan * `Acunetix360 Scan` - Acunetix360 Scan * `Anchore Engine Scan` - Anchore Engine Scan * `Anchore Enterprise Policy Check` - Anchore Enterprise Policy Check * `Anchore Grype` - Anchore Grype * `AnchoreCTL Policies Report` - AnchoreCTL Policies Report * `AnchoreCTL Vuln Report` - AnchoreCTL Vuln Report * `AppSpider Scan` - AppSpider Scan * `Aqua Scan` - Aqua Scan * `Arachni Scan` - Arachni Scan * `AuditJS Scan` - AuditJS Scan * `AWS Prowler Scan` - AWS Prowler Scan * `AWS Prowler V3` - AWS Prowler V3 * `AWS Scout2 Scan` - AWS Scout2 Scan * `AWS Security Finding Format (ASFF) Scan` - AWS Security Finding Format (ASFF) Scan * `AWS Security Hub Scan` - AWS Security Hub Scan * `Azure Security Center Recommendations Scan` - Azure Security Center Recommendations Scan * `Bandit Scan` - Bandit Scan * `BlackDuck API` - BlackDuck API * `Blackduck Component Risk` - Blackduck Component Risk * `Blackduck Hub Scan` - Blackduck Hub Scan * `Brakeman Scan` - Brakeman Scan * `Bugcrowd API Import` - Bugcrowd API Import * `BugCrowd Scan` - BugCrowd Scan * `Bundler-Audit Scan` - Bundler-Audit Scan * `Burp Enterprise Scan` - Burp Enterprise Scan * `Burp GraphQL API` - Burp GraphQL API * `Burp REST API` - Burp REST API * `Burp Scan` - Burp Scan * `CargoAudit Scan` - CargoAudit Scan * `Checkmarx OSA` - Checkmarx OSA * `Checkmarx Scan` - Checkmarx Scan * `Checkmarx Scan detailed` - Checkmarx Scan detailed * `Checkov Scan` - Checkov Scan * `Clair Klar Scan` - Clair Klar Scan * `Clair Scan` - Clair Scan * `Cloudsploit Scan` - Cloudsploit Scan * `Cobalt.io API Import` - Cobalt.io API Import * `Cobalt.io Scan` - Cobalt.io Scan * `Codechecker Report native` - Codechecker Report native * `Contrast Scan` - Contrast Scan * `Coverity API` - Coverity API * `Crashtest Security JSON File` - Crashtest Security JSON File * `Crashtest Security XML File` - Crashtest Security XML File * `CredScan Scan` - CredScan Scan * `CycloneDX Scan` - CycloneDX Scan * `DawnScanner Scan` - DawnScanner Scan * `Dependency Check Scan` - Dependency Check Scan * `Dependency Track Finding Packaging Format (FPF) Export` - Dependency Track Finding Packaging Format (FPF) Export * `Detect-secrets Scan` - Detect-secrets Scan * `docker-bench-security Scan` - docker-bench-security Scan * `Dockle Scan` - Dockle Scan * `DrHeader JSON Importer` - DrHeader JSON Importer * `DSOP Scan` - DSOP Scan * `Edgescan Scan` - Edgescan Scan * `ESLint Scan` - ESLint Scan * `Fortify Scan` - Fortify Scan * `Generic Findings Import` - Generic Findings Import * `Ggshield Scan` - Ggshield Scan * `Github Vulnerability Scan` - Github Vulnerability Scan * `GitLab API Fuzzing Report Scan` - GitLab API Fuzzing Report Scan * `GitLab Container Scan` - GitLab Container Scan * `GitLab DAST Report` - GitLab DAST Report * `GitLab Dependency Scanning Report` - GitLab Dependency Scanning Report * `GitLab SAST Report` - GitLab SAST Report * `GitLab Secret Detection Report` - GitLab Secret Detection Report * `Gitleaks Scan` - Gitleaks Scan * `Gosec Scanner` - Gosec Scanner * `Govulncheck Scanner` - Govulncheck Scanner * `HackerOne Cases` - HackerOne Cases * `Hadolint Dockerfile check` - Hadolint Dockerfile check * `Harbor Vulnerability Scan` - Harbor Vulnerability Scan * `Horusec Scan` - Horusec Scan * `HuskyCI Report` - HuskyCI Report * `Hydra Scan` - Hydra Scan * `IBM AppScan DAST` - IBM AppScan DAST * `Immuniweb Scan` - Immuniweb Scan * `IntSights Report` - IntSights Report * `JFrog Xray API Summary Artifact Scan` - JFrog Xray API Summary Artifact Scan * `JFrog Xray Scan` - JFrog Xray Scan * `JFrog Xray Unified Scan` - JFrog Xray Unified Scan * `KICS Scan` - KICS Scan * `Kiuwan Scan` - Kiuwan Scan * `kube-bench Scan` - kube-bench Scan * `Meterian Scan` - Meterian Scan * `Microfocus Webinspect Scan` - Microfocus Webinspect Scan * `MobSF Scan` - MobSF Scan * `Mobsfscan Scan` - Mobsfscan Scan * `Mozilla Observatory Scan` - Mozilla Observatory Scan * `Netsparker Scan` - Netsparker Scan * `NeuVector (compliance)` - NeuVector (compliance) * `NeuVector (REST)` - NeuVector (REST) * `Nexpose Scan` - Nexpose Scan * `Nikto Scan` - Nikto Scan * `Nmap Scan` - Nmap Scan * `Node Security Platform Scan` - Node Security Platform Scan * `NPM Audit Scan` - NPM Audit Scan * `Nuclei Scan` - Nuclei Scan * `Openscap Vulnerability Scan` - Openscap Vulnerability Scan * `OpenVAS CSV` - OpenVAS CSV * `ORT evaluated model Importer` - ORT evaluated model Importer * `OssIndex Devaudit SCA Scan Importer` - OssIndex Devaudit SCA Scan Importer * `Outpost24 Scan` - Outpost24 Scan * `PHP Security Audit v2` - PHP Security Audit v2 * `PHP Symfony Security Check` - PHP Symfony Security Check * `pip-audit Scan` - pip-audit Scan * `PMD Scan` - PMD Scan * `Popeye Scan` - Popeye Scan * `PWN SAST` - PWN SAST * `Qualys Infrastructure Scan (WebGUI XML)` - Qualys Infrastructure Scan (WebGUI XML) * `Qualys Scan` - Qualys Scan * `Qualys Webapp Scan` - Qualys Webapp Scan * `Retire.js Scan` - Retire.js Scan * `Risk Recon API Importer` - Risk Recon API Importer * `Rubocop Scan` - Rubocop Scan * `Rusty Hog Scan` - Rusty Hog Scan * `SARIF` - SARIF * `Scantist Scan` - Scantist Scan * `Scout Suite Scan` - Scout Suite Scan * `Semgrep JSON Report` - Semgrep JSON Report * `SKF Scan` - SKF Scan * `Snyk Scan` - Snyk Scan * `Solar Appscreener Scan` - Solar Appscreener Scan * `SonarQube API Import` - SonarQube API Import * `SonarQube Scan` - SonarQube Scan * `SonarQube Scan detailed` - SonarQube Scan detailed * `Sonatype Application Scan` - Sonatype Application Scan * `SpotBugs Scan` - SpotBugs Scan * `SSL Labs Scan` - SSL Labs Scan * `Sslscan` - Sslscan * `Sslyze Scan` - Sslyze Scan * `SSLyze Scan (JSON)` - SSLyze Scan (JSON) * `StackHawk HawkScan` - StackHawk HawkScan * `Talisman Scan` - Talisman Scan * `Tenable Scan` - Tenable Scan * `Terrascan Scan` - Terrascan Scan * `Testssl Scan` - Testssl Scan * `TFSec Scan` - TFSec Scan * `Trivy Operator Scan` - Trivy Operator Scan * `Trivy Scan` - Trivy Scan * `Trufflehog Scan` - Trufflehog Scan * `Trufflehog3 Scan` - Trufflehog3 Scan * `Trustwave Fusion API Scan` - Trustwave Fusion API Scan * `Trustwave Scan (CSV)` - Trustwave Scan (CSV) * `Twistlock Image Scan` - Twistlock Image Scan * `VCG Scan` - VCG Scan * `Veracode Scan` - Veracode Scan * `Veracode SourceClear Scan` - Veracode SourceClear Scan * `Vulners` - Vulners * `Wapiti Scan` - Wapiti Scan * `Wazuh` - Wazuh * `WFuzz JSON report` - WFuzz JSON report * `Whispers Scan` - Whispers Scan * `WhiteHat Sentinel` - WhiteHat Sentinel * `Whitesource Scan` - Whitesource Scan * `Wpscan` - Wpscan * `Xanitizer Scan` - Xanitizer Scan * `Yarn Audit Scan` - Yarn Audit Scan * `ZAP Scan` - ZAP Scan

const (
	ReImportScanScanTypeAWSProwlerScan                                 ReImportScanScanType = "AWS Prowler Scan"
	ReImportScanScanTypeAWSProwlerV3                                   ReImportScanScanType = "AWS Prowler V3"
	ReImportScanScanTypeAWSScout2Scan                                  ReImportScanScanType = "AWS Scout2 Scan"
	ReImportScanScanTypeAWSSecurityFindingFormatASFFScan               ReImportScanScanType = "AWS Security Finding Format (ASFF) Scan"
	ReImportScanScanTypeAWSSecurityHubScan                             ReImportScanScanType = "AWS Security Hub Scan"
	ReImportScanScanTypeAcunetix360Scan                                ReImportScanScanType = "Acunetix360 Scan"
	ReImportScanScanTypeAcunetixScan                                   ReImportScanScanType = "Acunetix Scan"
	ReImportScanScanTypeAnchoreCTLPoliciesReport                       ReImportScanScanType = "AnchoreCTL Policies Report"
	ReImportScanScanTypeAnchoreCTLVulnReport                           ReImportScanScanType = "AnchoreCTL Vuln Report"
	ReImportScanScanTypeAnchoreEngineScan                              ReImportScanScanType = "Anchore Engine Scan"
	ReImportScanScanTypeAnchoreEnterprisePolicyCheck                   ReImportScanScanType = "Anchore Enterprise Policy Check"
	ReImportScanScanTypeAnchoreGrype                                   ReImportScanScanType = "Anchore Grype"
	ReImportScanScanTypeAppSpiderScan                                  ReImportScanScanType = "AppSpider Scan"
	ReImportScanScanTypeAquaScan                                       ReImportScanScanType = "Aqua Scan"
	ReImportScanScanTypeArachniScan                                    ReImportScanScanType = "Arachni Scan"
	ReImportScanScanTypeAuditJSScan                                    ReImportScanScanType = "AuditJS Scan"
	ReImportScanScanTypeAzureSecurityCenterRecommendationsScan         ReImportScanScanType = "Azure Security Center Recommendations Scan"
	ReImportScanScanTypeBanditScan                                     ReImportScanScanType = "Bandit Scan"
	ReImportScanScanTypeBlackDuckAPI                                   ReImportScanScanType = "BlackDuck API"
	ReImportScanScanTypeBlackduckComponentRisk                         ReImportScanScanType = "Blackduck Component Risk"
	ReImportScanScanTypeBlackduckHubScan                               ReImportScanScanType = "Blackduck Hub Scan"
	ReImportScanScanTypeBrakemanScan                                   ReImportScanScanType = "Brakeman Scan"
	ReImportScanScanTypeBugCrowdScan                                   ReImportScanScanType = "BugCrowd Scan"
	ReImportScanScanTypeBugcrowdAPIImport                              ReImportScanScanType = "Bugcrowd API Import"
	ReImportScanScanTypeBundlerAuditScan                               ReImportScanScanType = "Bundler-Audit Scan"
	ReImportScanScanTypeBurpEnterpriseScan                             ReImportScanScanType = "Burp Enterprise Scan"
	ReImportScanScanTypeBurpGraphQLAPI                                 ReImportScanScanType = "Burp GraphQL API"
	ReImportScanScanTypeBurpRESTAPI                                    ReImportScanScanType = "Burp REST API"
	ReImportScanScanTypeBurpScan                                       ReImportScanScanType = "Burp Scan"
	ReImportScanScanTypeCargoAuditScan                                 ReImportScanScanType = "CargoAudit Scan"
	ReImportScanScanTypeCheckmarxOSA                                   ReImportScanScanType = "Checkmarx OSA"
	ReImportScanScanTypeCheckmarxScan                                  ReImportScanScanType = "Checkmarx Scan"
	ReImportScanScanTypeCheckmarxScanDetailed                          ReImportScanScanType = "Checkmarx Scan detailed"
	ReImportScanScanTypeCheckovScan                                    ReImportScanScanType = "Checkov Scan"
	ReImportScanScanTypeClairKlarScan                                  ReImportScanScanType = "Clair Klar Scan"
	ReImportScanScanTypeClairScan                                      ReImportScanScanType = "Clair Scan"
	ReImportScanScanTypeCloudsploitScan                                ReImportScanScanType = "Cloudsploit Scan"
	ReImportScanScanTypeCobaltIoAPIImport                              ReImportScanScanType = "Cobalt.io API Import"
	ReImportScanScanTypeCobaltIoScan                                   ReImportScanScanType = "Cobalt.io Scan"
	ReImportScanScanTypeCodecheckerReportNative                        ReImportScanScanType = "Codechecker Report native"
	ReImportScanScanTypeContrastScan                                   ReImportScanScanType = "Contrast Scan"
	ReImportScanScanTypeCoverityAPI                                    ReImportScanScanType = "Coverity API"
	ReImportScanScanTypeCrashtestSecurityJSONFile                      ReImportScanScanType = "Crashtest Security JSON File"
	ReImportScanScanTypeCrashtestSecurityXMLFile                       ReImportScanScanType = "Crashtest Security XML File"
	ReImportScanScanTypeCredScanScan                                   ReImportScanScanType = "CredScan Scan"
	ReImportScanScanTypeCycloneDXScan                                  ReImportScanScanType = "CycloneDX Scan"
	ReImportScanScanTypeDSOPScan                                       ReImportScanScanType = "DSOP Scan"
	ReImportScanScanTypeDawnScannerScan                                ReImportScanScanType = "DawnScanner Scan"
	ReImportScanScanTypeDependencyCheckScan                            ReImportScanScanType = "Dependency Check Scan"
	ReImportScanScanTypeDependencyTrackFindingPackagingFormatFPFExport ReImportScanScanType = "Dependency Track Finding Packaging Format (FPF) Export"
	ReImportScanScanTypeDetectSecretsScan                              ReImportScanScanType = "Detect-secrets Scan"
	ReImportScanScanTypeDockerBenchSecurityScan                        ReImportScanScanType = "docker-bench-security Scan"
	ReImportScanScanTypeDockleScan                                     ReImportScanScanType = "Dockle Scan"
	ReImportScanScanTypeDrHeaderJSONImporter                           ReImportScanScanType = "DrHeader JSON Importer"
	ReImportScanScanTypeESLintScan                                     ReImportScanScanType = "ESLint Scan"
	ReImportScanScanTypeEdgescanScan                                   ReImportScanScanType = "Edgescan Scan"
	ReImportScanScanTypeFortifyScan                                    ReImportScanScanType = "Fortify Scan"
	ReImportScanScanTypeGenericFindingsImport                          ReImportScanScanType = "Generic Findings Import"
	ReImportScanScanTypeGgshieldScan                                   ReImportScanScanType = "Ggshield Scan"
	ReImportScanScanTypeGitLabAPIFuzzingReportScan                     ReImportScanScanType = "GitLab API Fuzzing Report Scan"
	ReImportScanScanTypeGitLabContainerScan                            ReImportScanScanType = "GitLab Container Scan"
	ReImportScanScanTypeGitLabDASTReport                               ReImportScanScanType = "GitLab DAST Report"
	ReImportScanScanTypeGitLabDependencyScanningReport                 ReImportScanScanType = "GitLab Dependency Scanning Report"
	ReImportScanScanTypeGitLabSASTReport                               ReImportScanScanType = "GitLab SAST Report"
	ReImportScanScanTypeGitLabSecretDetectionReport                    ReImportScanScanType = "GitLab Secret Detection Report"
	ReImportScanScanTypeGithubVulnerabilityScan                        ReImportScanScanType = "Github Vulnerability Scan"
	ReImportScanScanTypeGitleaksScan                                   ReImportScanScanType = "Gitleaks Scan"
	ReImportScanScanTypeGosecScanner                                   ReImportScanScanType = "Gosec Scanner"
	ReImportScanScanTypeGovulncheckScanner                             ReImportScanScanType = "Govulncheck Scanner"
	ReImportScanScanTypeHackerOneCases                                 ReImportScanScanType = "HackerOne Cases"
	ReImportScanScanTypeHadolintDockerfileCheck                        ReImportScanScanType = "Hadolint Dockerfile check"
	ReImportScanScanTypeHarborVulnerabilityScan                        ReImportScanScanType = "Harbor Vulnerability Scan"
	ReImportScanScanTypeHorusecScan                                    ReImportScanScanType = "Horusec Scan"
	ReImportScanScanTypeHuskyCIReport                                  ReImportScanScanType = "HuskyCI Report"
	ReImportScanScanTypeHydraScan                                      ReImportScanScanType = "Hydra Scan"
	ReImportScanScanTypeIBMAppScanDAST                                 ReImportScanScanType = "IBM AppScan DAST"
	ReImportScanScanTypeImmuniwebScan                                  ReImportScanScanType = "Immuniweb Scan"
	ReImportScanScanTypeIntSightsReport                                ReImportScanScanType = "IntSights Report"
	ReImportScanScanTypeJFrogXrayAPISummaryArtifactScan                ReImportScanScanType = "JFrog Xray API Summary Artifact Scan"
	ReImportScanScanTypeJFrogXrayScan                                  ReImportScanScanType = "JFrog Xray Scan"
	ReImportScanScanTypeJFrogXrayUnifiedScan                           ReImportScanScanType = "JFrog Xray Unified Scan"
	ReImportScanScanTypeKICSScan                                       ReImportScanScanType = "KICS Scan"
	ReImportScanScanTypeKiuwanScan                                     ReImportScanScanType = "Kiuwan Scan"
	ReImportScanScanTypeKubeBenchScan                                  ReImportScanScanType = "kube-bench Scan"
	ReImportScanScanTypeMeterianScan                                   ReImportScanScanType = "Meterian Scan"
	ReImportScanScanTypeMicrofocusWebinspectScan                       ReImportScanScanType = "Microfocus Webinspect Scan"
	ReImportScanScanTypeMobSFScan                                      ReImportScanScanType = "MobSF Scan"
	ReImportScanScanTypeMobsfscanScan                                  ReImportScanScanType = "Mobsfscan Scan"
	ReImportScanScanTypeMozillaObservatoryScan                         ReImportScanScanType = "Mozilla Observatory Scan"
	ReImportScanScanTypeNPMAuditScan                                   ReImportScanScanType = "NPM Audit Scan"
	ReImportScanScanTypeNetsparkerScan                                 ReImportScanScanType = "Netsparker Scan"
	ReImportScanScanTypeNeuVectorCompliance                            ReImportScanScanType = "NeuVector (compliance)"
	ReImportScanScanTypeNeuVectorREST                                  ReImportScanScanType = "NeuVector (REST)"
	ReImportScanScanTypeNexposeScan                                    ReImportScanScanType = "Nexpose Scan"
	ReImportScanScanTypeNiktoScan                                      ReImportScanScanType = "Nikto Scan"
	ReImportScanScanTypeNmapScan                                       ReImportScanScanType = "Nmap Scan"
	ReImportScanScanTypeNodeSecurityPlatformScan                       ReImportScanScanType = "Node Security Platform Scan"
	ReImportScanScanTypeNucleiScan                                     ReImportScanScanType = "Nuclei Scan"
	ReImportScanScanTypeORTEvaluatedModelImporter                      ReImportScanScanType = "ORT evaluated model Importer"
	ReImportScanScanTypeOpenVASCSV                                     ReImportScanScanType = "OpenVAS CSV"
	ReImportScanScanTypeOpenscapVulnerabilityScan                      ReImportScanScanType = "Openscap Vulnerability Scan"
	ReImportScanScanTypeOssIndexDevauditSCAScanImporter                ReImportScanScanType = "OssIndex Devaudit SCA Scan Importer"
	ReImportScanScanTypeOutpost24Scan                                  ReImportScanScanType = "Outpost24 Scan"
	ReImportScanScanTypePHPSecurityAuditV2                             ReImportScanScanType = "PHP Security Audit v2"
	ReImportScanScanTypePHPSymfonySecurityCheck                        ReImportScanScanType = "PHP Symfony Security Check"
	ReImportScanScanTypePMDScan                                        ReImportScanScanType = "PMD Scan"
	ReImportScanScanTypePWNSAST                                        ReImportScanScanType = "PWN SAST"
	ReImportScanScanTypePipAuditScan                                   ReImportScanScanType = "pip-audit Scan"
	ReImportScanScanTypePopeyeScan                                     ReImportScanScanType = "Popeye Scan"
	ReImportScanScanTypeQualysInfrastructureScanWebGUIXML              ReImportScanScanType = "Qualys Infrastructure Scan (WebGUI XML)"
	ReImportScanScanTypeQualysScan                                     ReImportScanScanType = "Qualys Scan"
	ReImportScanScanTypeQualysWebappScan                               ReImportScanScanType = "Qualys Webapp Scan"
	ReImportScanScanTypeRetireJsScan                                   ReImportScanScanType = "Retire.js Scan"
	ReImportScanScanTypeRiskReconAPIImporter                           ReImportScanScanType = "Risk Recon API Importer"
	ReImportScanScanTypeRubocopScan                                    ReImportScanScanType = "Rubocop Scan"
	ReImportScanScanTypeRustyHogScan                                   ReImportScanScanType = "Rusty Hog Scan"
	ReImportScanScanTypeSARIF                                          ReImportScanScanType = "SARIF"
	ReImportScanScanTypeSKFScan                                        ReImportScanScanType = "SKF Scan"
	ReImportScanScanTypeSSLLabsScan                                    ReImportScanScanType = "SSL Labs Scan"
	ReImportScanScanTypeSSLyzeScanJSON                                 ReImportScanScanType = "SSLyze Scan (JSON)"
	ReImportScanScanTypeScantistScan                                   ReImportScanScanType = "Scantist Scan"
	ReImportScanScanTypeScoutSuiteScan                                 ReImportScanScanType = "Scout Suite Scan"
	ReImportScanScanTypeSemgrepJSONReport                              ReImportScanScanType = "Semgrep JSON Report"
	ReImportScanScanTypeSnykScan                                       ReImportScanScanType = "Snyk Scan"
	ReImportScanScanTypeSolarAppscreenerScan                           ReImportScanScanType = "Solar Appscreener Scan"
	ReImportScanScanTypeSonarQubeAPIImport                             ReImportScanScanType = "SonarQube API Import"
	ReImportScanScanTypeSonarQubeScan                                  ReImportScanScanType = "SonarQube Scan"
	ReImportScanScanTypeSonarQubeScanDetailed                          ReImportScanScanType = "SonarQube Scan detailed"
	ReImportScanScanTypeSonatypeApplicationScan                        ReImportScanScanType = "Sonatype Application Scan"
	ReImportScanScanTypeSpotBugsScan                                   ReImportScanScanType = "SpotBugs Scan"
	ReImportScanScanTypeSslscan                                        ReImportScanScanType = "Sslscan"
	ReImportScanScanTypeSslyzeScan                                     ReImportScanScanType = "Sslyze Scan"
	ReImportScanScanTypeStackHawkHawkScan                              ReImportScanScanType = "StackHawk HawkScan"
	ReImportScanScanTypeTFSecScan                                      ReImportScanScanType = "TFSec Scan"
	ReImportScanScanTypeTalismanScan                                   ReImportScanScanType = "Talisman Scan"
	ReImportScanScanTypeTenableScan                                    ReImportScanScanType = "Tenable Scan"
	ReImportScanScanTypeTerrascanScan                                  ReImportScanScanType = "Terrascan Scan"
	ReImportScanScanTypeTestsslScan                                    ReImportScanScanType = "Testssl Scan"
	ReImportScanScanTypeTrivyOperatorScan                              ReImportScanScanType = "Trivy Operator Scan"
	ReImportScanScanTypeTrivyScan                                      ReImportScanScanType = "Trivy Scan"
	ReImportScanScanTypeTrufflehog3Scan                                ReImportScanScanType = "Trufflehog3 Scan"
	ReImportScanScanTypeTrufflehogScan                                 ReImportScanScanType = "Trufflehog Scan"
	ReImportScanScanTypeTrustwaveFusionAPIScan                         ReImportScanScanType = "Trustwave Fusion API Scan"
	ReImportScanScanTypeTrustwaveScanCSV                               ReImportScanScanType = "Trustwave Scan (CSV)"
	ReImportScanScanTypeTwistlockImageScan                             ReImportScanScanType = "Twistlock Image Scan"
	ReImportScanScanTypeVCGScan                                        ReImportScanScanType = "VCG Scan"
	ReImportScanScanTypeVeracodeScan                                   ReImportScanScanType = "Veracode Scan"
	ReImportScanScanTypeVeracodeSourceClearScan                        ReImportScanScanType = "Veracode SourceClear Scan"
	ReImportScanScanTypeVulners                                        ReImportScanScanType = "Vulners"
	ReImportScanScanTypeWFuzzJSONReport                                ReImportScanScanType = "WFuzz JSON report"
	ReImportScanScanTypeWapitiScan                                     ReImportScanScanType = "Wapiti Scan"
	ReImportScanScanTypeWazuh                                          ReImportScanScanType = "Wazuh"
	ReImportScanScanTypeWhispersScan                                   ReImportScanScanType = "Whispers Scan"
	ReImportScanScanTypeWhiteHatSentinel                               ReImportScanScanType = "WhiteHat Sentinel"
	ReImportScanScanTypeWhitesourceScan                                ReImportScanScanType = "Whitesource Scan"
	ReImportScanScanTypeWpscan                                         ReImportScanScanType = "Wpscan"
	ReImportScanScanTypeXanitizerScan                                  ReImportScanScanType = "Xanitizer Scan"
	ReImportScanScanTypeYarnAuditScan                                  ReImportScanScanType = "Yarn Audit Scan"
	ReImportScanScanTypeZAPScan                                        ReImportScanScanType = "ZAP Scan"
)

Defines values for ReImportScanScanType.

type Regulation

type Regulation struct {
	// Acronym A shortened representation of the name.
	Acronym string `json:"acronym"`

	// Category The subject of the regulation.
	//
	// * `privacy` - Privacy
	// * `finance` - Finance
	// * `education` - Education
	// * `medical` - Medical
	// * `corporate` - Corporate
	// * `other` - Other
	Category RegulationCategory `json:"category"`

	// Description Information about the regulation's purpose.
	Description *string `json:"description,omitempty"`
	Id          *int    `json:"id,omitempty"`

	// Jurisdiction The territory over which the regulation applies.
	Jurisdiction string `json:"jurisdiction"`

	// Name The name of the regulation.
	Name string `json:"name"`

	// Reference An external URL for more information.
	Reference *string `json:"reference,omitempty"`
}

Regulation defines model for Regulation.

type RegulationCategory

type RegulationCategory string

RegulationCategory The subject of the regulation.

* `privacy` - Privacy * `finance` - Finance * `education` - Education * `medical` - Medical * `corporate` - Corporate * `other` - Other

const (
	RegulationCategoryCorporate RegulationCategory = "corporate"
	RegulationCategoryEducation RegulationCategory = "education"
	RegulationCategoryFinance   RegulationCategory = "finance"
	RegulationCategoryMedical   RegulationCategory = "medical"
	RegulationCategoryOther     RegulationCategory = "other"
	RegulationCategoryPrivacy   RegulationCategory = "privacy"
)

Defines values for RegulationCategory.

type RegulationRequest added in v0.2.0

type RegulationRequest struct {
	// Acronym A shortened representation of the name.
	Acronym string `json:"acronym"`

	// Category The subject of the regulation.
	//
	// * `privacy` - Privacy
	// * `finance` - Finance
	// * `education` - Education
	// * `medical` - Medical
	// * `corporate` - Corporate
	// * `other` - Other
	Category RegulationRequestCategory `json:"category"`

	// Description Information about the regulation's purpose.
	Description *string `json:"description,omitempty"`

	// Jurisdiction The territory over which the regulation applies.
	Jurisdiction string `json:"jurisdiction"`

	// Name The name of the regulation.
	Name string `json:"name"`

	// Reference An external URL for more information.
	Reference *string `json:"reference,omitempty"`
}

RegulationRequest defines model for RegulationRequest.

type RegulationRequestCategory added in v0.2.0

type RegulationRequestCategory string

RegulationRequestCategory The subject of the regulation.

* `privacy` - Privacy * `finance` - Finance * `education` - Education * `medical` - Medical * `corporate` - Corporate * `other` - Other

const (
	Corporate RegulationRequestCategory = "corporate"
	Education RegulationRequestCategory = "education"
	Finance   RegulationRequestCategory = "finance"
	Medical   RegulationRequestCategory = "medical"
	Other     RegulationRequestCategory = "other"
	Privacy   RegulationRequestCategory = "privacy"
)

Defines values for RegulationRequestCategory.

type RegulationsCreateFormdataRequestBody added in v0.2.0

type RegulationsCreateFormdataRequestBody = RegulationRequest

RegulationsCreateFormdataRequestBody defines body for RegulationsCreate for application/x-www-form-urlencoded ContentType.

type RegulationsCreateJSONRequestBody

type RegulationsCreateJSONRequestBody = RegulationRequest

RegulationsCreateJSONRequestBody defines body for RegulationsCreate for application/json ContentType.

type RegulationsCreateMultipartRequestBody added in v0.2.0

type RegulationsCreateMultipartRequestBody = RegulationRequest

RegulationsCreateMultipartRequestBody defines body for RegulationsCreate for multipart/form-data ContentType.

type RegulationsCreateResponse

type RegulationsCreateResponse struct {
	Body         []byte
	HTTPResponse *http.Response
	JSON201      *Regulation
}

func ParseRegulationsCreateResponse

func ParseRegulationsCreateResponse(rsp *http.Response) (*RegulationsCreateResponse, error)

ParseRegulationsCreateResponse parses an HTTP response from a RegulationsCreateWithResponse call

func (RegulationsCreateResponse) Status

func (r RegulationsCreateResponse) Status() string

Status returns HTTPResponse.Status

func (RegulationsCreateResponse) StatusCode

func (r RegulationsCreateResponse) StatusCode() int

StatusCode returns HTTPResponse.StatusCode

type RegulationsDeletePreviewListParams added in v0.2.0

type RegulationsDeletePreviewListParams struct {
	// Limit Number of results to return per page.
	Limit *int `form:"limit,omitempty" json:"limit,omitempty"`

	// Offset The initial index from which to return the results.
	Offset *int `form:"offset,omitempty" json:"offset,omitempty"`
}

RegulationsDeletePreviewListParams defines parameters for RegulationsDeletePreviewList.

type RegulationsDeletePreviewListResponse added in v0.2.0

type RegulationsDeletePreviewListResponse struct {
	Body         []byte
	HTTPResponse *http.Response
	JSON200      *PaginatedDeletePreviewList
}

func ParseRegulationsDeletePreviewListResponse added in v0.2.0

func ParseRegulationsDeletePreviewListResponse(rsp *http.Response) (*RegulationsDeletePreviewListResponse, error)

ParseRegulationsDeletePreviewListResponse parses an HTTP response from a RegulationsDeletePreviewListWithResponse call

func (RegulationsDeletePreviewListResponse) Status added in v0.2.0

Status returns HTTPResponse.Status

func (RegulationsDeletePreviewListResponse) StatusCode added in v0.2.0

StatusCode returns HTTPResponse.StatusCode

type RegulationsDestroyResponse

type RegulationsDestroyResponse struct {
	Body         []byte
	HTTPResponse *http.Response
}

func ParseRegulationsDestroyResponse

func ParseRegulationsDestroyResponse(rsp *http.Response) (*RegulationsDestroyResponse, error)

ParseRegulationsDestroyResponse parses an HTTP response from a RegulationsDestroyWithResponse call

func (RegulationsDestroyResponse) Status

Status returns HTTPResponse.Status

func (RegulationsDestroyResponse) StatusCode

func (r RegulationsDestroyResponse) StatusCode() int

StatusCode returns HTTPResponse.StatusCode

type RegulationsListParams

type RegulationsListParams struct {
	Description *string `form:"description,omitempty" json:"description,omitempty"`
	Id          *int    `form:"id,omitempty" json:"id,omitempty"`

	// Limit Number of results to return per page.
	Limit *int    `form:"limit,omitempty" json:"limit,omitempty"`
	Name  *string `form:"name,omitempty" json:"name,omitempty"`

	// Offset The initial index from which to return the results.
	Offset *int `form:"offset,omitempty" json:"offset,omitempty"`
}

RegulationsListParams defines parameters for RegulationsList.

type RegulationsListResponse

type RegulationsListResponse struct {
	Body         []byte
	HTTPResponse *http.Response
	JSON200      *PaginatedRegulationList
}

func ParseRegulationsListResponse

func ParseRegulationsListResponse(rsp *http.Response) (*RegulationsListResponse, error)

ParseRegulationsListResponse parses an HTTP response from a RegulationsListWithResponse call

func (RegulationsListResponse) Status

func (r RegulationsListResponse) Status() string

Status returns HTTPResponse.Status

func (RegulationsListResponse) StatusCode

func (r RegulationsListResponse) StatusCode() int

StatusCode returns HTTPResponse.StatusCode

type RegulationsPartialUpdateFormdataRequestBody added in v0.2.0

type RegulationsPartialUpdateFormdataRequestBody = PatchedRegulationRequest

RegulationsPartialUpdateFormdataRequestBody defines body for RegulationsPartialUpdate for application/x-www-form-urlencoded ContentType.

type RegulationsPartialUpdateJSONRequestBody

type RegulationsPartialUpdateJSONRequestBody = PatchedRegulationRequest

RegulationsPartialUpdateJSONRequestBody defines body for RegulationsPartialUpdate for application/json ContentType.

type RegulationsPartialUpdateMultipartRequestBody added in v0.2.0

type RegulationsPartialUpdateMultipartRequestBody = PatchedRegulationRequest

RegulationsPartialUpdateMultipartRequestBody defines body for RegulationsPartialUpdate for multipart/form-data ContentType.

type RegulationsPartialUpdateResponse

type RegulationsPartialUpdateResponse struct {
	Body         []byte
	HTTPResponse *http.Response
	JSON200      *Regulation
}

func ParseRegulationsPartialUpdateResponse

func ParseRegulationsPartialUpdateResponse(rsp *http.Response) (*RegulationsPartialUpdateResponse, error)

ParseRegulationsPartialUpdateResponse parses an HTTP response from a RegulationsPartialUpdateWithResponse call

func (RegulationsPartialUpdateResponse) Status

Status returns HTTPResponse.Status

func (RegulationsPartialUpdateResponse) StatusCode

func (r RegulationsPartialUpdateResponse) StatusCode() int

StatusCode returns HTTPResponse.StatusCode

type RegulationsRetrieveResponse

type RegulationsRetrieveResponse struct {
	Body         []byte
	HTTPResponse *http.Response
	JSON200      *Regulation
}

func ParseRegulationsRetrieveResponse

func ParseRegulationsRetrieveResponse(rsp *http.Response) (*RegulationsRetrieveResponse, error)

ParseRegulationsRetrieveResponse parses an HTTP response from a RegulationsRetrieveWithResponse call

func (RegulationsRetrieveResponse) Status

Status returns HTTPResponse.Status

func (RegulationsRetrieveResponse) StatusCode

func (r RegulationsRetrieveResponse) StatusCode() int

StatusCode returns HTTPResponse.StatusCode

type RegulationsUpdateFormdataRequestBody added in v0.2.0

type RegulationsUpdateFormdataRequestBody = RegulationRequest

RegulationsUpdateFormdataRequestBody defines body for RegulationsUpdate for application/x-www-form-urlencoded ContentType.

type RegulationsUpdateJSONRequestBody

type RegulationsUpdateJSONRequestBody = RegulationRequest

RegulationsUpdateJSONRequestBody defines body for RegulationsUpdate for application/json ContentType.

type RegulationsUpdateMultipartRequestBody added in v0.2.0

type RegulationsUpdateMultipartRequestBody = RegulationRequest

RegulationsUpdateMultipartRequestBody defines body for RegulationsUpdate for multipart/form-data ContentType.

type RegulationsUpdateResponse

type RegulationsUpdateResponse struct {
	Body         []byte
	HTTPResponse *http.Response
	JSON200      *Regulation
}

func ParseRegulationsUpdateResponse

func ParseRegulationsUpdateResponse(rsp *http.Response) (*RegulationsUpdateResponse, error)

ParseRegulationsUpdateResponse parses an HTTP response from a RegulationsUpdateWithResponse call

func (RegulationsUpdateResponse) Status

func (r RegulationsUpdateResponse) Status() string

Status returns HTTPResponse.Status

func (RegulationsUpdateResponse) StatusCode

func (r RegulationsUpdateResponse) StatusCode() int

StatusCode returns HTTPResponse.StatusCode

type ReimportScanCreateMultipartRequestBody added in v0.2.0

type ReimportScanCreateMultipartRequestBody = ReImportScanRequest

ReimportScanCreateMultipartRequestBody defines body for ReimportScanCreate for multipart/form-data ContentType.

type ReimportScanCreateResponse

type ReimportScanCreateResponse struct {
	Body         []byte
	HTTPResponse *http.Response
	JSON201      *ReImportScan
}

func ParseReimportScanCreateResponse

func ParseReimportScanCreateResponse(rsp *http.Response) (*ReimportScanCreateResponse, error)

ParseReimportScanCreateResponse parses an HTTP response from a ReimportScanCreateWithResponse call

func (ReimportScanCreateResponse) Status

Status returns HTTPResponse.Status

func (ReimportScanCreateResponse) StatusCode

func (r ReimportScanCreateResponse) StatusCode() int

StatusCode returns HTTPResponse.StatusCode

type ReportGenerate

type ReportGenerate struct {
	Endpoint         *Endpoint         `json:"endpoint,omitempty"`
	Endpoints        *[]Endpoint       `json:"endpoints,omitempty"`
	Engagement       *Engagement       `json:"engagement,omitempty"`
	ExecutiveSummary *ExecutiveSummary `json:"executive_summary"`
	FindingNotes     *[]FindingToNotes `json:"finding_notes"`
	Findings         *[]Finding        `json:"findings,omitempty"`
	Host             string            `json:"host"`
	Product          *Product          `json:"product,omitempty"`
	ProductType      *ProductType      `json:"product_type,omitempty"`
	ReportInfo       string            `json:"report_info"`
	ReportName       string            `json:"report_name"`
	TeamName         string            `json:"team_name"`
	Test             *Test             `json:"test,omitempty"`
	Title            string            `json:"title"`
	User             *UserStub         `json:"user,omitempty"`
	UserId           int               `json:"user_id"`
}

ReportGenerate defines model for ReportGenerate.

type ReportGenerateOptionRequest added in v0.2.0

type ReportGenerateOptionRequest struct {
	IncludeExecutiveSummary *bool `json:"include_executive_summary,omitempty"`
	IncludeFindingImages    *bool `json:"include_finding_images,omitempty"`
	IncludeFindingNotes     *bool `json:"include_finding_notes,omitempty"`
	IncludeTableOfContents  *bool `json:"include_table_of_contents,omitempty"`
}

ReportGenerateOptionRequest defines model for ReportGenerateOptionRequest.

type RequestEditorFn

type RequestEditorFn func(ctx context.Context, req *http.Request) error

RequestEditorFn is the function signature for the RequestEditor callback function

type RiskAcceptance

type RiskAcceptance struct {
	// AcceptedBy The person that accepts the risk, can be outside of DefectDojo.
	AcceptedBy       *string    `json:"accepted_by"`
	AcceptedFindings []int      `json:"accepted_findings"`
	Created          *time.Time `json:"created,omitempty"`
	Decision         *string    `json:"decision,omitempty"`

	// DecisionDetails If a compensating control exists to mitigate the finding or reduce risk, then list the compensating control(s).
	DecisionDetails *string `json:"decision_details"`

	// ExpirationDate When the risk acceptance expires, the findings will be reactivated (unless disabled below).
	ExpirationDate *time.Time `json:"expiration_date"`

	// ExpirationDateHandled (readonly) When the risk acceptance expiration was handled (manually or by the daily job).
	ExpirationDateHandled *time.Time `json:"expiration_date_handled"`

	// ExpirationDateWarned (readonly) Date at which notice about the risk acceptance expiration was sent.
	ExpirationDateWarned *time.Time `json:"expiration_date_warned"`
	Id                   *int       `json:"id,omitempty"`

	// Name Descriptive name which in the future may also be used to group risk acceptances together across engagements and products
	Name  string `json:"name"`
	Notes *[]int `json:"notes,omitempty"`

	// Owner User in DefectDojo owning this acceptance. Only the owner and staff users can edit the risk acceptance.
	Owner int     `json:"owner"`
	Path  *string `json:"path,omitempty"`

	// ReactivateExpired Reactivate findings when risk acceptance expires?
	ReactivateExpired *bool   `json:"reactivate_expired,omitempty"`
	Recommendation    *string `json:"recommendation,omitempty"`

	// RecommendationDetails Explanation of security recommendation
	RecommendationDetails *string `json:"recommendation_details"`

	// RestartSlaExpired When enabled, the SLA for findings is restarted when the risk acceptance expires.
	RestartSlaExpired *bool      `json:"restart_sla_expired,omitempty"`
	Updated           *time.Time `json:"updated,omitempty"`
}

RiskAcceptance defines model for RiskAcceptance.

type RiskAcceptanceDeletePreviewListParams added in v0.2.0

type RiskAcceptanceDeletePreviewListParams struct {
	// Limit Number of results to return per page.
	Limit *int `form:"limit,omitempty" json:"limit,omitempty"`

	// Offset The initial index from which to return the results.
	Offset *int `form:"offset,omitempty" json:"offset,omitempty"`
}

RiskAcceptanceDeletePreviewListParams defines parameters for RiskAcceptanceDeletePreviewList.

type RiskAcceptanceDeletePreviewListResponse added in v0.2.0

type RiskAcceptanceDeletePreviewListResponse struct {
	Body         []byte
	HTTPResponse *http.Response
	JSON200      *PaginatedDeletePreviewList
}

func ParseRiskAcceptanceDeletePreviewListResponse added in v0.2.0

func ParseRiskAcceptanceDeletePreviewListResponse(rsp *http.Response) (*RiskAcceptanceDeletePreviewListResponse, error)

ParseRiskAcceptanceDeletePreviewListResponse parses an HTTP response from a RiskAcceptanceDeletePreviewListWithResponse call

func (RiskAcceptanceDeletePreviewListResponse) Status added in v0.2.0

Status returns HTTPResponse.Status

func (RiskAcceptanceDeletePreviewListResponse) StatusCode added in v0.2.0

StatusCode returns HTTPResponse.StatusCode

type RiskAcceptanceDestroyResponse added in v0.2.0

type RiskAcceptanceDestroyResponse struct {
	Body         []byte
	HTTPResponse *http.Response
}

func ParseRiskAcceptanceDestroyResponse added in v0.2.0

func ParseRiskAcceptanceDestroyResponse(rsp *http.Response) (*RiskAcceptanceDestroyResponse, error)

ParseRiskAcceptanceDestroyResponse parses an HTTP response from a RiskAcceptanceDestroyWithResponse call

func (RiskAcceptanceDestroyResponse) Status added in v0.2.0

Status returns HTTPResponse.Status

func (RiskAcceptanceDestroyResponse) StatusCode added in v0.2.0

func (r RiskAcceptanceDestroyResponse) StatusCode() int

StatusCode returns HTTPResponse.StatusCode

type RiskAcceptanceDownloadProofRetrieveResponse added in v0.2.0

type RiskAcceptanceDownloadProofRetrieveResponse struct {
	Body         []byte
	HTTPResponse *http.Response
	JSON200      *RiskAcceptanceProof
}

func ParseRiskAcceptanceDownloadProofRetrieveResponse added in v0.2.0

func ParseRiskAcceptanceDownloadProofRetrieveResponse(rsp *http.Response) (*RiskAcceptanceDownloadProofRetrieveResponse, error)

ParseRiskAcceptanceDownloadProofRetrieveResponse parses an HTTP response from a RiskAcceptanceDownloadProofRetrieveWithResponse call

func (RiskAcceptanceDownloadProofRetrieveResponse) Status added in v0.2.0

Status returns HTTPResponse.Status

func (RiskAcceptanceDownloadProofRetrieveResponse) StatusCode added in v0.2.0

StatusCode returns HTTPResponse.StatusCode

type RiskAcceptanceListParams added in v0.2.0

type RiskAcceptanceListParams struct {
	AcceptedBy       *string `form:"accepted_by,omitempty" json:"accepted_by,omitempty"`
	AcceptedFindings *[]int  `form:"accepted_findings,omitempty" json:"accepted_findings,omitempty"`

	// Decision Risk treatment decision by risk owner
	//
	// * `A` - Accept (The risk is acknowledged, yet remains)
	// * `V` - Avoid (Do not engage with whatever creates the risk)
	// * `M` - Mitigate (The risk still exists, yet compensating controls make it less of a threat)
	// * `F` - Fix (The risk is eradicated)
	// * `T` - Transfer (The risk is transferred to a 3rd party)
	Decision              *RiskAcceptanceListParamsDecision `form:"decision,omitempty" json:"decision,omitempty"`
	DecisionDetails       *string                           `form:"decision_details,omitempty" json:"decision_details,omitempty"`
	ExpirationDate        *time.Time                        `form:"expiration_date,omitempty" json:"expiration_date,omitempty"`
	ExpirationDateHandled *time.Time                        `form:"expiration_date_handled,omitempty" json:"expiration_date_handled,omitempty"`
	ExpirationDateWarned  *time.Time                        `form:"expiration_date_warned,omitempty" json:"expiration_date_warned,omitempty"`

	// Limit Number of results to return per page.
	Limit *int    `form:"limit,omitempty" json:"limit,omitempty"`
	Name  *string `form:"name,omitempty" json:"name,omitempty"`
	Notes *[]int  `form:"notes,omitempty" json:"notes,omitempty"`

	// O Ordering
	//
	// * `name` - Name
	// * `-name` - Name (descending)
	O *[]RiskAcceptanceListParamsO `form:"o,omitempty" json:"o,omitempty"`

	// Offset The initial index from which to return the results.
	Offset            *int  `form:"offset,omitempty" json:"offset,omitempty"`
	Owner             *int  `form:"owner,omitempty" json:"owner,omitempty"`
	ReactivateExpired *bool `form:"reactivate_expired,omitempty" json:"reactivate_expired,omitempty"`

	// Recommendation Recommendation from the security team.
	//
	// * `A` - Accept (The risk is acknowledged, yet remains)
	// * `V` - Avoid (Do not engage with whatever creates the risk)
	// * `M` - Mitigate (The risk still exists, yet compensating controls make it less of a threat)
	// * `F` - Fix (The risk is eradicated)
	// * `T` - Transfer (The risk is transferred to a 3rd party)
	Recommendation        *RiskAcceptanceListParamsRecommendation `form:"recommendation,omitempty" json:"recommendation,omitempty"`
	RecommendationDetails *string                                 `form:"recommendation_details,omitempty" json:"recommendation_details,omitempty"`
	RestartSlaExpired     *bool                                   `form:"restart_sla_expired,omitempty" json:"restart_sla_expired,omitempty"`
}

RiskAcceptanceListParams defines parameters for RiskAcceptanceList.

type RiskAcceptanceListParamsDecision added in v0.2.0

type RiskAcceptanceListParamsDecision string

RiskAcceptanceListParamsDecision defines parameters for RiskAcceptanceList.

const (
	RiskAcceptanceListParamsDecisionA RiskAcceptanceListParamsDecision = "A"
	RiskAcceptanceListParamsDecisionF RiskAcceptanceListParamsDecision = "F"
	RiskAcceptanceListParamsDecisionM RiskAcceptanceListParamsDecision = "M"
	RiskAcceptanceListParamsDecisionT RiskAcceptanceListParamsDecision = "T"
	RiskAcceptanceListParamsDecisionV RiskAcceptanceListParamsDecision = "V"
)

Defines values for RiskAcceptanceListParamsDecision.

type RiskAcceptanceListParamsO added in v0.2.0

type RiskAcceptanceListParamsO string

RiskAcceptanceListParamsO defines parameters for RiskAcceptanceList.

const (
	MinusName RiskAcceptanceListParamsO = "-name"
	Name      RiskAcceptanceListParamsO = "name"
)

Defines values for RiskAcceptanceListParamsO.

type RiskAcceptanceListParamsRecommendation added in v0.2.0

type RiskAcceptanceListParamsRecommendation string

RiskAcceptanceListParamsRecommendation defines parameters for RiskAcceptanceList.

const (
	RiskAcceptanceListParamsRecommendationA RiskAcceptanceListParamsRecommendation = "A"
	RiskAcceptanceListParamsRecommendationF RiskAcceptanceListParamsRecommendation = "F"
	RiskAcceptanceListParamsRecommendationM RiskAcceptanceListParamsRecommendation = "M"
	RiskAcceptanceListParamsRecommendationT RiskAcceptanceListParamsRecommendation = "T"
	RiskAcceptanceListParamsRecommendationV RiskAcceptanceListParamsRecommendation = "V"
)

Defines values for RiskAcceptanceListParamsRecommendation.

type RiskAcceptanceListResponse added in v0.2.0

type RiskAcceptanceListResponse struct {
	Body         []byte
	HTTPResponse *http.Response
	JSON200      *PaginatedRiskAcceptanceList
}

func ParseRiskAcceptanceListResponse added in v0.2.0

func ParseRiskAcceptanceListResponse(rsp *http.Response) (*RiskAcceptanceListResponse, error)

ParseRiskAcceptanceListResponse parses an HTTP response from a RiskAcceptanceListWithResponse call

func (RiskAcceptanceListResponse) Status added in v0.2.0

Status returns HTTPResponse.Status

func (RiskAcceptanceListResponse) StatusCode added in v0.2.0

func (r RiskAcceptanceListResponse) StatusCode() int

StatusCode returns HTTPResponse.StatusCode

type RiskAcceptanceProof added in v0.2.0

type RiskAcceptanceProof struct {
	Path string `json:"path"`
}

RiskAcceptanceProof defines model for RiskAcceptanceProof.

type RiskAcceptanceRetrieveResponse added in v0.2.0

type RiskAcceptanceRetrieveResponse struct {
	Body         []byte
	HTTPResponse *http.Response
	JSON200      *RiskAcceptance
}

func ParseRiskAcceptanceRetrieveResponse added in v0.2.0

func ParseRiskAcceptanceRetrieveResponse(rsp *http.Response) (*RiskAcceptanceRetrieveResponse, error)

ParseRiskAcceptanceRetrieveResponse parses an HTTP response from a RiskAcceptanceRetrieveWithResponse call

func (RiskAcceptanceRetrieveResponse) Status added in v0.2.0

Status returns HTTPResponse.Status

func (RiskAcceptanceRetrieveResponse) StatusCode added in v0.2.0

func (r RiskAcceptanceRetrieveResponse) StatusCode() int

StatusCode returns HTTPResponse.StatusCode

type Role

type Role struct {
	Id      *int   `json:"id,omitempty"`
	IsOwner *bool  `json:"is_owner,omitempty"`
	Name    string `json:"name"`
}

Role defines model for Role.

type RolesListParams

type RolesListParams struct {
	Id *int `form:"id,omitempty" json:"id,omitempty"`

	// Limit Number of results to return per page.
	Limit *int    `form:"limit,omitempty" json:"limit,omitempty"`
	Name  *string `form:"name,omitempty" json:"name,omitempty"`

	// Offset The initial index from which to return the results.
	Offset *int `form:"offset,omitempty" json:"offset,omitempty"`
}

RolesListParams defines parameters for RolesList.

type RolesListResponse

type RolesListResponse struct {
	Body         []byte
	HTTPResponse *http.Response
	JSON200      *PaginatedRoleList
}

func ParseRolesListResponse

func ParseRolesListResponse(rsp *http.Response) (*RolesListResponse, error)

ParseRolesListResponse parses an HTTP response from a RolesListWithResponse call

func (RolesListResponse) Status

func (r RolesListResponse) Status() string

Status returns HTTPResponse.Status

func (RolesListResponse) StatusCode

func (r RolesListResponse) StatusCode() int

StatusCode returns HTTPResponse.StatusCode

type RolesRetrieveResponse

type RolesRetrieveResponse struct {
	Body         []byte
	HTTPResponse *http.Response
	JSON200      *Role
}

func ParseRolesRetrieveResponse

func ParseRolesRetrieveResponse(rsp *http.Response) (*RolesRetrieveResponse, error)

ParseRolesRetrieveResponse parses an HTTP response from a RolesRetrieveWithResponse call

func (RolesRetrieveResponse) Status

func (r RolesRetrieveResponse) Status() string

Status returns HTTPResponse.Status

func (RolesRetrieveResponse) StatusCode

func (r RolesRetrieveResponse) StatusCode() int

StatusCode returns HTTPResponse.StatusCode

type SLAConfiguration added in v0.2.0

type SLAConfiguration struct {
	// Critical number of days to remediate a critical finding.
	Critical    *int    `json:"critical,omitempty"`
	Description *string `json:"description"`

	// High number of days to remediate a high finding.
	High *int `json:"high,omitempty"`
	Id   *int `json:"id,omitempty"`

	// Low number of days to remediate a low finding.
	Low *int `json:"low,omitempty"`

	// Medium number of days to remediate a medium finding.
	Medium *int `json:"medium,omitempty"`

	// Name A unique name for the set of SLAs.
	Name string `json:"name"`
}

SLAConfiguration defines model for SLAConfiguration.

type SLAConfigurationRequest added in v0.2.0

type SLAConfigurationRequest struct {
	// Critical number of days to remediate a critical finding.
	Critical    *int    `json:"critical,omitempty"`
	Description *string `json:"description"`

	// High number of days to remediate a high finding.
	High *int `json:"high,omitempty"`

	// Low number of days to remediate a low finding.
	Low *int `json:"low,omitempty"`

	// Medium number of days to remediate a medium finding.
	Medium *int `json:"medium,omitempty"`

	// Name A unique name for the set of SLAs.
	Name string `json:"name"`
}

SLAConfigurationRequest defines model for SLAConfigurationRequest.

type ServerInterface

type ServerInterface interface {

	// (POST /api/v2/api-token-auth/)
	ApiTokenAuthCreate(ctx echo.Context) error

	// (GET /api/v2/configuration_permissions/)
	ConfigurationPermissionsList(ctx echo.Context, params ConfigurationPermissionsListParams) error

	// (GET /api/v2/configuration_permissions/{id}/)
	ConfigurationPermissionsRetrieve(ctx echo.Context, id int) error

	// (GET /api/v2/credential_mappings/)
	CredentialMappingsList(ctx echo.Context, params CredentialMappingsListParams) error

	// (POST /api/v2/credential_mappings/)
	CredentialMappingsCreate(ctx echo.Context) error

	// (DELETE /api/v2/credential_mappings/{id}/)
	CredentialMappingsDestroy(ctx echo.Context, id int) error

	// (GET /api/v2/credential_mappings/{id}/)
	CredentialMappingsRetrieve(ctx echo.Context, id int) error

	// (PATCH /api/v2/credential_mappings/{id}/)
	CredentialMappingsPartialUpdate(ctx echo.Context, id int) error

	// (PUT /api/v2/credential_mappings/{id}/)
	CredentialMappingsUpdate(ctx echo.Context, id int) error

	// (GET /api/v2/credential_mappings/{id}/delete_preview/)
	CredentialMappingsDeletePreviewList(ctx echo.Context, id int, params CredentialMappingsDeletePreviewListParams) error

	// (GET /api/v2/credentials/)
	CredentialsList(ctx echo.Context, params CredentialsListParams) error

	// (POST /api/v2/credentials/)
	CredentialsCreate(ctx echo.Context) error

	// (DELETE /api/v2/credentials/{id}/)
	CredentialsDestroy(ctx echo.Context, id int) error

	// (GET /api/v2/credentials/{id}/)
	CredentialsRetrieve(ctx echo.Context, id int) error

	// (PATCH /api/v2/credentials/{id}/)
	CredentialsPartialUpdate(ctx echo.Context, id int) error

	// (PUT /api/v2/credentials/{id}/)
	CredentialsUpdate(ctx echo.Context, id int) error

	// (GET /api/v2/credentials/{id}/delete_preview/)
	CredentialsDeletePreviewList(ctx echo.Context, id int, params CredentialsDeletePreviewListParams) error

	// (GET /api/v2/development_environments/)
	DevelopmentEnvironmentsList(ctx echo.Context, params DevelopmentEnvironmentsListParams) error

	// (POST /api/v2/development_environments/)
	DevelopmentEnvironmentsCreate(ctx echo.Context) error

	// (DELETE /api/v2/development_environments/{id}/)
	DevelopmentEnvironmentsDestroy(ctx echo.Context, id int) error

	// (GET /api/v2/development_environments/{id}/)
	DevelopmentEnvironmentsRetrieve(ctx echo.Context, id int) error

	// (PATCH /api/v2/development_environments/{id}/)
	DevelopmentEnvironmentsPartialUpdate(ctx echo.Context, id int) error

	// (PUT /api/v2/development_environments/{id}/)
	DevelopmentEnvironmentsUpdate(ctx echo.Context, id int) error

	// (GET /api/v2/development_environments/{id}/delete_preview/)
	DevelopmentEnvironmentsDeletePreviewList(ctx echo.Context, id int, params DevelopmentEnvironmentsDeletePreviewListParams) error

	// (GET /api/v2/dojo_group_members/)
	DojoGroupMembersList(ctx echo.Context, params DojoGroupMembersListParams) error

	// (POST /api/v2/dojo_group_members/)
	DojoGroupMembersCreate(ctx echo.Context) error

	// (DELETE /api/v2/dojo_group_members/{id}/)
	DojoGroupMembersDestroy(ctx echo.Context, id int) error

	// (GET /api/v2/dojo_group_members/{id}/)
	DojoGroupMembersRetrieve(ctx echo.Context, id int, params DojoGroupMembersRetrieveParams) error

	// (PATCH /api/v2/dojo_group_members/{id}/)
	DojoGroupMembersPartialUpdate(ctx echo.Context, id int) error

	// (PUT /api/v2/dojo_group_members/{id}/)
	DojoGroupMembersUpdate(ctx echo.Context, id int) error

	// (GET /api/v2/dojo_group_members/{id}/delete_preview/)
	DojoGroupMembersDeletePreviewList(ctx echo.Context, id int, params DojoGroupMembersDeletePreviewListParams) error

	// (GET /api/v2/dojo_groups/)
	DojoGroupsList(ctx echo.Context, params DojoGroupsListParams) error

	// (POST /api/v2/dojo_groups/)
	DojoGroupsCreate(ctx echo.Context) error

	// (DELETE /api/v2/dojo_groups/{id}/)
	DojoGroupsDestroy(ctx echo.Context, id int) error

	// (GET /api/v2/dojo_groups/{id}/)
	DojoGroupsRetrieve(ctx echo.Context, id int, params DojoGroupsRetrieveParams) error

	// (PATCH /api/v2/dojo_groups/{id}/)
	DojoGroupsPartialUpdate(ctx echo.Context, id int) error

	// (PUT /api/v2/dojo_groups/{id}/)
	DojoGroupsUpdate(ctx echo.Context, id int) error

	// (GET /api/v2/dojo_groups/{id}/delete_preview/)
	DojoGroupsDeletePreviewList(ctx echo.Context, id int, params DojoGroupsDeletePreviewListParams) error

	// (POST /api/v2/endpoint_meta_import/)
	EndpointMetaImportCreate(ctx echo.Context) error

	// (GET /api/v2/endpoint_status/)
	EndpointStatusList(ctx echo.Context, params EndpointStatusListParams) error

	// (POST /api/v2/endpoint_status/)
	EndpointStatusCreate(ctx echo.Context) error

	// (DELETE /api/v2/endpoint_status/{id}/)
	EndpointStatusDestroy(ctx echo.Context, id int) error

	// (GET /api/v2/endpoint_status/{id}/)
	EndpointStatusRetrieve(ctx echo.Context, id int) error

	// (PATCH /api/v2/endpoint_status/{id}/)
	EndpointStatusPartialUpdate(ctx echo.Context, id int) error

	// (PUT /api/v2/endpoint_status/{id}/)
	EndpointStatusUpdate(ctx echo.Context, id int) error

	// (GET /api/v2/endpoint_status/{id}/delete_preview/)
	EndpointStatusDeletePreviewList(ctx echo.Context, id int, params EndpointStatusDeletePreviewListParams) error

	// (GET /api/v2/endpoints/)
	EndpointsList(ctx echo.Context, params EndpointsListParams) error

	// (POST /api/v2/endpoints/)
	EndpointsCreate(ctx echo.Context) error

	// (DELETE /api/v2/endpoints/{id}/)
	EndpointsDestroy(ctx echo.Context, id int) error

	// (GET /api/v2/endpoints/{id}/)
	EndpointsRetrieve(ctx echo.Context, id int) error

	// (PATCH /api/v2/endpoints/{id}/)
	EndpointsPartialUpdate(ctx echo.Context, id int) error

	// (PUT /api/v2/endpoints/{id}/)
	EndpointsUpdate(ctx echo.Context, id int) error

	// (GET /api/v2/endpoints/{id}/delete_preview/)
	EndpointsDeletePreviewList(ctx echo.Context, id int, params EndpointsDeletePreviewListParams) error

	// (POST /api/v2/endpoints/{id}/generate_report/)
	EndpointsGenerateReportCreate(ctx echo.Context, id int) error

	// (GET /api/v2/engagement_presets/)
	EngagementPresetsList(ctx echo.Context, params EngagementPresetsListParams) error

	// (POST /api/v2/engagement_presets/)
	EngagementPresetsCreate(ctx echo.Context) error

	// (DELETE /api/v2/engagement_presets/{id}/)
	EngagementPresetsDestroy(ctx echo.Context, id int) error

	// (GET /api/v2/engagement_presets/{id}/)
	EngagementPresetsRetrieve(ctx echo.Context, id int) error

	// (PATCH /api/v2/engagement_presets/{id}/)
	EngagementPresetsPartialUpdate(ctx echo.Context, id int) error

	// (PUT /api/v2/engagement_presets/{id}/)
	EngagementPresetsUpdate(ctx echo.Context, id int) error

	// (GET /api/v2/engagement_presets/{id}/delete_preview/)
	EngagementPresetsDeletePreviewList(ctx echo.Context, id int, params EngagementPresetsDeletePreviewListParams) error

	// (GET /api/v2/engagements/)
	EngagementsList(ctx echo.Context, params EngagementsListParams) error

	// (POST /api/v2/engagements/)
	EngagementsCreate(ctx echo.Context) error

	// (DELETE /api/v2/engagements/{id}/)
	EngagementsDestroy(ctx echo.Context, id int) error

	// (GET /api/v2/engagements/{id}/)
	EngagementsRetrieve(ctx echo.Context, id int) error

	// (PATCH /api/v2/engagements/{id}/)
	EngagementsPartialUpdate(ctx echo.Context, id int) error

	// (PUT /api/v2/engagements/{id}/)
	EngagementsUpdate(ctx echo.Context, id int) error

	// (POST /api/v2/engagements/{id}/accept_risks/)
	EngagementsAcceptRisksCreate(ctx echo.Context, id int) error

	// (POST /api/v2/engagements/{id}/close/)
	EngagementsCloseCreate(ctx echo.Context, id int) error

	// (GET /api/v2/engagements/{id}/complete_checklist/)
	EngagementsCompleteChecklistRetrieve(ctx echo.Context, id int) error

	// (POST /api/v2/engagements/{id}/complete_checklist/)
	EngagementsCompleteChecklistCreate(ctx echo.Context, id int) error

	// (GET /api/v2/engagements/{id}/delete_preview/)
	EngagementsDeletePreviewList(ctx echo.Context, id int, params EngagementsDeletePreviewListParams) error

	// (GET /api/v2/engagements/{id}/files/)
	EngagementsFilesRetrieve(ctx echo.Context, id int) error

	// (POST /api/v2/engagements/{id}/files/)
	EngagementsFilesCreate(ctx echo.Context, id int) error

	// (GET /api/v2/engagements/{id}/files/download/{file_id}/)
	EngagementsFilesDownloadRetrieve(ctx echo.Context, id int, fileId string) error

	// (POST /api/v2/engagements/{id}/generate_report/)
	EngagementsGenerateReportCreate(ctx echo.Context, id int) error

	// (GET /api/v2/engagements/{id}/notes/)
	EngagementsNotesRetrieve(ctx echo.Context, id int) error

	// (POST /api/v2/engagements/{id}/notes/)
	EngagementsNotesCreate(ctx echo.Context, id int) error

	// (POST /api/v2/engagements/{id}/reopen/)
	EngagementsReopenCreate(ctx echo.Context, id int) error

	// (GET /api/v2/finding_templates/)
	FindingTemplatesList(ctx echo.Context, params FindingTemplatesListParams) error

	// (POST /api/v2/finding_templates/)
	FindingTemplatesCreate(ctx echo.Context) error

	// (DELETE /api/v2/finding_templates/{id}/)
	FindingTemplatesDestroy(ctx echo.Context, id int) error

	// (GET /api/v2/finding_templates/{id}/)
	FindingTemplatesRetrieve(ctx echo.Context, id int) error

	// (PATCH /api/v2/finding_templates/{id}/)
	FindingTemplatesPartialUpdate(ctx echo.Context, id int) error

	// (PUT /api/v2/finding_templates/{id}/)
	FindingTemplatesUpdate(ctx echo.Context, id int) error

	// (GET /api/v2/finding_templates/{id}/delete_preview/)
	FindingTemplatesDeletePreviewList(ctx echo.Context, id int, params FindingTemplatesDeletePreviewListParams) error

	// (GET /api/v2/findings/)
	FindingsList(ctx echo.Context, params FindingsListParams) error

	// (POST /api/v2/findings/)
	FindingsCreate(ctx echo.Context) error

	// (POST /api/v2/findings/accept_risks/)
	FindingsAcceptRisksCreate(ctx echo.Context, params FindingsAcceptRisksCreateParams) error

	// (POST /api/v2/findings/generate_report/)
	FindingsGenerateReportCreate(ctx echo.Context) error

	// (DELETE /api/v2/findings/{id}/)
	FindingsDestroy(ctx echo.Context, id int) error

	// (GET /api/v2/findings/{id}/)
	FindingsRetrieve(ctx echo.Context, id int, params FindingsRetrieveParams) error

	// (PATCH /api/v2/findings/{id}/)
	FindingsPartialUpdate(ctx echo.Context, id int) error

	// (PUT /api/v2/findings/{id}/)
	FindingsUpdate(ctx echo.Context, id int) error

	// (POST /api/v2/findings/{id}/close/)
	FindingsCloseCreate(ctx echo.Context, id int) error

	// (GET /api/v2/findings/{id}/delete_preview/)
	FindingsDeletePreviewList(ctx echo.Context, id int, params FindingsDeletePreviewListParams) error

	// (GET /api/v2/findings/{id}/duplicate/)
	FindingsDuplicateList(ctx echo.Context, id int) error

	// (POST /api/v2/findings/{id}/duplicate/reset/)
	FindingsDuplicateResetCreate(ctx echo.Context, id int) error

	// (GET /api/v2/findings/{id}/files/)
	FindingsFilesRetrieve(ctx echo.Context, id int) error

	// (POST /api/v2/findings/{id}/files/)
	FindingsFilesCreate(ctx echo.Context, id int) error

	// (GET /api/v2/findings/{id}/files/download/{file_id}/)
	FindingsFilesDownloadRetrieve(ctx echo.Context, id int, fileId string) error

	// (DELETE /api/v2/findings/{id}/metadata/)
	FindingsMetadataDestroy(ctx echo.Context, id int, params FindingsMetadataDestroyParams) error

	// (GET /api/v2/findings/{id}/metadata/)
	FindingsMetadataList(ctx echo.Context, id int) error

	// (POST /api/v2/findings/{id}/metadata/)
	FindingsMetadataCreate(ctx echo.Context, id int) error

	// (PUT /api/v2/findings/{id}/metadata/)
	FindingsMetadataUpdate(ctx echo.Context, id int) error

	// (GET /api/v2/findings/{id}/notes/)
	FindingsNotesRetrieve(ctx echo.Context, id int) error

	// (POST /api/v2/findings/{id}/notes/)
	FindingsNotesCreate(ctx echo.Context, id int) error

	// (POST /api/v2/findings/{id}/original/{new_fid}/)
	FindingsOriginalCreate(ctx echo.Context, id int, newFid int) error

	// (PATCH /api/v2/findings/{id}/remove_note/)
	FindingsRemoveNotePartialUpdate(ctx echo.Context, id int) error

	// (PATCH /api/v2/findings/{id}/remove_tags/)
	FindingsRemoveTagsPartialUpdate(ctx echo.Context, id int) error

	// (PUT /api/v2/findings/{id}/remove_tags/)
	FindingsRemoveTagsUpdate(ctx echo.Context, id int) error

	// (GET /api/v2/findings/{id}/request_response/)
	FindingsRequestResponseRetrieve(ctx echo.Context, id int) error

	// (POST /api/v2/findings/{id}/request_response/)
	FindingsRequestResponseCreate(ctx echo.Context, id int) error

	// (GET /api/v2/findings/{id}/tags/)
	FindingsTagsRetrieve(ctx echo.Context, id int) error

	// (POST /api/v2/findings/{id}/tags/)
	FindingsTagsCreate(ctx echo.Context, id int) error

	// (GET /api/v2/global_roles/)
	GlobalRolesList(ctx echo.Context, params GlobalRolesListParams) error

	// (POST /api/v2/global_roles/)
	GlobalRolesCreate(ctx echo.Context) error

	// (DELETE /api/v2/global_roles/{id}/)
	GlobalRolesDestroy(ctx echo.Context, id int) error

	// (GET /api/v2/global_roles/{id}/)
	GlobalRolesRetrieve(ctx echo.Context, id int) error

	// (PATCH /api/v2/global_roles/{id}/)
	GlobalRolesPartialUpdate(ctx echo.Context, id int) error

	// (PUT /api/v2/global_roles/{id}/)
	GlobalRolesUpdate(ctx echo.Context, id int) error

	// (GET /api/v2/global_roles/{id}/delete_preview/)
	GlobalRolesDeletePreviewList(ctx echo.Context, id int, params GlobalRolesDeletePreviewListParams) error

	// (POST /api/v2/import-languages/)
	ImportLanguagesCreate(ctx echo.Context) error

	// (POST /api/v2/import-scan/)
	ImportScanCreate(ctx echo.Context) error

	// (GET /api/v2/jira_configurations/)
	JiraConfigurationsList(ctx echo.Context, params JiraConfigurationsListParams) error

	// (POST /api/v2/jira_configurations/)
	JiraConfigurationsCreate(ctx echo.Context) error

	// (DELETE /api/v2/jira_configurations/{id}/)
	JiraConfigurationsDestroy(ctx echo.Context, id int) error

	// (GET /api/v2/jira_configurations/{id}/)
	JiraConfigurationsRetrieve(ctx echo.Context, id int) error

	// (PATCH /api/v2/jira_configurations/{id}/)
	JiraConfigurationsPartialUpdate(ctx echo.Context, id int) error

	// (PUT /api/v2/jira_configurations/{id}/)
	JiraConfigurationsUpdate(ctx echo.Context, id int) error

	// (GET /api/v2/jira_configurations/{id}/delete_preview/)
	JiraConfigurationsDeletePreviewList(ctx echo.Context, id int, params JiraConfigurationsDeletePreviewListParams) error

	// (GET /api/v2/jira_finding_mappings/)
	JiraFindingMappingsList(ctx echo.Context, params JiraFindingMappingsListParams) error

	// (POST /api/v2/jira_finding_mappings/)
	JiraFindingMappingsCreate(ctx echo.Context) error

	// (DELETE /api/v2/jira_finding_mappings/{id}/)
	JiraFindingMappingsDestroy(ctx echo.Context, id int) error

	// (GET /api/v2/jira_finding_mappings/{id}/)
	JiraFindingMappingsRetrieve(ctx echo.Context, id int) error

	// (PATCH /api/v2/jira_finding_mappings/{id}/)
	JiraFindingMappingsPartialUpdate(ctx echo.Context, id int) error

	// (PUT /api/v2/jira_finding_mappings/{id}/)
	JiraFindingMappingsUpdate(ctx echo.Context, id int) error

	// (GET /api/v2/jira_finding_mappings/{id}/delete_preview/)
	JiraFindingMappingsDeletePreviewList(ctx echo.Context, id int, params JiraFindingMappingsDeletePreviewListParams) error

	// (GET /api/v2/jira_instances/)
	JiraInstancesList(ctx echo.Context, params JiraInstancesListParams) error

	// (POST /api/v2/jira_instances/)
	JiraInstancesCreate(ctx echo.Context) error

	// (DELETE /api/v2/jira_instances/{id}/)
	JiraInstancesDestroy(ctx echo.Context, id int) error

	// (GET /api/v2/jira_instances/{id}/)
	JiraInstancesRetrieve(ctx echo.Context, id int) error

	// (PATCH /api/v2/jira_instances/{id}/)
	JiraInstancesPartialUpdate(ctx echo.Context, id int) error

	// (PUT /api/v2/jira_instances/{id}/)
	JiraInstancesUpdate(ctx echo.Context, id int) error

	// (GET /api/v2/jira_instances/{id}/delete_preview/)
	JiraInstancesDeletePreviewList(ctx echo.Context, id int, params JiraInstancesDeletePreviewListParams) error

	// (GET /api/v2/jira_product_configurations/)
	JiraProductConfigurationsList(ctx echo.Context, params JiraProductConfigurationsListParams) error

	// (POST /api/v2/jira_product_configurations/)
	JiraProductConfigurationsCreate(ctx echo.Context) error

	// (DELETE /api/v2/jira_product_configurations/{id}/)
	JiraProductConfigurationsDestroy(ctx echo.Context, id int) error

	// (GET /api/v2/jira_product_configurations/{id}/)
	JiraProductConfigurationsRetrieve(ctx echo.Context, id int) error

	// (PATCH /api/v2/jira_product_configurations/{id}/)
	JiraProductConfigurationsPartialUpdate(ctx echo.Context, id int) error

	// (PUT /api/v2/jira_product_configurations/{id}/)
	JiraProductConfigurationsUpdate(ctx echo.Context, id int) error

	// (GET /api/v2/jira_product_configurations/{id}/delete_preview/)
	JiraProductConfigurationsDeletePreviewList(ctx echo.Context, id int, params JiraProductConfigurationsDeletePreviewListParams) error

	// (GET /api/v2/jira_projects/)
	JiraProjectsList(ctx echo.Context, params JiraProjectsListParams) error

	// (POST /api/v2/jira_projects/)
	JiraProjectsCreate(ctx echo.Context) error

	// (DELETE /api/v2/jira_projects/{id}/)
	JiraProjectsDestroy(ctx echo.Context, id int) error

	// (GET /api/v2/jira_projects/{id}/)
	JiraProjectsRetrieve(ctx echo.Context, id int) error

	// (PATCH /api/v2/jira_projects/{id}/)
	JiraProjectsPartialUpdate(ctx echo.Context, id int) error

	// (PUT /api/v2/jira_projects/{id}/)
	JiraProjectsUpdate(ctx echo.Context, id int) error

	// (GET /api/v2/jira_projects/{id}/delete_preview/)
	JiraProjectsDeletePreviewList(ctx echo.Context, id int, params JiraProjectsDeletePreviewListParams) error

	// (GET /api/v2/language_types/)
	LanguageTypesList(ctx echo.Context, params LanguageTypesListParams) error

	// (POST /api/v2/language_types/)
	LanguageTypesCreate(ctx echo.Context) error

	// (DELETE /api/v2/language_types/{id}/)
	LanguageTypesDestroy(ctx echo.Context, id int) error

	// (GET /api/v2/language_types/{id}/)
	LanguageTypesRetrieve(ctx echo.Context, id int) error

	// (PATCH /api/v2/language_types/{id}/)
	LanguageTypesPartialUpdate(ctx echo.Context, id int) error

	// (PUT /api/v2/language_types/{id}/)
	LanguageTypesUpdate(ctx echo.Context, id int) error

	// (GET /api/v2/language_types/{id}/delete_preview/)
	LanguageTypesDeletePreviewList(ctx echo.Context, id int, params LanguageTypesDeletePreviewListParams) error

	// (GET /api/v2/languages/)
	LanguagesList(ctx echo.Context, params LanguagesListParams) error

	// (POST /api/v2/languages/)
	LanguagesCreate(ctx echo.Context) error

	// (DELETE /api/v2/languages/{id}/)
	LanguagesDestroy(ctx echo.Context, id int) error

	// (GET /api/v2/languages/{id}/)
	LanguagesRetrieve(ctx echo.Context, id int, params LanguagesRetrieveParams) error

	// (PATCH /api/v2/languages/{id}/)
	LanguagesPartialUpdate(ctx echo.Context, id int) error

	// (PUT /api/v2/languages/{id}/)
	LanguagesUpdate(ctx echo.Context, id int) error

	// (GET /api/v2/languages/{id}/delete_preview/)
	LanguagesDeletePreviewList(ctx echo.Context, id int, params LanguagesDeletePreviewListParams) error

	// (GET /api/v2/metadata/)
	MetadataList(ctx echo.Context, params MetadataListParams) error

	// (POST /api/v2/metadata/)
	MetadataCreate(ctx echo.Context) error

	// (DELETE /api/v2/metadata/{id}/)
	MetadataDestroy(ctx echo.Context, id int) error

	// (GET /api/v2/metadata/{id}/)
	MetadataRetrieve(ctx echo.Context, id int, params MetadataRetrieveParams) error

	// (PATCH /api/v2/metadata/{id}/)
	MetadataPartialUpdate(ctx echo.Context, id int) error

	// (PUT /api/v2/metadata/{id}/)
	MetadataUpdate(ctx echo.Context, id int) error

	// (GET /api/v2/metadata/{id}/delete_preview/)
	MetadataDeletePreviewList(ctx echo.Context, id int, params MetadataDeletePreviewListParams) error

	// (GET /api/v2/network_locations/)
	NetworkLocationsList(ctx echo.Context, params NetworkLocationsListParams) error

	// (POST /api/v2/network_locations/)
	NetworkLocationsCreate(ctx echo.Context) error

	// (DELETE /api/v2/network_locations/{id}/)
	NetworkLocationsDestroy(ctx echo.Context, id int) error

	// (GET /api/v2/network_locations/{id}/)
	NetworkLocationsRetrieve(ctx echo.Context, id int) error

	// (PATCH /api/v2/network_locations/{id}/)
	NetworkLocationsPartialUpdate(ctx echo.Context, id int) error

	// (PUT /api/v2/network_locations/{id}/)
	NetworkLocationsUpdate(ctx echo.Context, id int) error

	// (GET /api/v2/network_locations/{id}/delete_preview/)
	NetworkLocationsDeletePreviewList(ctx echo.Context, id int, params NetworkLocationsDeletePreviewListParams) error

	// (GET /api/v2/note_type/)
	NoteTypeList(ctx echo.Context, params NoteTypeListParams) error

	// (POST /api/v2/note_type/)
	NoteTypeCreate(ctx echo.Context) error

	// (DELETE /api/v2/note_type/{id}/)
	NoteTypeDestroy(ctx echo.Context, id int) error

	// (GET /api/v2/note_type/{id}/)
	NoteTypeRetrieve(ctx echo.Context, id int) error

	// (PATCH /api/v2/note_type/{id}/)
	NoteTypePartialUpdate(ctx echo.Context, id int) error

	// (PUT /api/v2/note_type/{id}/)
	NoteTypeUpdate(ctx echo.Context, id int) error

	// (GET /api/v2/note_type/{id}/delete_preview/)
	NoteTypeDeletePreviewList(ctx echo.Context, id int, params NoteTypeDeletePreviewListParams) error

	// (GET /api/v2/notes/)
	NotesList(ctx echo.Context, params NotesListParams) error

	// (GET /api/v2/notes/{id}/)
	NotesRetrieve(ctx echo.Context, id int) error

	// (PATCH /api/v2/notes/{id}/)
	NotesPartialUpdate(ctx echo.Context, id int) error

	// (PUT /api/v2/notes/{id}/)
	NotesUpdate(ctx echo.Context, id int) error

	// (GET /api/v2/notifications/)
	NotificationsList(ctx echo.Context, params NotificationsListParams) error

	// (POST /api/v2/notifications/)
	NotificationsCreate(ctx echo.Context) error

	// (DELETE /api/v2/notifications/{id}/)
	NotificationsDestroy(ctx echo.Context, id int) error

	// (GET /api/v2/notifications/{id}/)
	NotificationsRetrieve(ctx echo.Context, id int, params NotificationsRetrieveParams) error

	// (PATCH /api/v2/notifications/{id}/)
	NotificationsPartialUpdate(ctx echo.Context, id int) error

	// (PUT /api/v2/notifications/{id}/)
	NotificationsUpdate(ctx echo.Context, id int) error

	// (GET /api/v2/notifications/{id}/delete_preview/)
	NotificationsDeletePreviewList(ctx echo.Context, id int, params NotificationsDeletePreviewListParams) error

	// (GET /api/v2/oa3/schema/)
	Oa3SchemaRetrieve(ctx echo.Context, params Oa3SchemaRetrieveParams) error

	// (GET /api/v2/product_api_scan_configurations/)
	ProductApiScanConfigurationsList(ctx echo.Context, params ProductApiScanConfigurationsListParams) error

	// (POST /api/v2/product_api_scan_configurations/)
	ProductApiScanConfigurationsCreate(ctx echo.Context) error

	// (DELETE /api/v2/product_api_scan_configurations/{id}/)
	ProductApiScanConfigurationsDestroy(ctx echo.Context, id int) error

	// (GET /api/v2/product_api_scan_configurations/{id}/)
	ProductApiScanConfigurationsRetrieve(ctx echo.Context, id int) error

	// (PATCH /api/v2/product_api_scan_configurations/{id}/)
	ProductApiScanConfigurationsPartialUpdate(ctx echo.Context, id int) error

	// (PUT /api/v2/product_api_scan_configurations/{id}/)
	ProductApiScanConfigurationsUpdate(ctx echo.Context, id int) error

	// (GET /api/v2/product_api_scan_configurations/{id}/delete_preview/)
	ProductApiScanConfigurationsDeletePreviewList(ctx echo.Context, id int, params ProductApiScanConfigurationsDeletePreviewListParams) error

	// (GET /api/v2/product_groups/)
	ProductGroupsList(ctx echo.Context, params ProductGroupsListParams) error

	// (POST /api/v2/product_groups/)
	ProductGroupsCreate(ctx echo.Context) error

	// (DELETE /api/v2/product_groups/{id}/)
	ProductGroupsDestroy(ctx echo.Context, id int) error

	// (GET /api/v2/product_groups/{id}/)
	ProductGroupsRetrieve(ctx echo.Context, id int, params ProductGroupsRetrieveParams) error

	// (PATCH /api/v2/product_groups/{id}/)
	ProductGroupsPartialUpdate(ctx echo.Context, id int) error

	// (PUT /api/v2/product_groups/{id}/)
	ProductGroupsUpdate(ctx echo.Context, id int) error

	// (GET /api/v2/product_groups/{id}/delete_preview/)
	ProductGroupsDeletePreviewList(ctx echo.Context, id int, params ProductGroupsDeletePreviewListParams) error

	// (GET /api/v2/product_members/)
	ProductMembersList(ctx echo.Context, params ProductMembersListParams) error

	// (POST /api/v2/product_members/)
	ProductMembersCreate(ctx echo.Context) error

	// (DELETE /api/v2/product_members/{id}/)
	ProductMembersDestroy(ctx echo.Context, id int) error

	// (GET /api/v2/product_members/{id}/)
	ProductMembersRetrieve(ctx echo.Context, id int, params ProductMembersRetrieveParams) error

	// (PATCH /api/v2/product_members/{id}/)
	ProductMembersPartialUpdate(ctx echo.Context, id int) error

	// (PUT /api/v2/product_members/{id}/)
	ProductMembersUpdate(ctx echo.Context, id int) error

	// (GET /api/v2/product_members/{id}/delete_preview/)
	ProductMembersDeletePreviewList(ctx echo.Context, id int, params ProductMembersDeletePreviewListParams) error

	// (GET /api/v2/product_type_groups/)
	ProductTypeGroupsList(ctx echo.Context, params ProductTypeGroupsListParams) error

	// (POST /api/v2/product_type_groups/)
	ProductTypeGroupsCreate(ctx echo.Context) error

	// (DELETE /api/v2/product_type_groups/{id}/)
	ProductTypeGroupsDestroy(ctx echo.Context, id int) error

	// (GET /api/v2/product_type_groups/{id}/)
	ProductTypeGroupsRetrieve(ctx echo.Context, id int, params ProductTypeGroupsRetrieveParams) error

	// (PATCH /api/v2/product_type_groups/{id}/)
	ProductTypeGroupsPartialUpdate(ctx echo.Context, id int) error

	// (PUT /api/v2/product_type_groups/{id}/)
	ProductTypeGroupsUpdate(ctx echo.Context, id int) error

	// (GET /api/v2/product_type_groups/{id}/delete_preview/)
	ProductTypeGroupsDeletePreviewList(ctx echo.Context, id int, params ProductTypeGroupsDeletePreviewListParams) error

	// (GET /api/v2/product_type_members/)
	ProductTypeMembersList(ctx echo.Context, params ProductTypeMembersListParams) error

	// (POST /api/v2/product_type_members/)
	ProductTypeMembersCreate(ctx echo.Context) error

	// (DELETE /api/v2/product_type_members/{id}/)
	ProductTypeMembersDestroy(ctx echo.Context, id int) error

	// (GET /api/v2/product_type_members/{id}/)
	ProductTypeMembersRetrieve(ctx echo.Context, id int, params ProductTypeMembersRetrieveParams) error

	// (PATCH /api/v2/product_type_members/{id}/)
	ProductTypeMembersPartialUpdate(ctx echo.Context, id int) error

	// (PUT /api/v2/product_type_members/{id}/)
	ProductTypeMembersUpdate(ctx echo.Context, id int) error

	// (GET /api/v2/product_type_members/{id}/delete_preview/)
	ProductTypeMembersDeletePreviewList(ctx echo.Context, id int, params ProductTypeMembersDeletePreviewListParams) error

	// (GET /api/v2/product_types/)
	ProductTypesList(ctx echo.Context, params ProductTypesListParams) error

	// (POST /api/v2/product_types/)
	ProductTypesCreate(ctx echo.Context) error

	// (DELETE /api/v2/product_types/{id}/)
	ProductTypesDestroy(ctx echo.Context, id int) error

	// (GET /api/v2/product_types/{id}/)
	ProductTypesRetrieve(ctx echo.Context, id int, params ProductTypesRetrieveParams) error

	// (PATCH /api/v2/product_types/{id}/)
	ProductTypesPartialUpdate(ctx echo.Context, id int) error

	// (PUT /api/v2/product_types/{id}/)
	ProductTypesUpdate(ctx echo.Context, id int) error

	// (GET /api/v2/product_types/{id}/delete_preview/)
	ProductTypesDeletePreviewList(ctx echo.Context, id int, params ProductTypesDeletePreviewListParams) error

	// (POST /api/v2/product_types/{id}/generate_report/)
	ProductTypesGenerateReportCreate(ctx echo.Context, id int) error

	// (GET /api/v2/products/)
	ProductsList(ctx echo.Context, params ProductsListParams) error

	// (POST /api/v2/products/)
	ProductsCreate(ctx echo.Context) error

	// (DELETE /api/v2/products/{id}/)
	ProductsDestroy(ctx echo.Context, id int) error

	// (GET /api/v2/products/{id}/)
	ProductsRetrieve(ctx echo.Context, id int, params ProductsRetrieveParams) error

	// (PATCH /api/v2/products/{id}/)
	ProductsPartialUpdate(ctx echo.Context, id int) error

	// (PUT /api/v2/products/{id}/)
	ProductsUpdate(ctx echo.Context, id int) error

	// (GET /api/v2/products/{id}/delete_preview/)
	ProductsDeletePreviewList(ctx echo.Context, id int, params ProductsDeletePreviewListParams) error

	// (POST /api/v2/products/{id}/generate_report/)
	ProductsGenerateReportCreate(ctx echo.Context, id int) error

	// (GET /api/v2/questionnaire_answered_questionnaires/)
	QuestionnaireAnsweredQuestionnairesList(ctx echo.Context, params QuestionnaireAnsweredQuestionnairesListParams) error

	// (GET /api/v2/questionnaire_answered_questionnaires/{id}/)
	QuestionnaireAnsweredQuestionnairesRetrieve(ctx echo.Context, id int) error

	// (GET /api/v2/questionnaire_answers/)
	QuestionnaireAnswersList(ctx echo.Context, params QuestionnaireAnswersListParams) error

	// (GET /api/v2/questionnaire_answers/{id}/)
	QuestionnaireAnswersRetrieve(ctx echo.Context, id int) error

	// (GET /api/v2/questionnaire_engagement_questionnaires/)
	QuestionnaireEngagementQuestionnairesList(ctx echo.Context, params QuestionnaireEngagementQuestionnairesListParams) error

	// (GET /api/v2/questionnaire_engagement_questionnaires/{id}/)
	QuestionnaireEngagementQuestionnairesRetrieve(ctx echo.Context, id int) error

	// (GET /api/v2/questionnaire_general_questionnaires/)
	QuestionnaireGeneralQuestionnairesList(ctx echo.Context, params QuestionnaireGeneralQuestionnairesListParams) error

	// (GET /api/v2/questionnaire_general_questionnaires/{id}/)
	QuestionnaireGeneralQuestionnairesRetrieve(ctx echo.Context, id int) error

	// (GET /api/v2/questionnaire_questions/)
	QuestionnaireQuestionsList(ctx echo.Context, params QuestionnaireQuestionsListParams) error

	// (GET /api/v2/questionnaire_questions/{id}/)
	QuestionnaireQuestionsRetrieve(ctx echo.Context, id int) error

	// (GET /api/v2/regulations/)
	RegulationsList(ctx echo.Context, params RegulationsListParams) error

	// (POST /api/v2/regulations/)
	RegulationsCreate(ctx echo.Context) error

	// (DELETE /api/v2/regulations/{id}/)
	RegulationsDestroy(ctx echo.Context, id int) error

	// (GET /api/v2/regulations/{id}/)
	RegulationsRetrieve(ctx echo.Context, id int) error

	// (PATCH /api/v2/regulations/{id}/)
	RegulationsPartialUpdate(ctx echo.Context, id int) error

	// (PUT /api/v2/regulations/{id}/)
	RegulationsUpdate(ctx echo.Context, id int) error

	// (GET /api/v2/regulations/{id}/delete_preview/)
	RegulationsDeletePreviewList(ctx echo.Context, id int, params RegulationsDeletePreviewListParams) error

	// (POST /api/v2/reimport-scan/)
	ReimportScanCreate(ctx echo.Context) error

	// (GET /api/v2/risk_acceptance/)
	RiskAcceptanceList(ctx echo.Context, params RiskAcceptanceListParams) error

	// (DELETE /api/v2/risk_acceptance/{id}/)
	RiskAcceptanceDestroy(ctx echo.Context, id int) error

	// (GET /api/v2/risk_acceptance/{id}/)
	RiskAcceptanceRetrieve(ctx echo.Context, id int) error

	// (GET /api/v2/risk_acceptance/{id}/delete_preview/)
	RiskAcceptanceDeletePreviewList(ctx echo.Context, id int, params RiskAcceptanceDeletePreviewListParams) error

	// (GET /api/v2/risk_acceptance/{id}/download_proof/)
	RiskAcceptanceDownloadProofRetrieve(ctx echo.Context, id int) error

	// (GET /api/v2/roles/)
	RolesList(ctx echo.Context, params RolesListParams) error

	// (GET /api/v2/roles/{id}/)
	RolesRetrieve(ctx echo.Context, id int) error

	// (GET /api/v2/sla_configurations/)
	SlaConfigurationsList(ctx echo.Context, params SlaConfigurationsListParams) error

	// (POST /api/v2/sla_configurations/)
	SlaConfigurationsCreate(ctx echo.Context) error

	// (DELETE /api/v2/sla_configurations/{id}/)
	SlaConfigurationsDestroy(ctx echo.Context, id int) error

	// (GET /api/v2/sla_configurations/{id}/)
	SlaConfigurationsRetrieve(ctx echo.Context, id int) error

	// (PATCH /api/v2/sla_configurations/{id}/)
	SlaConfigurationsPartialUpdate(ctx echo.Context, id int) error

	// (PUT /api/v2/sla_configurations/{id}/)
	SlaConfigurationsUpdate(ctx echo.Context, id int) error

	// (GET /api/v2/sonarqube_issues/)
	SonarqubeIssuesList(ctx echo.Context, params SonarqubeIssuesListParams) error

	// (POST /api/v2/sonarqube_issues/)
	SonarqubeIssuesCreate(ctx echo.Context) error

	// (DELETE /api/v2/sonarqube_issues/{id}/)
	SonarqubeIssuesDestroy(ctx echo.Context, id int) error

	// (GET /api/v2/sonarqube_issues/{id}/)
	SonarqubeIssuesRetrieve(ctx echo.Context, id int) error

	// (PATCH /api/v2/sonarqube_issues/{id}/)
	SonarqubeIssuesPartialUpdate(ctx echo.Context, id int) error

	// (PUT /api/v2/sonarqube_issues/{id}/)
	SonarqubeIssuesUpdate(ctx echo.Context, id int) error

	// (GET /api/v2/sonarqube_issues/{id}/delete_preview/)
	SonarqubeIssuesDeletePreviewList(ctx echo.Context, id int, params SonarqubeIssuesDeletePreviewListParams) error

	// (GET /api/v2/sonarqube_transitions/)
	SonarqubeTransitionsList(ctx echo.Context, params SonarqubeTransitionsListParams) error

	// (POST /api/v2/sonarqube_transitions/)
	SonarqubeTransitionsCreate(ctx echo.Context) error

	// (DELETE /api/v2/sonarqube_transitions/{id}/)
	SonarqubeTransitionsDestroy(ctx echo.Context, id int) error

	// (GET /api/v2/sonarqube_transitions/{id}/)
	SonarqubeTransitionsRetrieve(ctx echo.Context, id int) error

	// (PATCH /api/v2/sonarqube_transitions/{id}/)
	SonarqubeTransitionsPartialUpdate(ctx echo.Context, id int) error

	// (PUT /api/v2/sonarqube_transitions/{id}/)
	SonarqubeTransitionsUpdate(ctx echo.Context, id int) error

	// (GET /api/v2/sonarqube_transitions/{id}/delete_preview/)
	SonarqubeTransitionsDeletePreviewList(ctx echo.Context, id int, params SonarqubeTransitionsDeletePreviewListParams) error

	// (GET /api/v2/stub_findings/)
	StubFindingsList(ctx echo.Context, params StubFindingsListParams) error

	// (POST /api/v2/stub_findings/)
	StubFindingsCreate(ctx echo.Context) error

	// (DELETE /api/v2/stub_findings/{id}/)
	StubFindingsDestroy(ctx echo.Context, id int) error

	// (GET /api/v2/stub_findings/{id}/)
	StubFindingsRetrieve(ctx echo.Context, id int) error

	// (PATCH /api/v2/stub_findings/{id}/)
	StubFindingsPartialUpdate(ctx echo.Context, id int) error

	// (PUT /api/v2/stub_findings/{id}/)
	StubFindingsUpdate(ctx echo.Context, id int) error

	// (GET /api/v2/stub_findings/{id}/delete_preview/)
	StubFindingsDeletePreviewList(ctx echo.Context, id int, params StubFindingsDeletePreviewListParams) error

	// (GET /api/v2/system_settings/)
	SystemSettingsList(ctx echo.Context, params SystemSettingsListParams) error

	// (PATCH /api/v2/system_settings/{id}/)
	SystemSettingsPartialUpdate(ctx echo.Context, id int) error

	// (PUT /api/v2/system_settings/{id}/)
	SystemSettingsUpdate(ctx echo.Context, id int) error

	// (GET /api/v2/technologies/)
	TechnologiesList(ctx echo.Context, params TechnologiesListParams) error

	// (POST /api/v2/technologies/)
	TechnologiesCreate(ctx echo.Context) error

	// (DELETE /api/v2/technologies/{id}/)
	TechnologiesDestroy(ctx echo.Context, id int) error

	// (GET /api/v2/technologies/{id}/)
	TechnologiesRetrieve(ctx echo.Context, id int) error

	// (PATCH /api/v2/technologies/{id}/)
	TechnologiesPartialUpdate(ctx echo.Context, id int) error

	// (PUT /api/v2/technologies/{id}/)
	TechnologiesUpdate(ctx echo.Context, id int) error

	// (GET /api/v2/technologies/{id}/delete_preview/)
	TechnologiesDeletePreviewList(ctx echo.Context, id int, params TechnologiesDeletePreviewListParams) error

	// (GET /api/v2/test_imports/)
	TestImportsList(ctx echo.Context, params TestImportsListParams) error

	// (POST /api/v2/test_imports/)
	TestImportsCreate(ctx echo.Context) error

	// (DELETE /api/v2/test_imports/{id}/)
	TestImportsDestroy(ctx echo.Context, id int) error

	// (GET /api/v2/test_imports/{id}/)
	TestImportsRetrieve(ctx echo.Context, id int, params TestImportsRetrieveParams) error

	// (PATCH /api/v2/test_imports/{id}/)
	TestImportsPartialUpdate(ctx echo.Context, id int) error

	// (PUT /api/v2/test_imports/{id}/)
	TestImportsUpdate(ctx echo.Context, id int) error

	// (GET /api/v2/test_imports/{id}/delete_preview/)
	TestImportsDeletePreviewList(ctx echo.Context, id int, params TestImportsDeletePreviewListParams) error

	// (GET /api/v2/test_types/)
	TestTypesList(ctx echo.Context, params TestTypesListParams) error

	// (POST /api/v2/test_types/)
	TestTypesCreate(ctx echo.Context) error

	// (GET /api/v2/test_types/{id}/)
	TestTypesRetrieve(ctx echo.Context, id int) error

	// (PATCH /api/v2/test_types/{id}/)
	TestTypesPartialUpdate(ctx echo.Context, id int) error

	// (PUT /api/v2/test_types/{id}/)
	TestTypesUpdate(ctx echo.Context, id int) error

	// (GET /api/v2/tests/)
	TestsList(ctx echo.Context, params TestsListParams) error

	// (POST /api/v2/tests/)
	TestsCreate(ctx echo.Context) error

	// (DELETE /api/v2/tests/{id}/)
	TestsDestroy(ctx echo.Context, id int) error

	// (GET /api/v2/tests/{id}/)
	TestsRetrieve(ctx echo.Context, id int) error

	// (PATCH /api/v2/tests/{id}/)
	TestsPartialUpdate(ctx echo.Context, id int) error

	// (PUT /api/v2/tests/{id}/)
	TestsUpdate(ctx echo.Context, id int) error

	// (POST /api/v2/tests/{id}/accept_risks/)
	TestsAcceptRisksCreate(ctx echo.Context, id int) error

	// (GET /api/v2/tests/{id}/delete_preview/)
	TestsDeletePreviewList(ctx echo.Context, id int, params TestsDeletePreviewListParams) error

	// (GET /api/v2/tests/{id}/files/)
	TestsFilesRetrieve(ctx echo.Context, id int) error

	// (POST /api/v2/tests/{id}/files/)
	TestsFilesCreate(ctx echo.Context, id int) error

	// (GET /api/v2/tests/{id}/files/download/{file_id}/)
	TestsFilesDownloadRetrieve(ctx echo.Context, id int, fileId string) error

	// (POST /api/v2/tests/{id}/generate_report/)
	TestsGenerateReportCreate(ctx echo.Context, id int) error

	// (GET /api/v2/tests/{id}/notes/)
	TestsNotesRetrieve(ctx echo.Context, id int) error

	// (POST /api/v2/tests/{id}/notes/)
	TestsNotesCreate(ctx echo.Context, id int) error

	// (GET /api/v2/tool_configurations/)
	ToolConfigurationsList(ctx echo.Context, params ToolConfigurationsListParams) error

	// (POST /api/v2/tool_configurations/)
	ToolConfigurationsCreate(ctx echo.Context) error

	// (DELETE /api/v2/tool_configurations/{id}/)
	ToolConfigurationsDestroy(ctx echo.Context, id int) error

	// (GET /api/v2/tool_configurations/{id}/)
	ToolConfigurationsRetrieve(ctx echo.Context, id int) error

	// (PATCH /api/v2/tool_configurations/{id}/)
	ToolConfigurationsPartialUpdate(ctx echo.Context, id int) error

	// (PUT /api/v2/tool_configurations/{id}/)
	ToolConfigurationsUpdate(ctx echo.Context, id int) error

	// (GET /api/v2/tool_configurations/{id}/delete_preview/)
	ToolConfigurationsDeletePreviewList(ctx echo.Context, id int, params ToolConfigurationsDeletePreviewListParams) error

	// (GET /api/v2/tool_product_settings/)
	ToolProductSettingsList(ctx echo.Context, params ToolProductSettingsListParams) error

	// (POST /api/v2/tool_product_settings/)
	ToolProductSettingsCreate(ctx echo.Context) error

	// (DELETE /api/v2/tool_product_settings/{id}/)
	ToolProductSettingsDestroy(ctx echo.Context, id int) error

	// (GET /api/v2/tool_product_settings/{id}/)
	ToolProductSettingsRetrieve(ctx echo.Context, id int) error

	// (PATCH /api/v2/tool_product_settings/{id}/)
	ToolProductSettingsPartialUpdate(ctx echo.Context, id int) error

	// (PUT /api/v2/tool_product_settings/{id}/)
	ToolProductSettingsUpdate(ctx echo.Context, id int) error

	// (GET /api/v2/tool_product_settings/{id}/delete_preview/)
	ToolProductSettingsDeletePreviewList(ctx echo.Context, id int, params ToolProductSettingsDeletePreviewListParams) error

	// (GET /api/v2/tool_types/)
	ToolTypesList(ctx echo.Context, params ToolTypesListParams) error

	// (POST /api/v2/tool_types/)
	ToolTypesCreate(ctx echo.Context) error

	// (DELETE /api/v2/tool_types/{id}/)
	ToolTypesDestroy(ctx echo.Context, id int) error

	// (GET /api/v2/tool_types/{id}/)
	ToolTypesRetrieve(ctx echo.Context, id int) error

	// (PATCH /api/v2/tool_types/{id}/)
	ToolTypesPartialUpdate(ctx echo.Context, id int) error

	// (PUT /api/v2/tool_types/{id}/)
	ToolTypesUpdate(ctx echo.Context, id int) error

	// (GET /api/v2/tool_types/{id}/delete_preview/)
	ToolTypesDeletePreviewList(ctx echo.Context, id int, params ToolTypesDeletePreviewListParams) error

	// (GET /api/v2/user_contact_infos/)
	UserContactInfosList(ctx echo.Context, params UserContactInfosListParams) error

	// (POST /api/v2/user_contact_infos/)
	UserContactInfosCreate(ctx echo.Context) error

	// (DELETE /api/v2/user_contact_infos/{id}/)
	UserContactInfosDestroy(ctx echo.Context, id int) error

	// (GET /api/v2/user_contact_infos/{id}/)
	UserContactInfosRetrieve(ctx echo.Context, id int, params UserContactInfosRetrieveParams) error

	// (PATCH /api/v2/user_contact_infos/{id}/)
	UserContactInfosPartialUpdate(ctx echo.Context, id int) error

	// (PUT /api/v2/user_contact_infos/{id}/)
	UserContactInfosUpdate(ctx echo.Context, id int) error

	// (GET /api/v2/user_contact_infos/{id}/delete_preview/)
	UserContactInfosDeletePreviewList(ctx echo.Context, id int, params UserContactInfosDeletePreviewListParams) error

	// (GET /api/v2/user_profile/)
	UserProfileRetrieve(ctx echo.Context) error

	// (GET /api/v2/users/)
	UsersList(ctx echo.Context, params UsersListParams) error

	// (POST /api/v2/users/)
	UsersCreate(ctx echo.Context) error

	// (DELETE /api/v2/users/{id}/)
	UsersDestroy(ctx echo.Context, id int) error

	// (GET /api/v2/users/{id}/)
	UsersRetrieve(ctx echo.Context, id int) error

	// (PATCH /api/v2/users/{id}/)
	UsersPartialUpdate(ctx echo.Context, id int) error

	// (PUT /api/v2/users/{id}/)
	UsersUpdate(ctx echo.Context, id int) error

	// (GET /api/v2/users/{id}/delete_preview/)
	UsersDeletePreviewList(ctx echo.Context, id int, params UsersDeletePreviewListParams) error
}

ServerInterface represents all server handlers.

type ServerInterfaceWrapper

type ServerInterfaceWrapper struct {
	Handler ServerInterface
}

ServerInterfaceWrapper converts echo contexts to parameters.

func (*ServerInterfaceWrapper) ApiTokenAuthCreate

func (w *ServerInterfaceWrapper) ApiTokenAuthCreate(ctx echo.Context) error

ApiTokenAuthCreate converts echo context to params.

func (*ServerInterfaceWrapper) ConfigurationPermissionsList added in v0.2.0

func (w *ServerInterfaceWrapper) ConfigurationPermissionsList(ctx echo.Context) error

ConfigurationPermissionsList converts echo context to params.

func (*ServerInterfaceWrapper) ConfigurationPermissionsRetrieve added in v0.2.0

func (w *ServerInterfaceWrapper) ConfigurationPermissionsRetrieve(ctx echo.Context) error

ConfigurationPermissionsRetrieve converts echo context to params.

func (*ServerInterfaceWrapper) CredentialMappingsCreate added in v0.2.0

func (w *ServerInterfaceWrapper) CredentialMappingsCreate(ctx echo.Context) error

CredentialMappingsCreate converts echo context to params.

func (*ServerInterfaceWrapper) CredentialMappingsDeletePreviewList added in v0.2.0

func (w *ServerInterfaceWrapper) CredentialMappingsDeletePreviewList(ctx echo.Context) error

CredentialMappingsDeletePreviewList converts echo context to params.

func (*ServerInterfaceWrapper) CredentialMappingsDestroy added in v0.2.0

func (w *ServerInterfaceWrapper) CredentialMappingsDestroy(ctx echo.Context) error

CredentialMappingsDestroy converts echo context to params.

func (*ServerInterfaceWrapper) CredentialMappingsList added in v0.2.0

func (w *ServerInterfaceWrapper) CredentialMappingsList(ctx echo.Context) error

CredentialMappingsList converts echo context to params.

func (*ServerInterfaceWrapper) CredentialMappingsPartialUpdate added in v0.2.0

func (w *ServerInterfaceWrapper) CredentialMappingsPartialUpdate(ctx echo.Context) error

CredentialMappingsPartialUpdate converts echo context to params.

func (*ServerInterfaceWrapper) CredentialMappingsRetrieve added in v0.2.0

func (w *ServerInterfaceWrapper) CredentialMappingsRetrieve(ctx echo.Context) error

CredentialMappingsRetrieve converts echo context to params.

func (*ServerInterfaceWrapper) CredentialMappingsUpdate added in v0.2.0

func (w *ServerInterfaceWrapper) CredentialMappingsUpdate(ctx echo.Context) error

CredentialMappingsUpdate converts echo context to params.

func (*ServerInterfaceWrapper) CredentialsCreate added in v0.2.0

func (w *ServerInterfaceWrapper) CredentialsCreate(ctx echo.Context) error

CredentialsCreate converts echo context to params.

func (*ServerInterfaceWrapper) CredentialsDeletePreviewList added in v0.2.0

func (w *ServerInterfaceWrapper) CredentialsDeletePreviewList(ctx echo.Context) error

CredentialsDeletePreviewList converts echo context to params.

func (*ServerInterfaceWrapper) CredentialsDestroy added in v0.2.0

func (w *ServerInterfaceWrapper) CredentialsDestroy(ctx echo.Context) error

CredentialsDestroy converts echo context to params.

func (*ServerInterfaceWrapper) CredentialsList added in v0.2.0

func (w *ServerInterfaceWrapper) CredentialsList(ctx echo.Context) error

CredentialsList converts echo context to params.

func (*ServerInterfaceWrapper) CredentialsPartialUpdate added in v0.2.0

func (w *ServerInterfaceWrapper) CredentialsPartialUpdate(ctx echo.Context) error

CredentialsPartialUpdate converts echo context to params.

func (*ServerInterfaceWrapper) CredentialsRetrieve added in v0.2.0

func (w *ServerInterfaceWrapper) CredentialsRetrieve(ctx echo.Context) error

CredentialsRetrieve converts echo context to params.

func (*ServerInterfaceWrapper) CredentialsUpdate added in v0.2.0

func (w *ServerInterfaceWrapper) CredentialsUpdate(ctx echo.Context) error

CredentialsUpdate converts echo context to params.

func (*ServerInterfaceWrapper) DevelopmentEnvironmentsCreate

func (w *ServerInterfaceWrapper) DevelopmentEnvironmentsCreate(ctx echo.Context) error

DevelopmentEnvironmentsCreate converts echo context to params.

func (*ServerInterfaceWrapper) DevelopmentEnvironmentsDeletePreviewList added in v0.2.0

func (w *ServerInterfaceWrapper) DevelopmentEnvironmentsDeletePreviewList(ctx echo.Context) error

DevelopmentEnvironmentsDeletePreviewList converts echo context to params.

func (*ServerInterfaceWrapper) DevelopmentEnvironmentsDestroy

func (w *ServerInterfaceWrapper) DevelopmentEnvironmentsDestroy(ctx echo.Context) error

DevelopmentEnvironmentsDestroy converts echo context to params.

func (*ServerInterfaceWrapper) DevelopmentEnvironmentsList

func (w *ServerInterfaceWrapper) DevelopmentEnvironmentsList(ctx echo.Context) error

DevelopmentEnvironmentsList converts echo context to params.

func (*ServerInterfaceWrapper) DevelopmentEnvironmentsPartialUpdate

func (w *ServerInterfaceWrapper) DevelopmentEnvironmentsPartialUpdate(ctx echo.Context) error

DevelopmentEnvironmentsPartialUpdate converts echo context to params.

func (*ServerInterfaceWrapper) DevelopmentEnvironmentsRetrieve

func (w *ServerInterfaceWrapper) DevelopmentEnvironmentsRetrieve(ctx echo.Context) error

DevelopmentEnvironmentsRetrieve converts echo context to params.

func (*ServerInterfaceWrapper) DevelopmentEnvironmentsUpdate

func (w *ServerInterfaceWrapper) DevelopmentEnvironmentsUpdate(ctx echo.Context) error

DevelopmentEnvironmentsUpdate converts echo context to params.

func (*ServerInterfaceWrapper) DojoGroupMembersCreate

func (w *ServerInterfaceWrapper) DojoGroupMembersCreate(ctx echo.Context) error

DojoGroupMembersCreate converts echo context to params.

func (*ServerInterfaceWrapper) DojoGroupMembersDeletePreviewList added in v0.2.0

func (w *ServerInterfaceWrapper) DojoGroupMembersDeletePreviewList(ctx echo.Context) error

DojoGroupMembersDeletePreviewList converts echo context to params.

func (*ServerInterfaceWrapper) DojoGroupMembersDestroy

func (w *ServerInterfaceWrapper) DojoGroupMembersDestroy(ctx echo.Context) error

DojoGroupMembersDestroy converts echo context to params.

func (*ServerInterfaceWrapper) DojoGroupMembersList

func (w *ServerInterfaceWrapper) DojoGroupMembersList(ctx echo.Context) error

DojoGroupMembersList converts echo context to params.

func (*ServerInterfaceWrapper) DojoGroupMembersPartialUpdate

func (w *ServerInterfaceWrapper) DojoGroupMembersPartialUpdate(ctx echo.Context) error

DojoGroupMembersPartialUpdate converts echo context to params.

func (*ServerInterfaceWrapper) DojoGroupMembersRetrieve

func (w *ServerInterfaceWrapper) DojoGroupMembersRetrieve(ctx echo.Context) error

DojoGroupMembersRetrieve converts echo context to params.

func (*ServerInterfaceWrapper) DojoGroupMembersUpdate

func (w *ServerInterfaceWrapper) DojoGroupMembersUpdate(ctx echo.Context) error

DojoGroupMembersUpdate converts echo context to params.

func (*ServerInterfaceWrapper) DojoGroupsCreate

func (w *ServerInterfaceWrapper) DojoGroupsCreate(ctx echo.Context) error

DojoGroupsCreate converts echo context to params.

func (*ServerInterfaceWrapper) DojoGroupsDeletePreviewList added in v0.2.0

func (w *ServerInterfaceWrapper) DojoGroupsDeletePreviewList(ctx echo.Context) error

DojoGroupsDeletePreviewList converts echo context to params.

func (*ServerInterfaceWrapper) DojoGroupsDestroy

func (w *ServerInterfaceWrapper) DojoGroupsDestroy(ctx echo.Context) error

DojoGroupsDestroy converts echo context to params.

func (*ServerInterfaceWrapper) DojoGroupsList

func (w *ServerInterfaceWrapper) DojoGroupsList(ctx echo.Context) error

DojoGroupsList converts echo context to params.

func (*ServerInterfaceWrapper) DojoGroupsPartialUpdate

func (w *ServerInterfaceWrapper) DojoGroupsPartialUpdate(ctx echo.Context) error

DojoGroupsPartialUpdate converts echo context to params.

func (*ServerInterfaceWrapper) DojoGroupsRetrieve

func (w *ServerInterfaceWrapper) DojoGroupsRetrieve(ctx echo.Context) error

DojoGroupsRetrieve converts echo context to params.

func (*ServerInterfaceWrapper) DojoGroupsUpdate

func (w *ServerInterfaceWrapper) DojoGroupsUpdate(ctx echo.Context) error

DojoGroupsUpdate converts echo context to params.

func (*ServerInterfaceWrapper) EndpointMetaImportCreate

func (w *ServerInterfaceWrapper) EndpointMetaImportCreate(ctx echo.Context) error

EndpointMetaImportCreate converts echo context to params.

func (*ServerInterfaceWrapper) EndpointStatusCreate

func (w *ServerInterfaceWrapper) EndpointStatusCreate(ctx echo.Context) error

EndpointStatusCreate converts echo context to params.

func (*ServerInterfaceWrapper) EndpointStatusDeletePreviewList added in v0.2.0

func (w *ServerInterfaceWrapper) EndpointStatusDeletePreviewList(ctx echo.Context) error

EndpointStatusDeletePreviewList converts echo context to params.

func (*ServerInterfaceWrapper) EndpointStatusDestroy

func (w *ServerInterfaceWrapper) EndpointStatusDestroy(ctx echo.Context) error

EndpointStatusDestroy converts echo context to params.

func (*ServerInterfaceWrapper) EndpointStatusList

func (w *ServerInterfaceWrapper) EndpointStatusList(ctx echo.Context) error

EndpointStatusList converts echo context to params.

func (*ServerInterfaceWrapper) EndpointStatusPartialUpdate

func (w *ServerInterfaceWrapper) EndpointStatusPartialUpdate(ctx echo.Context) error

EndpointStatusPartialUpdate converts echo context to params.

func (*ServerInterfaceWrapper) EndpointStatusRetrieve

func (w *ServerInterfaceWrapper) EndpointStatusRetrieve(ctx echo.Context) error

EndpointStatusRetrieve converts echo context to params.

func (*ServerInterfaceWrapper) EndpointStatusUpdate

func (w *ServerInterfaceWrapper) EndpointStatusUpdate(ctx echo.Context) error

EndpointStatusUpdate converts echo context to params.

func (*ServerInterfaceWrapper) EndpointsCreate

func (w *ServerInterfaceWrapper) EndpointsCreate(ctx echo.Context) error

EndpointsCreate converts echo context to params.

func (*ServerInterfaceWrapper) EndpointsDeletePreviewList added in v0.2.0

func (w *ServerInterfaceWrapper) EndpointsDeletePreviewList(ctx echo.Context) error

EndpointsDeletePreviewList converts echo context to params.

func (*ServerInterfaceWrapper) EndpointsDestroy

func (w *ServerInterfaceWrapper) EndpointsDestroy(ctx echo.Context) error

EndpointsDestroy converts echo context to params.

func (*ServerInterfaceWrapper) EndpointsGenerateReportCreate

func (w *ServerInterfaceWrapper) EndpointsGenerateReportCreate(ctx echo.Context) error

EndpointsGenerateReportCreate converts echo context to params.

func (*ServerInterfaceWrapper) EndpointsList

func (w *ServerInterfaceWrapper) EndpointsList(ctx echo.Context) error

EndpointsList converts echo context to params.

func (*ServerInterfaceWrapper) EndpointsPartialUpdate

func (w *ServerInterfaceWrapper) EndpointsPartialUpdate(ctx echo.Context) error

EndpointsPartialUpdate converts echo context to params.

func (*ServerInterfaceWrapper) EndpointsRetrieve

func (w *ServerInterfaceWrapper) EndpointsRetrieve(ctx echo.Context) error

EndpointsRetrieve converts echo context to params.

func (*ServerInterfaceWrapper) EndpointsUpdate

func (w *ServerInterfaceWrapper) EndpointsUpdate(ctx echo.Context) error

EndpointsUpdate converts echo context to params.

func (*ServerInterfaceWrapper) EngagementPresetsCreate

func (w *ServerInterfaceWrapper) EngagementPresetsCreate(ctx echo.Context) error

EngagementPresetsCreate converts echo context to params.

func (*ServerInterfaceWrapper) EngagementPresetsDeletePreviewList added in v0.2.0

func (w *ServerInterfaceWrapper) EngagementPresetsDeletePreviewList(ctx echo.Context) error

EngagementPresetsDeletePreviewList converts echo context to params.

func (*ServerInterfaceWrapper) EngagementPresetsDestroy

func (w *ServerInterfaceWrapper) EngagementPresetsDestroy(ctx echo.Context) error

EngagementPresetsDestroy converts echo context to params.

func (*ServerInterfaceWrapper) EngagementPresetsList

func (w *ServerInterfaceWrapper) EngagementPresetsList(ctx echo.Context) error

EngagementPresetsList converts echo context to params.

func (*ServerInterfaceWrapper) EngagementPresetsPartialUpdate

func (w *ServerInterfaceWrapper) EngagementPresetsPartialUpdate(ctx echo.Context) error

EngagementPresetsPartialUpdate converts echo context to params.

func (*ServerInterfaceWrapper) EngagementPresetsRetrieve

func (w *ServerInterfaceWrapper) EngagementPresetsRetrieve(ctx echo.Context) error

EngagementPresetsRetrieve converts echo context to params.

func (*ServerInterfaceWrapper) EngagementPresetsUpdate

func (w *ServerInterfaceWrapper) EngagementPresetsUpdate(ctx echo.Context) error

EngagementPresetsUpdate converts echo context to params.

func (*ServerInterfaceWrapper) EngagementsAcceptRisksCreate

func (w *ServerInterfaceWrapper) EngagementsAcceptRisksCreate(ctx echo.Context) error

EngagementsAcceptRisksCreate converts echo context to params.

func (*ServerInterfaceWrapper) EngagementsCloseCreate

func (w *ServerInterfaceWrapper) EngagementsCloseCreate(ctx echo.Context) error

EngagementsCloseCreate converts echo context to params.

func (*ServerInterfaceWrapper) EngagementsCompleteChecklistCreate added in v0.2.0

func (w *ServerInterfaceWrapper) EngagementsCompleteChecklistCreate(ctx echo.Context) error

EngagementsCompleteChecklistCreate converts echo context to params.

func (*ServerInterfaceWrapper) EngagementsCompleteChecklistRetrieve added in v0.2.0

func (w *ServerInterfaceWrapper) EngagementsCompleteChecklistRetrieve(ctx echo.Context) error

EngagementsCompleteChecklistRetrieve converts echo context to params.

func (*ServerInterfaceWrapper) EngagementsCreate

func (w *ServerInterfaceWrapper) EngagementsCreate(ctx echo.Context) error

EngagementsCreate converts echo context to params.

func (*ServerInterfaceWrapper) EngagementsDeletePreviewList added in v0.2.0

func (w *ServerInterfaceWrapper) EngagementsDeletePreviewList(ctx echo.Context) error

EngagementsDeletePreviewList converts echo context to params.

func (*ServerInterfaceWrapper) EngagementsDestroy

func (w *ServerInterfaceWrapper) EngagementsDestroy(ctx echo.Context) error

EngagementsDestroy converts echo context to params.

func (*ServerInterfaceWrapper) EngagementsFilesCreate

func (w *ServerInterfaceWrapper) EngagementsFilesCreate(ctx echo.Context) error

EngagementsFilesCreate converts echo context to params.

func (*ServerInterfaceWrapper) EngagementsFilesDownloadRetrieve added in v0.2.0

func (w *ServerInterfaceWrapper) EngagementsFilesDownloadRetrieve(ctx echo.Context) error

EngagementsFilesDownloadRetrieve converts echo context to params.

func (*ServerInterfaceWrapper) EngagementsFilesRetrieve

func (w *ServerInterfaceWrapper) EngagementsFilesRetrieve(ctx echo.Context) error

EngagementsFilesRetrieve converts echo context to params.

func (*ServerInterfaceWrapper) EngagementsGenerateReportCreate

func (w *ServerInterfaceWrapper) EngagementsGenerateReportCreate(ctx echo.Context) error

EngagementsGenerateReportCreate converts echo context to params.

func (*ServerInterfaceWrapper) EngagementsList

func (w *ServerInterfaceWrapper) EngagementsList(ctx echo.Context) error

EngagementsList converts echo context to params.

func (*ServerInterfaceWrapper) EngagementsNotesCreate

func (w *ServerInterfaceWrapper) EngagementsNotesCreate(ctx echo.Context) error

EngagementsNotesCreate converts echo context to params.

func (*ServerInterfaceWrapper) EngagementsNotesRetrieve

func (w *ServerInterfaceWrapper) EngagementsNotesRetrieve(ctx echo.Context) error

EngagementsNotesRetrieve converts echo context to params.

func (*ServerInterfaceWrapper) EngagementsPartialUpdate

func (w *ServerInterfaceWrapper) EngagementsPartialUpdate(ctx echo.Context) error

EngagementsPartialUpdate converts echo context to params.

func (*ServerInterfaceWrapper) EngagementsReopenCreate

func (w *ServerInterfaceWrapper) EngagementsReopenCreate(ctx echo.Context) error

EngagementsReopenCreate converts echo context to params.

func (*ServerInterfaceWrapper) EngagementsRetrieve

func (w *ServerInterfaceWrapper) EngagementsRetrieve(ctx echo.Context) error

EngagementsRetrieve converts echo context to params.

func (*ServerInterfaceWrapper) EngagementsUpdate

func (w *ServerInterfaceWrapper) EngagementsUpdate(ctx echo.Context) error

EngagementsUpdate converts echo context to params.

func (*ServerInterfaceWrapper) FindingTemplatesCreate

func (w *ServerInterfaceWrapper) FindingTemplatesCreate(ctx echo.Context) error

FindingTemplatesCreate converts echo context to params.

func (*ServerInterfaceWrapper) FindingTemplatesDeletePreviewList added in v0.2.0

func (w *ServerInterfaceWrapper) FindingTemplatesDeletePreviewList(ctx echo.Context) error

FindingTemplatesDeletePreviewList converts echo context to params.

func (*ServerInterfaceWrapper) FindingTemplatesDestroy

func (w *ServerInterfaceWrapper) FindingTemplatesDestroy(ctx echo.Context) error

FindingTemplatesDestroy converts echo context to params.

func (*ServerInterfaceWrapper) FindingTemplatesList

func (w *ServerInterfaceWrapper) FindingTemplatesList(ctx echo.Context) error

FindingTemplatesList converts echo context to params.

func (*ServerInterfaceWrapper) FindingTemplatesPartialUpdate

func (w *ServerInterfaceWrapper) FindingTemplatesPartialUpdate(ctx echo.Context) error

FindingTemplatesPartialUpdate converts echo context to params.

func (*ServerInterfaceWrapper) FindingTemplatesRetrieve

func (w *ServerInterfaceWrapper) FindingTemplatesRetrieve(ctx echo.Context) error

FindingTemplatesRetrieve converts echo context to params.

func (*ServerInterfaceWrapper) FindingTemplatesUpdate

func (w *ServerInterfaceWrapper) FindingTemplatesUpdate(ctx echo.Context) error

FindingTemplatesUpdate converts echo context to params.

func (*ServerInterfaceWrapper) FindingsAcceptRisksCreate

func (w *ServerInterfaceWrapper) FindingsAcceptRisksCreate(ctx echo.Context) error

FindingsAcceptRisksCreate converts echo context to params.

func (*ServerInterfaceWrapper) FindingsCloseCreate added in v0.2.0

func (w *ServerInterfaceWrapper) FindingsCloseCreate(ctx echo.Context) error

FindingsCloseCreate converts echo context to params.

func (*ServerInterfaceWrapper) FindingsCreate

func (w *ServerInterfaceWrapper) FindingsCreate(ctx echo.Context) error

FindingsCreate converts echo context to params.

func (*ServerInterfaceWrapper) FindingsDeletePreviewList added in v0.2.0

func (w *ServerInterfaceWrapper) FindingsDeletePreviewList(ctx echo.Context) error

FindingsDeletePreviewList converts echo context to params.

func (*ServerInterfaceWrapper) FindingsDestroy

func (w *ServerInterfaceWrapper) FindingsDestroy(ctx echo.Context) error

FindingsDestroy converts echo context to params.

func (*ServerInterfaceWrapper) FindingsDuplicateList

func (w *ServerInterfaceWrapper) FindingsDuplicateList(ctx echo.Context) error

FindingsDuplicateList converts echo context to params.

func (*ServerInterfaceWrapper) FindingsDuplicateResetCreate

func (w *ServerInterfaceWrapper) FindingsDuplicateResetCreate(ctx echo.Context) error

FindingsDuplicateResetCreate converts echo context to params.

func (*ServerInterfaceWrapper) FindingsFilesCreate

func (w *ServerInterfaceWrapper) FindingsFilesCreate(ctx echo.Context) error

FindingsFilesCreate converts echo context to params.

func (*ServerInterfaceWrapper) FindingsFilesDownloadRetrieve added in v0.2.0

func (w *ServerInterfaceWrapper) FindingsFilesDownloadRetrieve(ctx echo.Context) error

FindingsFilesDownloadRetrieve converts echo context to params.

func (*ServerInterfaceWrapper) FindingsFilesRetrieve

func (w *ServerInterfaceWrapper) FindingsFilesRetrieve(ctx echo.Context) error

FindingsFilesRetrieve converts echo context to params.

func (*ServerInterfaceWrapper) FindingsGenerateReportCreate

func (w *ServerInterfaceWrapper) FindingsGenerateReportCreate(ctx echo.Context) error

FindingsGenerateReportCreate converts echo context to params.

func (*ServerInterfaceWrapper) FindingsList

func (w *ServerInterfaceWrapper) FindingsList(ctx echo.Context) error

FindingsList converts echo context to params.

func (*ServerInterfaceWrapper) FindingsMetadataCreate

func (w *ServerInterfaceWrapper) FindingsMetadataCreate(ctx echo.Context) error

FindingsMetadataCreate converts echo context to params.

func (*ServerInterfaceWrapper) FindingsMetadataDestroy

func (w *ServerInterfaceWrapper) FindingsMetadataDestroy(ctx echo.Context) error

FindingsMetadataDestroy converts echo context to params.

func (*ServerInterfaceWrapper) FindingsMetadataList

func (w *ServerInterfaceWrapper) FindingsMetadataList(ctx echo.Context) error

FindingsMetadataList converts echo context to params.

func (*ServerInterfaceWrapper) FindingsMetadataUpdate

func (w *ServerInterfaceWrapper) FindingsMetadataUpdate(ctx echo.Context) error

FindingsMetadataUpdate converts echo context to params.

func (*ServerInterfaceWrapper) FindingsNotesCreate

func (w *ServerInterfaceWrapper) FindingsNotesCreate(ctx echo.Context) error

FindingsNotesCreate converts echo context to params.

func (*ServerInterfaceWrapper) FindingsNotesRetrieve

func (w *ServerInterfaceWrapper) FindingsNotesRetrieve(ctx echo.Context) error

FindingsNotesRetrieve converts echo context to params.

func (*ServerInterfaceWrapper) FindingsOriginalCreate

func (w *ServerInterfaceWrapper) FindingsOriginalCreate(ctx echo.Context) error

FindingsOriginalCreate converts echo context to params.

func (*ServerInterfaceWrapper) FindingsPartialUpdate

func (w *ServerInterfaceWrapper) FindingsPartialUpdate(ctx echo.Context) error

FindingsPartialUpdate converts echo context to params.

func (*ServerInterfaceWrapper) FindingsRemoveNotePartialUpdate

func (w *ServerInterfaceWrapper) FindingsRemoveNotePartialUpdate(ctx echo.Context) error

FindingsRemoveNotePartialUpdate converts echo context to params.

func (*ServerInterfaceWrapper) FindingsRemoveTagsPartialUpdate

func (w *ServerInterfaceWrapper) FindingsRemoveTagsPartialUpdate(ctx echo.Context) error

FindingsRemoveTagsPartialUpdate converts echo context to params.

func (*ServerInterfaceWrapper) FindingsRemoveTagsUpdate

func (w *ServerInterfaceWrapper) FindingsRemoveTagsUpdate(ctx echo.Context) error

FindingsRemoveTagsUpdate converts echo context to params.

func (*ServerInterfaceWrapper) FindingsRequestResponseCreate

func (w *ServerInterfaceWrapper) FindingsRequestResponseCreate(ctx echo.Context) error

FindingsRequestResponseCreate converts echo context to params.

func (*ServerInterfaceWrapper) FindingsRequestResponseRetrieve

func (w *ServerInterfaceWrapper) FindingsRequestResponseRetrieve(ctx echo.Context) error

FindingsRequestResponseRetrieve converts echo context to params.

func (*ServerInterfaceWrapper) FindingsRetrieve

func (w *ServerInterfaceWrapper) FindingsRetrieve(ctx echo.Context) error

FindingsRetrieve converts echo context to params.

func (*ServerInterfaceWrapper) FindingsTagsCreate

func (w *ServerInterfaceWrapper) FindingsTagsCreate(ctx echo.Context) error

FindingsTagsCreate converts echo context to params.

func (*ServerInterfaceWrapper) FindingsTagsRetrieve

func (w *ServerInterfaceWrapper) FindingsTagsRetrieve(ctx echo.Context) error

FindingsTagsRetrieve converts echo context to params.

func (*ServerInterfaceWrapper) FindingsUpdate

func (w *ServerInterfaceWrapper) FindingsUpdate(ctx echo.Context) error

FindingsUpdate converts echo context to params.

func (*ServerInterfaceWrapper) GlobalRolesCreate

func (w *ServerInterfaceWrapper) GlobalRolesCreate(ctx echo.Context) error

GlobalRolesCreate converts echo context to params.

func (*ServerInterfaceWrapper) GlobalRolesDeletePreviewList added in v0.2.0

func (w *ServerInterfaceWrapper) GlobalRolesDeletePreviewList(ctx echo.Context) error

GlobalRolesDeletePreviewList converts echo context to params.

func (*ServerInterfaceWrapper) GlobalRolesDestroy

func (w *ServerInterfaceWrapper) GlobalRolesDestroy(ctx echo.Context) error

GlobalRolesDestroy converts echo context to params.

func (*ServerInterfaceWrapper) GlobalRolesList

func (w *ServerInterfaceWrapper) GlobalRolesList(ctx echo.Context) error

GlobalRolesList converts echo context to params.

func (*ServerInterfaceWrapper) GlobalRolesPartialUpdate

func (w *ServerInterfaceWrapper) GlobalRolesPartialUpdate(ctx echo.Context) error

GlobalRolesPartialUpdate converts echo context to params.

func (*ServerInterfaceWrapper) GlobalRolesRetrieve

func (w *ServerInterfaceWrapper) GlobalRolesRetrieve(ctx echo.Context) error

GlobalRolesRetrieve converts echo context to params.

func (*ServerInterfaceWrapper) GlobalRolesUpdate

func (w *ServerInterfaceWrapper) GlobalRolesUpdate(ctx echo.Context) error

GlobalRolesUpdate converts echo context to params.

func (*ServerInterfaceWrapper) ImportLanguagesCreate

func (w *ServerInterfaceWrapper) ImportLanguagesCreate(ctx echo.Context) error

ImportLanguagesCreate converts echo context to params.

func (*ServerInterfaceWrapper) ImportScanCreate

func (w *ServerInterfaceWrapper) ImportScanCreate(ctx echo.Context) error

ImportScanCreate converts echo context to params.

func (*ServerInterfaceWrapper) JiraConfigurationsCreate

func (w *ServerInterfaceWrapper) JiraConfigurationsCreate(ctx echo.Context) error

JiraConfigurationsCreate converts echo context to params.

func (*ServerInterfaceWrapper) JiraConfigurationsDeletePreviewList added in v0.2.0

func (w *ServerInterfaceWrapper) JiraConfigurationsDeletePreviewList(ctx echo.Context) error

JiraConfigurationsDeletePreviewList converts echo context to params.

func (*ServerInterfaceWrapper) JiraConfigurationsDestroy

func (w *ServerInterfaceWrapper) JiraConfigurationsDestroy(ctx echo.Context) error

JiraConfigurationsDestroy converts echo context to params.

func (*ServerInterfaceWrapper) JiraConfigurationsList

func (w *ServerInterfaceWrapper) JiraConfigurationsList(ctx echo.Context) error

JiraConfigurationsList converts echo context to params.

func (*ServerInterfaceWrapper) JiraConfigurationsPartialUpdate

func (w *ServerInterfaceWrapper) JiraConfigurationsPartialUpdate(ctx echo.Context) error

JiraConfigurationsPartialUpdate converts echo context to params.

func (*ServerInterfaceWrapper) JiraConfigurationsRetrieve

func (w *ServerInterfaceWrapper) JiraConfigurationsRetrieve(ctx echo.Context) error

JiraConfigurationsRetrieve converts echo context to params.

func (*ServerInterfaceWrapper) JiraConfigurationsUpdate

func (w *ServerInterfaceWrapper) JiraConfigurationsUpdate(ctx echo.Context) error

JiraConfigurationsUpdate converts echo context to params.

func (*ServerInterfaceWrapper) JiraFindingMappingsCreate

func (w *ServerInterfaceWrapper) JiraFindingMappingsCreate(ctx echo.Context) error

JiraFindingMappingsCreate converts echo context to params.

func (*ServerInterfaceWrapper) JiraFindingMappingsDeletePreviewList added in v0.2.0

func (w *ServerInterfaceWrapper) JiraFindingMappingsDeletePreviewList(ctx echo.Context) error

JiraFindingMappingsDeletePreviewList converts echo context to params.

func (*ServerInterfaceWrapper) JiraFindingMappingsDestroy

func (w *ServerInterfaceWrapper) JiraFindingMappingsDestroy(ctx echo.Context) error

JiraFindingMappingsDestroy converts echo context to params.

func (*ServerInterfaceWrapper) JiraFindingMappingsList

func (w *ServerInterfaceWrapper) JiraFindingMappingsList(ctx echo.Context) error

JiraFindingMappingsList converts echo context to params.

func (*ServerInterfaceWrapper) JiraFindingMappingsPartialUpdate

func (w *ServerInterfaceWrapper) JiraFindingMappingsPartialUpdate(ctx echo.Context) error

JiraFindingMappingsPartialUpdate converts echo context to params.

func (*ServerInterfaceWrapper) JiraFindingMappingsRetrieve

func (w *ServerInterfaceWrapper) JiraFindingMappingsRetrieve(ctx echo.Context) error

JiraFindingMappingsRetrieve converts echo context to params.

func (*ServerInterfaceWrapper) JiraFindingMappingsUpdate

func (w *ServerInterfaceWrapper) JiraFindingMappingsUpdate(ctx echo.Context) error

JiraFindingMappingsUpdate converts echo context to params.

func (*ServerInterfaceWrapper) JiraInstancesCreate

func (w *ServerInterfaceWrapper) JiraInstancesCreate(ctx echo.Context) error

JiraInstancesCreate converts echo context to params.

func (*ServerInterfaceWrapper) JiraInstancesDeletePreviewList added in v0.2.0

func (w *ServerInterfaceWrapper) JiraInstancesDeletePreviewList(ctx echo.Context) error

JiraInstancesDeletePreviewList converts echo context to params.

func (*ServerInterfaceWrapper) JiraInstancesDestroy

func (w *ServerInterfaceWrapper) JiraInstancesDestroy(ctx echo.Context) error

JiraInstancesDestroy converts echo context to params.

func (*ServerInterfaceWrapper) JiraInstancesList

func (w *ServerInterfaceWrapper) JiraInstancesList(ctx echo.Context) error

JiraInstancesList converts echo context to params.

func (*ServerInterfaceWrapper) JiraInstancesPartialUpdate

func (w *ServerInterfaceWrapper) JiraInstancesPartialUpdate(ctx echo.Context) error

JiraInstancesPartialUpdate converts echo context to params.

func (*ServerInterfaceWrapper) JiraInstancesRetrieve

func (w *ServerInterfaceWrapper) JiraInstancesRetrieve(ctx echo.Context) error

JiraInstancesRetrieve converts echo context to params.

func (*ServerInterfaceWrapper) JiraInstancesUpdate

func (w *ServerInterfaceWrapper) JiraInstancesUpdate(ctx echo.Context) error

JiraInstancesUpdate converts echo context to params.

func (*ServerInterfaceWrapper) JiraProductConfigurationsCreate

func (w *ServerInterfaceWrapper) JiraProductConfigurationsCreate(ctx echo.Context) error

JiraProductConfigurationsCreate converts echo context to params.

func (*ServerInterfaceWrapper) JiraProductConfigurationsDeletePreviewList added in v0.2.0

func (w *ServerInterfaceWrapper) JiraProductConfigurationsDeletePreviewList(ctx echo.Context) error

JiraProductConfigurationsDeletePreviewList converts echo context to params.

func (*ServerInterfaceWrapper) JiraProductConfigurationsDestroy

func (w *ServerInterfaceWrapper) JiraProductConfigurationsDestroy(ctx echo.Context) error

JiraProductConfigurationsDestroy converts echo context to params.

func (*ServerInterfaceWrapper) JiraProductConfigurationsList

func (w *ServerInterfaceWrapper) JiraProductConfigurationsList(ctx echo.Context) error

JiraProductConfigurationsList converts echo context to params.

func (*ServerInterfaceWrapper) JiraProductConfigurationsPartialUpdate

func (w *ServerInterfaceWrapper) JiraProductConfigurationsPartialUpdate(ctx echo.Context) error

JiraProductConfigurationsPartialUpdate converts echo context to params.

func (*ServerInterfaceWrapper) JiraProductConfigurationsRetrieve

func (w *ServerInterfaceWrapper) JiraProductConfigurationsRetrieve(ctx echo.Context) error

JiraProductConfigurationsRetrieve converts echo context to params.

func (*ServerInterfaceWrapper) JiraProductConfigurationsUpdate

func (w *ServerInterfaceWrapper) JiraProductConfigurationsUpdate(ctx echo.Context) error

JiraProductConfigurationsUpdate converts echo context to params.

func (*ServerInterfaceWrapper) JiraProjectsCreate

func (w *ServerInterfaceWrapper) JiraProjectsCreate(ctx echo.Context) error

JiraProjectsCreate converts echo context to params.

func (*ServerInterfaceWrapper) JiraProjectsDeletePreviewList added in v0.2.0

func (w *ServerInterfaceWrapper) JiraProjectsDeletePreviewList(ctx echo.Context) error

JiraProjectsDeletePreviewList converts echo context to params.

func (*ServerInterfaceWrapper) JiraProjectsDestroy

func (w *ServerInterfaceWrapper) JiraProjectsDestroy(ctx echo.Context) error

JiraProjectsDestroy converts echo context to params.

func (*ServerInterfaceWrapper) JiraProjectsList

func (w *ServerInterfaceWrapper) JiraProjectsList(ctx echo.Context) error

JiraProjectsList converts echo context to params.

func (*ServerInterfaceWrapper) JiraProjectsPartialUpdate

func (w *ServerInterfaceWrapper) JiraProjectsPartialUpdate(ctx echo.Context) error

JiraProjectsPartialUpdate converts echo context to params.

func (*ServerInterfaceWrapper) JiraProjectsRetrieve

func (w *ServerInterfaceWrapper) JiraProjectsRetrieve(ctx echo.Context) error

JiraProjectsRetrieve converts echo context to params.

func (*ServerInterfaceWrapper) JiraProjectsUpdate

func (w *ServerInterfaceWrapper) JiraProjectsUpdate(ctx echo.Context) error

JiraProjectsUpdate converts echo context to params.

func (*ServerInterfaceWrapper) LanguageTypesCreate

func (w *ServerInterfaceWrapper) LanguageTypesCreate(ctx echo.Context) error

LanguageTypesCreate converts echo context to params.

func (*ServerInterfaceWrapper) LanguageTypesDeletePreviewList added in v0.2.0

func (w *ServerInterfaceWrapper) LanguageTypesDeletePreviewList(ctx echo.Context) error

LanguageTypesDeletePreviewList converts echo context to params.

func (*ServerInterfaceWrapper) LanguageTypesDestroy

func (w *ServerInterfaceWrapper) LanguageTypesDestroy(ctx echo.Context) error

LanguageTypesDestroy converts echo context to params.

func (*ServerInterfaceWrapper) LanguageTypesList

func (w *ServerInterfaceWrapper) LanguageTypesList(ctx echo.Context) error

LanguageTypesList converts echo context to params.

func (*ServerInterfaceWrapper) LanguageTypesPartialUpdate

func (w *ServerInterfaceWrapper) LanguageTypesPartialUpdate(ctx echo.Context) error

LanguageTypesPartialUpdate converts echo context to params.

func (*ServerInterfaceWrapper) LanguageTypesRetrieve

func (w *ServerInterfaceWrapper) LanguageTypesRetrieve(ctx echo.Context) error

LanguageTypesRetrieve converts echo context to params.

func (*ServerInterfaceWrapper) LanguageTypesUpdate

func (w *ServerInterfaceWrapper) LanguageTypesUpdate(ctx echo.Context) error

LanguageTypesUpdate converts echo context to params.

func (*ServerInterfaceWrapper) LanguagesCreate

func (w *ServerInterfaceWrapper) LanguagesCreate(ctx echo.Context) error

LanguagesCreate converts echo context to params.

func (*ServerInterfaceWrapper) LanguagesDeletePreviewList added in v0.2.0

func (w *ServerInterfaceWrapper) LanguagesDeletePreviewList(ctx echo.Context) error

LanguagesDeletePreviewList converts echo context to params.

func (*ServerInterfaceWrapper) LanguagesDestroy

func (w *ServerInterfaceWrapper) LanguagesDestroy(ctx echo.Context) error

LanguagesDestroy converts echo context to params.

func (*ServerInterfaceWrapper) LanguagesList

func (w *ServerInterfaceWrapper) LanguagesList(ctx echo.Context) error

LanguagesList converts echo context to params.

func (*ServerInterfaceWrapper) LanguagesPartialUpdate

func (w *ServerInterfaceWrapper) LanguagesPartialUpdate(ctx echo.Context) error

LanguagesPartialUpdate converts echo context to params.

func (*ServerInterfaceWrapper) LanguagesRetrieve

func (w *ServerInterfaceWrapper) LanguagesRetrieve(ctx echo.Context) error

LanguagesRetrieve converts echo context to params.

func (*ServerInterfaceWrapper) LanguagesUpdate

func (w *ServerInterfaceWrapper) LanguagesUpdate(ctx echo.Context) error

LanguagesUpdate converts echo context to params.

func (*ServerInterfaceWrapper) MetadataCreate

func (w *ServerInterfaceWrapper) MetadataCreate(ctx echo.Context) error

MetadataCreate converts echo context to params.

func (*ServerInterfaceWrapper) MetadataDeletePreviewList added in v0.2.0

func (w *ServerInterfaceWrapper) MetadataDeletePreviewList(ctx echo.Context) error

MetadataDeletePreviewList converts echo context to params.

func (*ServerInterfaceWrapper) MetadataDestroy

func (w *ServerInterfaceWrapper) MetadataDestroy(ctx echo.Context) error

MetadataDestroy converts echo context to params.

func (*ServerInterfaceWrapper) MetadataList

func (w *ServerInterfaceWrapper) MetadataList(ctx echo.Context) error

MetadataList converts echo context to params.

func (*ServerInterfaceWrapper) MetadataPartialUpdate

func (w *ServerInterfaceWrapper) MetadataPartialUpdate(ctx echo.Context) error

MetadataPartialUpdate converts echo context to params.

func (*ServerInterfaceWrapper) MetadataRetrieve

func (w *ServerInterfaceWrapper) MetadataRetrieve(ctx echo.Context) error

MetadataRetrieve converts echo context to params.

func (*ServerInterfaceWrapper) MetadataUpdate

func (w *ServerInterfaceWrapper) MetadataUpdate(ctx echo.Context) error

MetadataUpdate converts echo context to params.

func (*ServerInterfaceWrapper) NetworkLocationsCreate

func (w *ServerInterfaceWrapper) NetworkLocationsCreate(ctx echo.Context) error

NetworkLocationsCreate converts echo context to params.

func (*ServerInterfaceWrapper) NetworkLocationsDeletePreviewList added in v0.2.0

func (w *ServerInterfaceWrapper) NetworkLocationsDeletePreviewList(ctx echo.Context) error

NetworkLocationsDeletePreviewList converts echo context to params.

func (*ServerInterfaceWrapper) NetworkLocationsDestroy

func (w *ServerInterfaceWrapper) NetworkLocationsDestroy(ctx echo.Context) error

NetworkLocationsDestroy converts echo context to params.

func (*ServerInterfaceWrapper) NetworkLocationsList

func (w *ServerInterfaceWrapper) NetworkLocationsList(ctx echo.Context) error

NetworkLocationsList converts echo context to params.

func (*ServerInterfaceWrapper) NetworkLocationsPartialUpdate

func (w *ServerInterfaceWrapper) NetworkLocationsPartialUpdate(ctx echo.Context) error

NetworkLocationsPartialUpdate converts echo context to params.

func (*ServerInterfaceWrapper) NetworkLocationsRetrieve

func (w *ServerInterfaceWrapper) NetworkLocationsRetrieve(ctx echo.Context) error

NetworkLocationsRetrieve converts echo context to params.

func (*ServerInterfaceWrapper) NetworkLocationsUpdate

func (w *ServerInterfaceWrapper) NetworkLocationsUpdate(ctx echo.Context) error

NetworkLocationsUpdate converts echo context to params.

func (*ServerInterfaceWrapper) NoteTypeCreate

func (w *ServerInterfaceWrapper) NoteTypeCreate(ctx echo.Context) error

NoteTypeCreate converts echo context to params.

func (*ServerInterfaceWrapper) NoteTypeDeletePreviewList added in v0.2.0

func (w *ServerInterfaceWrapper) NoteTypeDeletePreviewList(ctx echo.Context) error

NoteTypeDeletePreviewList converts echo context to params.

func (*ServerInterfaceWrapper) NoteTypeDestroy

func (w *ServerInterfaceWrapper) NoteTypeDestroy(ctx echo.Context) error

NoteTypeDestroy converts echo context to params.

func (*ServerInterfaceWrapper) NoteTypeList

func (w *ServerInterfaceWrapper) NoteTypeList(ctx echo.Context) error

NoteTypeList converts echo context to params.

func (*ServerInterfaceWrapper) NoteTypePartialUpdate

func (w *ServerInterfaceWrapper) NoteTypePartialUpdate(ctx echo.Context) error

NoteTypePartialUpdate converts echo context to params.

func (*ServerInterfaceWrapper) NoteTypeRetrieve

func (w *ServerInterfaceWrapper) NoteTypeRetrieve(ctx echo.Context) error

NoteTypeRetrieve converts echo context to params.

func (*ServerInterfaceWrapper) NoteTypeUpdate

func (w *ServerInterfaceWrapper) NoteTypeUpdate(ctx echo.Context) error

NoteTypeUpdate converts echo context to params.

func (*ServerInterfaceWrapper) NotesList

func (w *ServerInterfaceWrapper) NotesList(ctx echo.Context) error

NotesList converts echo context to params.

func (*ServerInterfaceWrapper) NotesPartialUpdate

func (w *ServerInterfaceWrapper) NotesPartialUpdate(ctx echo.Context) error

NotesPartialUpdate converts echo context to params.

func (*ServerInterfaceWrapper) NotesRetrieve

func (w *ServerInterfaceWrapper) NotesRetrieve(ctx echo.Context) error

NotesRetrieve converts echo context to params.

func (*ServerInterfaceWrapper) NotesUpdate

func (w *ServerInterfaceWrapper) NotesUpdate(ctx echo.Context) error

NotesUpdate converts echo context to params.

func (*ServerInterfaceWrapper) NotificationsCreate

func (w *ServerInterfaceWrapper) NotificationsCreate(ctx echo.Context) error

NotificationsCreate converts echo context to params.

func (*ServerInterfaceWrapper) NotificationsDeletePreviewList added in v0.2.0

func (w *ServerInterfaceWrapper) NotificationsDeletePreviewList(ctx echo.Context) error

NotificationsDeletePreviewList converts echo context to params.

func (*ServerInterfaceWrapper) NotificationsDestroy

func (w *ServerInterfaceWrapper) NotificationsDestroy(ctx echo.Context) error

NotificationsDestroy converts echo context to params.

func (*ServerInterfaceWrapper) NotificationsList

func (w *ServerInterfaceWrapper) NotificationsList(ctx echo.Context) error

NotificationsList converts echo context to params.

func (*ServerInterfaceWrapper) NotificationsPartialUpdate

func (w *ServerInterfaceWrapper) NotificationsPartialUpdate(ctx echo.Context) error

NotificationsPartialUpdate converts echo context to params.

func (*ServerInterfaceWrapper) NotificationsRetrieve

func (w *ServerInterfaceWrapper) NotificationsRetrieve(ctx echo.Context) error

NotificationsRetrieve converts echo context to params.

func (*ServerInterfaceWrapper) NotificationsUpdate

func (w *ServerInterfaceWrapper) NotificationsUpdate(ctx echo.Context) error

NotificationsUpdate converts echo context to params.

func (*ServerInterfaceWrapper) Oa3SchemaRetrieve

func (w *ServerInterfaceWrapper) Oa3SchemaRetrieve(ctx echo.Context) error

Oa3SchemaRetrieve converts echo context to params.

func (*ServerInterfaceWrapper) ProductApiScanConfigurationsCreate

func (w *ServerInterfaceWrapper) ProductApiScanConfigurationsCreate(ctx echo.Context) error

ProductApiScanConfigurationsCreate converts echo context to params.

func (*ServerInterfaceWrapper) ProductApiScanConfigurationsDeletePreviewList added in v0.2.0

func (w *ServerInterfaceWrapper) ProductApiScanConfigurationsDeletePreviewList(ctx echo.Context) error

ProductApiScanConfigurationsDeletePreviewList converts echo context to params.

func (*ServerInterfaceWrapper) ProductApiScanConfigurationsDestroy

func (w *ServerInterfaceWrapper) ProductApiScanConfigurationsDestroy(ctx echo.Context) error

ProductApiScanConfigurationsDestroy converts echo context to params.

func (*ServerInterfaceWrapper) ProductApiScanConfigurationsList

func (w *ServerInterfaceWrapper) ProductApiScanConfigurationsList(ctx echo.Context) error

ProductApiScanConfigurationsList converts echo context to params.

func (*ServerInterfaceWrapper) ProductApiScanConfigurationsPartialUpdate

func (w *ServerInterfaceWrapper) ProductApiScanConfigurationsPartialUpdate(ctx echo.Context) error

ProductApiScanConfigurationsPartialUpdate converts echo context to params.

func (*ServerInterfaceWrapper) ProductApiScanConfigurationsRetrieve

func (w *ServerInterfaceWrapper) ProductApiScanConfigurationsRetrieve(ctx echo.Context) error

ProductApiScanConfigurationsRetrieve converts echo context to params.

func (*ServerInterfaceWrapper) ProductApiScanConfigurationsUpdate

func (w *ServerInterfaceWrapper) ProductApiScanConfigurationsUpdate(ctx echo.Context) error

ProductApiScanConfigurationsUpdate converts echo context to params.

func (*ServerInterfaceWrapper) ProductGroupsCreate

func (w *ServerInterfaceWrapper) ProductGroupsCreate(ctx echo.Context) error

ProductGroupsCreate converts echo context to params.

func (*ServerInterfaceWrapper) ProductGroupsDeletePreviewList added in v0.2.0

func (w *ServerInterfaceWrapper) ProductGroupsDeletePreviewList(ctx echo.Context) error

ProductGroupsDeletePreviewList converts echo context to params.

func (*ServerInterfaceWrapper) ProductGroupsDestroy

func (w *ServerInterfaceWrapper) ProductGroupsDestroy(ctx echo.Context) error

ProductGroupsDestroy converts echo context to params.

func (*ServerInterfaceWrapper) ProductGroupsList

func (w *ServerInterfaceWrapper) ProductGroupsList(ctx echo.Context) error

ProductGroupsList converts echo context to params.

func (*ServerInterfaceWrapper) ProductGroupsPartialUpdate

func (w *ServerInterfaceWrapper) ProductGroupsPartialUpdate(ctx echo.Context) error

ProductGroupsPartialUpdate converts echo context to params.

func (*ServerInterfaceWrapper) ProductGroupsRetrieve

func (w *ServerInterfaceWrapper) ProductGroupsRetrieve(ctx echo.Context) error

ProductGroupsRetrieve converts echo context to params.

func (*ServerInterfaceWrapper) ProductGroupsUpdate

func (w *ServerInterfaceWrapper) ProductGroupsUpdate(ctx echo.Context) error

ProductGroupsUpdate converts echo context to params.

func (*ServerInterfaceWrapper) ProductMembersCreate

func (w *ServerInterfaceWrapper) ProductMembersCreate(ctx echo.Context) error

ProductMembersCreate converts echo context to params.

func (*ServerInterfaceWrapper) ProductMembersDeletePreviewList added in v0.2.0

func (w *ServerInterfaceWrapper) ProductMembersDeletePreviewList(ctx echo.Context) error

ProductMembersDeletePreviewList converts echo context to params.

func (*ServerInterfaceWrapper) ProductMembersDestroy

func (w *ServerInterfaceWrapper) ProductMembersDestroy(ctx echo.Context) error

ProductMembersDestroy converts echo context to params.

func (*ServerInterfaceWrapper) ProductMembersList

func (w *ServerInterfaceWrapper) ProductMembersList(ctx echo.Context) error

ProductMembersList converts echo context to params.

func (*ServerInterfaceWrapper) ProductMembersPartialUpdate

func (w *ServerInterfaceWrapper) ProductMembersPartialUpdate(ctx echo.Context) error

ProductMembersPartialUpdate converts echo context to params.

func (*ServerInterfaceWrapper) ProductMembersRetrieve

func (w *ServerInterfaceWrapper) ProductMembersRetrieve(ctx echo.Context) error

ProductMembersRetrieve converts echo context to params.

func (*ServerInterfaceWrapper) ProductMembersUpdate

func (w *ServerInterfaceWrapper) ProductMembersUpdate(ctx echo.Context) error

ProductMembersUpdate converts echo context to params.

func (*ServerInterfaceWrapper) ProductTypeGroupsCreate

func (w *ServerInterfaceWrapper) ProductTypeGroupsCreate(ctx echo.Context) error

ProductTypeGroupsCreate converts echo context to params.

func (*ServerInterfaceWrapper) ProductTypeGroupsDeletePreviewList added in v0.2.0

func (w *ServerInterfaceWrapper) ProductTypeGroupsDeletePreviewList(ctx echo.Context) error

ProductTypeGroupsDeletePreviewList converts echo context to params.

func (*ServerInterfaceWrapper) ProductTypeGroupsDestroy

func (w *ServerInterfaceWrapper) ProductTypeGroupsDestroy(ctx echo.Context) error

ProductTypeGroupsDestroy converts echo context to params.

func (*ServerInterfaceWrapper) ProductTypeGroupsList

func (w *ServerInterfaceWrapper) ProductTypeGroupsList(ctx echo.Context) error

ProductTypeGroupsList converts echo context to params.

func (*ServerInterfaceWrapper) ProductTypeGroupsPartialUpdate

func (w *ServerInterfaceWrapper) ProductTypeGroupsPartialUpdate(ctx echo.Context) error

ProductTypeGroupsPartialUpdate converts echo context to params.

func (*ServerInterfaceWrapper) ProductTypeGroupsRetrieve

func (w *ServerInterfaceWrapper) ProductTypeGroupsRetrieve(ctx echo.Context) error

ProductTypeGroupsRetrieve converts echo context to params.

func (*ServerInterfaceWrapper) ProductTypeGroupsUpdate

func (w *ServerInterfaceWrapper) ProductTypeGroupsUpdate(ctx echo.Context) error

ProductTypeGroupsUpdate converts echo context to params.

func (*ServerInterfaceWrapper) ProductTypeMembersCreate

func (w *ServerInterfaceWrapper) ProductTypeMembersCreate(ctx echo.Context) error

ProductTypeMembersCreate converts echo context to params.

func (*ServerInterfaceWrapper) ProductTypeMembersDeletePreviewList added in v0.2.0

func (w *ServerInterfaceWrapper) ProductTypeMembersDeletePreviewList(ctx echo.Context) error

ProductTypeMembersDeletePreviewList converts echo context to params.

func (*ServerInterfaceWrapper) ProductTypeMembersDestroy

func (w *ServerInterfaceWrapper) ProductTypeMembersDestroy(ctx echo.Context) error

ProductTypeMembersDestroy converts echo context to params.

func (*ServerInterfaceWrapper) ProductTypeMembersList

func (w *ServerInterfaceWrapper) ProductTypeMembersList(ctx echo.Context) error

ProductTypeMembersList converts echo context to params.

func (*ServerInterfaceWrapper) ProductTypeMembersPartialUpdate

func (w *ServerInterfaceWrapper) ProductTypeMembersPartialUpdate(ctx echo.Context) error

ProductTypeMembersPartialUpdate converts echo context to params.

func (*ServerInterfaceWrapper) ProductTypeMembersRetrieve

func (w *ServerInterfaceWrapper) ProductTypeMembersRetrieve(ctx echo.Context) error

ProductTypeMembersRetrieve converts echo context to params.

func (*ServerInterfaceWrapper) ProductTypeMembersUpdate

func (w *ServerInterfaceWrapper) ProductTypeMembersUpdate(ctx echo.Context) error

ProductTypeMembersUpdate converts echo context to params.

func (*ServerInterfaceWrapper) ProductTypesCreate

func (w *ServerInterfaceWrapper) ProductTypesCreate(ctx echo.Context) error

ProductTypesCreate converts echo context to params.

func (*ServerInterfaceWrapper) ProductTypesDeletePreviewList added in v0.2.0

func (w *ServerInterfaceWrapper) ProductTypesDeletePreviewList(ctx echo.Context) error

ProductTypesDeletePreviewList converts echo context to params.

func (*ServerInterfaceWrapper) ProductTypesDestroy

func (w *ServerInterfaceWrapper) ProductTypesDestroy(ctx echo.Context) error

ProductTypesDestroy converts echo context to params.

func (*ServerInterfaceWrapper) ProductTypesGenerateReportCreate

func (w *ServerInterfaceWrapper) ProductTypesGenerateReportCreate(ctx echo.Context) error

ProductTypesGenerateReportCreate converts echo context to params.

func (*ServerInterfaceWrapper) ProductTypesList

func (w *ServerInterfaceWrapper) ProductTypesList(ctx echo.Context) error

ProductTypesList converts echo context to params.

func (*ServerInterfaceWrapper) ProductTypesPartialUpdate

func (w *ServerInterfaceWrapper) ProductTypesPartialUpdate(ctx echo.Context) error

ProductTypesPartialUpdate converts echo context to params.

func (*ServerInterfaceWrapper) ProductTypesRetrieve

func (w *ServerInterfaceWrapper) ProductTypesRetrieve(ctx echo.Context) error

ProductTypesRetrieve converts echo context to params.

func (*ServerInterfaceWrapper) ProductTypesUpdate

func (w *ServerInterfaceWrapper) ProductTypesUpdate(ctx echo.Context) error

ProductTypesUpdate converts echo context to params.

func (*ServerInterfaceWrapper) ProductsCreate

func (w *ServerInterfaceWrapper) ProductsCreate(ctx echo.Context) error

ProductsCreate converts echo context to params.

func (*ServerInterfaceWrapper) ProductsDeletePreviewList added in v0.2.0

func (w *ServerInterfaceWrapper) ProductsDeletePreviewList(ctx echo.Context) error

ProductsDeletePreviewList converts echo context to params.

func (*ServerInterfaceWrapper) ProductsDestroy

func (w *ServerInterfaceWrapper) ProductsDestroy(ctx echo.Context) error

ProductsDestroy converts echo context to params.

func (*ServerInterfaceWrapper) ProductsGenerateReportCreate

func (w *ServerInterfaceWrapper) ProductsGenerateReportCreate(ctx echo.Context) error

ProductsGenerateReportCreate converts echo context to params.

func (*ServerInterfaceWrapper) ProductsList

func (w *ServerInterfaceWrapper) ProductsList(ctx echo.Context) error

ProductsList converts echo context to params.

func (*ServerInterfaceWrapper) ProductsPartialUpdate

func (w *ServerInterfaceWrapper) ProductsPartialUpdate(ctx echo.Context) error

ProductsPartialUpdate converts echo context to params.

func (*ServerInterfaceWrapper) ProductsRetrieve

func (w *ServerInterfaceWrapper) ProductsRetrieve(ctx echo.Context) error

ProductsRetrieve converts echo context to params.

func (*ServerInterfaceWrapper) ProductsUpdate

func (w *ServerInterfaceWrapper) ProductsUpdate(ctx echo.Context) error

ProductsUpdate converts echo context to params.

func (*ServerInterfaceWrapper) QuestionnaireAnsweredQuestionnairesList added in v0.2.0

func (w *ServerInterfaceWrapper) QuestionnaireAnsweredQuestionnairesList(ctx echo.Context) error

QuestionnaireAnsweredQuestionnairesList converts echo context to params.

func (*ServerInterfaceWrapper) QuestionnaireAnsweredQuestionnairesRetrieve added in v0.2.0

func (w *ServerInterfaceWrapper) QuestionnaireAnsweredQuestionnairesRetrieve(ctx echo.Context) error

QuestionnaireAnsweredQuestionnairesRetrieve converts echo context to params.

func (*ServerInterfaceWrapper) QuestionnaireAnswersList added in v0.2.0

func (w *ServerInterfaceWrapper) QuestionnaireAnswersList(ctx echo.Context) error

QuestionnaireAnswersList converts echo context to params.

func (*ServerInterfaceWrapper) QuestionnaireAnswersRetrieve added in v0.2.0

func (w *ServerInterfaceWrapper) QuestionnaireAnswersRetrieve(ctx echo.Context) error

QuestionnaireAnswersRetrieve converts echo context to params.

func (*ServerInterfaceWrapper) QuestionnaireEngagementQuestionnairesList added in v0.2.0

func (w *ServerInterfaceWrapper) QuestionnaireEngagementQuestionnairesList(ctx echo.Context) error

QuestionnaireEngagementQuestionnairesList converts echo context to params.

func (*ServerInterfaceWrapper) QuestionnaireEngagementQuestionnairesRetrieve added in v0.2.0

func (w *ServerInterfaceWrapper) QuestionnaireEngagementQuestionnairesRetrieve(ctx echo.Context) error

QuestionnaireEngagementQuestionnairesRetrieve converts echo context to params.

func (*ServerInterfaceWrapper) QuestionnaireGeneralQuestionnairesList added in v0.2.0

func (w *ServerInterfaceWrapper) QuestionnaireGeneralQuestionnairesList(ctx echo.Context) error

QuestionnaireGeneralQuestionnairesList converts echo context to params.

func (*ServerInterfaceWrapper) QuestionnaireGeneralQuestionnairesRetrieve added in v0.2.0

func (w *ServerInterfaceWrapper) QuestionnaireGeneralQuestionnairesRetrieve(ctx echo.Context) error

QuestionnaireGeneralQuestionnairesRetrieve converts echo context to params.

func (*ServerInterfaceWrapper) QuestionnaireQuestionsList added in v0.2.0

func (w *ServerInterfaceWrapper) QuestionnaireQuestionsList(ctx echo.Context) error

QuestionnaireQuestionsList converts echo context to params.

func (*ServerInterfaceWrapper) QuestionnaireQuestionsRetrieve added in v0.2.0

func (w *ServerInterfaceWrapper) QuestionnaireQuestionsRetrieve(ctx echo.Context) error

QuestionnaireQuestionsRetrieve converts echo context to params.

func (*ServerInterfaceWrapper) RegulationsCreate

func (w *ServerInterfaceWrapper) RegulationsCreate(ctx echo.Context) error

RegulationsCreate converts echo context to params.

func (*ServerInterfaceWrapper) RegulationsDeletePreviewList added in v0.2.0

func (w *ServerInterfaceWrapper) RegulationsDeletePreviewList(ctx echo.Context) error

RegulationsDeletePreviewList converts echo context to params.

func (*ServerInterfaceWrapper) RegulationsDestroy

func (w *ServerInterfaceWrapper) RegulationsDestroy(ctx echo.Context) error

RegulationsDestroy converts echo context to params.

func (*ServerInterfaceWrapper) RegulationsList

func (w *ServerInterfaceWrapper) RegulationsList(ctx echo.Context) error

RegulationsList converts echo context to params.

func (*ServerInterfaceWrapper) RegulationsPartialUpdate

func (w *ServerInterfaceWrapper) RegulationsPartialUpdate(ctx echo.Context) error

RegulationsPartialUpdate converts echo context to params.

func (*ServerInterfaceWrapper) RegulationsRetrieve

func (w *ServerInterfaceWrapper) RegulationsRetrieve(ctx echo.Context) error

RegulationsRetrieve converts echo context to params.

func (*ServerInterfaceWrapper) RegulationsUpdate

func (w *ServerInterfaceWrapper) RegulationsUpdate(ctx echo.Context) error

RegulationsUpdate converts echo context to params.

func (*ServerInterfaceWrapper) ReimportScanCreate

func (w *ServerInterfaceWrapper) ReimportScanCreate(ctx echo.Context) error

ReimportScanCreate converts echo context to params.

func (*ServerInterfaceWrapper) RiskAcceptanceDeletePreviewList added in v0.2.0

func (w *ServerInterfaceWrapper) RiskAcceptanceDeletePreviewList(ctx echo.Context) error

RiskAcceptanceDeletePreviewList converts echo context to params.

func (*ServerInterfaceWrapper) RiskAcceptanceDestroy added in v0.2.0

func (w *ServerInterfaceWrapper) RiskAcceptanceDestroy(ctx echo.Context) error

RiskAcceptanceDestroy converts echo context to params.

func (*ServerInterfaceWrapper) RiskAcceptanceDownloadProofRetrieve added in v0.2.0

func (w *ServerInterfaceWrapper) RiskAcceptanceDownloadProofRetrieve(ctx echo.Context) error

RiskAcceptanceDownloadProofRetrieve converts echo context to params.

func (*ServerInterfaceWrapper) RiskAcceptanceList added in v0.2.0

func (w *ServerInterfaceWrapper) RiskAcceptanceList(ctx echo.Context) error

RiskAcceptanceList converts echo context to params.

func (*ServerInterfaceWrapper) RiskAcceptanceRetrieve added in v0.2.0

func (w *ServerInterfaceWrapper) RiskAcceptanceRetrieve(ctx echo.Context) error

RiskAcceptanceRetrieve converts echo context to params.

func (*ServerInterfaceWrapper) RolesList

func (w *ServerInterfaceWrapper) RolesList(ctx echo.Context) error

RolesList converts echo context to params.

func (*ServerInterfaceWrapper) RolesRetrieve

func (w *ServerInterfaceWrapper) RolesRetrieve(ctx echo.Context) error

RolesRetrieve converts echo context to params.

func (*ServerInterfaceWrapper) SlaConfigurationsCreate added in v0.2.0

func (w *ServerInterfaceWrapper) SlaConfigurationsCreate(ctx echo.Context) error

SlaConfigurationsCreate converts echo context to params.

func (*ServerInterfaceWrapper) SlaConfigurationsDestroy added in v0.2.0

func (w *ServerInterfaceWrapper) SlaConfigurationsDestroy(ctx echo.Context) error

SlaConfigurationsDestroy converts echo context to params.

func (*ServerInterfaceWrapper) SlaConfigurationsList added in v0.2.0

func (w *ServerInterfaceWrapper) SlaConfigurationsList(ctx echo.Context) error

SlaConfigurationsList converts echo context to params.

func (*ServerInterfaceWrapper) SlaConfigurationsPartialUpdate added in v0.2.0

func (w *ServerInterfaceWrapper) SlaConfigurationsPartialUpdate(ctx echo.Context) error

SlaConfigurationsPartialUpdate converts echo context to params.

func (*ServerInterfaceWrapper) SlaConfigurationsRetrieve added in v0.2.0

func (w *ServerInterfaceWrapper) SlaConfigurationsRetrieve(ctx echo.Context) error

SlaConfigurationsRetrieve converts echo context to params.

func (*ServerInterfaceWrapper) SlaConfigurationsUpdate added in v0.2.0

func (w *ServerInterfaceWrapper) SlaConfigurationsUpdate(ctx echo.Context) error

SlaConfigurationsUpdate converts echo context to params.

func (*ServerInterfaceWrapper) SonarqubeIssuesCreate

func (w *ServerInterfaceWrapper) SonarqubeIssuesCreate(ctx echo.Context) error

SonarqubeIssuesCreate converts echo context to params.

func (*ServerInterfaceWrapper) SonarqubeIssuesDeletePreviewList added in v0.2.0

func (w *ServerInterfaceWrapper) SonarqubeIssuesDeletePreviewList(ctx echo.Context) error

SonarqubeIssuesDeletePreviewList converts echo context to params.

func (*ServerInterfaceWrapper) SonarqubeIssuesDestroy

func (w *ServerInterfaceWrapper) SonarqubeIssuesDestroy(ctx echo.Context) error

SonarqubeIssuesDestroy converts echo context to params.

func (*ServerInterfaceWrapper) SonarqubeIssuesList

func (w *ServerInterfaceWrapper) SonarqubeIssuesList(ctx echo.Context) error

SonarqubeIssuesList converts echo context to params.

func (*ServerInterfaceWrapper) SonarqubeIssuesPartialUpdate

func (w *ServerInterfaceWrapper) SonarqubeIssuesPartialUpdate(ctx echo.Context) error

SonarqubeIssuesPartialUpdate converts echo context to params.

func (*ServerInterfaceWrapper) SonarqubeIssuesRetrieve

func (w *ServerInterfaceWrapper) SonarqubeIssuesRetrieve(ctx echo.Context) error

SonarqubeIssuesRetrieve converts echo context to params.

func (*ServerInterfaceWrapper) SonarqubeIssuesUpdate

func (w *ServerInterfaceWrapper) SonarqubeIssuesUpdate(ctx echo.Context) error

SonarqubeIssuesUpdate converts echo context to params.

func (*ServerInterfaceWrapper) SonarqubeTransitionsCreate

func (w *ServerInterfaceWrapper) SonarqubeTransitionsCreate(ctx echo.Context) error

SonarqubeTransitionsCreate converts echo context to params.

func (*ServerInterfaceWrapper) SonarqubeTransitionsDeletePreviewList added in v0.2.0

func (w *ServerInterfaceWrapper) SonarqubeTransitionsDeletePreviewList(ctx echo.Context) error

SonarqubeTransitionsDeletePreviewList converts echo context to params.

func (*ServerInterfaceWrapper) SonarqubeTransitionsDestroy

func (w *ServerInterfaceWrapper) SonarqubeTransitionsDestroy(ctx echo.Context) error

SonarqubeTransitionsDestroy converts echo context to params.

func (*ServerInterfaceWrapper) SonarqubeTransitionsList

func (w *ServerInterfaceWrapper) SonarqubeTransitionsList(ctx echo.Context) error

SonarqubeTransitionsList converts echo context to params.

func (*ServerInterfaceWrapper) SonarqubeTransitionsPartialUpdate

func (w *ServerInterfaceWrapper) SonarqubeTransitionsPartialUpdate(ctx echo.Context) error

SonarqubeTransitionsPartialUpdate converts echo context to params.

func (*ServerInterfaceWrapper) SonarqubeTransitionsRetrieve

func (w *ServerInterfaceWrapper) SonarqubeTransitionsRetrieve(ctx echo.Context) error

SonarqubeTransitionsRetrieve converts echo context to params.

func (*ServerInterfaceWrapper) SonarqubeTransitionsUpdate

func (w *ServerInterfaceWrapper) SonarqubeTransitionsUpdate(ctx echo.Context) error

SonarqubeTransitionsUpdate converts echo context to params.

func (*ServerInterfaceWrapper) StubFindingsCreate

func (w *ServerInterfaceWrapper) StubFindingsCreate(ctx echo.Context) error

StubFindingsCreate converts echo context to params.

func (*ServerInterfaceWrapper) StubFindingsDeletePreviewList added in v0.2.0

func (w *ServerInterfaceWrapper) StubFindingsDeletePreviewList(ctx echo.Context) error

StubFindingsDeletePreviewList converts echo context to params.

func (*ServerInterfaceWrapper) StubFindingsDestroy

func (w *ServerInterfaceWrapper) StubFindingsDestroy(ctx echo.Context) error

StubFindingsDestroy converts echo context to params.

func (*ServerInterfaceWrapper) StubFindingsList

func (w *ServerInterfaceWrapper) StubFindingsList(ctx echo.Context) error

StubFindingsList converts echo context to params.

func (*ServerInterfaceWrapper) StubFindingsPartialUpdate

func (w *ServerInterfaceWrapper) StubFindingsPartialUpdate(ctx echo.Context) error

StubFindingsPartialUpdate converts echo context to params.

func (*ServerInterfaceWrapper) StubFindingsRetrieve

func (w *ServerInterfaceWrapper) StubFindingsRetrieve(ctx echo.Context) error

StubFindingsRetrieve converts echo context to params.

func (*ServerInterfaceWrapper) StubFindingsUpdate

func (w *ServerInterfaceWrapper) StubFindingsUpdate(ctx echo.Context) error

StubFindingsUpdate converts echo context to params.

func (*ServerInterfaceWrapper) SystemSettingsList

func (w *ServerInterfaceWrapper) SystemSettingsList(ctx echo.Context) error

SystemSettingsList converts echo context to params.

func (*ServerInterfaceWrapper) SystemSettingsPartialUpdate

func (w *ServerInterfaceWrapper) SystemSettingsPartialUpdate(ctx echo.Context) error

SystemSettingsPartialUpdate converts echo context to params.

func (*ServerInterfaceWrapper) SystemSettingsUpdate

func (w *ServerInterfaceWrapper) SystemSettingsUpdate(ctx echo.Context) error

SystemSettingsUpdate converts echo context to params.

func (*ServerInterfaceWrapper) TechnologiesCreate

func (w *ServerInterfaceWrapper) TechnologiesCreate(ctx echo.Context) error

TechnologiesCreate converts echo context to params.

func (*ServerInterfaceWrapper) TechnologiesDeletePreviewList added in v0.2.0

func (w *ServerInterfaceWrapper) TechnologiesDeletePreviewList(ctx echo.Context) error

TechnologiesDeletePreviewList converts echo context to params.

func (*ServerInterfaceWrapper) TechnologiesDestroy

func (w *ServerInterfaceWrapper) TechnologiesDestroy(ctx echo.Context) error

TechnologiesDestroy converts echo context to params.

func (*ServerInterfaceWrapper) TechnologiesList

func (w *ServerInterfaceWrapper) TechnologiesList(ctx echo.Context) error

TechnologiesList converts echo context to params.

func (*ServerInterfaceWrapper) TechnologiesPartialUpdate

func (w *ServerInterfaceWrapper) TechnologiesPartialUpdate(ctx echo.Context) error

TechnologiesPartialUpdate converts echo context to params.

func (*ServerInterfaceWrapper) TechnologiesRetrieve

func (w *ServerInterfaceWrapper) TechnologiesRetrieve(ctx echo.Context) error

TechnologiesRetrieve converts echo context to params.

func (*ServerInterfaceWrapper) TechnologiesUpdate

func (w *ServerInterfaceWrapper) TechnologiesUpdate(ctx echo.Context) error

TechnologiesUpdate converts echo context to params.

func (*ServerInterfaceWrapper) TestImportsCreate

func (w *ServerInterfaceWrapper) TestImportsCreate(ctx echo.Context) error

TestImportsCreate converts echo context to params.

func (*ServerInterfaceWrapper) TestImportsDeletePreviewList added in v0.2.0

func (w *ServerInterfaceWrapper) TestImportsDeletePreviewList(ctx echo.Context) error

TestImportsDeletePreviewList converts echo context to params.

func (*ServerInterfaceWrapper) TestImportsDestroy

func (w *ServerInterfaceWrapper) TestImportsDestroy(ctx echo.Context) error

TestImportsDestroy converts echo context to params.

func (*ServerInterfaceWrapper) TestImportsList

func (w *ServerInterfaceWrapper) TestImportsList(ctx echo.Context) error

TestImportsList converts echo context to params.

func (*ServerInterfaceWrapper) TestImportsPartialUpdate

func (w *ServerInterfaceWrapper) TestImportsPartialUpdate(ctx echo.Context) error

TestImportsPartialUpdate converts echo context to params.

func (*ServerInterfaceWrapper) TestImportsRetrieve

func (w *ServerInterfaceWrapper) TestImportsRetrieve(ctx echo.Context) error

TestImportsRetrieve converts echo context to params.

func (*ServerInterfaceWrapper) TestImportsUpdate

func (w *ServerInterfaceWrapper) TestImportsUpdate(ctx echo.Context) error

TestImportsUpdate converts echo context to params.

func (*ServerInterfaceWrapper) TestTypesCreate

func (w *ServerInterfaceWrapper) TestTypesCreate(ctx echo.Context) error

TestTypesCreate converts echo context to params.

func (*ServerInterfaceWrapper) TestTypesList

func (w *ServerInterfaceWrapper) TestTypesList(ctx echo.Context) error

TestTypesList converts echo context to params.

func (*ServerInterfaceWrapper) TestTypesPartialUpdate

func (w *ServerInterfaceWrapper) TestTypesPartialUpdate(ctx echo.Context) error

TestTypesPartialUpdate converts echo context to params.

func (*ServerInterfaceWrapper) TestTypesRetrieve

func (w *ServerInterfaceWrapper) TestTypesRetrieve(ctx echo.Context) error

TestTypesRetrieve converts echo context to params.

func (*ServerInterfaceWrapper) TestTypesUpdate

func (w *ServerInterfaceWrapper) TestTypesUpdate(ctx echo.Context) error

TestTypesUpdate converts echo context to params.

func (*ServerInterfaceWrapper) TestsAcceptRisksCreate

func (w *ServerInterfaceWrapper) TestsAcceptRisksCreate(ctx echo.Context) error

TestsAcceptRisksCreate converts echo context to params.

func (*ServerInterfaceWrapper) TestsCreate

func (w *ServerInterfaceWrapper) TestsCreate(ctx echo.Context) error

TestsCreate converts echo context to params.

func (*ServerInterfaceWrapper) TestsDeletePreviewList added in v0.2.0

func (w *ServerInterfaceWrapper) TestsDeletePreviewList(ctx echo.Context) error

TestsDeletePreviewList converts echo context to params.

func (*ServerInterfaceWrapper) TestsDestroy

func (w *ServerInterfaceWrapper) TestsDestroy(ctx echo.Context) error

TestsDestroy converts echo context to params.

func (*ServerInterfaceWrapper) TestsFilesCreate

func (w *ServerInterfaceWrapper) TestsFilesCreate(ctx echo.Context) error

TestsFilesCreate converts echo context to params.

func (*ServerInterfaceWrapper) TestsFilesDownloadRetrieve added in v0.2.0

func (w *ServerInterfaceWrapper) TestsFilesDownloadRetrieve(ctx echo.Context) error

TestsFilesDownloadRetrieve converts echo context to params.

func (*ServerInterfaceWrapper) TestsFilesRetrieve

func (w *ServerInterfaceWrapper) TestsFilesRetrieve(ctx echo.Context) error

TestsFilesRetrieve converts echo context to params.

func (*ServerInterfaceWrapper) TestsGenerateReportCreate

func (w *ServerInterfaceWrapper) TestsGenerateReportCreate(ctx echo.Context) error

TestsGenerateReportCreate converts echo context to params.

func (*ServerInterfaceWrapper) TestsList

func (w *ServerInterfaceWrapper) TestsList(ctx echo.Context) error

TestsList converts echo context to params.

func (*ServerInterfaceWrapper) TestsNotesCreate

func (w *ServerInterfaceWrapper) TestsNotesCreate(ctx echo.Context) error

TestsNotesCreate converts echo context to params.

func (*ServerInterfaceWrapper) TestsNotesRetrieve

func (w *ServerInterfaceWrapper) TestsNotesRetrieve(ctx echo.Context) error

TestsNotesRetrieve converts echo context to params.

func (*ServerInterfaceWrapper) TestsPartialUpdate

func (w *ServerInterfaceWrapper) TestsPartialUpdate(ctx echo.Context) error

TestsPartialUpdate converts echo context to params.

func (*ServerInterfaceWrapper) TestsRetrieve

func (w *ServerInterfaceWrapper) TestsRetrieve(ctx echo.Context) error

TestsRetrieve converts echo context to params.

func (*ServerInterfaceWrapper) TestsUpdate

func (w *ServerInterfaceWrapper) TestsUpdate(ctx echo.Context) error

TestsUpdate converts echo context to params.

func (*ServerInterfaceWrapper) ToolConfigurationsCreate

func (w *ServerInterfaceWrapper) ToolConfigurationsCreate(ctx echo.Context) error

ToolConfigurationsCreate converts echo context to params.

func (*ServerInterfaceWrapper) ToolConfigurationsDeletePreviewList added in v0.2.0

func (w *ServerInterfaceWrapper) ToolConfigurationsDeletePreviewList(ctx echo.Context) error

ToolConfigurationsDeletePreviewList converts echo context to params.

func (*ServerInterfaceWrapper) ToolConfigurationsDestroy

func (w *ServerInterfaceWrapper) ToolConfigurationsDestroy(ctx echo.Context) error

ToolConfigurationsDestroy converts echo context to params.

func (*ServerInterfaceWrapper) ToolConfigurationsList

func (w *ServerInterfaceWrapper) ToolConfigurationsList(ctx echo.Context) error

ToolConfigurationsList converts echo context to params.

func (*ServerInterfaceWrapper) ToolConfigurationsPartialUpdate

func (w *ServerInterfaceWrapper) ToolConfigurationsPartialUpdate(ctx echo.Context) error

ToolConfigurationsPartialUpdate converts echo context to params.

func (*ServerInterfaceWrapper) ToolConfigurationsRetrieve

func (w *ServerInterfaceWrapper) ToolConfigurationsRetrieve(ctx echo.Context) error

ToolConfigurationsRetrieve converts echo context to params.

func (*ServerInterfaceWrapper) ToolConfigurationsUpdate

func (w *ServerInterfaceWrapper) ToolConfigurationsUpdate(ctx echo.Context) error

ToolConfigurationsUpdate converts echo context to params.

func (*ServerInterfaceWrapper) ToolProductSettingsCreate

func (w *ServerInterfaceWrapper) ToolProductSettingsCreate(ctx echo.Context) error

ToolProductSettingsCreate converts echo context to params.

func (*ServerInterfaceWrapper) ToolProductSettingsDeletePreviewList added in v0.2.0

func (w *ServerInterfaceWrapper) ToolProductSettingsDeletePreviewList(ctx echo.Context) error

ToolProductSettingsDeletePreviewList converts echo context to params.

func (*ServerInterfaceWrapper) ToolProductSettingsDestroy

func (w *ServerInterfaceWrapper) ToolProductSettingsDestroy(ctx echo.Context) error

ToolProductSettingsDestroy converts echo context to params.

func (*ServerInterfaceWrapper) ToolProductSettingsList

func (w *ServerInterfaceWrapper) ToolProductSettingsList(ctx echo.Context) error

ToolProductSettingsList converts echo context to params.

func (*ServerInterfaceWrapper) ToolProductSettingsPartialUpdate

func (w *ServerInterfaceWrapper) ToolProductSettingsPartialUpdate(ctx echo.Context) error

ToolProductSettingsPartialUpdate converts echo context to params.

func (*ServerInterfaceWrapper) ToolProductSettingsRetrieve

func (w *ServerInterfaceWrapper) ToolProductSettingsRetrieve(ctx echo.Context) error

ToolProductSettingsRetrieve converts echo context to params.

func (*ServerInterfaceWrapper) ToolProductSettingsUpdate

func (w *ServerInterfaceWrapper) ToolProductSettingsUpdate(ctx echo.Context) error

ToolProductSettingsUpdate converts echo context to params.

func (*ServerInterfaceWrapper) ToolTypesCreate

func (w *ServerInterfaceWrapper) ToolTypesCreate(ctx echo.Context) error

ToolTypesCreate converts echo context to params.

func (*ServerInterfaceWrapper) ToolTypesDeletePreviewList added in v0.2.0

func (w *ServerInterfaceWrapper) ToolTypesDeletePreviewList(ctx echo.Context) error

ToolTypesDeletePreviewList converts echo context to params.

func (*ServerInterfaceWrapper) ToolTypesDestroy

func (w *ServerInterfaceWrapper) ToolTypesDestroy(ctx echo.Context) error

ToolTypesDestroy converts echo context to params.

func (*ServerInterfaceWrapper) ToolTypesList

func (w *ServerInterfaceWrapper) ToolTypesList(ctx echo.Context) error

ToolTypesList converts echo context to params.

func (*ServerInterfaceWrapper) ToolTypesPartialUpdate

func (w *ServerInterfaceWrapper) ToolTypesPartialUpdate(ctx echo.Context) error

ToolTypesPartialUpdate converts echo context to params.

func (*ServerInterfaceWrapper) ToolTypesRetrieve

func (w *ServerInterfaceWrapper) ToolTypesRetrieve(ctx echo.Context) error

ToolTypesRetrieve converts echo context to params.

func (*ServerInterfaceWrapper) ToolTypesUpdate

func (w *ServerInterfaceWrapper) ToolTypesUpdate(ctx echo.Context) error

ToolTypesUpdate converts echo context to params.

func (*ServerInterfaceWrapper) UserContactInfosCreate

func (w *ServerInterfaceWrapper) UserContactInfosCreate(ctx echo.Context) error

UserContactInfosCreate converts echo context to params.

func (*ServerInterfaceWrapper) UserContactInfosDeletePreviewList added in v0.2.0

func (w *ServerInterfaceWrapper) UserContactInfosDeletePreviewList(ctx echo.Context) error

UserContactInfosDeletePreviewList converts echo context to params.

func (*ServerInterfaceWrapper) UserContactInfosDestroy

func (w *ServerInterfaceWrapper) UserContactInfosDestroy(ctx echo.Context) error

UserContactInfosDestroy converts echo context to params.

func (*ServerInterfaceWrapper) UserContactInfosList

func (w *ServerInterfaceWrapper) UserContactInfosList(ctx echo.Context) error

UserContactInfosList converts echo context to params.

func (*ServerInterfaceWrapper) UserContactInfosPartialUpdate

func (w *ServerInterfaceWrapper) UserContactInfosPartialUpdate(ctx echo.Context) error

UserContactInfosPartialUpdate converts echo context to params.

func (*ServerInterfaceWrapper) UserContactInfosRetrieve

func (w *ServerInterfaceWrapper) UserContactInfosRetrieve(ctx echo.Context) error

UserContactInfosRetrieve converts echo context to params.

func (*ServerInterfaceWrapper) UserContactInfosUpdate

func (w *ServerInterfaceWrapper) UserContactInfosUpdate(ctx echo.Context) error

UserContactInfosUpdate converts echo context to params.

func (*ServerInterfaceWrapper) UserProfileRetrieve

func (w *ServerInterfaceWrapper) UserProfileRetrieve(ctx echo.Context) error

UserProfileRetrieve converts echo context to params.

func (*ServerInterfaceWrapper) UsersCreate

func (w *ServerInterfaceWrapper) UsersCreate(ctx echo.Context) error

UsersCreate converts echo context to params.

func (*ServerInterfaceWrapper) UsersDeletePreviewList added in v0.2.0

func (w *ServerInterfaceWrapper) UsersDeletePreviewList(ctx echo.Context) error

UsersDeletePreviewList converts echo context to params.

func (*ServerInterfaceWrapper) UsersDestroy

func (w *ServerInterfaceWrapper) UsersDestroy(ctx echo.Context) error

UsersDestroy converts echo context to params.

func (*ServerInterfaceWrapper) UsersList

func (w *ServerInterfaceWrapper) UsersList(ctx echo.Context) error

UsersList converts echo context to params.

func (*ServerInterfaceWrapper) UsersPartialUpdate

func (w *ServerInterfaceWrapper) UsersPartialUpdate(ctx echo.Context) error

UsersPartialUpdate converts echo context to params.

func (*ServerInterfaceWrapper) UsersRetrieve

func (w *ServerInterfaceWrapper) UsersRetrieve(ctx echo.Context) error

UsersRetrieve converts echo context to params.

func (*ServerInterfaceWrapper) UsersUpdate

func (w *ServerInterfaceWrapper) UsersUpdate(ctx echo.Context) error

UsersUpdate converts echo context to params.

type SeverityStatusStatistics

type SeverityStatusStatistics struct {
	Critical StatusStatistics `json:"critical"`
	High     StatusStatistics `json:"high"`
	Info     StatusStatistics `json:"info"`
	Low      StatusStatistics `json:"low"`
	Medium   StatusStatistics `json:"medium"`
	Total    StatusStatistics `json:"total"`
}

SeverityStatusStatistics defines model for SeverityStatusStatistics.

type SlaConfigurationsCreateFormdataRequestBody added in v0.2.0

type SlaConfigurationsCreateFormdataRequestBody = SLAConfigurationRequest

SlaConfigurationsCreateFormdataRequestBody defines body for SlaConfigurationsCreate for application/x-www-form-urlencoded ContentType.

type SlaConfigurationsCreateJSONRequestBody added in v0.2.0

type SlaConfigurationsCreateJSONRequestBody = SLAConfigurationRequest

SlaConfigurationsCreateJSONRequestBody defines body for SlaConfigurationsCreate for application/json ContentType.

type SlaConfigurationsCreateMultipartRequestBody added in v0.2.0

type SlaConfigurationsCreateMultipartRequestBody = SLAConfigurationRequest

SlaConfigurationsCreateMultipartRequestBody defines body for SlaConfigurationsCreate for multipart/form-data ContentType.

type SlaConfigurationsCreateResponse added in v0.2.0

type SlaConfigurationsCreateResponse struct {
	Body         []byte
	HTTPResponse *http.Response
	JSON201      *SLAConfiguration
}

func ParseSlaConfigurationsCreateResponse added in v0.2.0

func ParseSlaConfigurationsCreateResponse(rsp *http.Response) (*SlaConfigurationsCreateResponse, error)

ParseSlaConfigurationsCreateResponse parses an HTTP response from a SlaConfigurationsCreateWithResponse call

func (SlaConfigurationsCreateResponse) Status added in v0.2.0

Status returns HTTPResponse.Status

func (SlaConfigurationsCreateResponse) StatusCode added in v0.2.0

func (r SlaConfigurationsCreateResponse) StatusCode() int

StatusCode returns HTTPResponse.StatusCode

type SlaConfigurationsDestroyResponse added in v0.2.0

type SlaConfigurationsDestroyResponse struct {
	Body         []byte
	HTTPResponse *http.Response
}

func ParseSlaConfigurationsDestroyResponse added in v0.2.0

func ParseSlaConfigurationsDestroyResponse(rsp *http.Response) (*SlaConfigurationsDestroyResponse, error)

ParseSlaConfigurationsDestroyResponse parses an HTTP response from a SlaConfigurationsDestroyWithResponse call

func (SlaConfigurationsDestroyResponse) Status added in v0.2.0

Status returns HTTPResponse.Status

func (SlaConfigurationsDestroyResponse) StatusCode added in v0.2.0

func (r SlaConfigurationsDestroyResponse) StatusCode() int

StatusCode returns HTTPResponse.StatusCode

type SlaConfigurationsListParams added in v0.2.0

type SlaConfigurationsListParams struct {
	// Limit Number of results to return per page.
	Limit *int `form:"limit,omitempty" json:"limit,omitempty"`

	// Offset The initial index from which to return the results.
	Offset *int `form:"offset,omitempty" json:"offset,omitempty"`
}

SlaConfigurationsListParams defines parameters for SlaConfigurationsList.

type SlaConfigurationsListResponse added in v0.2.0

type SlaConfigurationsListResponse struct {
	Body         []byte
	HTTPResponse *http.Response
	JSON200      *PaginatedSLAConfigurationList
}

func ParseSlaConfigurationsListResponse added in v0.2.0

func ParseSlaConfigurationsListResponse(rsp *http.Response) (*SlaConfigurationsListResponse, error)

ParseSlaConfigurationsListResponse parses an HTTP response from a SlaConfigurationsListWithResponse call

func (SlaConfigurationsListResponse) Status added in v0.2.0

Status returns HTTPResponse.Status

func (SlaConfigurationsListResponse) StatusCode added in v0.2.0

func (r SlaConfigurationsListResponse) StatusCode() int

StatusCode returns HTTPResponse.StatusCode

type SlaConfigurationsPartialUpdateFormdataRequestBody added in v0.2.0

type SlaConfigurationsPartialUpdateFormdataRequestBody = PatchedSLAConfigurationRequest

SlaConfigurationsPartialUpdateFormdataRequestBody defines body for SlaConfigurationsPartialUpdate for application/x-www-form-urlencoded ContentType.

type SlaConfigurationsPartialUpdateJSONRequestBody added in v0.2.0

type SlaConfigurationsPartialUpdateJSONRequestBody = PatchedSLAConfigurationRequest

SlaConfigurationsPartialUpdateJSONRequestBody defines body for SlaConfigurationsPartialUpdate for application/json ContentType.

type SlaConfigurationsPartialUpdateMultipartRequestBody added in v0.2.0

type SlaConfigurationsPartialUpdateMultipartRequestBody = PatchedSLAConfigurationRequest

SlaConfigurationsPartialUpdateMultipartRequestBody defines body for SlaConfigurationsPartialUpdate for multipart/form-data ContentType.

type SlaConfigurationsPartialUpdateResponse added in v0.2.0

type SlaConfigurationsPartialUpdateResponse struct {
	Body         []byte
	HTTPResponse *http.Response
	JSON200      *SLAConfiguration
}

func ParseSlaConfigurationsPartialUpdateResponse added in v0.2.0

func ParseSlaConfigurationsPartialUpdateResponse(rsp *http.Response) (*SlaConfigurationsPartialUpdateResponse, error)

ParseSlaConfigurationsPartialUpdateResponse parses an HTTP response from a SlaConfigurationsPartialUpdateWithResponse call

func (SlaConfigurationsPartialUpdateResponse) Status added in v0.2.0

Status returns HTTPResponse.Status

func (SlaConfigurationsPartialUpdateResponse) StatusCode added in v0.2.0

StatusCode returns HTTPResponse.StatusCode

type SlaConfigurationsRetrieveResponse added in v0.2.0

type SlaConfigurationsRetrieveResponse struct {
	Body         []byte
	HTTPResponse *http.Response
	JSON200      *SLAConfiguration
}

func ParseSlaConfigurationsRetrieveResponse added in v0.2.0

func ParseSlaConfigurationsRetrieveResponse(rsp *http.Response) (*SlaConfigurationsRetrieveResponse, error)

ParseSlaConfigurationsRetrieveResponse parses an HTTP response from a SlaConfigurationsRetrieveWithResponse call

func (SlaConfigurationsRetrieveResponse) Status added in v0.2.0

Status returns HTTPResponse.Status

func (SlaConfigurationsRetrieveResponse) StatusCode added in v0.2.0

func (r SlaConfigurationsRetrieveResponse) StatusCode() int

StatusCode returns HTTPResponse.StatusCode

type SlaConfigurationsUpdateFormdataRequestBody added in v0.2.0

type SlaConfigurationsUpdateFormdataRequestBody = SLAConfigurationRequest

SlaConfigurationsUpdateFormdataRequestBody defines body for SlaConfigurationsUpdate for application/x-www-form-urlencoded ContentType.

type SlaConfigurationsUpdateJSONRequestBody added in v0.2.0

type SlaConfigurationsUpdateJSONRequestBody = SLAConfigurationRequest

SlaConfigurationsUpdateJSONRequestBody defines body for SlaConfigurationsUpdate for application/json ContentType.

type SlaConfigurationsUpdateMultipartRequestBody added in v0.2.0

type SlaConfigurationsUpdateMultipartRequestBody = SLAConfigurationRequest

SlaConfigurationsUpdateMultipartRequestBody defines body for SlaConfigurationsUpdate for multipart/form-data ContentType.

type SlaConfigurationsUpdateResponse added in v0.2.0

type SlaConfigurationsUpdateResponse struct {
	Body         []byte
	HTTPResponse *http.Response
	JSON200      *SLAConfiguration
}

func ParseSlaConfigurationsUpdateResponse added in v0.2.0

func ParseSlaConfigurationsUpdateResponse(rsp *http.Response) (*SlaConfigurationsUpdateResponse, error)

ParseSlaConfigurationsUpdateResponse parses an HTTP response from a SlaConfigurationsUpdateWithResponse call

func (SlaConfigurationsUpdateResponse) Status added in v0.2.0

Status returns HTTPResponse.Status

func (SlaConfigurationsUpdateResponse) StatusCode added in v0.2.0

func (r SlaConfigurationsUpdateResponse) StatusCode() int

StatusCode returns HTTPResponse.StatusCode

type SonarqubeIssue

type SonarqubeIssue struct {
	Id *int `json:"id,omitempty"`

	// Key SonarQube issue key
	Key string `json:"key"`

	// Status SonarQube issue status
	Status string `json:"status"`

	// Type SonarQube issue type
	Type string `json:"type"`
}

SonarqubeIssue defines model for SonarqubeIssue.

type SonarqubeIssueRequest added in v0.2.0

type SonarqubeIssueRequest struct {
	// Key SonarQube issue key
	Key string `json:"key"`

	// Status SonarQube issue status
	Status string `json:"status"`

	// Type SonarQube issue type
	Type string `json:"type"`
}

SonarqubeIssueRequest defines model for SonarqubeIssueRequest.

type SonarqubeIssueTransition

type SonarqubeIssueTransition struct {
	Created         *time.Time `json:"created,omitempty"`
	FindingStatus   string     `json:"finding_status"`
	Id              *int       `json:"id,omitempty"`
	SonarqubeIssue  int        `json:"sonarqube_issue"`
	SonarqubeStatus string     `json:"sonarqube_status"`
	Transitions     string     `json:"transitions"`
}

SonarqubeIssueTransition defines model for SonarqubeIssueTransition.

type SonarqubeIssueTransitionRequest added in v0.2.0

type SonarqubeIssueTransitionRequest struct {
	FindingStatus   string `json:"finding_status"`
	SonarqubeIssue  int    `json:"sonarqube_issue"`
	SonarqubeStatus string `json:"sonarqube_status"`
	Transitions     string `json:"transitions"`
}

SonarqubeIssueTransitionRequest defines model for SonarqubeIssueTransitionRequest.

type SonarqubeIssuesCreateFormdataRequestBody added in v0.2.0

type SonarqubeIssuesCreateFormdataRequestBody = SonarqubeIssueRequest

SonarqubeIssuesCreateFormdataRequestBody defines body for SonarqubeIssuesCreate for application/x-www-form-urlencoded ContentType.

type SonarqubeIssuesCreateJSONRequestBody

type SonarqubeIssuesCreateJSONRequestBody = SonarqubeIssueRequest

SonarqubeIssuesCreateJSONRequestBody defines body for SonarqubeIssuesCreate for application/json ContentType.

type SonarqubeIssuesCreateMultipartRequestBody added in v0.2.0

type SonarqubeIssuesCreateMultipartRequestBody = SonarqubeIssueRequest

SonarqubeIssuesCreateMultipartRequestBody defines body for SonarqubeIssuesCreate for multipart/form-data ContentType.

type SonarqubeIssuesCreateResponse

type SonarqubeIssuesCreateResponse struct {
	Body         []byte
	HTTPResponse *http.Response
	JSON201      *SonarqubeIssue
}

func ParseSonarqubeIssuesCreateResponse

func ParseSonarqubeIssuesCreateResponse(rsp *http.Response) (*SonarqubeIssuesCreateResponse, error)

ParseSonarqubeIssuesCreateResponse parses an HTTP response from a SonarqubeIssuesCreateWithResponse call

func (SonarqubeIssuesCreateResponse) Status

Status returns HTTPResponse.Status

func (SonarqubeIssuesCreateResponse) StatusCode

func (r SonarqubeIssuesCreateResponse) StatusCode() int

StatusCode returns HTTPResponse.StatusCode

type SonarqubeIssuesDeletePreviewListParams added in v0.2.0

type SonarqubeIssuesDeletePreviewListParams struct {
	// Limit Number of results to return per page.
	Limit *int `form:"limit,omitempty" json:"limit,omitempty"`

	// Offset The initial index from which to return the results.
	Offset *int `form:"offset,omitempty" json:"offset,omitempty"`
}

SonarqubeIssuesDeletePreviewListParams defines parameters for SonarqubeIssuesDeletePreviewList.

type SonarqubeIssuesDeletePreviewListResponse added in v0.2.0

type SonarqubeIssuesDeletePreviewListResponse struct {
	Body         []byte
	HTTPResponse *http.Response
	JSON200      *PaginatedDeletePreviewList
}

func ParseSonarqubeIssuesDeletePreviewListResponse added in v0.2.0

func ParseSonarqubeIssuesDeletePreviewListResponse(rsp *http.Response) (*SonarqubeIssuesDeletePreviewListResponse, error)

ParseSonarqubeIssuesDeletePreviewListResponse parses an HTTP response from a SonarqubeIssuesDeletePreviewListWithResponse call

func (SonarqubeIssuesDeletePreviewListResponse) Status added in v0.2.0

Status returns HTTPResponse.Status

func (SonarqubeIssuesDeletePreviewListResponse) StatusCode added in v0.2.0

StatusCode returns HTTPResponse.StatusCode

type SonarqubeIssuesDestroyResponse

type SonarqubeIssuesDestroyResponse struct {
	Body         []byte
	HTTPResponse *http.Response
}

func ParseSonarqubeIssuesDestroyResponse

func ParseSonarqubeIssuesDestroyResponse(rsp *http.Response) (*SonarqubeIssuesDestroyResponse, error)

ParseSonarqubeIssuesDestroyResponse parses an HTTP response from a SonarqubeIssuesDestroyWithResponse call

func (SonarqubeIssuesDestroyResponse) Status

Status returns HTTPResponse.Status

func (SonarqubeIssuesDestroyResponse) StatusCode

func (r SonarqubeIssuesDestroyResponse) StatusCode() int

StatusCode returns HTTPResponse.StatusCode

type SonarqubeIssuesListParams

type SonarqubeIssuesListParams struct {
	Id  *int    `form:"id,omitempty" json:"id,omitempty"`
	Key *string `form:"key,omitempty" json:"key,omitempty"`

	// Limit Number of results to return per page.
	Limit *int `form:"limit,omitempty" json:"limit,omitempty"`

	// Offset The initial index from which to return the results.
	Offset *int    `form:"offset,omitempty" json:"offset,omitempty"`
	Status *string `form:"status,omitempty" json:"status,omitempty"`
	Type   *string `form:"type,omitempty" json:"type,omitempty"`
}

SonarqubeIssuesListParams defines parameters for SonarqubeIssuesList.

type SonarqubeIssuesListResponse

type SonarqubeIssuesListResponse struct {
	Body         []byte
	HTTPResponse *http.Response
	JSON200      *PaginatedSonarqubeIssueList
}

func ParseSonarqubeIssuesListResponse

func ParseSonarqubeIssuesListResponse(rsp *http.Response) (*SonarqubeIssuesListResponse, error)

ParseSonarqubeIssuesListResponse parses an HTTP response from a SonarqubeIssuesListWithResponse call

func (SonarqubeIssuesListResponse) Status

Status returns HTTPResponse.Status

func (SonarqubeIssuesListResponse) StatusCode

func (r SonarqubeIssuesListResponse) StatusCode() int

StatusCode returns HTTPResponse.StatusCode

type SonarqubeIssuesPartialUpdateFormdataRequestBody added in v0.2.0

type SonarqubeIssuesPartialUpdateFormdataRequestBody = PatchedSonarqubeIssueRequest

SonarqubeIssuesPartialUpdateFormdataRequestBody defines body for SonarqubeIssuesPartialUpdate for application/x-www-form-urlencoded ContentType.

type SonarqubeIssuesPartialUpdateJSONRequestBody

type SonarqubeIssuesPartialUpdateJSONRequestBody = PatchedSonarqubeIssueRequest

SonarqubeIssuesPartialUpdateJSONRequestBody defines body for SonarqubeIssuesPartialUpdate for application/json ContentType.

type SonarqubeIssuesPartialUpdateMultipartRequestBody added in v0.2.0

type SonarqubeIssuesPartialUpdateMultipartRequestBody = PatchedSonarqubeIssueRequest

SonarqubeIssuesPartialUpdateMultipartRequestBody defines body for SonarqubeIssuesPartialUpdate for multipart/form-data ContentType.

type SonarqubeIssuesPartialUpdateResponse

type SonarqubeIssuesPartialUpdateResponse struct {
	Body         []byte
	HTTPResponse *http.Response
	JSON200      *SonarqubeIssue
}

func ParseSonarqubeIssuesPartialUpdateResponse

func ParseSonarqubeIssuesPartialUpdateResponse(rsp *http.Response) (*SonarqubeIssuesPartialUpdateResponse, error)

ParseSonarqubeIssuesPartialUpdateResponse parses an HTTP response from a SonarqubeIssuesPartialUpdateWithResponse call

func (SonarqubeIssuesPartialUpdateResponse) Status

Status returns HTTPResponse.Status

func (SonarqubeIssuesPartialUpdateResponse) StatusCode

StatusCode returns HTTPResponse.StatusCode

type SonarqubeIssuesRetrieveResponse

type SonarqubeIssuesRetrieveResponse struct {
	Body         []byte
	HTTPResponse *http.Response
	JSON200      *SonarqubeIssue
}

func ParseSonarqubeIssuesRetrieveResponse

func ParseSonarqubeIssuesRetrieveResponse(rsp *http.Response) (*SonarqubeIssuesRetrieveResponse, error)

ParseSonarqubeIssuesRetrieveResponse parses an HTTP response from a SonarqubeIssuesRetrieveWithResponse call

func (SonarqubeIssuesRetrieveResponse) Status

Status returns HTTPResponse.Status

func (SonarqubeIssuesRetrieveResponse) StatusCode

func (r SonarqubeIssuesRetrieveResponse) StatusCode() int

StatusCode returns HTTPResponse.StatusCode

type SonarqubeIssuesUpdateFormdataRequestBody added in v0.2.0

type SonarqubeIssuesUpdateFormdataRequestBody = SonarqubeIssueRequest

SonarqubeIssuesUpdateFormdataRequestBody defines body for SonarqubeIssuesUpdate for application/x-www-form-urlencoded ContentType.

type SonarqubeIssuesUpdateJSONRequestBody

type SonarqubeIssuesUpdateJSONRequestBody = SonarqubeIssueRequest

SonarqubeIssuesUpdateJSONRequestBody defines body for SonarqubeIssuesUpdate for application/json ContentType.

type SonarqubeIssuesUpdateMultipartRequestBody added in v0.2.0

type SonarqubeIssuesUpdateMultipartRequestBody = SonarqubeIssueRequest

SonarqubeIssuesUpdateMultipartRequestBody defines body for SonarqubeIssuesUpdate for multipart/form-data ContentType.

type SonarqubeIssuesUpdateResponse

type SonarqubeIssuesUpdateResponse struct {
	Body         []byte
	HTTPResponse *http.Response
	JSON200      *SonarqubeIssue
}

func ParseSonarqubeIssuesUpdateResponse

func ParseSonarqubeIssuesUpdateResponse(rsp *http.Response) (*SonarqubeIssuesUpdateResponse, error)

ParseSonarqubeIssuesUpdateResponse parses an HTTP response from a SonarqubeIssuesUpdateWithResponse call

func (SonarqubeIssuesUpdateResponse) Status

Status returns HTTPResponse.Status

func (SonarqubeIssuesUpdateResponse) StatusCode

func (r SonarqubeIssuesUpdateResponse) StatusCode() int

StatusCode returns HTTPResponse.StatusCode

type SonarqubeTransitionsCreateFormdataRequestBody added in v0.2.0

type SonarqubeTransitionsCreateFormdataRequestBody = SonarqubeIssueTransitionRequest

SonarqubeTransitionsCreateFormdataRequestBody defines body for SonarqubeTransitionsCreate for application/x-www-form-urlencoded ContentType.

type SonarqubeTransitionsCreateJSONRequestBody

type SonarqubeTransitionsCreateJSONRequestBody = SonarqubeIssueTransitionRequest

SonarqubeTransitionsCreateJSONRequestBody defines body for SonarqubeTransitionsCreate for application/json ContentType.

type SonarqubeTransitionsCreateMultipartRequestBody added in v0.2.0

type SonarqubeTransitionsCreateMultipartRequestBody = SonarqubeIssueTransitionRequest

SonarqubeTransitionsCreateMultipartRequestBody defines body for SonarqubeTransitionsCreate for multipart/form-data ContentType.

type SonarqubeTransitionsCreateResponse

type SonarqubeTransitionsCreateResponse struct {
	Body         []byte
	HTTPResponse *http.Response
	JSON201      *SonarqubeIssueTransition
}

func ParseSonarqubeTransitionsCreateResponse

func ParseSonarqubeTransitionsCreateResponse(rsp *http.Response) (*SonarqubeTransitionsCreateResponse, error)

ParseSonarqubeTransitionsCreateResponse parses an HTTP response from a SonarqubeTransitionsCreateWithResponse call

func (SonarqubeTransitionsCreateResponse) Status

Status returns HTTPResponse.Status

func (SonarqubeTransitionsCreateResponse) StatusCode

func (r SonarqubeTransitionsCreateResponse) StatusCode() int

StatusCode returns HTTPResponse.StatusCode

type SonarqubeTransitionsDeletePreviewListParams added in v0.2.0

type SonarqubeTransitionsDeletePreviewListParams struct {
	// Limit Number of results to return per page.
	Limit *int `form:"limit,omitempty" json:"limit,omitempty"`

	// Offset The initial index from which to return the results.
	Offset *int `form:"offset,omitempty" json:"offset,omitempty"`
}

SonarqubeTransitionsDeletePreviewListParams defines parameters for SonarqubeTransitionsDeletePreviewList.

type SonarqubeTransitionsDeletePreviewListResponse added in v0.2.0

type SonarqubeTransitionsDeletePreviewListResponse struct {
	Body         []byte
	HTTPResponse *http.Response
	JSON200      *PaginatedDeletePreviewList
}

func ParseSonarqubeTransitionsDeletePreviewListResponse added in v0.2.0

func ParseSonarqubeTransitionsDeletePreviewListResponse(rsp *http.Response) (*SonarqubeTransitionsDeletePreviewListResponse, error)

ParseSonarqubeTransitionsDeletePreviewListResponse parses an HTTP response from a SonarqubeTransitionsDeletePreviewListWithResponse call

func (SonarqubeTransitionsDeletePreviewListResponse) Status added in v0.2.0

Status returns HTTPResponse.Status

func (SonarqubeTransitionsDeletePreviewListResponse) StatusCode added in v0.2.0

StatusCode returns HTTPResponse.StatusCode

type SonarqubeTransitionsDestroyResponse

type SonarqubeTransitionsDestroyResponse struct {
	Body         []byte
	HTTPResponse *http.Response
}

func ParseSonarqubeTransitionsDestroyResponse

func ParseSonarqubeTransitionsDestroyResponse(rsp *http.Response) (*SonarqubeTransitionsDestroyResponse, error)

ParseSonarqubeTransitionsDestroyResponse parses an HTTP response from a SonarqubeTransitionsDestroyWithResponse call

func (SonarqubeTransitionsDestroyResponse) Status

Status returns HTTPResponse.Status

func (SonarqubeTransitionsDestroyResponse) StatusCode

StatusCode returns HTTPResponse.StatusCode

type SonarqubeTransitionsListParams

type SonarqubeTransitionsListParams struct {
	FindingStatus *string `form:"finding_status,omitempty" json:"finding_status,omitempty"`
	Id            *int    `form:"id,omitempty" json:"id,omitempty"`

	// Limit Number of results to return per page.
	Limit *int `form:"limit,omitempty" json:"limit,omitempty"`

	// Offset The initial index from which to return the results.
	Offset          *int    `form:"offset,omitempty" json:"offset,omitempty"`
	SonarqubeIssue  *int    `form:"sonarqube_issue,omitempty" json:"sonarqube_issue,omitempty"`
	SonarqubeStatus *string `form:"sonarqube_status,omitempty" json:"sonarqube_status,omitempty"`
	Transitions     *string `form:"transitions,omitempty" json:"transitions,omitempty"`
}

SonarqubeTransitionsListParams defines parameters for SonarqubeTransitionsList.

type SonarqubeTransitionsListResponse

type SonarqubeTransitionsListResponse struct {
	Body         []byte
	HTTPResponse *http.Response
	JSON200      *PaginatedSonarqubeIssueTransitionList
}

func ParseSonarqubeTransitionsListResponse

func ParseSonarqubeTransitionsListResponse(rsp *http.Response) (*SonarqubeTransitionsListResponse, error)

ParseSonarqubeTransitionsListResponse parses an HTTP response from a SonarqubeTransitionsListWithResponse call

func (SonarqubeTransitionsListResponse) Status

Status returns HTTPResponse.Status

func (SonarqubeTransitionsListResponse) StatusCode

func (r SonarqubeTransitionsListResponse) StatusCode() int

StatusCode returns HTTPResponse.StatusCode

type SonarqubeTransitionsPartialUpdateFormdataRequestBody added in v0.2.0

type SonarqubeTransitionsPartialUpdateFormdataRequestBody = PatchedSonarqubeIssueTransitionRequest

SonarqubeTransitionsPartialUpdateFormdataRequestBody defines body for SonarqubeTransitionsPartialUpdate for application/x-www-form-urlencoded ContentType.

type SonarqubeTransitionsPartialUpdateJSONRequestBody

type SonarqubeTransitionsPartialUpdateJSONRequestBody = PatchedSonarqubeIssueTransitionRequest

SonarqubeTransitionsPartialUpdateJSONRequestBody defines body for SonarqubeTransitionsPartialUpdate for application/json ContentType.

type SonarqubeTransitionsPartialUpdateMultipartRequestBody added in v0.2.0

type SonarqubeTransitionsPartialUpdateMultipartRequestBody = PatchedSonarqubeIssueTransitionRequest

SonarqubeTransitionsPartialUpdateMultipartRequestBody defines body for SonarqubeTransitionsPartialUpdate for multipart/form-data ContentType.

type SonarqubeTransitionsPartialUpdateResponse

type SonarqubeTransitionsPartialUpdateResponse struct {
	Body         []byte
	HTTPResponse *http.Response
	JSON200      *SonarqubeIssueTransition
}

func ParseSonarqubeTransitionsPartialUpdateResponse

func ParseSonarqubeTransitionsPartialUpdateResponse(rsp *http.Response) (*SonarqubeTransitionsPartialUpdateResponse, error)

ParseSonarqubeTransitionsPartialUpdateResponse parses an HTTP response from a SonarqubeTransitionsPartialUpdateWithResponse call

func (SonarqubeTransitionsPartialUpdateResponse) Status

Status returns HTTPResponse.Status

func (SonarqubeTransitionsPartialUpdateResponse) StatusCode

StatusCode returns HTTPResponse.StatusCode

type SonarqubeTransitionsRetrieveResponse

type SonarqubeTransitionsRetrieveResponse struct {
	Body         []byte
	HTTPResponse *http.Response
	JSON200      *SonarqubeIssueTransition
}

func ParseSonarqubeTransitionsRetrieveResponse

func ParseSonarqubeTransitionsRetrieveResponse(rsp *http.Response) (*SonarqubeTransitionsRetrieveResponse, error)

ParseSonarqubeTransitionsRetrieveResponse parses an HTTP response from a SonarqubeTransitionsRetrieveWithResponse call

func (SonarqubeTransitionsRetrieveResponse) Status

Status returns HTTPResponse.Status

func (SonarqubeTransitionsRetrieveResponse) StatusCode

StatusCode returns HTTPResponse.StatusCode

type SonarqubeTransitionsUpdateFormdataRequestBody added in v0.2.0

type SonarqubeTransitionsUpdateFormdataRequestBody = SonarqubeIssueTransitionRequest

SonarqubeTransitionsUpdateFormdataRequestBody defines body for SonarqubeTransitionsUpdate for application/x-www-form-urlencoded ContentType.

type SonarqubeTransitionsUpdateJSONRequestBody

type SonarqubeTransitionsUpdateJSONRequestBody = SonarqubeIssueTransitionRequest

SonarqubeTransitionsUpdateJSONRequestBody defines body for SonarqubeTransitionsUpdate for application/json ContentType.

type SonarqubeTransitionsUpdateMultipartRequestBody added in v0.2.0

type SonarqubeTransitionsUpdateMultipartRequestBody = SonarqubeIssueTransitionRequest

SonarqubeTransitionsUpdateMultipartRequestBody defines body for SonarqubeTransitionsUpdate for multipart/form-data ContentType.

type SonarqubeTransitionsUpdateResponse

type SonarqubeTransitionsUpdateResponse struct {
	Body         []byte
	HTTPResponse *http.Response
	JSON200      *SonarqubeIssueTransition
}

func ParseSonarqubeTransitionsUpdateResponse

func ParseSonarqubeTransitionsUpdateResponse(rsp *http.Response) (*SonarqubeTransitionsUpdateResponse, error)

ParseSonarqubeTransitionsUpdateResponse parses an HTTP response from a SonarqubeTransitionsUpdateWithResponse call

func (SonarqubeTransitionsUpdateResponse) Status

Status returns HTTPResponse.Status

func (SonarqubeTransitionsUpdateResponse) StatusCode

func (r SonarqubeTransitionsUpdateResponse) StatusCode() int

StatusCode returns HTTPResponse.StatusCode

type StatusStatistics

type StatusStatistics struct {
	Active       int `json:"active"`
	Duplicate    int `json:"duplicate"`
	FalseP       int `json:"false_p"`
	IsMitigated  int `json:"is_mitigated"`
	OutOfScope   int `json:"out_of_scope"`
	RiskAccepted int `json:"risk_accepted"`
	Total        int `json:"total"`
	Verified     int `json:"verified"`
}

StatusStatistics defines model for StatusStatistics.

type StubFinding

type StubFinding struct {
	Date        *openapi_types.Date `json:"date,omitempty"`
	Description *string             `json:"description"`
	Id          *int                `json:"id,omitempty"`
	Reporter    *int                `json:"reporter,omitempty"`
	Severity    *string             `json:"severity"`
	Test        *int                `json:"test,omitempty"`
	Title       string              `json:"title"`
}

StubFinding defines model for StubFinding.

type StubFindingCreate

type StubFindingCreate struct {
	Date        *openapi_types.Date `json:"date,omitempty"`
	Description *string             `json:"description"`
	Id          *int                `json:"id,omitempty"`
	Reporter    *int                `json:"reporter,omitempty"`
	Severity    *string             `json:"severity"`
	Test        int                 `json:"test"`
	Title       string              `json:"title"`
}

StubFindingCreate defines model for StubFindingCreate.

type StubFindingCreateRequest added in v0.2.0

type StubFindingCreateRequest struct {
	Date        *openapi_types.Date `json:"date,omitempty"`
	Description *string             `json:"description"`
	Severity    *string             `json:"severity"`
	Test        int                 `json:"test"`
	Title       string              `json:"title"`
}

StubFindingCreateRequest defines model for StubFindingCreateRequest.

type StubFindingRequest added in v0.2.0

type StubFindingRequest struct {
	Date        *openapi_types.Date `json:"date,omitempty"`
	Description *string             `json:"description"`
	Severity    *string             `json:"severity"`
	Title       string              `json:"title"`
}

StubFindingRequest defines model for StubFindingRequest.

type StubFindingsCreateFormdataRequestBody added in v0.2.0

type StubFindingsCreateFormdataRequestBody = StubFindingCreateRequest

StubFindingsCreateFormdataRequestBody defines body for StubFindingsCreate for application/x-www-form-urlencoded ContentType.

type StubFindingsCreateJSONRequestBody

type StubFindingsCreateJSONRequestBody = StubFindingCreateRequest

StubFindingsCreateJSONRequestBody defines body for StubFindingsCreate for application/json ContentType.

type StubFindingsCreateMultipartRequestBody added in v0.2.0

type StubFindingsCreateMultipartRequestBody = StubFindingCreateRequest

StubFindingsCreateMultipartRequestBody defines body for StubFindingsCreate for multipart/form-data ContentType.

type StubFindingsCreateResponse

type StubFindingsCreateResponse struct {
	Body         []byte
	HTTPResponse *http.Response
	JSON201      *StubFindingCreate
}

func ParseStubFindingsCreateResponse

func ParseStubFindingsCreateResponse(rsp *http.Response) (*StubFindingsCreateResponse, error)

ParseStubFindingsCreateResponse parses an HTTP response from a StubFindingsCreateWithResponse call

func (StubFindingsCreateResponse) Status

Status returns HTTPResponse.Status

func (StubFindingsCreateResponse) StatusCode

func (r StubFindingsCreateResponse) StatusCode() int

StatusCode returns HTTPResponse.StatusCode

type StubFindingsDeletePreviewListParams added in v0.2.0

type StubFindingsDeletePreviewListParams struct {
	// Limit Number of results to return per page.
	Limit *int `form:"limit,omitempty" json:"limit,omitempty"`

	// Offset The initial index from which to return the results.
	Offset *int `form:"offset,omitempty" json:"offset,omitempty"`
}

StubFindingsDeletePreviewListParams defines parameters for StubFindingsDeletePreviewList.

type StubFindingsDeletePreviewListResponse added in v0.2.0

type StubFindingsDeletePreviewListResponse struct {
	Body         []byte
	HTTPResponse *http.Response
	JSON200      *PaginatedDeletePreviewList
}

func ParseStubFindingsDeletePreviewListResponse added in v0.2.0

func ParseStubFindingsDeletePreviewListResponse(rsp *http.Response) (*StubFindingsDeletePreviewListResponse, error)

ParseStubFindingsDeletePreviewListResponse parses an HTTP response from a StubFindingsDeletePreviewListWithResponse call

func (StubFindingsDeletePreviewListResponse) Status added in v0.2.0

Status returns HTTPResponse.Status

func (StubFindingsDeletePreviewListResponse) StatusCode added in v0.2.0

StatusCode returns HTTPResponse.StatusCode

type StubFindingsDestroyResponse

type StubFindingsDestroyResponse struct {
	Body         []byte
	HTTPResponse *http.Response
}

func ParseStubFindingsDestroyResponse

func ParseStubFindingsDestroyResponse(rsp *http.Response) (*StubFindingsDestroyResponse, error)

ParseStubFindingsDestroyResponse parses an HTTP response from a StubFindingsDestroyWithResponse call

func (StubFindingsDestroyResponse) Status

Status returns HTTPResponse.Status

func (StubFindingsDestroyResponse) StatusCode

func (r StubFindingsDestroyResponse) StatusCode() int

StatusCode returns HTTPResponse.StatusCode

type StubFindingsListParams

type StubFindingsListParams struct {
	Date        *openapi_types.Date `form:"date,omitempty" json:"date,omitempty"`
	Description *string             `form:"description,omitempty" json:"description,omitempty"`
	Id          *int                `form:"id,omitempty" json:"id,omitempty"`

	// Limit Number of results to return per page.
	Limit *int `form:"limit,omitempty" json:"limit,omitempty"`

	// Offset The initial index from which to return the results.
	Offset   *int    `form:"offset,omitempty" json:"offset,omitempty"`
	Severity *string `form:"severity,omitempty" json:"severity,omitempty"`
	Title    *string `form:"title,omitempty" json:"title,omitempty"`
}

StubFindingsListParams defines parameters for StubFindingsList.

type StubFindingsListResponse

type StubFindingsListResponse struct {
	Body         []byte
	HTTPResponse *http.Response
	JSON200      *PaginatedStubFindingList
}

func ParseStubFindingsListResponse

func ParseStubFindingsListResponse(rsp *http.Response) (*StubFindingsListResponse, error)

ParseStubFindingsListResponse parses an HTTP response from a StubFindingsListWithResponse call

func (StubFindingsListResponse) Status

func (r StubFindingsListResponse) Status() string

Status returns HTTPResponse.Status

func (StubFindingsListResponse) StatusCode

func (r StubFindingsListResponse) StatusCode() int

StatusCode returns HTTPResponse.StatusCode

type StubFindingsPartialUpdateFormdataRequestBody added in v0.2.0

type StubFindingsPartialUpdateFormdataRequestBody = PatchedStubFindingRequest

StubFindingsPartialUpdateFormdataRequestBody defines body for StubFindingsPartialUpdate for application/x-www-form-urlencoded ContentType.

type StubFindingsPartialUpdateJSONRequestBody

type StubFindingsPartialUpdateJSONRequestBody = PatchedStubFindingRequest

StubFindingsPartialUpdateJSONRequestBody defines body for StubFindingsPartialUpdate for application/json ContentType.

type StubFindingsPartialUpdateMultipartRequestBody added in v0.2.0

type StubFindingsPartialUpdateMultipartRequestBody = PatchedStubFindingRequest

StubFindingsPartialUpdateMultipartRequestBody defines body for StubFindingsPartialUpdate for multipart/form-data ContentType.

type StubFindingsPartialUpdateResponse

type StubFindingsPartialUpdateResponse struct {
	Body         []byte
	HTTPResponse *http.Response
	JSON200      *StubFinding
}

func ParseStubFindingsPartialUpdateResponse

func ParseStubFindingsPartialUpdateResponse(rsp *http.Response) (*StubFindingsPartialUpdateResponse, error)

ParseStubFindingsPartialUpdateResponse parses an HTTP response from a StubFindingsPartialUpdateWithResponse call

func (StubFindingsPartialUpdateResponse) Status

Status returns HTTPResponse.Status

func (StubFindingsPartialUpdateResponse) StatusCode

func (r StubFindingsPartialUpdateResponse) StatusCode() int

StatusCode returns HTTPResponse.StatusCode

type StubFindingsRetrieveResponse

type StubFindingsRetrieveResponse struct {
	Body         []byte
	HTTPResponse *http.Response
	JSON200      *StubFinding
}

func ParseStubFindingsRetrieveResponse

func ParseStubFindingsRetrieveResponse(rsp *http.Response) (*StubFindingsRetrieveResponse, error)

ParseStubFindingsRetrieveResponse parses an HTTP response from a StubFindingsRetrieveWithResponse call

func (StubFindingsRetrieveResponse) Status

Status returns HTTPResponse.Status

func (StubFindingsRetrieveResponse) StatusCode

func (r StubFindingsRetrieveResponse) StatusCode() int

StatusCode returns HTTPResponse.StatusCode

type StubFindingsUpdateFormdataRequestBody added in v0.2.0

type StubFindingsUpdateFormdataRequestBody = StubFindingRequest

StubFindingsUpdateFormdataRequestBody defines body for StubFindingsUpdate for application/x-www-form-urlencoded ContentType.

type StubFindingsUpdateJSONRequestBody

type StubFindingsUpdateJSONRequestBody = StubFindingRequest

StubFindingsUpdateJSONRequestBody defines body for StubFindingsUpdate for application/json ContentType.

type StubFindingsUpdateMultipartRequestBody added in v0.2.0

type StubFindingsUpdateMultipartRequestBody = StubFindingRequest

StubFindingsUpdateMultipartRequestBody defines body for StubFindingsUpdate for multipart/form-data ContentType.

type StubFindingsUpdateResponse

type StubFindingsUpdateResponse struct {
	Body         []byte
	HTTPResponse *http.Response
	JSON200      *StubFinding
}

func ParseStubFindingsUpdateResponse

func ParseStubFindingsUpdateResponse(rsp *http.Response) (*StubFindingsUpdateResponse, error)

ParseStubFindingsUpdateResponse parses an HTTP response from a StubFindingsUpdateWithResponse call

func (StubFindingsUpdateResponse) Status

Status returns HTTPResponse.Status

func (StubFindingsUpdateResponse) StatusCode

func (r StubFindingsUpdateResponse) StatusCode() int

StatusCode returns HTTPResponse.StatusCode

type SystemSettings

type SystemSettings struct {
	AddVulnerabilityIdToJiraLabel *bool `json:"add_vulnerability_id_to_jira_label,omitempty"`

	// AllowAnonymousSurveyRepsonse Enable anyone with a link to the survey to answer a survey
	AllowAnonymousSurveyRepsonse *bool   `json:"allow_anonymous_survey_repsonse,omitempty"`
	Credentials                  *string `json:"credentials,omitempty"`

	// DefaultGroup New users will be assigned to this group.
	DefaultGroup *int `json:"default_group"`

	// DefaultGroupEmailPattern New users will only be assigned to the default group, when their email address matches this regex pattern. This is optional condition.
	DefaultGroupEmailPattern *string `json:"default_group_email_pattern,omitempty"`

	// DefaultGroupRole New users will be assigned to their default group with this role.
	DefaultGroupRole *int `json:"default_group_role"`

	// DeleteDuplicates Requires next setting: maximum number of duplicates to retain.
	DeleteDuplicates *bool `json:"delete_duplicates,omitempty"`

	// DisableJiraWebhookSecret Allows incoming requests without a secret (discouraged legacy behaviour)
	DisableJiraWebhookSecret *bool `json:"disable_jira_webhook_secret,omitempty"`

	// Disclaimer Include this custom disclaimer on all notifications and generated reports
	Disclaimer *string `json:"disclaimer,omitempty"`
	EmailFrom  *string `json:"email_from,omitempty"`

	// EnableAuditlog With this setting turned on, Dojo maintains an audit log of changes made to entities (Findings, Tests, Engagements, Procuts, ...)If you run big import you may want to disable this because the way django-auditlog currently works, there's a big performance hit. Especially during (re-)imports.
	EnableAuditlog *bool `json:"enable_auditlog,omitempty"`

	// EnableBenchmark Enables Benchmarks such as the OWASP ASVS (Application Security Verification Standard)
	EnableBenchmark *bool `json:"enable_benchmark,omitempty"`

	// EnableCalendar With this setting turned off, the Calendar will be disabled in the user interface.
	EnableCalendar *bool `json:"enable_calendar,omitempty"`

	// EnableChecklists With this setting turned off, checklists will be disabled in the user interface.
	EnableChecklists *bool `json:"enable_checklists,omitempty"`

	// EnableCredentials With this setting turned off, credentials will be disabled in the user interface.
	EnableCredentials *bool `json:"enable_credentials,omitempty"`

	// EnableDeduplication With this setting turned on, Dojo deduplicates findings by comparing endpoints, cwe fields, and titles. If two findings share a URL and have the same CWE or title, Dojo marks the less recent finding as a duplicate. When deduplication is enabled, a list of deduplicated findings is added to the engagement view.
	EnableDeduplication *bool `json:"enable_deduplication,omitempty"`

	// EnableEndpointMetadataImport With this setting turned off, endpoint metadata import will be disabled in the user interface.
	EnableEndpointMetadataImport *bool `json:"enable_endpoint_metadata_import,omitempty"`

	// EnableFindingGroups With this setting turned off, the Finding Groups will be disabled.
	EnableFindingGroups *bool `json:"enable_finding_groups,omitempty"`

	// EnableFindingSla Enables Finding SLA's for time to remediate.
	EnableFindingSla *bool `json:"enable_finding_sla,omitempty"`
	EnableGithub     *bool `json:"enable_github,omitempty"`
	EnableJira       *bool `json:"enable_jira,omitempty"`

	// EnableJiraWebHook Please note: It is strongly recommended to use a secret below and / or IP whitelist the JIRA server using a proxy such as Nginx.
	EnableJiraWebHook          *bool `json:"enable_jira_web_hook,omitempty"`
	EnableMailNotifications    *bool `json:"enable_mail_notifications,omitempty"`
	EnableMsteamsNotifications *bool `json:"enable_msteams_notifications,omitempty"`

	// EnableNotifySlaActive Enables Notify when time to remediate according to Finding SLA's is breached for active Findings.
	EnableNotifySlaActive *bool `json:"enable_notify_sla_active,omitempty"`

	// EnableNotifySlaActiveVerified Enables Notify when time to remediate according to Finding SLA's is breached for active, verified Findings.
	EnableNotifySlaActiveVerified *bool `json:"enable_notify_sla_active_verified,omitempty"`

	// EnableNotifySlaExponentialBackoff Enable an exponential backoff strategy for SLA breach notifications, e.g. 1, 2, 4, 8, etc. Otherwise it alerts every day
	EnableNotifySlaExponentialBackoff *bool `json:"enable_notify_sla_exponential_backoff,omitempty"`

	// EnableNotifySlaJiraOnly Enables Notify when time to remediate according to Finding SLA's is breached for Findings that are linked to JIRA issues. Notification is disabled for Findings not linked to JIRA issues
	EnableNotifySlaJiraOnly *bool `json:"enable_notify_sla_jira_only,omitempty"`

	// EnableProductGrade Displays a grade letter next to a product to show the overall health.
	EnableProductGrade *bool `json:"enable_product_grade,omitempty"`

	// EnableProductTagInheritance Enables product tag inheritance globally for all products. Any tags added on a product will automatically be added to all Engagements, Tests, and Findings
	EnableProductTagInheritance *bool `json:"enable_product_tag_inheritance,omitempty"`

	// EnableProductTrackingFiles With this setting turned off, the product tracking files will be disabled in the user interface.
	EnableProductTrackingFiles *bool `json:"enable_product_tracking_files,omitempty"`

	// EnableQuestionnaires With this setting turned off, questionnaires will be disabled in the user interface.
	EnableQuestionnaires     *bool `json:"enable_questionnaires,omitempty"`
	EnableSlackNotifications *bool `json:"enable_slack_notifications,omitempty"`

	// EnableTemplateMatch Enables global remediation advice and matching on CWE and Title. The text will be replaced for mitigation, impact and references on a finding. Useful for providing consistent impact and remediation advice regardless of the scanner.
	EnableTemplateMatch *bool `json:"enable_template_match,omitempty"`

	// EnableUserProfileEditable When turned on users can edit their profiles
	EnableUserProfileEditable *bool `json:"enable_user_profile_editable,omitempty"`

	// EngagementAutoClose Closes an engagement after 3 days (default) past due date including last update.
	EngagementAutoClose *bool `json:"engagement_auto_close,omitempty"`

	// EngagementAutoCloseDays Closes an engagement after the specified number of days past due date including last update.
	EngagementAutoCloseDays *int `json:"engagement_auto_close_days,omitempty"`

	// FalsePositiveHistory (EXPERIMENTAL) DefectDojo will automatically mark the finding as a false positive if an equal finding (according to its dedupe algorithm) has been previously marked as a false positive on the same product. ATTENTION: Although the deduplication algorithm is used to determine if a finding should be marked as a false positive, this feature will not work if deduplication is enabled since it doesn't make sense to use both.
	FalsePositiveHistory *bool `json:"false_positive_history,omitempty"`
	Id                   *int  `json:"id,omitempty"`

	// JiraLabels JIRA issue labels space seperated
	JiraLabels *string `json:"jira_labels"`

	// JiraMinimumSeverity * `Critical` - Critical
	// * `High` - High
	// * `Medium` - Medium
	// * `Low` - Low
	// * `Info` - Info
	JiraMinimumSeverity *SystemSettingsJiraMinimumSeverity `json:"jira_minimum_severity"`

	// JiraWebhookSecret Secret needed in URL for incoming JIRA Webhook
	JiraWebhookSecret *string `json:"jira_webhook_secret"`

	// LowercaseCharacterRequired Requires user passwords to contain at least one lowercase letter (a-z).
	LowercaseCharacterRequired *bool   `json:"lowercase_character_required,omitempty"`
	MailNotificationsTo        *string `json:"mail_notifications_to,omitempty"`

	// MaxDupes When enabled, if a single issue reaches the maximum number of duplicates, the oldest will be deleted. Duplicate will not be deleted when left empty. A value of 0 will remove all duplicates.
	MaxDupes *int `json:"max_dupes"`

	// MaximumPasswordLength Requires user to set passwords less than maximum length.
	MaximumPasswordLength *int `json:"maximum_password_length,omitempty"`

	// MinimumPasswordLength Requires user to set passwords greater than minimum length.
	MinimumPasswordLength *int `json:"minimum_password_length,omitempty"`

	// MsteamsUrl The full URL of the incoming webhook
	MsteamsUrl *string `json:"msteams_url,omitempty"`

	// NonCommonPasswordRequired Requires user passwords to not be part of list of common passwords.
	NonCommonPasswordRequired *bool `json:"non_common_password_required,omitempty"`

	// NumberCharacterRequired Requires user passwords to contain at least one digit (0-9).
	NumberCharacterRequired *bool   `json:"number_character_required,omitempty"`
	ProductGrade            *string `json:"product_grade,omitempty"`

	// ProductGradeA Percentage score for an 'A' >=
	ProductGradeA *int `json:"product_grade_a,omitempty"`

	// ProductGradeB Percentage score for a 'B' >=
	ProductGradeB *int `json:"product_grade_b,omitempty"`

	// ProductGradeC Percentage score for a 'C' >=
	ProductGradeC *int `json:"product_grade_c,omitempty"`

	// ProductGradeD Percentage score for a 'D' >=
	ProductGradeD *int `json:"product_grade_d,omitempty"`

	// ProductGradeF Percentage score for an 'F' <=
	ProductGradeF *int `json:"product_grade_f,omitempty"`

	// RetroactiveFalsePositiveHistory (EXPERIMENTAL) FP History will also retroactively mark/unmark all existing equal findings in the same product as a false positives. Only works if the False Positive History feature is also enabled.
	RetroactiveFalsePositiveHistory *bool `json:"retroactive_false_positive_history,omitempty"`

	// RiskAcceptanceFormDefaultDays Default expiry period for risk acceptance form.
	RiskAcceptanceFormDefaultDays *int `json:"risk_acceptance_form_default_days"`

	// RiskAcceptanceNotifyBeforeExpiration Notify X days before risk acceptance expires. Leave empty to disable.
	RiskAcceptanceNotifyBeforeExpiration *int `json:"risk_acceptance_notify_before_expiration"`

	// SlackChannel Optional. Needed if you want to send global notifications.
	SlackChannel *string `json:"slack_channel,omitempty"`

	// SlackToken Token required for interacting with Slack. Get one at https://api.slack.com/tokens
	SlackToken *string `json:"slack_token,omitempty"`

	// SlackUsername Optional. Will take your bot name otherwise.
	SlackUsername *string `json:"slack_username,omitempty"`

	// SpecialCharacterRequired Requires user passwords to contain at least one special character (()[]{}|\`~!@#$%^&*_-+=;:'",<>./?).
	SpecialCharacterRequired *bool   `json:"special_character_required,omitempty"`
	TeamName                 *string `json:"team_name,omitempty"`

	// TimeZone * `Africa/Abidjan` - Africa/Abidjan
	// * `Africa/Accra` - Africa/Accra
	// * `Africa/Addis_Ababa` - Africa/Addis_Ababa
	// * `Africa/Algiers` - Africa/Algiers
	// * `Africa/Asmara` - Africa/Asmara
	// * `Africa/Asmera` - Africa/Asmera
	// * `Africa/Bamako` - Africa/Bamako
	// * `Africa/Bangui` - Africa/Bangui
	// * `Africa/Banjul` - Africa/Banjul
	// * `Africa/Bissau` - Africa/Bissau
	// * `Africa/Blantyre` - Africa/Blantyre
	// * `Africa/Brazzaville` - Africa/Brazzaville
	// * `Africa/Bujumbura` - Africa/Bujumbura
	// * `Africa/Cairo` - Africa/Cairo
	// * `Africa/Casablanca` - Africa/Casablanca
	// * `Africa/Ceuta` - Africa/Ceuta
	// * `Africa/Conakry` - Africa/Conakry
	// * `Africa/Dakar` - Africa/Dakar
	// * `Africa/Dar_es_Salaam` - Africa/Dar_es_Salaam
	// * `Africa/Djibouti` - Africa/Djibouti
	// * `Africa/Douala` - Africa/Douala
	// * `Africa/El_Aaiun` - Africa/El_Aaiun
	// * `Africa/Freetown` - Africa/Freetown
	// * `Africa/Gaborone` - Africa/Gaborone
	// * `Africa/Harare` - Africa/Harare
	// * `Africa/Johannesburg` - Africa/Johannesburg
	// * `Africa/Juba` - Africa/Juba
	// * `Africa/Kampala` - Africa/Kampala
	// * `Africa/Khartoum` - Africa/Khartoum
	// * `Africa/Kigali` - Africa/Kigali
	// * `Africa/Kinshasa` - Africa/Kinshasa
	// * `Africa/Lagos` - Africa/Lagos
	// * `Africa/Libreville` - Africa/Libreville
	// * `Africa/Lome` - Africa/Lome
	// * `Africa/Luanda` - Africa/Luanda
	// * `Africa/Lubumbashi` - Africa/Lubumbashi
	// * `Africa/Lusaka` - Africa/Lusaka
	// * `Africa/Malabo` - Africa/Malabo
	// * `Africa/Maputo` - Africa/Maputo
	// * `Africa/Maseru` - Africa/Maseru
	// * `Africa/Mbabane` - Africa/Mbabane
	// * `Africa/Mogadishu` - Africa/Mogadishu
	// * `Africa/Monrovia` - Africa/Monrovia
	// * `Africa/Nairobi` - Africa/Nairobi
	// * `Africa/Ndjamena` - Africa/Ndjamena
	// * `Africa/Niamey` - Africa/Niamey
	// * `Africa/Nouakchott` - Africa/Nouakchott
	// * `Africa/Ouagadougou` - Africa/Ouagadougou
	// * `Africa/Porto-Novo` - Africa/Porto-Novo
	// * `Africa/Sao_Tome` - Africa/Sao_Tome
	// * `Africa/Timbuktu` - Africa/Timbuktu
	// * `Africa/Tripoli` - Africa/Tripoli
	// * `Africa/Tunis` - Africa/Tunis
	// * `Africa/Windhoek` - Africa/Windhoek
	// * `America/Adak` - America/Adak
	// * `America/Anchorage` - America/Anchorage
	// * `America/Anguilla` - America/Anguilla
	// * `America/Antigua` - America/Antigua
	// * `America/Araguaina` - America/Araguaina
	// * `America/Argentina/Buenos_Aires` - America/Argentina/Buenos_Aires
	// * `America/Argentina/Catamarca` - America/Argentina/Catamarca
	// * `America/Argentina/ComodRivadavia` - America/Argentina/ComodRivadavia
	// * `America/Argentina/Cordoba` - America/Argentina/Cordoba
	// * `America/Argentina/Jujuy` - America/Argentina/Jujuy
	// * `America/Argentina/La_Rioja` - America/Argentina/La_Rioja
	// * `America/Argentina/Mendoza` - America/Argentina/Mendoza
	// * `America/Argentina/Rio_Gallegos` - America/Argentina/Rio_Gallegos
	// * `America/Argentina/Salta` - America/Argentina/Salta
	// * `America/Argentina/San_Juan` - America/Argentina/San_Juan
	// * `America/Argentina/San_Luis` - America/Argentina/San_Luis
	// * `America/Argentina/Tucuman` - America/Argentina/Tucuman
	// * `America/Argentina/Ushuaia` - America/Argentina/Ushuaia
	// * `America/Aruba` - America/Aruba
	// * `America/Asuncion` - America/Asuncion
	// * `America/Atikokan` - America/Atikokan
	// * `America/Atka` - America/Atka
	// * `America/Bahia` - America/Bahia
	// * `America/Bahia_Banderas` - America/Bahia_Banderas
	// * `America/Barbados` - America/Barbados
	// * `America/Belem` - America/Belem
	// * `America/Belize` - America/Belize
	// * `America/Blanc-Sablon` - America/Blanc-Sablon
	// * `America/Boa_Vista` - America/Boa_Vista
	// * `America/Bogota` - America/Bogota
	// * `America/Boise` - America/Boise
	// * `America/Buenos_Aires` - America/Buenos_Aires
	// * `America/Cambridge_Bay` - America/Cambridge_Bay
	// * `America/Campo_Grande` - America/Campo_Grande
	// * `America/Cancun` - America/Cancun
	// * `America/Caracas` - America/Caracas
	// * `America/Catamarca` - America/Catamarca
	// * `America/Cayenne` - America/Cayenne
	// * `America/Cayman` - America/Cayman
	// * `America/Chicago` - America/Chicago
	// * `America/Chihuahua` - America/Chihuahua
	// * `America/Ciudad_Juarez` - America/Ciudad_Juarez
	// * `America/Coral_Harbour` - America/Coral_Harbour
	// * `America/Cordoba` - America/Cordoba
	// * `America/Costa_Rica` - America/Costa_Rica
	// * `America/Creston` - America/Creston
	// * `America/Cuiaba` - America/Cuiaba
	// * `America/Curacao` - America/Curacao
	// * `America/Danmarkshavn` - America/Danmarkshavn
	// * `America/Dawson` - America/Dawson
	// * `America/Dawson_Creek` - America/Dawson_Creek
	// * `America/Denver` - America/Denver
	// * `America/Detroit` - America/Detroit
	// * `America/Dominica` - America/Dominica
	// * `America/Edmonton` - America/Edmonton
	// * `America/Eirunepe` - America/Eirunepe
	// * `America/El_Salvador` - America/El_Salvador
	// * `America/Ensenada` - America/Ensenada
	// * `America/Fort_Nelson` - America/Fort_Nelson
	// * `America/Fort_Wayne` - America/Fort_Wayne
	// * `America/Fortaleza` - America/Fortaleza
	// * `America/Glace_Bay` - America/Glace_Bay
	// * `America/Godthab` - America/Godthab
	// * `America/Goose_Bay` - America/Goose_Bay
	// * `America/Grand_Turk` - America/Grand_Turk
	// * `America/Grenada` - America/Grenada
	// * `America/Guadeloupe` - America/Guadeloupe
	// * `America/Guatemala` - America/Guatemala
	// * `America/Guayaquil` - America/Guayaquil
	// * `America/Guyana` - America/Guyana
	// * `America/Halifax` - America/Halifax
	// * `America/Havana` - America/Havana
	// * `America/Hermosillo` - America/Hermosillo
	// * `America/Indiana/Indianapolis` - America/Indiana/Indianapolis
	// * `America/Indiana/Knox` - America/Indiana/Knox
	// * `America/Indiana/Marengo` - America/Indiana/Marengo
	// * `America/Indiana/Petersburg` - America/Indiana/Petersburg
	// * `America/Indiana/Tell_City` - America/Indiana/Tell_City
	// * `America/Indiana/Vevay` - America/Indiana/Vevay
	// * `America/Indiana/Vincennes` - America/Indiana/Vincennes
	// * `America/Indiana/Winamac` - America/Indiana/Winamac
	// * `America/Indianapolis` - America/Indianapolis
	// * `America/Inuvik` - America/Inuvik
	// * `America/Iqaluit` - America/Iqaluit
	// * `America/Jamaica` - America/Jamaica
	// * `America/Jujuy` - America/Jujuy
	// * `America/Juneau` - America/Juneau
	// * `America/Kentucky/Louisville` - America/Kentucky/Louisville
	// * `America/Kentucky/Monticello` - America/Kentucky/Monticello
	// * `America/Knox_IN` - America/Knox_IN
	// * `America/Kralendijk` - America/Kralendijk
	// * `America/La_Paz` - America/La_Paz
	// * `America/Lima` - America/Lima
	// * `America/Los_Angeles` - America/Los_Angeles
	// * `America/Louisville` - America/Louisville
	// * `America/Lower_Princes` - America/Lower_Princes
	// * `America/Maceio` - America/Maceio
	// * `America/Managua` - America/Managua
	// * `America/Manaus` - America/Manaus
	// * `America/Marigot` - America/Marigot
	// * `America/Martinique` - America/Martinique
	// * `America/Matamoros` - America/Matamoros
	// * `America/Mazatlan` - America/Mazatlan
	// * `America/Mendoza` - America/Mendoza
	// * `America/Menominee` - America/Menominee
	// * `America/Merida` - America/Merida
	// * `America/Metlakatla` - America/Metlakatla
	// * `America/Mexico_City` - America/Mexico_City
	// * `America/Miquelon` - America/Miquelon
	// * `America/Moncton` - America/Moncton
	// * `America/Monterrey` - America/Monterrey
	// * `America/Montevideo` - America/Montevideo
	// * `America/Montreal` - America/Montreal
	// * `America/Montserrat` - America/Montserrat
	// * `America/Nassau` - America/Nassau
	// * `America/New_York` - America/New_York
	// * `America/Nipigon` - America/Nipigon
	// * `America/Nome` - America/Nome
	// * `America/Noronha` - America/Noronha
	// * `America/North_Dakota/Beulah` - America/North_Dakota/Beulah
	// * `America/North_Dakota/Center` - America/North_Dakota/Center
	// * `America/North_Dakota/New_Salem` - America/North_Dakota/New_Salem
	// * `America/Nuuk` - America/Nuuk
	// * `America/Ojinaga` - America/Ojinaga
	// * `America/Panama` - America/Panama
	// * `America/Pangnirtung` - America/Pangnirtung
	// * `America/Paramaribo` - America/Paramaribo
	// * `America/Phoenix` - America/Phoenix
	// * `America/Port-au-Prince` - America/Port-au-Prince
	// * `America/Port_of_Spain` - America/Port_of_Spain
	// * `America/Porto_Acre` - America/Porto_Acre
	// * `America/Porto_Velho` - America/Porto_Velho
	// * `America/Puerto_Rico` - America/Puerto_Rico
	// * `America/Punta_Arenas` - America/Punta_Arenas
	// * `America/Rainy_River` - America/Rainy_River
	// * `America/Rankin_Inlet` - America/Rankin_Inlet
	// * `America/Recife` - America/Recife
	// * `America/Regina` - America/Regina
	// * `America/Resolute` - America/Resolute
	// * `America/Rio_Branco` - America/Rio_Branco
	// * `America/Rosario` - America/Rosario
	// * `America/Santa_Isabel` - America/Santa_Isabel
	// * `America/Santarem` - America/Santarem
	// * `America/Santiago` - America/Santiago
	// * `America/Santo_Domingo` - America/Santo_Domingo
	// * `America/Sao_Paulo` - America/Sao_Paulo
	// * `America/Scoresbysund` - America/Scoresbysund
	// * `America/Shiprock` - America/Shiprock
	// * `America/Sitka` - America/Sitka
	// * `America/St_Barthelemy` - America/St_Barthelemy
	// * `America/St_Johns` - America/St_Johns
	// * `America/St_Kitts` - America/St_Kitts
	// * `America/St_Lucia` - America/St_Lucia
	// * `America/St_Thomas` - America/St_Thomas
	// * `America/St_Vincent` - America/St_Vincent
	// * `America/Swift_Current` - America/Swift_Current
	// * `America/Tegucigalpa` - America/Tegucigalpa
	// * `America/Thule` - America/Thule
	// * `America/Thunder_Bay` - America/Thunder_Bay
	// * `America/Tijuana` - America/Tijuana
	// * `America/Toronto` - America/Toronto
	// * `America/Tortola` - America/Tortola
	// * `America/Vancouver` - America/Vancouver
	// * `America/Virgin` - America/Virgin
	// * `America/Whitehorse` - America/Whitehorse
	// * `America/Winnipeg` - America/Winnipeg
	// * `America/Yakutat` - America/Yakutat
	// * `America/Yellowknife` - America/Yellowknife
	// * `Antarctica/Casey` - Antarctica/Casey
	// * `Antarctica/Davis` - Antarctica/Davis
	// * `Antarctica/DumontDUrville` - Antarctica/DumontDUrville
	// * `Antarctica/Macquarie` - Antarctica/Macquarie
	// * `Antarctica/Mawson` - Antarctica/Mawson
	// * `Antarctica/McMurdo` - Antarctica/McMurdo
	// * `Antarctica/Palmer` - Antarctica/Palmer
	// * `Antarctica/Rothera` - Antarctica/Rothera
	// * `Antarctica/South_Pole` - Antarctica/South_Pole
	// * `Antarctica/Syowa` - Antarctica/Syowa
	// * `Antarctica/Troll` - Antarctica/Troll
	// * `Antarctica/Vostok` - Antarctica/Vostok
	// * `Arctic/Longyearbyen` - Arctic/Longyearbyen
	// * `Asia/Aden` - Asia/Aden
	// * `Asia/Almaty` - Asia/Almaty
	// * `Asia/Amman` - Asia/Amman
	// * `Asia/Anadyr` - Asia/Anadyr
	// * `Asia/Aqtau` - Asia/Aqtau
	// * `Asia/Aqtobe` - Asia/Aqtobe
	// * `Asia/Ashgabat` - Asia/Ashgabat
	// * `Asia/Ashkhabad` - Asia/Ashkhabad
	// * `Asia/Atyrau` - Asia/Atyrau
	// * `Asia/Baghdad` - Asia/Baghdad
	// * `Asia/Bahrain` - Asia/Bahrain
	// * `Asia/Baku` - Asia/Baku
	// * `Asia/Bangkok` - Asia/Bangkok
	// * `Asia/Barnaul` - Asia/Barnaul
	// * `Asia/Beirut` - Asia/Beirut
	// * `Asia/Bishkek` - Asia/Bishkek
	// * `Asia/Brunei` - Asia/Brunei
	// * `Asia/Calcutta` - Asia/Calcutta
	// * `Asia/Chita` - Asia/Chita
	// * `Asia/Choibalsan` - Asia/Choibalsan
	// * `Asia/Chongqing` - Asia/Chongqing
	// * `Asia/Chungking` - Asia/Chungking
	// * `Asia/Colombo` - Asia/Colombo
	// * `Asia/Dacca` - Asia/Dacca
	// * `Asia/Damascus` - Asia/Damascus
	// * `Asia/Dhaka` - Asia/Dhaka
	// * `Asia/Dili` - Asia/Dili
	// * `Asia/Dubai` - Asia/Dubai
	// * `Asia/Dushanbe` - Asia/Dushanbe
	// * `Asia/Famagusta` - Asia/Famagusta
	// * `Asia/Gaza` - Asia/Gaza
	// * `Asia/Harbin` - Asia/Harbin
	// * `Asia/Hebron` - Asia/Hebron
	// * `Asia/Ho_Chi_Minh` - Asia/Ho_Chi_Minh
	// * `Asia/Hong_Kong` - Asia/Hong_Kong
	// * `Asia/Hovd` - Asia/Hovd
	// * `Asia/Irkutsk` - Asia/Irkutsk
	// * `Asia/Istanbul` - Asia/Istanbul
	// * `Asia/Jakarta` - Asia/Jakarta
	// * `Asia/Jayapura` - Asia/Jayapura
	// * `Asia/Jerusalem` - Asia/Jerusalem
	// * `Asia/Kabul` - Asia/Kabul
	// * `Asia/Kamchatka` - Asia/Kamchatka
	// * `Asia/Karachi` - Asia/Karachi
	// * `Asia/Kashgar` - Asia/Kashgar
	// * `Asia/Kathmandu` - Asia/Kathmandu
	// * `Asia/Katmandu` - Asia/Katmandu
	// * `Asia/Khandyga` - Asia/Khandyga
	// * `Asia/Kolkata` - Asia/Kolkata
	// * `Asia/Krasnoyarsk` - Asia/Krasnoyarsk
	// * `Asia/Kuala_Lumpur` - Asia/Kuala_Lumpur
	// * `Asia/Kuching` - Asia/Kuching
	// * `Asia/Kuwait` - Asia/Kuwait
	// * `Asia/Macao` - Asia/Macao
	// * `Asia/Macau` - Asia/Macau
	// * `Asia/Magadan` - Asia/Magadan
	// * `Asia/Makassar` - Asia/Makassar
	// * `Asia/Manila` - Asia/Manila
	// * `Asia/Muscat` - Asia/Muscat
	// * `Asia/Nicosia` - Asia/Nicosia
	// * `Asia/Novokuznetsk` - Asia/Novokuznetsk
	// * `Asia/Novosibirsk` - Asia/Novosibirsk
	// * `Asia/Omsk` - Asia/Omsk
	// * `Asia/Oral` - Asia/Oral
	// * `Asia/Phnom_Penh` - Asia/Phnom_Penh
	// * `Asia/Pontianak` - Asia/Pontianak
	// * `Asia/Pyongyang` - Asia/Pyongyang
	// * `Asia/Qatar` - Asia/Qatar
	// * `Asia/Qostanay` - Asia/Qostanay
	// * `Asia/Qyzylorda` - Asia/Qyzylorda
	// * `Asia/Rangoon` - Asia/Rangoon
	// * `Asia/Riyadh` - Asia/Riyadh
	// * `Asia/Saigon` - Asia/Saigon
	// * `Asia/Sakhalin` - Asia/Sakhalin
	// * `Asia/Samarkand` - Asia/Samarkand
	// * `Asia/Seoul` - Asia/Seoul
	// * `Asia/Shanghai` - Asia/Shanghai
	// * `Asia/Singapore` - Asia/Singapore
	// * `Asia/Srednekolymsk` - Asia/Srednekolymsk
	// * `Asia/Taipei` - Asia/Taipei
	// * `Asia/Tashkent` - Asia/Tashkent
	// * `Asia/Tbilisi` - Asia/Tbilisi
	// * `Asia/Tehran` - Asia/Tehran
	// * `Asia/Tel_Aviv` - Asia/Tel_Aviv
	// * `Asia/Thimbu` - Asia/Thimbu
	// * `Asia/Thimphu` - Asia/Thimphu
	// * `Asia/Tokyo` - Asia/Tokyo
	// * `Asia/Tomsk` - Asia/Tomsk
	// * `Asia/Ujung_Pandang` - Asia/Ujung_Pandang
	// * `Asia/Ulaanbaatar` - Asia/Ulaanbaatar
	// * `Asia/Ulan_Bator` - Asia/Ulan_Bator
	// * `Asia/Urumqi` - Asia/Urumqi
	// * `Asia/Ust-Nera` - Asia/Ust-Nera
	// * `Asia/Vientiane` - Asia/Vientiane
	// * `Asia/Vladivostok` - Asia/Vladivostok
	// * `Asia/Yakutsk` - Asia/Yakutsk
	// * `Asia/Yangon` - Asia/Yangon
	// * `Asia/Yekaterinburg` - Asia/Yekaterinburg
	// * `Asia/Yerevan` - Asia/Yerevan
	// * `Atlantic/Azores` - Atlantic/Azores
	// * `Atlantic/Bermuda` - Atlantic/Bermuda
	// * `Atlantic/Canary` - Atlantic/Canary
	// * `Atlantic/Cape_Verde` - Atlantic/Cape_Verde
	// * `Atlantic/Faeroe` - Atlantic/Faeroe
	// * `Atlantic/Faroe` - Atlantic/Faroe
	// * `Atlantic/Jan_Mayen` - Atlantic/Jan_Mayen
	// * `Atlantic/Madeira` - Atlantic/Madeira
	// * `Atlantic/Reykjavik` - Atlantic/Reykjavik
	// * `Atlantic/South_Georgia` - Atlantic/South_Georgia
	// * `Atlantic/St_Helena` - Atlantic/St_Helena
	// * `Atlantic/Stanley` - Atlantic/Stanley
	// * `Australia/ACT` - Australia/ACT
	// * `Australia/Adelaide` - Australia/Adelaide
	// * `Australia/Brisbane` - Australia/Brisbane
	// * `Australia/Broken_Hill` - Australia/Broken_Hill
	// * `Australia/Canberra` - Australia/Canberra
	// * `Australia/Currie` - Australia/Currie
	// * `Australia/Darwin` - Australia/Darwin
	// * `Australia/Eucla` - Australia/Eucla
	// * `Australia/Hobart` - Australia/Hobart
	// * `Australia/LHI` - Australia/LHI
	// * `Australia/Lindeman` - Australia/Lindeman
	// * `Australia/Lord_Howe` - Australia/Lord_Howe
	// * `Australia/Melbourne` - Australia/Melbourne
	// * `Australia/NSW` - Australia/NSW
	// * `Australia/North` - Australia/North
	// * `Australia/Perth` - Australia/Perth
	// * `Australia/Queensland` - Australia/Queensland
	// * `Australia/South` - Australia/South
	// * `Australia/Sydney` - Australia/Sydney
	// * `Australia/Tasmania` - Australia/Tasmania
	// * `Australia/Victoria` - Australia/Victoria
	// * `Australia/West` - Australia/West
	// * `Australia/Yancowinna` - Australia/Yancowinna
	// * `Brazil/Acre` - Brazil/Acre
	// * `Brazil/DeNoronha` - Brazil/DeNoronha
	// * `Brazil/East` - Brazil/East
	// * `Brazil/West` - Brazil/West
	// * `CET` - CET
	// * `CST6CDT` - CST6CDT
	// * `Canada/Atlantic` - Canada/Atlantic
	// * `Canada/Central` - Canada/Central
	// * `Canada/Eastern` - Canada/Eastern
	// * `Canada/Mountain` - Canada/Mountain
	// * `Canada/Newfoundland` - Canada/Newfoundland
	// * `Canada/Pacific` - Canada/Pacific
	// * `Canada/Saskatchewan` - Canada/Saskatchewan
	// * `Canada/Yukon` - Canada/Yukon
	// * `Chile/Continental` - Chile/Continental
	// * `Chile/EasterIsland` - Chile/EasterIsland
	// * `Cuba` - Cuba
	// * `EET` - EET
	// * `EST` - EST
	// * `EST5EDT` - EST5EDT
	// * `Egypt` - Egypt
	// * `Eire` - Eire
	// * `Etc/GMT` - Etc/GMT
	// * `Etc/GMT+0` - Etc/GMT+0
	// * `Etc/GMT+1` - Etc/GMT+1
	// * `Etc/GMT+10` - Etc/GMT+10
	// * `Etc/GMT+11` - Etc/GMT+11
	// * `Etc/GMT+12` - Etc/GMT+12
	// * `Etc/GMT+2` - Etc/GMT+2
	// * `Etc/GMT+3` - Etc/GMT+3
	// * `Etc/GMT+4` - Etc/GMT+4
	// * `Etc/GMT+5` - Etc/GMT+5
	// * `Etc/GMT+6` - Etc/GMT+6
	// * `Etc/GMT+7` - Etc/GMT+7
	// * `Etc/GMT+8` - Etc/GMT+8
	// * `Etc/GMT+9` - Etc/GMT+9
	// * `Etc/GMT-0` - Etc/GMT-0
	// * `Etc/GMT-1` - Etc/GMT-1
	// * `Etc/GMT-10` - Etc/GMT-10
	// * `Etc/GMT-11` - Etc/GMT-11
	// * `Etc/GMT-12` - Etc/GMT-12
	// * `Etc/GMT-13` - Etc/GMT-13
	// * `Etc/GMT-14` - Etc/GMT-14
	// * `Etc/GMT-2` - Etc/GMT-2
	// * `Etc/GMT-3` - Etc/GMT-3
	// * `Etc/GMT-4` - Etc/GMT-4
	// * `Etc/GMT-5` - Etc/GMT-5
	// * `Etc/GMT-6` - Etc/GMT-6
	// * `Etc/GMT-7` - Etc/GMT-7
	// * `Etc/GMT-8` - Etc/GMT-8
	// * `Etc/GMT-9` - Etc/GMT-9
	// * `Etc/GMT0` - Etc/GMT0
	// * `Etc/Greenwich` - Etc/Greenwich
	// * `Etc/UCT` - Etc/UCT
	// * `Etc/UTC` - Etc/UTC
	// * `Etc/Universal` - Etc/Universal
	// * `Etc/Zulu` - Etc/Zulu
	// * `Europe/Amsterdam` - Europe/Amsterdam
	// * `Europe/Andorra` - Europe/Andorra
	// * `Europe/Astrakhan` - Europe/Astrakhan
	// * `Europe/Athens` - Europe/Athens
	// * `Europe/Belfast` - Europe/Belfast
	// * `Europe/Belgrade` - Europe/Belgrade
	// * `Europe/Berlin` - Europe/Berlin
	// * `Europe/Bratislava` - Europe/Bratislava
	// * `Europe/Brussels` - Europe/Brussels
	// * `Europe/Bucharest` - Europe/Bucharest
	// * `Europe/Budapest` - Europe/Budapest
	// * `Europe/Busingen` - Europe/Busingen
	// * `Europe/Chisinau` - Europe/Chisinau
	// * `Europe/Copenhagen` - Europe/Copenhagen
	// * `Europe/Dublin` - Europe/Dublin
	// * `Europe/Gibraltar` - Europe/Gibraltar
	// * `Europe/Guernsey` - Europe/Guernsey
	// * `Europe/Helsinki` - Europe/Helsinki
	// * `Europe/Isle_of_Man` - Europe/Isle_of_Man
	// * `Europe/Istanbul` - Europe/Istanbul
	// * `Europe/Jersey` - Europe/Jersey
	// * `Europe/Kaliningrad` - Europe/Kaliningrad
	// * `Europe/Kiev` - Europe/Kiev
	// * `Europe/Kirov` - Europe/Kirov
	// * `Europe/Kyiv` - Europe/Kyiv
	// * `Europe/Lisbon` - Europe/Lisbon
	// * `Europe/Ljubljana` - Europe/Ljubljana
	// * `Europe/London` - Europe/London
	// * `Europe/Luxembourg` - Europe/Luxembourg
	// * `Europe/Madrid` - Europe/Madrid
	// * `Europe/Malta` - Europe/Malta
	// * `Europe/Mariehamn` - Europe/Mariehamn
	// * `Europe/Minsk` - Europe/Minsk
	// * `Europe/Monaco` - Europe/Monaco
	// * `Europe/Moscow` - Europe/Moscow
	// * `Europe/Nicosia` - Europe/Nicosia
	// * `Europe/Oslo` - Europe/Oslo
	// * `Europe/Paris` - Europe/Paris
	// * `Europe/Podgorica` - Europe/Podgorica
	// * `Europe/Prague` - Europe/Prague
	// * `Europe/Riga` - Europe/Riga
	// * `Europe/Rome` - Europe/Rome
	// * `Europe/Samara` - Europe/Samara
	// * `Europe/San_Marino` - Europe/San_Marino
	// * `Europe/Sarajevo` - Europe/Sarajevo
	// * `Europe/Saratov` - Europe/Saratov
	// * `Europe/Simferopol` - Europe/Simferopol
	// * `Europe/Skopje` - Europe/Skopje
	// * `Europe/Sofia` - Europe/Sofia
	// * `Europe/Stockholm` - Europe/Stockholm
	// * `Europe/Tallinn` - Europe/Tallinn
	// * `Europe/Tirane` - Europe/Tirane
	// * `Europe/Tiraspol` - Europe/Tiraspol
	// * `Europe/Ulyanovsk` - Europe/Ulyanovsk
	// * `Europe/Uzhgorod` - Europe/Uzhgorod
	// * `Europe/Vaduz` - Europe/Vaduz
	// * `Europe/Vatican` - Europe/Vatican
	// * `Europe/Vienna` - Europe/Vienna
	// * `Europe/Vilnius` - Europe/Vilnius
	// * `Europe/Volgograd` - Europe/Volgograd
	// * `Europe/Warsaw` - Europe/Warsaw
	// * `Europe/Zagreb` - Europe/Zagreb
	// * `Europe/Zaporozhye` - Europe/Zaporozhye
	// * `Europe/Zurich` - Europe/Zurich
	// * `GB` - GB
	// * `GB-Eire` - GB-Eire
	// * `GMT` - GMT
	// * `GMT+0` - GMT+0
	// * `GMT-0` - GMT-0
	// * `GMT0` - GMT0
	// * `Greenwich` - Greenwich
	// * `HST` - HST
	// * `Hongkong` - Hongkong
	// * `Iceland` - Iceland
	// * `Indian/Antananarivo` - Indian/Antananarivo
	// * `Indian/Chagos` - Indian/Chagos
	// * `Indian/Christmas` - Indian/Christmas
	// * `Indian/Cocos` - Indian/Cocos
	// * `Indian/Comoro` - Indian/Comoro
	// * `Indian/Kerguelen` - Indian/Kerguelen
	// * `Indian/Mahe` - Indian/Mahe
	// * `Indian/Maldives` - Indian/Maldives
	// * `Indian/Mauritius` - Indian/Mauritius
	// * `Indian/Mayotte` - Indian/Mayotte
	// * `Indian/Reunion` - Indian/Reunion
	// * `Iran` - Iran
	// * `Israel` - Israel
	// * `Jamaica` - Jamaica
	// * `Japan` - Japan
	// * `Kwajalein` - Kwajalein
	// * `Libya` - Libya
	// * `MET` - MET
	// * `MST` - MST
	// * `MST7MDT` - MST7MDT
	// * `Mexico/BajaNorte` - Mexico/BajaNorte
	// * `Mexico/BajaSur` - Mexico/BajaSur
	// * `Mexico/General` - Mexico/General
	// * `NZ` - NZ
	// * `NZ-CHAT` - NZ-CHAT
	// * `Navajo` - Navajo
	// * `PRC` - PRC
	// * `PST8PDT` - PST8PDT
	// * `Pacific/Apia` - Pacific/Apia
	// * `Pacific/Auckland` - Pacific/Auckland
	// * `Pacific/Bougainville` - Pacific/Bougainville
	// * `Pacific/Chatham` - Pacific/Chatham
	// * `Pacific/Chuuk` - Pacific/Chuuk
	// * `Pacific/Easter` - Pacific/Easter
	// * `Pacific/Efate` - Pacific/Efate
	// * `Pacific/Enderbury` - Pacific/Enderbury
	// * `Pacific/Fakaofo` - Pacific/Fakaofo
	// * `Pacific/Fiji` - Pacific/Fiji
	// * `Pacific/Funafuti` - Pacific/Funafuti
	// * `Pacific/Galapagos` - Pacific/Galapagos
	// * `Pacific/Gambier` - Pacific/Gambier
	// * `Pacific/Guadalcanal` - Pacific/Guadalcanal
	// * `Pacific/Guam` - Pacific/Guam
	// * `Pacific/Honolulu` - Pacific/Honolulu
	// * `Pacific/Johnston` - Pacific/Johnston
	// * `Pacific/Kanton` - Pacific/Kanton
	// * `Pacific/Kiritimati` - Pacific/Kiritimati
	// * `Pacific/Kosrae` - Pacific/Kosrae
	// * `Pacific/Kwajalein` - Pacific/Kwajalein
	// * `Pacific/Majuro` - Pacific/Majuro
	// * `Pacific/Marquesas` - Pacific/Marquesas
	// * `Pacific/Midway` - Pacific/Midway
	// * `Pacific/Nauru` - Pacific/Nauru
	// * `Pacific/Niue` - Pacific/Niue
	// * `Pacific/Norfolk` - Pacific/Norfolk
	// * `Pacific/Noumea` - Pacific/Noumea
	// * `Pacific/Pago_Pago` - Pacific/Pago_Pago
	// * `Pacific/Palau` - Pacific/Palau
	// * `Pacific/Pitcairn` - Pacific/Pitcairn
	// * `Pacific/Pohnpei` - Pacific/Pohnpei
	// * `Pacific/Ponape` - Pacific/Ponape
	// * `Pacific/Port_Moresby` - Pacific/Port_Moresby
	// * `Pacific/Rarotonga` - Pacific/Rarotonga
	// * `Pacific/Saipan` - Pacific/Saipan
	// * `Pacific/Samoa` - Pacific/Samoa
	// * `Pacific/Tahiti` - Pacific/Tahiti
	// * `Pacific/Tarawa` - Pacific/Tarawa
	// * `Pacific/Tongatapu` - Pacific/Tongatapu
	// * `Pacific/Truk` - Pacific/Truk
	// * `Pacific/Wake` - Pacific/Wake
	// * `Pacific/Wallis` - Pacific/Wallis
	// * `Pacific/Yap` - Pacific/Yap
	// * `Poland` - Poland
	// * `Portugal` - Portugal
	// * `ROC` - ROC
	// * `ROK` - ROK
	// * `Singapore` - Singapore
	// * `Turkey` - Turkey
	// * `UCT` - UCT
	// * `US/Alaska` - US/Alaska
	// * `US/Aleutian` - US/Aleutian
	// * `US/Arizona` - US/Arizona
	// * `US/Central` - US/Central
	// * `US/East-Indiana` - US/East-Indiana
	// * `US/Eastern` - US/Eastern
	// * `US/Hawaii` - US/Hawaii
	// * `US/Indiana-Starke` - US/Indiana-Starke
	// * `US/Michigan` - US/Michigan
	// * `US/Mountain` - US/Mountain
	// * `US/Pacific` - US/Pacific
	// * `US/Samoa` - US/Samoa
	// * `UTC` - UTC
	// * `Universal` - Universal
	// * `W-SU` - W-SU
	// * `WET` - WET
	// * `Zulu` - Zulu
	TimeZone *SystemSettingsTimeZone `json:"time_zone,omitempty"`

	// UppercaseCharacterRequired Requires user passwords to contain at least one uppercase letter (A-Z).
	UppercaseCharacterRequired *bool `json:"uppercase_character_required,omitempty"`

	// UrlPrefix URL prefix if DefectDojo is installed in it's own virtual subdirectory.
	UrlPrefix *string `json:"url_prefix,omitempty"`
}

SystemSettings defines model for SystemSettings.

type SystemSettingsJiraMinimumSeverity

type SystemSettingsJiraMinimumSeverity string

SystemSettingsJiraMinimumSeverity * `Critical` - Critical * `High` - High * `Medium` - Medium * `Low` - Low * `Info` - Info

const (
	SystemSettingsJiraMinimumSeverityCritical SystemSettingsJiraMinimumSeverity = "Critical"
	SystemSettingsJiraMinimumSeverityEmpty    SystemSettingsJiraMinimumSeverity = ""
	SystemSettingsJiraMinimumSeverityHigh     SystemSettingsJiraMinimumSeverity = "High"
	SystemSettingsJiraMinimumSeverityInfo     SystemSettingsJiraMinimumSeverity = "Info"
	SystemSettingsJiraMinimumSeverityLow      SystemSettingsJiraMinimumSeverity = "Low"
	SystemSettingsJiraMinimumSeverityMedium   SystemSettingsJiraMinimumSeverity = "Medium"
	SystemSettingsJiraMinimumSeverityNil      SystemSettingsJiraMinimumSeverity = "<nil>"
)

Defines values for SystemSettingsJiraMinimumSeverity.

type SystemSettingsListParams

type SystemSettingsListParams struct {
	// Limit Number of results to return per page.
	Limit *int `form:"limit,omitempty" json:"limit,omitempty"`

	// Offset The initial index from which to return the results.
	Offset *int `form:"offset,omitempty" json:"offset,omitempty"`
}

SystemSettingsListParams defines parameters for SystemSettingsList.

type SystemSettingsListResponse

type SystemSettingsListResponse struct {
	Body         []byte
	HTTPResponse *http.Response
	JSON200      *PaginatedSystemSettingsList
}

func ParseSystemSettingsListResponse

func ParseSystemSettingsListResponse(rsp *http.Response) (*SystemSettingsListResponse, error)

ParseSystemSettingsListResponse parses an HTTP response from a SystemSettingsListWithResponse call

func (SystemSettingsListResponse) Status

Status returns HTTPResponse.Status

func (SystemSettingsListResponse) StatusCode

func (r SystemSettingsListResponse) StatusCode() int

StatusCode returns HTTPResponse.StatusCode

type SystemSettingsPartialUpdateFormdataRequestBody added in v0.2.0

type SystemSettingsPartialUpdateFormdataRequestBody = PatchedSystemSettingsRequest

SystemSettingsPartialUpdateFormdataRequestBody defines body for SystemSettingsPartialUpdate for application/x-www-form-urlencoded ContentType.

type SystemSettingsPartialUpdateJSONRequestBody

type SystemSettingsPartialUpdateJSONRequestBody = PatchedSystemSettingsRequest

SystemSettingsPartialUpdateJSONRequestBody defines body for SystemSettingsPartialUpdate for application/json ContentType.

type SystemSettingsPartialUpdateMultipartRequestBody added in v0.2.0

type SystemSettingsPartialUpdateMultipartRequestBody = PatchedSystemSettingsRequest

SystemSettingsPartialUpdateMultipartRequestBody defines body for SystemSettingsPartialUpdate for multipart/form-data ContentType.

type SystemSettingsPartialUpdateResponse

type SystemSettingsPartialUpdateResponse struct {
	Body         []byte
	HTTPResponse *http.Response
	JSON200      *SystemSettings
}

func ParseSystemSettingsPartialUpdateResponse

func ParseSystemSettingsPartialUpdateResponse(rsp *http.Response) (*SystemSettingsPartialUpdateResponse, error)

ParseSystemSettingsPartialUpdateResponse parses an HTTP response from a SystemSettingsPartialUpdateWithResponse call

func (SystemSettingsPartialUpdateResponse) Status

Status returns HTTPResponse.Status

func (SystemSettingsPartialUpdateResponse) StatusCode

StatusCode returns HTTPResponse.StatusCode

type SystemSettingsRequest added in v0.2.0

type SystemSettingsRequest struct {
	AddVulnerabilityIdToJiraLabel *bool `json:"add_vulnerability_id_to_jira_label,omitempty"`

	// AllowAnonymousSurveyRepsonse Enable anyone with a link to the survey to answer a survey
	AllowAnonymousSurveyRepsonse *bool   `json:"allow_anonymous_survey_repsonse,omitempty"`
	Credentials                  *string `json:"credentials,omitempty"`

	// DefaultGroup New users will be assigned to this group.
	DefaultGroup *int `json:"default_group"`

	// DefaultGroupEmailPattern New users will only be assigned to the default group, when their email address matches this regex pattern. This is optional condition.
	DefaultGroupEmailPattern *string `json:"default_group_email_pattern,omitempty"`

	// DefaultGroupRole New users will be assigned to their default group with this role.
	DefaultGroupRole *int `json:"default_group_role"`

	// DeleteDuplicates Requires next setting: maximum number of duplicates to retain.
	DeleteDuplicates *bool `json:"delete_duplicates,omitempty"`

	// DisableJiraWebhookSecret Allows incoming requests without a secret (discouraged legacy behaviour)
	DisableJiraWebhookSecret *bool `json:"disable_jira_webhook_secret,omitempty"`

	// Disclaimer Include this custom disclaimer on all notifications and generated reports
	Disclaimer *string `json:"disclaimer,omitempty"`
	EmailFrom  *string `json:"email_from,omitempty"`

	// EnableAuditlog With this setting turned on, Dojo maintains an audit log of changes made to entities (Findings, Tests, Engagements, Procuts, ...)If you run big import you may want to disable this because the way django-auditlog currently works, there's a big performance hit. Especially during (re-)imports.
	EnableAuditlog *bool `json:"enable_auditlog,omitempty"`

	// EnableBenchmark Enables Benchmarks such as the OWASP ASVS (Application Security Verification Standard)
	EnableBenchmark *bool `json:"enable_benchmark,omitempty"`

	// EnableCalendar With this setting turned off, the Calendar will be disabled in the user interface.
	EnableCalendar *bool `json:"enable_calendar,omitempty"`

	// EnableChecklists With this setting turned off, checklists will be disabled in the user interface.
	EnableChecklists *bool `json:"enable_checklists,omitempty"`

	// EnableCredentials With this setting turned off, credentials will be disabled in the user interface.
	EnableCredentials *bool `json:"enable_credentials,omitempty"`

	// EnableDeduplication With this setting turned on, Dojo deduplicates findings by comparing endpoints, cwe fields, and titles. If two findings share a URL and have the same CWE or title, Dojo marks the less recent finding as a duplicate. When deduplication is enabled, a list of deduplicated findings is added to the engagement view.
	EnableDeduplication *bool `json:"enable_deduplication,omitempty"`

	// EnableEndpointMetadataImport With this setting turned off, endpoint metadata import will be disabled in the user interface.
	EnableEndpointMetadataImport *bool `json:"enable_endpoint_metadata_import,omitempty"`

	// EnableFindingGroups With this setting turned off, the Finding Groups will be disabled.
	EnableFindingGroups *bool `json:"enable_finding_groups,omitempty"`

	// EnableFindingSla Enables Finding SLA's for time to remediate.
	EnableFindingSla *bool `json:"enable_finding_sla,omitempty"`
	EnableGithub     *bool `json:"enable_github,omitempty"`
	EnableJira       *bool `json:"enable_jira,omitempty"`

	// EnableJiraWebHook Please note: It is strongly recommended to use a secret below and / or IP whitelist the JIRA server using a proxy such as Nginx.
	EnableJiraWebHook          *bool `json:"enable_jira_web_hook,omitempty"`
	EnableMailNotifications    *bool `json:"enable_mail_notifications,omitempty"`
	EnableMsteamsNotifications *bool `json:"enable_msteams_notifications,omitempty"`

	// EnableNotifySlaActive Enables Notify when time to remediate according to Finding SLA's is breached for active Findings.
	EnableNotifySlaActive *bool `json:"enable_notify_sla_active,omitempty"`

	// EnableNotifySlaActiveVerified Enables Notify when time to remediate according to Finding SLA's is breached for active, verified Findings.
	EnableNotifySlaActiveVerified *bool `json:"enable_notify_sla_active_verified,omitempty"`

	// EnableNotifySlaExponentialBackoff Enable an exponential backoff strategy for SLA breach notifications, e.g. 1, 2, 4, 8, etc. Otherwise it alerts every day
	EnableNotifySlaExponentialBackoff *bool `json:"enable_notify_sla_exponential_backoff,omitempty"`

	// EnableNotifySlaJiraOnly Enables Notify when time to remediate according to Finding SLA's is breached for Findings that are linked to JIRA issues. Notification is disabled for Findings not linked to JIRA issues
	EnableNotifySlaJiraOnly *bool `json:"enable_notify_sla_jira_only,omitempty"`

	// EnableProductGrade Displays a grade letter next to a product to show the overall health.
	EnableProductGrade *bool `json:"enable_product_grade,omitempty"`

	// EnableProductTagInheritance Enables product tag inheritance globally for all products. Any tags added on a product will automatically be added to all Engagements, Tests, and Findings
	EnableProductTagInheritance *bool `json:"enable_product_tag_inheritance,omitempty"`

	// EnableProductTrackingFiles With this setting turned off, the product tracking files will be disabled in the user interface.
	EnableProductTrackingFiles *bool `json:"enable_product_tracking_files,omitempty"`

	// EnableQuestionnaires With this setting turned off, questionnaires will be disabled in the user interface.
	EnableQuestionnaires     *bool `json:"enable_questionnaires,omitempty"`
	EnableSlackNotifications *bool `json:"enable_slack_notifications,omitempty"`

	// EnableTemplateMatch Enables global remediation advice and matching on CWE and Title. The text will be replaced for mitigation, impact and references on a finding. Useful for providing consistent impact and remediation advice regardless of the scanner.
	EnableTemplateMatch *bool `json:"enable_template_match,omitempty"`

	// EnableUserProfileEditable When turned on users can edit their profiles
	EnableUserProfileEditable *bool `json:"enable_user_profile_editable,omitempty"`

	// EngagementAutoClose Closes an engagement after 3 days (default) past due date including last update.
	EngagementAutoClose *bool `json:"engagement_auto_close,omitempty"`

	// EngagementAutoCloseDays Closes an engagement after the specified number of days past due date including last update.
	EngagementAutoCloseDays *int `json:"engagement_auto_close_days,omitempty"`

	// FalsePositiveHistory (EXPERIMENTAL) DefectDojo will automatically mark the finding as a false positive if an equal finding (according to its dedupe algorithm) has been previously marked as a false positive on the same product. ATTENTION: Although the deduplication algorithm is used to determine if a finding should be marked as a false positive, this feature will not work if deduplication is enabled since it doesn't make sense to use both.
	FalsePositiveHistory *bool `json:"false_positive_history,omitempty"`

	// JiraLabels JIRA issue labels space seperated
	JiraLabels *string `json:"jira_labels"`

	// JiraMinimumSeverity * `Critical` - Critical
	// * `High` - High
	// * `Medium` - Medium
	// * `Low` - Low
	// * `Info` - Info
	JiraMinimumSeverity *SystemSettingsRequestJiraMinimumSeverity `json:"jira_minimum_severity"`

	// JiraWebhookSecret Secret needed in URL for incoming JIRA Webhook
	JiraWebhookSecret *string `json:"jira_webhook_secret"`

	// LowercaseCharacterRequired Requires user passwords to contain at least one lowercase letter (a-z).
	LowercaseCharacterRequired *bool   `json:"lowercase_character_required,omitempty"`
	MailNotificationsTo        *string `json:"mail_notifications_to,omitempty"`

	// MaxDupes When enabled, if a single issue reaches the maximum number of duplicates, the oldest will be deleted. Duplicate will not be deleted when left empty. A value of 0 will remove all duplicates.
	MaxDupes *int `json:"max_dupes"`

	// MaximumPasswordLength Requires user to set passwords less than maximum length.
	MaximumPasswordLength *int `json:"maximum_password_length,omitempty"`

	// MinimumPasswordLength Requires user to set passwords greater than minimum length.
	MinimumPasswordLength *int `json:"minimum_password_length,omitempty"`

	// MsteamsUrl The full URL of the incoming webhook
	MsteamsUrl *string `json:"msteams_url,omitempty"`

	// NonCommonPasswordRequired Requires user passwords to not be part of list of common passwords.
	NonCommonPasswordRequired *bool `json:"non_common_password_required,omitempty"`

	// NumberCharacterRequired Requires user passwords to contain at least one digit (0-9).
	NumberCharacterRequired *bool   `json:"number_character_required,omitempty"`
	ProductGrade            *string `json:"product_grade,omitempty"`

	// ProductGradeA Percentage score for an 'A' >=
	ProductGradeA *int `json:"product_grade_a,omitempty"`

	// ProductGradeB Percentage score for a 'B' >=
	ProductGradeB *int `json:"product_grade_b,omitempty"`

	// ProductGradeC Percentage score for a 'C' >=
	ProductGradeC *int `json:"product_grade_c,omitempty"`

	// ProductGradeD Percentage score for a 'D' >=
	ProductGradeD *int `json:"product_grade_d,omitempty"`

	// ProductGradeF Percentage score for an 'F' <=
	ProductGradeF *int `json:"product_grade_f,omitempty"`

	// RetroactiveFalsePositiveHistory (EXPERIMENTAL) FP History will also retroactively mark/unmark all existing equal findings in the same product as a false positives. Only works if the False Positive History feature is also enabled.
	RetroactiveFalsePositiveHistory *bool `json:"retroactive_false_positive_history,omitempty"`

	// RiskAcceptanceFormDefaultDays Default expiry period for risk acceptance form.
	RiskAcceptanceFormDefaultDays *int `json:"risk_acceptance_form_default_days"`

	// RiskAcceptanceNotifyBeforeExpiration Notify X days before risk acceptance expires. Leave empty to disable.
	RiskAcceptanceNotifyBeforeExpiration *int `json:"risk_acceptance_notify_before_expiration"`

	// SlackChannel Optional. Needed if you want to send global notifications.
	SlackChannel *string `json:"slack_channel,omitempty"`

	// SlackToken Token required for interacting with Slack. Get one at https://api.slack.com/tokens
	SlackToken *string `json:"slack_token,omitempty"`

	// SlackUsername Optional. Will take your bot name otherwise.
	SlackUsername *string `json:"slack_username,omitempty"`

	// SpecialCharacterRequired Requires user passwords to contain at least one special character (()[]{}|\`~!@#$%^&*_-+=;:'",<>./?).
	SpecialCharacterRequired *bool   `json:"special_character_required,omitempty"`
	TeamName                 *string `json:"team_name,omitempty"`

	// TimeZone * `Africa/Abidjan` - Africa/Abidjan
	// * `Africa/Accra` - Africa/Accra
	// * `Africa/Addis_Ababa` - Africa/Addis_Ababa
	// * `Africa/Algiers` - Africa/Algiers
	// * `Africa/Asmara` - Africa/Asmara
	// * `Africa/Asmera` - Africa/Asmera
	// * `Africa/Bamako` - Africa/Bamako
	// * `Africa/Bangui` - Africa/Bangui
	// * `Africa/Banjul` - Africa/Banjul
	// * `Africa/Bissau` - Africa/Bissau
	// * `Africa/Blantyre` - Africa/Blantyre
	// * `Africa/Brazzaville` - Africa/Brazzaville
	// * `Africa/Bujumbura` - Africa/Bujumbura
	// * `Africa/Cairo` - Africa/Cairo
	// * `Africa/Casablanca` - Africa/Casablanca
	// * `Africa/Ceuta` - Africa/Ceuta
	// * `Africa/Conakry` - Africa/Conakry
	// * `Africa/Dakar` - Africa/Dakar
	// * `Africa/Dar_es_Salaam` - Africa/Dar_es_Salaam
	// * `Africa/Djibouti` - Africa/Djibouti
	// * `Africa/Douala` - Africa/Douala
	// * `Africa/El_Aaiun` - Africa/El_Aaiun
	// * `Africa/Freetown` - Africa/Freetown
	// * `Africa/Gaborone` - Africa/Gaborone
	// * `Africa/Harare` - Africa/Harare
	// * `Africa/Johannesburg` - Africa/Johannesburg
	// * `Africa/Juba` - Africa/Juba
	// * `Africa/Kampala` - Africa/Kampala
	// * `Africa/Khartoum` - Africa/Khartoum
	// * `Africa/Kigali` - Africa/Kigali
	// * `Africa/Kinshasa` - Africa/Kinshasa
	// * `Africa/Lagos` - Africa/Lagos
	// * `Africa/Libreville` - Africa/Libreville
	// * `Africa/Lome` - Africa/Lome
	// * `Africa/Luanda` - Africa/Luanda
	// * `Africa/Lubumbashi` - Africa/Lubumbashi
	// * `Africa/Lusaka` - Africa/Lusaka
	// * `Africa/Malabo` - Africa/Malabo
	// * `Africa/Maputo` - Africa/Maputo
	// * `Africa/Maseru` - Africa/Maseru
	// * `Africa/Mbabane` - Africa/Mbabane
	// * `Africa/Mogadishu` - Africa/Mogadishu
	// * `Africa/Monrovia` - Africa/Monrovia
	// * `Africa/Nairobi` - Africa/Nairobi
	// * `Africa/Ndjamena` - Africa/Ndjamena
	// * `Africa/Niamey` - Africa/Niamey
	// * `Africa/Nouakchott` - Africa/Nouakchott
	// * `Africa/Ouagadougou` - Africa/Ouagadougou
	// * `Africa/Porto-Novo` - Africa/Porto-Novo
	// * `Africa/Sao_Tome` - Africa/Sao_Tome
	// * `Africa/Timbuktu` - Africa/Timbuktu
	// * `Africa/Tripoli` - Africa/Tripoli
	// * `Africa/Tunis` - Africa/Tunis
	// * `Africa/Windhoek` - Africa/Windhoek
	// * `America/Adak` - America/Adak
	// * `America/Anchorage` - America/Anchorage
	// * `America/Anguilla` - America/Anguilla
	// * `America/Antigua` - America/Antigua
	// * `America/Araguaina` - America/Araguaina
	// * `America/Argentina/Buenos_Aires` - America/Argentina/Buenos_Aires
	// * `America/Argentina/Catamarca` - America/Argentina/Catamarca
	// * `America/Argentina/ComodRivadavia` - America/Argentina/ComodRivadavia
	// * `America/Argentina/Cordoba` - America/Argentina/Cordoba
	// * `America/Argentina/Jujuy` - America/Argentina/Jujuy
	// * `America/Argentina/La_Rioja` - America/Argentina/La_Rioja
	// * `America/Argentina/Mendoza` - America/Argentina/Mendoza
	// * `America/Argentina/Rio_Gallegos` - America/Argentina/Rio_Gallegos
	// * `America/Argentina/Salta` - America/Argentina/Salta
	// * `America/Argentina/San_Juan` - America/Argentina/San_Juan
	// * `America/Argentina/San_Luis` - America/Argentina/San_Luis
	// * `America/Argentina/Tucuman` - America/Argentina/Tucuman
	// * `America/Argentina/Ushuaia` - America/Argentina/Ushuaia
	// * `America/Aruba` - America/Aruba
	// * `America/Asuncion` - America/Asuncion
	// * `America/Atikokan` - America/Atikokan
	// * `America/Atka` - America/Atka
	// * `America/Bahia` - America/Bahia
	// * `America/Bahia_Banderas` - America/Bahia_Banderas
	// * `America/Barbados` - America/Barbados
	// * `America/Belem` - America/Belem
	// * `America/Belize` - America/Belize
	// * `America/Blanc-Sablon` - America/Blanc-Sablon
	// * `America/Boa_Vista` - America/Boa_Vista
	// * `America/Bogota` - America/Bogota
	// * `America/Boise` - America/Boise
	// * `America/Buenos_Aires` - America/Buenos_Aires
	// * `America/Cambridge_Bay` - America/Cambridge_Bay
	// * `America/Campo_Grande` - America/Campo_Grande
	// * `America/Cancun` - America/Cancun
	// * `America/Caracas` - America/Caracas
	// * `America/Catamarca` - America/Catamarca
	// * `America/Cayenne` - America/Cayenne
	// * `America/Cayman` - America/Cayman
	// * `America/Chicago` - America/Chicago
	// * `America/Chihuahua` - America/Chihuahua
	// * `America/Ciudad_Juarez` - America/Ciudad_Juarez
	// * `America/Coral_Harbour` - America/Coral_Harbour
	// * `America/Cordoba` - America/Cordoba
	// * `America/Costa_Rica` - America/Costa_Rica
	// * `America/Creston` - America/Creston
	// * `America/Cuiaba` - America/Cuiaba
	// * `America/Curacao` - America/Curacao
	// * `America/Danmarkshavn` - America/Danmarkshavn
	// * `America/Dawson` - America/Dawson
	// * `America/Dawson_Creek` - America/Dawson_Creek
	// * `America/Denver` - America/Denver
	// * `America/Detroit` - America/Detroit
	// * `America/Dominica` - America/Dominica
	// * `America/Edmonton` - America/Edmonton
	// * `America/Eirunepe` - America/Eirunepe
	// * `America/El_Salvador` - America/El_Salvador
	// * `America/Ensenada` - America/Ensenada
	// * `America/Fort_Nelson` - America/Fort_Nelson
	// * `America/Fort_Wayne` - America/Fort_Wayne
	// * `America/Fortaleza` - America/Fortaleza
	// * `America/Glace_Bay` - America/Glace_Bay
	// * `America/Godthab` - America/Godthab
	// * `America/Goose_Bay` - America/Goose_Bay
	// * `America/Grand_Turk` - America/Grand_Turk
	// * `America/Grenada` - America/Grenada
	// * `America/Guadeloupe` - America/Guadeloupe
	// * `America/Guatemala` - America/Guatemala
	// * `America/Guayaquil` - America/Guayaquil
	// * `America/Guyana` - America/Guyana
	// * `America/Halifax` - America/Halifax
	// * `America/Havana` - America/Havana
	// * `America/Hermosillo` - America/Hermosillo
	// * `America/Indiana/Indianapolis` - America/Indiana/Indianapolis
	// * `America/Indiana/Knox` - America/Indiana/Knox
	// * `America/Indiana/Marengo` - America/Indiana/Marengo
	// * `America/Indiana/Petersburg` - America/Indiana/Petersburg
	// * `America/Indiana/Tell_City` - America/Indiana/Tell_City
	// * `America/Indiana/Vevay` - America/Indiana/Vevay
	// * `America/Indiana/Vincennes` - America/Indiana/Vincennes
	// * `America/Indiana/Winamac` - America/Indiana/Winamac
	// * `America/Indianapolis` - America/Indianapolis
	// * `America/Inuvik` - America/Inuvik
	// * `America/Iqaluit` - America/Iqaluit
	// * `America/Jamaica` - America/Jamaica
	// * `America/Jujuy` - America/Jujuy
	// * `America/Juneau` - America/Juneau
	// * `America/Kentucky/Louisville` - America/Kentucky/Louisville
	// * `America/Kentucky/Monticello` - America/Kentucky/Monticello
	// * `America/Knox_IN` - America/Knox_IN
	// * `America/Kralendijk` - America/Kralendijk
	// * `America/La_Paz` - America/La_Paz
	// * `America/Lima` - America/Lima
	// * `America/Los_Angeles` - America/Los_Angeles
	// * `America/Louisville` - America/Louisville
	// * `America/Lower_Princes` - America/Lower_Princes
	// * `America/Maceio` - America/Maceio
	// * `America/Managua` - America/Managua
	// * `America/Manaus` - America/Manaus
	// * `America/Marigot` - America/Marigot
	// * `America/Martinique` - America/Martinique
	// * `America/Matamoros` - America/Matamoros
	// * `America/Mazatlan` - America/Mazatlan
	// * `America/Mendoza` - America/Mendoza
	// * `America/Menominee` - America/Menominee
	// * `America/Merida` - America/Merida
	// * `America/Metlakatla` - America/Metlakatla
	// * `America/Mexico_City` - America/Mexico_City
	// * `America/Miquelon` - America/Miquelon
	// * `America/Moncton` - America/Moncton
	// * `America/Monterrey` - America/Monterrey
	// * `America/Montevideo` - America/Montevideo
	// * `America/Montreal` - America/Montreal
	// * `America/Montserrat` - America/Montserrat
	// * `America/Nassau` - America/Nassau
	// * `America/New_York` - America/New_York
	// * `America/Nipigon` - America/Nipigon
	// * `America/Nome` - America/Nome
	// * `America/Noronha` - America/Noronha
	// * `America/North_Dakota/Beulah` - America/North_Dakota/Beulah
	// * `America/North_Dakota/Center` - America/North_Dakota/Center
	// * `America/North_Dakota/New_Salem` - America/North_Dakota/New_Salem
	// * `America/Nuuk` - America/Nuuk
	// * `America/Ojinaga` - America/Ojinaga
	// * `America/Panama` - America/Panama
	// * `America/Pangnirtung` - America/Pangnirtung
	// * `America/Paramaribo` - America/Paramaribo
	// * `America/Phoenix` - America/Phoenix
	// * `America/Port-au-Prince` - America/Port-au-Prince
	// * `America/Port_of_Spain` - America/Port_of_Spain
	// * `America/Porto_Acre` - America/Porto_Acre
	// * `America/Porto_Velho` - America/Porto_Velho
	// * `America/Puerto_Rico` - America/Puerto_Rico
	// * `America/Punta_Arenas` - America/Punta_Arenas
	// * `America/Rainy_River` - America/Rainy_River
	// * `America/Rankin_Inlet` - America/Rankin_Inlet
	// * `America/Recife` - America/Recife
	// * `America/Regina` - America/Regina
	// * `America/Resolute` - America/Resolute
	// * `America/Rio_Branco` - America/Rio_Branco
	// * `America/Rosario` - America/Rosario
	// * `America/Santa_Isabel` - America/Santa_Isabel
	// * `America/Santarem` - America/Santarem
	// * `America/Santiago` - America/Santiago
	// * `America/Santo_Domingo` - America/Santo_Domingo
	// * `America/Sao_Paulo` - America/Sao_Paulo
	// * `America/Scoresbysund` - America/Scoresbysund
	// * `America/Shiprock` - America/Shiprock
	// * `America/Sitka` - America/Sitka
	// * `America/St_Barthelemy` - America/St_Barthelemy
	// * `America/St_Johns` - America/St_Johns
	// * `America/St_Kitts` - America/St_Kitts
	// * `America/St_Lucia` - America/St_Lucia
	// * `America/St_Thomas` - America/St_Thomas
	// * `America/St_Vincent` - America/St_Vincent
	// * `America/Swift_Current` - America/Swift_Current
	// * `America/Tegucigalpa` - America/Tegucigalpa
	// * `America/Thule` - America/Thule
	// * `America/Thunder_Bay` - America/Thunder_Bay
	// * `America/Tijuana` - America/Tijuana
	// * `America/Toronto` - America/Toronto
	// * `America/Tortola` - America/Tortola
	// * `America/Vancouver` - America/Vancouver
	// * `America/Virgin` - America/Virgin
	// * `America/Whitehorse` - America/Whitehorse
	// * `America/Winnipeg` - America/Winnipeg
	// * `America/Yakutat` - America/Yakutat
	// * `America/Yellowknife` - America/Yellowknife
	// * `Antarctica/Casey` - Antarctica/Casey
	// * `Antarctica/Davis` - Antarctica/Davis
	// * `Antarctica/DumontDUrville` - Antarctica/DumontDUrville
	// * `Antarctica/Macquarie` - Antarctica/Macquarie
	// * `Antarctica/Mawson` - Antarctica/Mawson
	// * `Antarctica/McMurdo` - Antarctica/McMurdo
	// * `Antarctica/Palmer` - Antarctica/Palmer
	// * `Antarctica/Rothera` - Antarctica/Rothera
	// * `Antarctica/South_Pole` - Antarctica/South_Pole
	// * `Antarctica/Syowa` - Antarctica/Syowa
	// * `Antarctica/Troll` - Antarctica/Troll
	// * `Antarctica/Vostok` - Antarctica/Vostok
	// * `Arctic/Longyearbyen` - Arctic/Longyearbyen
	// * `Asia/Aden` - Asia/Aden
	// * `Asia/Almaty` - Asia/Almaty
	// * `Asia/Amman` - Asia/Amman
	// * `Asia/Anadyr` - Asia/Anadyr
	// * `Asia/Aqtau` - Asia/Aqtau
	// * `Asia/Aqtobe` - Asia/Aqtobe
	// * `Asia/Ashgabat` - Asia/Ashgabat
	// * `Asia/Ashkhabad` - Asia/Ashkhabad
	// * `Asia/Atyrau` - Asia/Atyrau
	// * `Asia/Baghdad` - Asia/Baghdad
	// * `Asia/Bahrain` - Asia/Bahrain
	// * `Asia/Baku` - Asia/Baku
	// * `Asia/Bangkok` - Asia/Bangkok
	// * `Asia/Barnaul` - Asia/Barnaul
	// * `Asia/Beirut` - Asia/Beirut
	// * `Asia/Bishkek` - Asia/Bishkek
	// * `Asia/Brunei` - Asia/Brunei
	// * `Asia/Calcutta` - Asia/Calcutta
	// * `Asia/Chita` - Asia/Chita
	// * `Asia/Choibalsan` - Asia/Choibalsan
	// * `Asia/Chongqing` - Asia/Chongqing
	// * `Asia/Chungking` - Asia/Chungking
	// * `Asia/Colombo` - Asia/Colombo
	// * `Asia/Dacca` - Asia/Dacca
	// * `Asia/Damascus` - Asia/Damascus
	// * `Asia/Dhaka` - Asia/Dhaka
	// * `Asia/Dili` - Asia/Dili
	// * `Asia/Dubai` - Asia/Dubai
	// * `Asia/Dushanbe` - Asia/Dushanbe
	// * `Asia/Famagusta` - Asia/Famagusta
	// * `Asia/Gaza` - Asia/Gaza
	// * `Asia/Harbin` - Asia/Harbin
	// * `Asia/Hebron` - Asia/Hebron
	// * `Asia/Ho_Chi_Minh` - Asia/Ho_Chi_Minh
	// * `Asia/Hong_Kong` - Asia/Hong_Kong
	// * `Asia/Hovd` - Asia/Hovd
	// * `Asia/Irkutsk` - Asia/Irkutsk
	// * `Asia/Istanbul` - Asia/Istanbul
	// * `Asia/Jakarta` - Asia/Jakarta
	// * `Asia/Jayapura` - Asia/Jayapura
	// * `Asia/Jerusalem` - Asia/Jerusalem
	// * `Asia/Kabul` - Asia/Kabul
	// * `Asia/Kamchatka` - Asia/Kamchatka
	// * `Asia/Karachi` - Asia/Karachi
	// * `Asia/Kashgar` - Asia/Kashgar
	// * `Asia/Kathmandu` - Asia/Kathmandu
	// * `Asia/Katmandu` - Asia/Katmandu
	// * `Asia/Khandyga` - Asia/Khandyga
	// * `Asia/Kolkata` - Asia/Kolkata
	// * `Asia/Krasnoyarsk` - Asia/Krasnoyarsk
	// * `Asia/Kuala_Lumpur` - Asia/Kuala_Lumpur
	// * `Asia/Kuching` - Asia/Kuching
	// * `Asia/Kuwait` - Asia/Kuwait
	// * `Asia/Macao` - Asia/Macao
	// * `Asia/Macau` - Asia/Macau
	// * `Asia/Magadan` - Asia/Magadan
	// * `Asia/Makassar` - Asia/Makassar
	// * `Asia/Manila` - Asia/Manila
	// * `Asia/Muscat` - Asia/Muscat
	// * `Asia/Nicosia` - Asia/Nicosia
	// * `Asia/Novokuznetsk` - Asia/Novokuznetsk
	// * `Asia/Novosibirsk` - Asia/Novosibirsk
	// * `Asia/Omsk` - Asia/Omsk
	// * `Asia/Oral` - Asia/Oral
	// * `Asia/Phnom_Penh` - Asia/Phnom_Penh
	// * `Asia/Pontianak` - Asia/Pontianak
	// * `Asia/Pyongyang` - Asia/Pyongyang
	// * `Asia/Qatar` - Asia/Qatar
	// * `Asia/Qostanay` - Asia/Qostanay
	// * `Asia/Qyzylorda` - Asia/Qyzylorda
	// * `Asia/Rangoon` - Asia/Rangoon
	// * `Asia/Riyadh` - Asia/Riyadh
	// * `Asia/Saigon` - Asia/Saigon
	// * `Asia/Sakhalin` - Asia/Sakhalin
	// * `Asia/Samarkand` - Asia/Samarkand
	// * `Asia/Seoul` - Asia/Seoul
	// * `Asia/Shanghai` - Asia/Shanghai
	// * `Asia/Singapore` - Asia/Singapore
	// * `Asia/Srednekolymsk` - Asia/Srednekolymsk
	// * `Asia/Taipei` - Asia/Taipei
	// * `Asia/Tashkent` - Asia/Tashkent
	// * `Asia/Tbilisi` - Asia/Tbilisi
	// * `Asia/Tehran` - Asia/Tehran
	// * `Asia/Tel_Aviv` - Asia/Tel_Aviv
	// * `Asia/Thimbu` - Asia/Thimbu
	// * `Asia/Thimphu` - Asia/Thimphu
	// * `Asia/Tokyo` - Asia/Tokyo
	// * `Asia/Tomsk` - Asia/Tomsk
	// * `Asia/Ujung_Pandang` - Asia/Ujung_Pandang
	// * `Asia/Ulaanbaatar` - Asia/Ulaanbaatar
	// * `Asia/Ulan_Bator` - Asia/Ulan_Bator
	// * `Asia/Urumqi` - Asia/Urumqi
	// * `Asia/Ust-Nera` - Asia/Ust-Nera
	// * `Asia/Vientiane` - Asia/Vientiane
	// * `Asia/Vladivostok` - Asia/Vladivostok
	// * `Asia/Yakutsk` - Asia/Yakutsk
	// * `Asia/Yangon` - Asia/Yangon
	// * `Asia/Yekaterinburg` - Asia/Yekaterinburg
	// * `Asia/Yerevan` - Asia/Yerevan
	// * `Atlantic/Azores` - Atlantic/Azores
	// * `Atlantic/Bermuda` - Atlantic/Bermuda
	// * `Atlantic/Canary` - Atlantic/Canary
	// * `Atlantic/Cape_Verde` - Atlantic/Cape_Verde
	// * `Atlantic/Faeroe` - Atlantic/Faeroe
	// * `Atlantic/Faroe` - Atlantic/Faroe
	// * `Atlantic/Jan_Mayen` - Atlantic/Jan_Mayen
	// * `Atlantic/Madeira` - Atlantic/Madeira
	// * `Atlantic/Reykjavik` - Atlantic/Reykjavik
	// * `Atlantic/South_Georgia` - Atlantic/South_Georgia
	// * `Atlantic/St_Helena` - Atlantic/St_Helena
	// * `Atlantic/Stanley` - Atlantic/Stanley
	// * `Australia/ACT` - Australia/ACT
	// * `Australia/Adelaide` - Australia/Adelaide
	// * `Australia/Brisbane` - Australia/Brisbane
	// * `Australia/Broken_Hill` - Australia/Broken_Hill
	// * `Australia/Canberra` - Australia/Canberra
	// * `Australia/Currie` - Australia/Currie
	// * `Australia/Darwin` - Australia/Darwin
	// * `Australia/Eucla` - Australia/Eucla
	// * `Australia/Hobart` - Australia/Hobart
	// * `Australia/LHI` - Australia/LHI
	// * `Australia/Lindeman` - Australia/Lindeman
	// * `Australia/Lord_Howe` - Australia/Lord_Howe
	// * `Australia/Melbourne` - Australia/Melbourne
	// * `Australia/NSW` - Australia/NSW
	// * `Australia/North` - Australia/North
	// * `Australia/Perth` - Australia/Perth
	// * `Australia/Queensland` - Australia/Queensland
	// * `Australia/South` - Australia/South
	// * `Australia/Sydney` - Australia/Sydney
	// * `Australia/Tasmania` - Australia/Tasmania
	// * `Australia/Victoria` - Australia/Victoria
	// * `Australia/West` - Australia/West
	// * `Australia/Yancowinna` - Australia/Yancowinna
	// * `Brazil/Acre` - Brazil/Acre
	// * `Brazil/DeNoronha` - Brazil/DeNoronha
	// * `Brazil/East` - Brazil/East
	// * `Brazil/West` - Brazil/West
	// * `CET` - CET
	// * `CST6CDT` - CST6CDT
	// * `Canada/Atlantic` - Canada/Atlantic
	// * `Canada/Central` - Canada/Central
	// * `Canada/Eastern` - Canada/Eastern
	// * `Canada/Mountain` - Canada/Mountain
	// * `Canada/Newfoundland` - Canada/Newfoundland
	// * `Canada/Pacific` - Canada/Pacific
	// * `Canada/Saskatchewan` - Canada/Saskatchewan
	// * `Canada/Yukon` - Canada/Yukon
	// * `Chile/Continental` - Chile/Continental
	// * `Chile/EasterIsland` - Chile/EasterIsland
	// * `Cuba` - Cuba
	// * `EET` - EET
	// * `EST` - EST
	// * `EST5EDT` - EST5EDT
	// * `Egypt` - Egypt
	// * `Eire` - Eire
	// * `Etc/GMT` - Etc/GMT
	// * `Etc/GMT+0` - Etc/GMT+0
	// * `Etc/GMT+1` - Etc/GMT+1
	// * `Etc/GMT+10` - Etc/GMT+10
	// * `Etc/GMT+11` - Etc/GMT+11
	// * `Etc/GMT+12` - Etc/GMT+12
	// * `Etc/GMT+2` - Etc/GMT+2
	// * `Etc/GMT+3` - Etc/GMT+3
	// * `Etc/GMT+4` - Etc/GMT+4
	// * `Etc/GMT+5` - Etc/GMT+5
	// * `Etc/GMT+6` - Etc/GMT+6
	// * `Etc/GMT+7` - Etc/GMT+7
	// * `Etc/GMT+8` - Etc/GMT+8
	// * `Etc/GMT+9` - Etc/GMT+9
	// * `Etc/GMT-0` - Etc/GMT-0
	// * `Etc/GMT-1` - Etc/GMT-1
	// * `Etc/GMT-10` - Etc/GMT-10
	// * `Etc/GMT-11` - Etc/GMT-11
	// * `Etc/GMT-12` - Etc/GMT-12
	// * `Etc/GMT-13` - Etc/GMT-13
	// * `Etc/GMT-14` - Etc/GMT-14
	// * `Etc/GMT-2` - Etc/GMT-2
	// * `Etc/GMT-3` - Etc/GMT-3
	// * `Etc/GMT-4` - Etc/GMT-4
	// * `Etc/GMT-5` - Etc/GMT-5
	// * `Etc/GMT-6` - Etc/GMT-6
	// * `Etc/GMT-7` - Etc/GMT-7
	// * `Etc/GMT-8` - Etc/GMT-8
	// * `Etc/GMT-9` - Etc/GMT-9
	// * `Etc/GMT0` - Etc/GMT0
	// * `Etc/Greenwich` - Etc/Greenwich
	// * `Etc/UCT` - Etc/UCT
	// * `Etc/UTC` - Etc/UTC
	// * `Etc/Universal` - Etc/Universal
	// * `Etc/Zulu` - Etc/Zulu
	// * `Europe/Amsterdam` - Europe/Amsterdam
	// * `Europe/Andorra` - Europe/Andorra
	// * `Europe/Astrakhan` - Europe/Astrakhan
	// * `Europe/Athens` - Europe/Athens
	// * `Europe/Belfast` - Europe/Belfast
	// * `Europe/Belgrade` - Europe/Belgrade
	// * `Europe/Berlin` - Europe/Berlin
	// * `Europe/Bratislava` - Europe/Bratislava
	// * `Europe/Brussels` - Europe/Brussels
	// * `Europe/Bucharest` - Europe/Bucharest
	// * `Europe/Budapest` - Europe/Budapest
	// * `Europe/Busingen` - Europe/Busingen
	// * `Europe/Chisinau` - Europe/Chisinau
	// * `Europe/Copenhagen` - Europe/Copenhagen
	// * `Europe/Dublin` - Europe/Dublin
	// * `Europe/Gibraltar` - Europe/Gibraltar
	// * `Europe/Guernsey` - Europe/Guernsey
	// * `Europe/Helsinki` - Europe/Helsinki
	// * `Europe/Isle_of_Man` - Europe/Isle_of_Man
	// * `Europe/Istanbul` - Europe/Istanbul
	// * `Europe/Jersey` - Europe/Jersey
	// * `Europe/Kaliningrad` - Europe/Kaliningrad
	// * `Europe/Kiev` - Europe/Kiev
	// * `Europe/Kirov` - Europe/Kirov
	// * `Europe/Kyiv` - Europe/Kyiv
	// * `Europe/Lisbon` - Europe/Lisbon
	// * `Europe/Ljubljana` - Europe/Ljubljana
	// * `Europe/London` - Europe/London
	// * `Europe/Luxembourg` - Europe/Luxembourg
	// * `Europe/Madrid` - Europe/Madrid
	// * `Europe/Malta` - Europe/Malta
	// * `Europe/Mariehamn` - Europe/Mariehamn
	// * `Europe/Minsk` - Europe/Minsk
	// * `Europe/Monaco` - Europe/Monaco
	// * `Europe/Moscow` - Europe/Moscow
	// * `Europe/Nicosia` - Europe/Nicosia
	// * `Europe/Oslo` - Europe/Oslo
	// * `Europe/Paris` - Europe/Paris
	// * `Europe/Podgorica` - Europe/Podgorica
	// * `Europe/Prague` - Europe/Prague
	// * `Europe/Riga` - Europe/Riga
	// * `Europe/Rome` - Europe/Rome
	// * `Europe/Samara` - Europe/Samara
	// * `Europe/San_Marino` - Europe/San_Marino
	// * `Europe/Sarajevo` - Europe/Sarajevo
	// * `Europe/Saratov` - Europe/Saratov
	// * `Europe/Simferopol` - Europe/Simferopol
	// * `Europe/Skopje` - Europe/Skopje
	// * `Europe/Sofia` - Europe/Sofia
	// * `Europe/Stockholm` - Europe/Stockholm
	// * `Europe/Tallinn` - Europe/Tallinn
	// * `Europe/Tirane` - Europe/Tirane
	// * `Europe/Tiraspol` - Europe/Tiraspol
	// * `Europe/Ulyanovsk` - Europe/Ulyanovsk
	// * `Europe/Uzhgorod` - Europe/Uzhgorod
	// * `Europe/Vaduz` - Europe/Vaduz
	// * `Europe/Vatican` - Europe/Vatican
	// * `Europe/Vienna` - Europe/Vienna
	// * `Europe/Vilnius` - Europe/Vilnius
	// * `Europe/Volgograd` - Europe/Volgograd
	// * `Europe/Warsaw` - Europe/Warsaw
	// * `Europe/Zagreb` - Europe/Zagreb
	// * `Europe/Zaporozhye` - Europe/Zaporozhye
	// * `Europe/Zurich` - Europe/Zurich
	// * `GB` - GB
	// * `GB-Eire` - GB-Eire
	// * `GMT` - GMT
	// * `GMT+0` - GMT+0
	// * `GMT-0` - GMT-0
	// * `GMT0` - GMT0
	// * `Greenwich` - Greenwich
	// * `HST` - HST
	// * `Hongkong` - Hongkong
	// * `Iceland` - Iceland
	// * `Indian/Antananarivo` - Indian/Antananarivo
	// * `Indian/Chagos` - Indian/Chagos
	// * `Indian/Christmas` - Indian/Christmas
	// * `Indian/Cocos` - Indian/Cocos
	// * `Indian/Comoro` - Indian/Comoro
	// * `Indian/Kerguelen` - Indian/Kerguelen
	// * `Indian/Mahe` - Indian/Mahe
	// * `Indian/Maldives` - Indian/Maldives
	// * `Indian/Mauritius` - Indian/Mauritius
	// * `Indian/Mayotte` - Indian/Mayotte
	// * `Indian/Reunion` - Indian/Reunion
	// * `Iran` - Iran
	// * `Israel` - Israel
	// * `Jamaica` - Jamaica
	// * `Japan` - Japan
	// * `Kwajalein` - Kwajalein
	// * `Libya` - Libya
	// * `MET` - MET
	// * `MST` - MST
	// * `MST7MDT` - MST7MDT
	// * `Mexico/BajaNorte` - Mexico/BajaNorte
	// * `Mexico/BajaSur` - Mexico/BajaSur
	// * `Mexico/General` - Mexico/General
	// * `NZ` - NZ
	// * `NZ-CHAT` - NZ-CHAT
	// * `Navajo` - Navajo
	// * `PRC` - PRC
	// * `PST8PDT` - PST8PDT
	// * `Pacific/Apia` - Pacific/Apia
	// * `Pacific/Auckland` - Pacific/Auckland
	// * `Pacific/Bougainville` - Pacific/Bougainville
	// * `Pacific/Chatham` - Pacific/Chatham
	// * `Pacific/Chuuk` - Pacific/Chuuk
	// * `Pacific/Easter` - Pacific/Easter
	// * `Pacific/Efate` - Pacific/Efate
	// * `Pacific/Enderbury` - Pacific/Enderbury
	// * `Pacific/Fakaofo` - Pacific/Fakaofo
	// * `Pacific/Fiji` - Pacific/Fiji
	// * `Pacific/Funafuti` - Pacific/Funafuti
	// * `Pacific/Galapagos` - Pacific/Galapagos
	// * `Pacific/Gambier` - Pacific/Gambier
	// * `Pacific/Guadalcanal` - Pacific/Guadalcanal
	// * `Pacific/Guam` - Pacific/Guam
	// * `Pacific/Honolulu` - Pacific/Honolulu
	// * `Pacific/Johnston` - Pacific/Johnston
	// * `Pacific/Kanton` - Pacific/Kanton
	// * `Pacific/Kiritimati` - Pacific/Kiritimati
	// * `Pacific/Kosrae` - Pacific/Kosrae
	// * `Pacific/Kwajalein` - Pacific/Kwajalein
	// * `Pacific/Majuro` - Pacific/Majuro
	// * `Pacific/Marquesas` - Pacific/Marquesas
	// * `Pacific/Midway` - Pacific/Midway
	// * `Pacific/Nauru` - Pacific/Nauru
	// * `Pacific/Niue` - Pacific/Niue
	// * `Pacific/Norfolk` - Pacific/Norfolk
	// * `Pacific/Noumea` - Pacific/Noumea
	// * `Pacific/Pago_Pago` - Pacific/Pago_Pago
	// * `Pacific/Palau` - Pacific/Palau
	// * `Pacific/Pitcairn` - Pacific/Pitcairn
	// * `Pacific/Pohnpei` - Pacific/Pohnpei
	// * `Pacific/Ponape` - Pacific/Ponape
	// * `Pacific/Port_Moresby` - Pacific/Port_Moresby
	// * `Pacific/Rarotonga` - Pacific/Rarotonga
	// * `Pacific/Saipan` - Pacific/Saipan
	// * `Pacific/Samoa` - Pacific/Samoa
	// * `Pacific/Tahiti` - Pacific/Tahiti
	// * `Pacific/Tarawa` - Pacific/Tarawa
	// * `Pacific/Tongatapu` - Pacific/Tongatapu
	// * `Pacific/Truk` - Pacific/Truk
	// * `Pacific/Wake` - Pacific/Wake
	// * `Pacific/Wallis` - Pacific/Wallis
	// * `Pacific/Yap` - Pacific/Yap
	// * `Poland` - Poland
	// * `Portugal` - Portugal
	// * `ROC` - ROC
	// * `ROK` - ROK
	// * `Singapore` - Singapore
	// * `Turkey` - Turkey
	// * `UCT` - UCT
	// * `US/Alaska` - US/Alaska
	// * `US/Aleutian` - US/Aleutian
	// * `US/Arizona` - US/Arizona
	// * `US/Central` - US/Central
	// * `US/East-Indiana` - US/East-Indiana
	// * `US/Eastern` - US/Eastern
	// * `US/Hawaii` - US/Hawaii
	// * `US/Indiana-Starke` - US/Indiana-Starke
	// * `US/Michigan` - US/Michigan
	// * `US/Mountain` - US/Mountain
	// * `US/Pacific` - US/Pacific
	// * `US/Samoa` - US/Samoa
	// * `UTC` - UTC
	// * `Universal` - Universal
	// * `W-SU` - W-SU
	// * `WET` - WET
	// * `Zulu` - Zulu
	TimeZone *SystemSettingsRequestTimeZone `json:"time_zone,omitempty"`

	// UppercaseCharacterRequired Requires user passwords to contain at least one uppercase letter (A-Z).
	UppercaseCharacterRequired *bool `json:"uppercase_character_required,omitempty"`

	// UrlPrefix URL prefix if DefectDojo is installed in it's own virtual subdirectory.
	UrlPrefix *string `json:"url_prefix,omitempty"`
}

SystemSettingsRequest defines model for SystemSettingsRequest.

type SystemSettingsRequestJiraMinimumSeverity added in v0.2.0

type SystemSettingsRequestJiraMinimumSeverity string

SystemSettingsRequestJiraMinimumSeverity * `Critical` - Critical * `High` - High * `Medium` - Medium * `Low` - Low * `Info` - Info

const (
	SystemSettingsRequestJiraMinimumSeverityCritical SystemSettingsRequestJiraMinimumSeverity = "Critical"
	SystemSettingsRequestJiraMinimumSeverityEmpty    SystemSettingsRequestJiraMinimumSeverity = ""
	SystemSettingsRequestJiraMinimumSeverityHigh     SystemSettingsRequestJiraMinimumSeverity = "High"
	SystemSettingsRequestJiraMinimumSeverityInfo     SystemSettingsRequestJiraMinimumSeverity = "Info"
	SystemSettingsRequestJiraMinimumSeverityLow      SystemSettingsRequestJiraMinimumSeverity = "Low"
	SystemSettingsRequestJiraMinimumSeverityMedium   SystemSettingsRequestJiraMinimumSeverity = "Medium"
	SystemSettingsRequestJiraMinimumSeverityNil      SystemSettingsRequestJiraMinimumSeverity = "<nil>"
)

Defines values for SystemSettingsRequestJiraMinimumSeverity.

type SystemSettingsRequestTimeZone added in v0.2.0

type SystemSettingsRequestTimeZone string

SystemSettingsRequestTimeZone * `Africa/Abidjan` - Africa/Abidjan * `Africa/Accra` - Africa/Accra * `Africa/Addis_Ababa` - Africa/Addis_Ababa * `Africa/Algiers` - Africa/Algiers * `Africa/Asmara` - Africa/Asmara * `Africa/Asmera` - Africa/Asmera * `Africa/Bamako` - Africa/Bamako * `Africa/Bangui` - Africa/Bangui * `Africa/Banjul` - Africa/Banjul * `Africa/Bissau` - Africa/Bissau * `Africa/Blantyre` - Africa/Blantyre * `Africa/Brazzaville` - Africa/Brazzaville * `Africa/Bujumbura` - Africa/Bujumbura * `Africa/Cairo` - Africa/Cairo * `Africa/Casablanca` - Africa/Casablanca * `Africa/Ceuta` - Africa/Ceuta * `Africa/Conakry` - Africa/Conakry * `Africa/Dakar` - Africa/Dakar * `Africa/Dar_es_Salaam` - Africa/Dar_es_Salaam * `Africa/Djibouti` - Africa/Djibouti * `Africa/Douala` - Africa/Douala * `Africa/El_Aaiun` - Africa/El_Aaiun * `Africa/Freetown` - Africa/Freetown * `Africa/Gaborone` - Africa/Gaborone * `Africa/Harare` - Africa/Harare * `Africa/Johannesburg` - Africa/Johannesburg * `Africa/Juba` - Africa/Juba * `Africa/Kampala` - Africa/Kampala * `Africa/Khartoum` - Africa/Khartoum * `Africa/Kigali` - Africa/Kigali * `Africa/Kinshasa` - Africa/Kinshasa * `Africa/Lagos` - Africa/Lagos * `Africa/Libreville` - Africa/Libreville * `Africa/Lome` - Africa/Lome * `Africa/Luanda` - Africa/Luanda * `Africa/Lubumbashi` - Africa/Lubumbashi * `Africa/Lusaka` - Africa/Lusaka * `Africa/Malabo` - Africa/Malabo * `Africa/Maputo` - Africa/Maputo * `Africa/Maseru` - Africa/Maseru * `Africa/Mbabane` - Africa/Mbabane * `Africa/Mogadishu` - Africa/Mogadishu * `Africa/Monrovia` - Africa/Monrovia * `Africa/Nairobi` - Africa/Nairobi * `Africa/Ndjamena` - Africa/Ndjamena * `Africa/Niamey` - Africa/Niamey * `Africa/Nouakchott` - Africa/Nouakchott * `Africa/Ouagadougou` - Africa/Ouagadougou * `Africa/Porto-Novo` - Africa/Porto-Novo * `Africa/Sao_Tome` - Africa/Sao_Tome * `Africa/Timbuktu` - Africa/Timbuktu * `Africa/Tripoli` - Africa/Tripoli * `Africa/Tunis` - Africa/Tunis * `Africa/Windhoek` - Africa/Windhoek * `America/Adak` - America/Adak * `America/Anchorage` - America/Anchorage * `America/Anguilla` - America/Anguilla * `America/Antigua` - America/Antigua * `America/Araguaina` - America/Araguaina * `America/Argentina/Buenos_Aires` - America/Argentina/Buenos_Aires * `America/Argentina/Catamarca` - America/Argentina/Catamarca * `America/Argentina/ComodRivadavia` - America/Argentina/ComodRivadavia * `America/Argentina/Cordoba` - America/Argentina/Cordoba * `America/Argentina/Jujuy` - America/Argentina/Jujuy * `America/Argentina/La_Rioja` - America/Argentina/La_Rioja * `America/Argentina/Mendoza` - America/Argentina/Mendoza * `America/Argentina/Rio_Gallegos` - America/Argentina/Rio_Gallegos * `America/Argentina/Salta` - America/Argentina/Salta * `America/Argentina/San_Juan` - America/Argentina/San_Juan * `America/Argentina/San_Luis` - America/Argentina/San_Luis * `America/Argentina/Tucuman` - America/Argentina/Tucuman * `America/Argentina/Ushuaia` - America/Argentina/Ushuaia * `America/Aruba` - America/Aruba * `America/Asuncion` - America/Asuncion * `America/Atikokan` - America/Atikokan * `America/Atka` - America/Atka * `America/Bahia` - America/Bahia * `America/Bahia_Banderas` - America/Bahia_Banderas * `America/Barbados` - America/Barbados * `America/Belem` - America/Belem * `America/Belize` - America/Belize * `America/Blanc-Sablon` - America/Blanc-Sablon * `America/Boa_Vista` - America/Boa_Vista * `America/Bogota` - America/Bogota * `America/Boise` - America/Boise * `America/Buenos_Aires` - America/Buenos_Aires * `America/Cambridge_Bay` - America/Cambridge_Bay * `America/Campo_Grande` - America/Campo_Grande * `America/Cancun` - America/Cancun * `America/Caracas` - America/Caracas * `America/Catamarca` - America/Catamarca * `America/Cayenne` - America/Cayenne * `America/Cayman` - America/Cayman * `America/Chicago` - America/Chicago * `America/Chihuahua` - America/Chihuahua * `America/Ciudad_Juarez` - America/Ciudad_Juarez * `America/Coral_Harbour` - America/Coral_Harbour * `America/Cordoba` - America/Cordoba * `America/Costa_Rica` - America/Costa_Rica * `America/Creston` - America/Creston * `America/Cuiaba` - America/Cuiaba * `America/Curacao` - America/Curacao * `America/Danmarkshavn` - America/Danmarkshavn * `America/Dawson` - America/Dawson * `America/Dawson_Creek` - America/Dawson_Creek * `America/Denver` - America/Denver * `America/Detroit` - America/Detroit * `America/Dominica` - America/Dominica * `America/Edmonton` - America/Edmonton * `America/Eirunepe` - America/Eirunepe * `America/El_Salvador` - America/El_Salvador * `America/Ensenada` - America/Ensenada * `America/Fort_Nelson` - America/Fort_Nelson * `America/Fort_Wayne` - America/Fort_Wayne * `America/Fortaleza` - America/Fortaleza * `America/Glace_Bay` - America/Glace_Bay * `America/Godthab` - America/Godthab * `America/Goose_Bay` - America/Goose_Bay * `America/Grand_Turk` - America/Grand_Turk * `America/Grenada` - America/Grenada * `America/Guadeloupe` - America/Guadeloupe * `America/Guatemala` - America/Guatemala * `America/Guayaquil` - America/Guayaquil * `America/Guyana` - America/Guyana * `America/Halifax` - America/Halifax * `America/Havana` - America/Havana * `America/Hermosillo` - America/Hermosillo * `America/Indiana/Indianapolis` - America/Indiana/Indianapolis * `America/Indiana/Knox` - America/Indiana/Knox * `America/Indiana/Marengo` - America/Indiana/Marengo * `America/Indiana/Petersburg` - America/Indiana/Petersburg * `America/Indiana/Tell_City` - America/Indiana/Tell_City * `America/Indiana/Vevay` - America/Indiana/Vevay * `America/Indiana/Vincennes` - America/Indiana/Vincennes * `America/Indiana/Winamac` - America/Indiana/Winamac * `America/Indianapolis` - America/Indianapolis * `America/Inuvik` - America/Inuvik * `America/Iqaluit` - America/Iqaluit * `America/Jamaica` - America/Jamaica * `America/Jujuy` - America/Jujuy * `America/Juneau` - America/Juneau * `America/Kentucky/Louisville` - America/Kentucky/Louisville * `America/Kentucky/Monticello` - America/Kentucky/Monticello * `America/Knox_IN` - America/Knox_IN * `America/Kralendijk` - America/Kralendijk * `America/La_Paz` - America/La_Paz * `America/Lima` - America/Lima * `America/Los_Angeles` - America/Los_Angeles * `America/Louisville` - America/Louisville * `America/Lower_Princes` - America/Lower_Princes * `America/Maceio` - America/Maceio * `America/Managua` - America/Managua * `America/Manaus` - America/Manaus * `America/Marigot` - America/Marigot * `America/Martinique` - America/Martinique * `America/Matamoros` - America/Matamoros * `America/Mazatlan` - America/Mazatlan * `America/Mendoza` - America/Mendoza * `America/Menominee` - America/Menominee * `America/Merida` - America/Merida * `America/Metlakatla` - America/Metlakatla * `America/Mexico_City` - America/Mexico_City * `America/Miquelon` - America/Miquelon * `America/Moncton` - America/Moncton * `America/Monterrey` - America/Monterrey * `America/Montevideo` - America/Montevideo * `America/Montreal` - America/Montreal * `America/Montserrat` - America/Montserrat * `America/Nassau` - America/Nassau * `America/New_York` - America/New_York * `America/Nipigon` - America/Nipigon * `America/Nome` - America/Nome * `America/Noronha` - America/Noronha * `America/North_Dakota/Beulah` - America/North_Dakota/Beulah * `America/North_Dakota/Center` - America/North_Dakota/Center * `America/North_Dakota/New_Salem` - America/North_Dakota/New_Salem * `America/Nuuk` - America/Nuuk * `America/Ojinaga` - America/Ojinaga * `America/Panama` - America/Panama * `America/Pangnirtung` - America/Pangnirtung * `America/Paramaribo` - America/Paramaribo * `America/Phoenix` - America/Phoenix * `America/Port-au-Prince` - America/Port-au-Prince * `America/Port_of_Spain` - America/Port_of_Spain * `America/Porto_Acre` - America/Porto_Acre * `America/Porto_Velho` - America/Porto_Velho * `America/Puerto_Rico` - America/Puerto_Rico * `America/Punta_Arenas` - America/Punta_Arenas * `America/Rainy_River` - America/Rainy_River * `America/Rankin_Inlet` - America/Rankin_Inlet * `America/Recife` - America/Recife * `America/Regina` - America/Regina * `America/Resolute` - America/Resolute * `America/Rio_Branco` - America/Rio_Branco * `America/Rosario` - America/Rosario * `America/Santa_Isabel` - America/Santa_Isabel * `America/Santarem` - America/Santarem * `America/Santiago` - America/Santiago * `America/Santo_Domingo` - America/Santo_Domingo * `America/Sao_Paulo` - America/Sao_Paulo * `America/Scoresbysund` - America/Scoresbysund * `America/Shiprock` - America/Shiprock * `America/Sitka` - America/Sitka * `America/St_Barthelemy` - America/St_Barthelemy * `America/St_Johns` - America/St_Johns * `America/St_Kitts` - America/St_Kitts * `America/St_Lucia` - America/St_Lucia * `America/St_Thomas` - America/St_Thomas * `America/St_Vincent` - America/St_Vincent * `America/Swift_Current` - America/Swift_Current * `America/Tegucigalpa` - America/Tegucigalpa * `America/Thule` - America/Thule * `America/Thunder_Bay` - America/Thunder_Bay * `America/Tijuana` - America/Tijuana * `America/Toronto` - America/Toronto * `America/Tortola` - America/Tortola * `America/Vancouver` - America/Vancouver * `America/Virgin` - America/Virgin * `America/Whitehorse` - America/Whitehorse * `America/Winnipeg` - America/Winnipeg * `America/Yakutat` - America/Yakutat * `America/Yellowknife` - America/Yellowknife * `Antarctica/Casey` - Antarctica/Casey * `Antarctica/Davis` - Antarctica/Davis * `Antarctica/DumontDUrville` - Antarctica/DumontDUrville * `Antarctica/Macquarie` - Antarctica/Macquarie * `Antarctica/Mawson` - Antarctica/Mawson * `Antarctica/McMurdo` - Antarctica/McMurdo * `Antarctica/Palmer` - Antarctica/Palmer * `Antarctica/Rothera` - Antarctica/Rothera * `Antarctica/South_Pole` - Antarctica/South_Pole * `Antarctica/Syowa` - Antarctica/Syowa * `Antarctica/Troll` - Antarctica/Troll * `Antarctica/Vostok` - Antarctica/Vostok * `Arctic/Longyearbyen` - Arctic/Longyearbyen * `Asia/Aden` - Asia/Aden * `Asia/Almaty` - Asia/Almaty * `Asia/Amman` - Asia/Amman * `Asia/Anadyr` - Asia/Anadyr * `Asia/Aqtau` - Asia/Aqtau * `Asia/Aqtobe` - Asia/Aqtobe * `Asia/Ashgabat` - Asia/Ashgabat * `Asia/Ashkhabad` - Asia/Ashkhabad * `Asia/Atyrau` - Asia/Atyrau * `Asia/Baghdad` - Asia/Baghdad * `Asia/Bahrain` - Asia/Bahrain * `Asia/Baku` - Asia/Baku * `Asia/Bangkok` - Asia/Bangkok * `Asia/Barnaul` - Asia/Barnaul * `Asia/Beirut` - Asia/Beirut * `Asia/Bishkek` - Asia/Bishkek * `Asia/Brunei` - Asia/Brunei * `Asia/Calcutta` - Asia/Calcutta * `Asia/Chita` - Asia/Chita * `Asia/Choibalsan` - Asia/Choibalsan * `Asia/Chongqing` - Asia/Chongqing * `Asia/Chungking` - Asia/Chungking * `Asia/Colombo` - Asia/Colombo * `Asia/Dacca` - Asia/Dacca * `Asia/Damascus` - Asia/Damascus * `Asia/Dhaka` - Asia/Dhaka * `Asia/Dili` - Asia/Dili * `Asia/Dubai` - Asia/Dubai * `Asia/Dushanbe` - Asia/Dushanbe * `Asia/Famagusta` - Asia/Famagusta * `Asia/Gaza` - Asia/Gaza * `Asia/Harbin` - Asia/Harbin * `Asia/Hebron` - Asia/Hebron * `Asia/Ho_Chi_Minh` - Asia/Ho_Chi_Minh * `Asia/Hong_Kong` - Asia/Hong_Kong * `Asia/Hovd` - Asia/Hovd * `Asia/Irkutsk` - Asia/Irkutsk * `Asia/Istanbul` - Asia/Istanbul * `Asia/Jakarta` - Asia/Jakarta * `Asia/Jayapura` - Asia/Jayapura * `Asia/Jerusalem` - Asia/Jerusalem * `Asia/Kabul` - Asia/Kabul * `Asia/Kamchatka` - Asia/Kamchatka * `Asia/Karachi` - Asia/Karachi * `Asia/Kashgar` - Asia/Kashgar * `Asia/Kathmandu` - Asia/Kathmandu * `Asia/Katmandu` - Asia/Katmandu * `Asia/Khandyga` - Asia/Khandyga * `Asia/Kolkata` - Asia/Kolkata * `Asia/Krasnoyarsk` - Asia/Krasnoyarsk * `Asia/Kuala_Lumpur` - Asia/Kuala_Lumpur * `Asia/Kuching` - Asia/Kuching * `Asia/Kuwait` - Asia/Kuwait * `Asia/Macao` - Asia/Macao * `Asia/Macau` - Asia/Macau * `Asia/Magadan` - Asia/Magadan * `Asia/Makassar` - Asia/Makassar * `Asia/Manila` - Asia/Manila * `Asia/Muscat` - Asia/Muscat * `Asia/Nicosia` - Asia/Nicosia * `Asia/Novokuznetsk` - Asia/Novokuznetsk * `Asia/Novosibirsk` - Asia/Novosibirsk * `Asia/Omsk` - Asia/Omsk * `Asia/Oral` - Asia/Oral * `Asia/Phnom_Penh` - Asia/Phnom_Penh * `Asia/Pontianak` - Asia/Pontianak * `Asia/Pyongyang` - Asia/Pyongyang * `Asia/Qatar` - Asia/Qatar * `Asia/Qostanay` - Asia/Qostanay * `Asia/Qyzylorda` - Asia/Qyzylorda * `Asia/Rangoon` - Asia/Rangoon * `Asia/Riyadh` - Asia/Riyadh * `Asia/Saigon` - Asia/Saigon * `Asia/Sakhalin` - Asia/Sakhalin * `Asia/Samarkand` - Asia/Samarkand * `Asia/Seoul` - Asia/Seoul * `Asia/Shanghai` - Asia/Shanghai * `Asia/Singapore` - Asia/Singapore * `Asia/Srednekolymsk` - Asia/Srednekolymsk * `Asia/Taipei` - Asia/Taipei * `Asia/Tashkent` - Asia/Tashkent * `Asia/Tbilisi` - Asia/Tbilisi * `Asia/Tehran` - Asia/Tehran * `Asia/Tel_Aviv` - Asia/Tel_Aviv * `Asia/Thimbu` - Asia/Thimbu * `Asia/Thimphu` - Asia/Thimphu * `Asia/Tokyo` - Asia/Tokyo * `Asia/Tomsk` - Asia/Tomsk * `Asia/Ujung_Pandang` - Asia/Ujung_Pandang * `Asia/Ulaanbaatar` - Asia/Ulaanbaatar * `Asia/Ulan_Bator` - Asia/Ulan_Bator * `Asia/Urumqi` - Asia/Urumqi * `Asia/Ust-Nera` - Asia/Ust-Nera * `Asia/Vientiane` - Asia/Vientiane * `Asia/Vladivostok` - Asia/Vladivostok * `Asia/Yakutsk` - Asia/Yakutsk * `Asia/Yangon` - Asia/Yangon * `Asia/Yekaterinburg` - Asia/Yekaterinburg * `Asia/Yerevan` - Asia/Yerevan * `Atlantic/Azores` - Atlantic/Azores * `Atlantic/Bermuda` - Atlantic/Bermuda * `Atlantic/Canary` - Atlantic/Canary * `Atlantic/Cape_Verde` - Atlantic/Cape_Verde * `Atlantic/Faeroe` - Atlantic/Faeroe * `Atlantic/Faroe` - Atlantic/Faroe * `Atlantic/Jan_Mayen` - Atlantic/Jan_Mayen * `Atlantic/Madeira` - Atlantic/Madeira * `Atlantic/Reykjavik` - Atlantic/Reykjavik * `Atlantic/South_Georgia` - Atlantic/South_Georgia * `Atlantic/St_Helena` - Atlantic/St_Helena * `Atlantic/Stanley` - Atlantic/Stanley * `Australia/ACT` - Australia/ACT * `Australia/Adelaide` - Australia/Adelaide * `Australia/Brisbane` - Australia/Brisbane * `Australia/Broken_Hill` - Australia/Broken_Hill * `Australia/Canberra` - Australia/Canberra * `Australia/Currie` - Australia/Currie * `Australia/Darwin` - Australia/Darwin * `Australia/Eucla` - Australia/Eucla * `Australia/Hobart` - Australia/Hobart * `Australia/LHI` - Australia/LHI * `Australia/Lindeman` - Australia/Lindeman * `Australia/Lord_Howe` - Australia/Lord_Howe * `Australia/Melbourne` - Australia/Melbourne * `Australia/NSW` - Australia/NSW * `Australia/North` - Australia/North * `Australia/Perth` - Australia/Perth * `Australia/Queensland` - Australia/Queensland * `Australia/South` - Australia/South * `Australia/Sydney` - Australia/Sydney * `Australia/Tasmania` - Australia/Tasmania * `Australia/Victoria` - Australia/Victoria * `Australia/West` - Australia/West * `Australia/Yancowinna` - Australia/Yancowinna * `Brazil/Acre` - Brazil/Acre * `Brazil/DeNoronha` - Brazil/DeNoronha * `Brazil/East` - Brazil/East * `Brazil/West` - Brazil/West * `CET` - CET * `CST6CDT` - CST6CDT * `Canada/Atlantic` - Canada/Atlantic * `Canada/Central` - Canada/Central * `Canada/Eastern` - Canada/Eastern * `Canada/Mountain` - Canada/Mountain * `Canada/Newfoundland` - Canada/Newfoundland * `Canada/Pacific` - Canada/Pacific * `Canada/Saskatchewan` - Canada/Saskatchewan * `Canada/Yukon` - Canada/Yukon * `Chile/Continental` - Chile/Continental * `Chile/EasterIsland` - Chile/EasterIsland * `Cuba` - Cuba * `EET` - EET * `EST` - EST * `EST5EDT` - EST5EDT * `Egypt` - Egypt * `Eire` - Eire * `Etc/GMT` - Etc/GMT * `Etc/GMT+0` - Etc/GMT+0 * `Etc/GMT+1` - Etc/GMT+1 * `Etc/GMT+10` - Etc/GMT+10 * `Etc/GMT+11` - Etc/GMT+11 * `Etc/GMT+12` - Etc/GMT+12 * `Etc/GMT+2` - Etc/GMT+2 * `Etc/GMT+3` - Etc/GMT+3 * `Etc/GMT+4` - Etc/GMT+4 * `Etc/GMT+5` - Etc/GMT+5 * `Etc/GMT+6` - Etc/GMT+6 * `Etc/GMT+7` - Etc/GMT+7 * `Etc/GMT+8` - Etc/GMT+8 * `Etc/GMT+9` - Etc/GMT+9 * `Etc/GMT-0` - Etc/GMT-0 * `Etc/GMT-1` - Etc/GMT-1 * `Etc/GMT-10` - Etc/GMT-10 * `Etc/GMT-11` - Etc/GMT-11 * `Etc/GMT-12` - Etc/GMT-12 * `Etc/GMT-13` - Etc/GMT-13 * `Etc/GMT-14` - Etc/GMT-14 * `Etc/GMT-2` - Etc/GMT-2 * `Etc/GMT-3` - Etc/GMT-3 * `Etc/GMT-4` - Etc/GMT-4 * `Etc/GMT-5` - Etc/GMT-5 * `Etc/GMT-6` - Etc/GMT-6 * `Etc/GMT-7` - Etc/GMT-7 * `Etc/GMT-8` - Etc/GMT-8 * `Etc/GMT-9` - Etc/GMT-9 * `Etc/GMT0` - Etc/GMT0 * `Etc/Greenwich` - Etc/Greenwich * `Etc/UCT` - Etc/UCT * `Etc/UTC` - Etc/UTC * `Etc/Universal` - Etc/Universal * `Etc/Zulu` - Etc/Zulu * `Europe/Amsterdam` - Europe/Amsterdam * `Europe/Andorra` - Europe/Andorra * `Europe/Astrakhan` - Europe/Astrakhan * `Europe/Athens` - Europe/Athens * `Europe/Belfast` - Europe/Belfast * `Europe/Belgrade` - Europe/Belgrade * `Europe/Berlin` - Europe/Berlin * `Europe/Bratislava` - Europe/Bratislava * `Europe/Brussels` - Europe/Brussels * `Europe/Bucharest` - Europe/Bucharest * `Europe/Budapest` - Europe/Budapest * `Europe/Busingen` - Europe/Busingen * `Europe/Chisinau` - Europe/Chisinau * `Europe/Copenhagen` - Europe/Copenhagen * `Europe/Dublin` - Europe/Dublin * `Europe/Gibraltar` - Europe/Gibraltar * `Europe/Guernsey` - Europe/Guernsey * `Europe/Helsinki` - Europe/Helsinki * `Europe/Isle_of_Man` - Europe/Isle_of_Man * `Europe/Istanbul` - Europe/Istanbul * `Europe/Jersey` - Europe/Jersey * `Europe/Kaliningrad` - Europe/Kaliningrad * `Europe/Kiev` - Europe/Kiev * `Europe/Kirov` - Europe/Kirov * `Europe/Kyiv` - Europe/Kyiv * `Europe/Lisbon` - Europe/Lisbon * `Europe/Ljubljana` - Europe/Ljubljana * `Europe/London` - Europe/London * `Europe/Luxembourg` - Europe/Luxembourg * `Europe/Madrid` - Europe/Madrid * `Europe/Malta` - Europe/Malta * `Europe/Mariehamn` - Europe/Mariehamn * `Europe/Minsk` - Europe/Minsk * `Europe/Monaco` - Europe/Monaco * `Europe/Moscow` - Europe/Moscow * `Europe/Nicosia` - Europe/Nicosia * `Europe/Oslo` - Europe/Oslo * `Europe/Paris` - Europe/Paris * `Europe/Podgorica` - Europe/Podgorica * `Europe/Prague` - Europe/Prague * `Europe/Riga` - Europe/Riga * `Europe/Rome` - Europe/Rome * `Europe/Samara` - Europe/Samara * `Europe/San_Marino` - Europe/San_Marino * `Europe/Sarajevo` - Europe/Sarajevo * `Europe/Saratov` - Europe/Saratov * `Europe/Simferopol` - Europe/Simferopol * `Europe/Skopje` - Europe/Skopje * `Europe/Sofia` - Europe/Sofia * `Europe/Stockholm` - Europe/Stockholm * `Europe/Tallinn` - Europe/Tallinn * `Europe/Tirane` - Europe/Tirane * `Europe/Tiraspol` - Europe/Tiraspol * `Europe/Ulyanovsk` - Europe/Ulyanovsk * `Europe/Uzhgorod` - Europe/Uzhgorod * `Europe/Vaduz` - Europe/Vaduz * `Europe/Vatican` - Europe/Vatican * `Europe/Vienna` - Europe/Vienna * `Europe/Vilnius` - Europe/Vilnius * `Europe/Volgograd` - Europe/Volgograd * `Europe/Warsaw` - Europe/Warsaw * `Europe/Zagreb` - Europe/Zagreb * `Europe/Zaporozhye` - Europe/Zaporozhye * `Europe/Zurich` - Europe/Zurich * `GB` - GB * `GB-Eire` - GB-Eire * `GMT` - GMT * `GMT+0` - GMT+0 * `GMT-0` - GMT-0 * `GMT0` - GMT0 * `Greenwich` - Greenwich * `HST` - HST * `Hongkong` - Hongkong * `Iceland` - Iceland * `Indian/Antananarivo` - Indian/Antananarivo * `Indian/Chagos` - Indian/Chagos * `Indian/Christmas` - Indian/Christmas * `Indian/Cocos` - Indian/Cocos * `Indian/Comoro` - Indian/Comoro * `Indian/Kerguelen` - Indian/Kerguelen * `Indian/Mahe` - Indian/Mahe * `Indian/Maldives` - Indian/Maldives * `Indian/Mauritius` - Indian/Mauritius * `Indian/Mayotte` - Indian/Mayotte * `Indian/Reunion` - Indian/Reunion * `Iran` - Iran * `Israel` - Israel * `Jamaica` - Jamaica * `Japan` - Japan * `Kwajalein` - Kwajalein * `Libya` - Libya * `MET` - MET * `MST` - MST * `MST7MDT` - MST7MDT * `Mexico/BajaNorte` - Mexico/BajaNorte * `Mexico/BajaSur` - Mexico/BajaSur * `Mexico/General` - Mexico/General * `NZ` - NZ * `NZ-CHAT` - NZ-CHAT * `Navajo` - Navajo * `PRC` - PRC * `PST8PDT` - PST8PDT * `Pacific/Apia` - Pacific/Apia * `Pacific/Auckland` - Pacific/Auckland * `Pacific/Bougainville` - Pacific/Bougainville * `Pacific/Chatham` - Pacific/Chatham * `Pacific/Chuuk` - Pacific/Chuuk * `Pacific/Easter` - Pacific/Easter * `Pacific/Efate` - Pacific/Efate * `Pacific/Enderbury` - Pacific/Enderbury * `Pacific/Fakaofo` - Pacific/Fakaofo * `Pacific/Fiji` - Pacific/Fiji * `Pacific/Funafuti` - Pacific/Funafuti * `Pacific/Galapagos` - Pacific/Galapagos * `Pacific/Gambier` - Pacific/Gambier * `Pacific/Guadalcanal` - Pacific/Guadalcanal * `Pacific/Guam` - Pacific/Guam * `Pacific/Honolulu` - Pacific/Honolulu * `Pacific/Johnston` - Pacific/Johnston * `Pacific/Kanton` - Pacific/Kanton * `Pacific/Kiritimati` - Pacific/Kiritimati * `Pacific/Kosrae` - Pacific/Kosrae * `Pacific/Kwajalein` - Pacific/Kwajalein * `Pacific/Majuro` - Pacific/Majuro * `Pacific/Marquesas` - Pacific/Marquesas * `Pacific/Midway` - Pacific/Midway * `Pacific/Nauru` - Pacific/Nauru * `Pacific/Niue` - Pacific/Niue * `Pacific/Norfolk` - Pacific/Norfolk * `Pacific/Noumea` - Pacific/Noumea * `Pacific/Pago_Pago` - Pacific/Pago_Pago * `Pacific/Palau` - Pacific/Palau * `Pacific/Pitcairn` - Pacific/Pitcairn * `Pacific/Pohnpei` - Pacific/Pohnpei * `Pacific/Ponape` - Pacific/Ponape * `Pacific/Port_Moresby` - Pacific/Port_Moresby * `Pacific/Rarotonga` - Pacific/Rarotonga * `Pacific/Saipan` - Pacific/Saipan * `Pacific/Samoa` - Pacific/Samoa * `Pacific/Tahiti` - Pacific/Tahiti * `Pacific/Tarawa` - Pacific/Tarawa * `Pacific/Tongatapu` - Pacific/Tongatapu * `Pacific/Truk` - Pacific/Truk * `Pacific/Wake` - Pacific/Wake * `Pacific/Wallis` - Pacific/Wallis * `Pacific/Yap` - Pacific/Yap * `Poland` - Poland * `Portugal` - Portugal * `ROC` - ROC * `ROK` - ROK * `Singapore` - Singapore * `Turkey` - Turkey * `UCT` - UCT * `US/Alaska` - US/Alaska * `US/Aleutian` - US/Aleutian * `US/Arizona` - US/Arizona * `US/Central` - US/Central * `US/East-Indiana` - US/East-Indiana * `US/Eastern` - US/Eastern * `US/Hawaii` - US/Hawaii * `US/Indiana-Starke` - US/Indiana-Starke * `US/Michigan` - US/Michigan * `US/Mountain` - US/Mountain * `US/Pacific` - US/Pacific * `US/Samoa` - US/Samoa * `UTC` - UTC * `Universal` - Universal * `W-SU` - W-SU * `WET` - WET * `Zulu` - Zulu

const (
	AfricaAbidjan                  SystemSettingsRequestTimeZone = "Africa/Abidjan"
	AfricaAccra                    SystemSettingsRequestTimeZone = "Africa/Accra"
	AfricaAddisAbaba               SystemSettingsRequestTimeZone = "Africa/Addis_Ababa"
	AfricaAlgiers                  SystemSettingsRequestTimeZone = "Africa/Algiers"
	AfricaAsmara                   SystemSettingsRequestTimeZone = "Africa/Asmara"
	AfricaAsmera                   SystemSettingsRequestTimeZone = "Africa/Asmera"
	AfricaBamako                   SystemSettingsRequestTimeZone = "Africa/Bamako"
	AfricaBangui                   SystemSettingsRequestTimeZone = "Africa/Bangui"
	AfricaBanjul                   SystemSettingsRequestTimeZone = "Africa/Banjul"
	AfricaBissau                   SystemSettingsRequestTimeZone = "Africa/Bissau"
	AfricaBlantyre                 SystemSettingsRequestTimeZone = "Africa/Blantyre"
	AfricaBrazzaville              SystemSettingsRequestTimeZone = "Africa/Brazzaville"
	AfricaBujumbura                SystemSettingsRequestTimeZone = "Africa/Bujumbura"
	AfricaCairo                    SystemSettingsRequestTimeZone = "Africa/Cairo"
	AfricaCasablanca               SystemSettingsRequestTimeZone = "Africa/Casablanca"
	AfricaCeuta                    SystemSettingsRequestTimeZone = "Africa/Ceuta"
	AfricaConakry                  SystemSettingsRequestTimeZone = "Africa/Conakry"
	AfricaDakar                    SystemSettingsRequestTimeZone = "Africa/Dakar"
	AfricaDarEsSalaam              SystemSettingsRequestTimeZone = "Africa/Dar_es_Salaam"
	AfricaDjibouti                 SystemSettingsRequestTimeZone = "Africa/Djibouti"
	AfricaDouala                   SystemSettingsRequestTimeZone = "Africa/Douala"
	AfricaElAaiun                  SystemSettingsRequestTimeZone = "Africa/El_Aaiun"
	AfricaFreetown                 SystemSettingsRequestTimeZone = "Africa/Freetown"
	AfricaGaborone                 SystemSettingsRequestTimeZone = "Africa/Gaborone"
	AfricaHarare                   SystemSettingsRequestTimeZone = "Africa/Harare"
	AfricaJohannesburg             SystemSettingsRequestTimeZone = "Africa/Johannesburg"
	AfricaJuba                     SystemSettingsRequestTimeZone = "Africa/Juba"
	AfricaKampala                  SystemSettingsRequestTimeZone = "Africa/Kampala"
	AfricaKhartoum                 SystemSettingsRequestTimeZone = "Africa/Khartoum"
	AfricaKigali                   SystemSettingsRequestTimeZone = "Africa/Kigali"
	AfricaKinshasa                 SystemSettingsRequestTimeZone = "Africa/Kinshasa"
	AfricaLagos                    SystemSettingsRequestTimeZone = "Africa/Lagos"
	AfricaLibreville               SystemSettingsRequestTimeZone = "Africa/Libreville"
	AfricaLome                     SystemSettingsRequestTimeZone = "Africa/Lome"
	AfricaLuanda                   SystemSettingsRequestTimeZone = "Africa/Luanda"
	AfricaLubumbashi               SystemSettingsRequestTimeZone = "Africa/Lubumbashi"
	AfricaLusaka                   SystemSettingsRequestTimeZone = "Africa/Lusaka"
	AfricaMalabo                   SystemSettingsRequestTimeZone = "Africa/Malabo"
	AfricaMaputo                   SystemSettingsRequestTimeZone = "Africa/Maputo"
	AfricaMaseru                   SystemSettingsRequestTimeZone = "Africa/Maseru"
	AfricaMbabane                  SystemSettingsRequestTimeZone = "Africa/Mbabane"
	AfricaMogadishu                SystemSettingsRequestTimeZone = "Africa/Mogadishu"
	AfricaMonrovia                 SystemSettingsRequestTimeZone = "Africa/Monrovia"
	AfricaNairobi                  SystemSettingsRequestTimeZone = "Africa/Nairobi"
	AfricaNdjamena                 SystemSettingsRequestTimeZone = "Africa/Ndjamena"
	AfricaNiamey                   SystemSettingsRequestTimeZone = "Africa/Niamey"
	AfricaNouakchott               SystemSettingsRequestTimeZone = "Africa/Nouakchott"
	AfricaOuagadougou              SystemSettingsRequestTimeZone = "Africa/Ouagadougou"
	AfricaPortoNovo                SystemSettingsRequestTimeZone = "Africa/Porto-Novo"
	AfricaSaoTome                  SystemSettingsRequestTimeZone = "Africa/Sao_Tome"
	AfricaTimbuktu                 SystemSettingsRequestTimeZone = "Africa/Timbuktu"
	AfricaTripoli                  SystemSettingsRequestTimeZone = "Africa/Tripoli"
	AfricaTunis                    SystemSettingsRequestTimeZone = "Africa/Tunis"
	AfricaWindhoek                 SystemSettingsRequestTimeZone = "Africa/Windhoek"
	AmericaAdak                    SystemSettingsRequestTimeZone = "America/Adak"
	AmericaAnchorage               SystemSettingsRequestTimeZone = "America/Anchorage"
	AmericaAnguilla                SystemSettingsRequestTimeZone = "America/Anguilla"
	AmericaAntigua                 SystemSettingsRequestTimeZone = "America/Antigua"
	AmericaAraguaina               SystemSettingsRequestTimeZone = "America/Araguaina"
	AmericaArgentinaBuenosAires    SystemSettingsRequestTimeZone = "America/Argentina/Buenos_Aires"
	AmericaArgentinaCatamarca      SystemSettingsRequestTimeZone = "America/Argentina/Catamarca"
	AmericaArgentinaComodRivadavia SystemSettingsRequestTimeZone = "America/Argentina/ComodRivadavia"
	AmericaArgentinaCordoba        SystemSettingsRequestTimeZone = "America/Argentina/Cordoba"
	AmericaArgentinaJujuy          SystemSettingsRequestTimeZone = "America/Argentina/Jujuy"
	AmericaArgentinaLaRioja        SystemSettingsRequestTimeZone = "America/Argentina/La_Rioja"
	AmericaArgentinaMendoza        SystemSettingsRequestTimeZone = "America/Argentina/Mendoza"
	AmericaArgentinaRioGallegos    SystemSettingsRequestTimeZone = "America/Argentina/Rio_Gallegos"
	AmericaArgentinaSalta          SystemSettingsRequestTimeZone = "America/Argentina/Salta"
	AmericaArgentinaSanJuan        SystemSettingsRequestTimeZone = "America/Argentina/San_Juan"
	AmericaArgentinaSanLuis        SystemSettingsRequestTimeZone = "America/Argentina/San_Luis"
	AmericaArgentinaTucuman        SystemSettingsRequestTimeZone = "America/Argentina/Tucuman"
	AmericaArgentinaUshuaia        SystemSettingsRequestTimeZone = "America/Argentina/Ushuaia"
	AmericaAruba                   SystemSettingsRequestTimeZone = "America/Aruba"
	AmericaAsuncion                SystemSettingsRequestTimeZone = "America/Asuncion"
	AmericaAtikokan                SystemSettingsRequestTimeZone = "America/Atikokan"
	AmericaAtka                    SystemSettingsRequestTimeZone = "America/Atka"
	AmericaBahia                   SystemSettingsRequestTimeZone = "America/Bahia"
	AmericaBahiaBanderas           SystemSettingsRequestTimeZone = "America/Bahia_Banderas"
	AmericaBarbados                SystemSettingsRequestTimeZone = "America/Barbados"
	AmericaBelem                   SystemSettingsRequestTimeZone = "America/Belem"
	AmericaBelize                  SystemSettingsRequestTimeZone = "America/Belize"
	AmericaBlancSablon             SystemSettingsRequestTimeZone = "America/Blanc-Sablon"
	AmericaBoaVista                SystemSettingsRequestTimeZone = "America/Boa_Vista"
	AmericaBogota                  SystemSettingsRequestTimeZone = "America/Bogota"
	AmericaBoise                   SystemSettingsRequestTimeZone = "America/Boise"
	AmericaBuenosAires             SystemSettingsRequestTimeZone = "America/Buenos_Aires"
	AmericaCambridgeBay            SystemSettingsRequestTimeZone = "America/Cambridge_Bay"
	AmericaCampoGrande             SystemSettingsRequestTimeZone = "America/Campo_Grande"
	AmericaCancun                  SystemSettingsRequestTimeZone = "America/Cancun"
	AmericaCaracas                 SystemSettingsRequestTimeZone = "America/Caracas"
	AmericaCatamarca               SystemSettingsRequestTimeZone = "America/Catamarca"
	AmericaCayenne                 SystemSettingsRequestTimeZone = "America/Cayenne"
	AmericaCayman                  SystemSettingsRequestTimeZone = "America/Cayman"
	AmericaChicago                 SystemSettingsRequestTimeZone = "America/Chicago"
	AmericaChihuahua               SystemSettingsRequestTimeZone = "America/Chihuahua"
	AmericaCiudadJuarez            SystemSettingsRequestTimeZone = "America/Ciudad_Juarez"
	AmericaCoralHarbour            SystemSettingsRequestTimeZone = "America/Coral_Harbour"
	AmericaCordoba                 SystemSettingsRequestTimeZone = "America/Cordoba"
	AmericaCostaRica               SystemSettingsRequestTimeZone = "America/Costa_Rica"
	AmericaCreston                 SystemSettingsRequestTimeZone = "America/Creston"
	AmericaCuiaba                  SystemSettingsRequestTimeZone = "America/Cuiaba"
	AmericaCuracao                 SystemSettingsRequestTimeZone = "America/Curacao"
	AmericaDanmarkshavn            SystemSettingsRequestTimeZone = "America/Danmarkshavn"
	AmericaDawson                  SystemSettingsRequestTimeZone = "America/Dawson"
	AmericaDawsonCreek             SystemSettingsRequestTimeZone = "America/Dawson_Creek"
	AmericaDenver                  SystemSettingsRequestTimeZone = "America/Denver"
	AmericaDetroit                 SystemSettingsRequestTimeZone = "America/Detroit"
	AmericaDominica                SystemSettingsRequestTimeZone = "America/Dominica"
	AmericaEdmonton                SystemSettingsRequestTimeZone = "America/Edmonton"
	AmericaEirunepe                SystemSettingsRequestTimeZone = "America/Eirunepe"
	AmericaElSalvador              SystemSettingsRequestTimeZone = "America/El_Salvador"
	AmericaEnsenada                SystemSettingsRequestTimeZone = "America/Ensenada"
	AmericaFortNelson              SystemSettingsRequestTimeZone = "America/Fort_Nelson"
	AmericaFortWayne               SystemSettingsRequestTimeZone = "America/Fort_Wayne"
	AmericaFortaleza               SystemSettingsRequestTimeZone = "America/Fortaleza"
	AmericaGlaceBay                SystemSettingsRequestTimeZone = "America/Glace_Bay"
	AmericaGodthab                 SystemSettingsRequestTimeZone = "America/Godthab"
	AmericaGooseBay                SystemSettingsRequestTimeZone = "America/Goose_Bay"
	AmericaGrandTurk               SystemSettingsRequestTimeZone = "America/Grand_Turk"
	AmericaGrenada                 SystemSettingsRequestTimeZone = "America/Grenada"
	AmericaGuadeloupe              SystemSettingsRequestTimeZone = "America/Guadeloupe"
	AmericaGuatemala               SystemSettingsRequestTimeZone = "America/Guatemala"
	AmericaGuayaquil               SystemSettingsRequestTimeZone = "America/Guayaquil"
	AmericaGuyana                  SystemSettingsRequestTimeZone = "America/Guyana"
	AmericaHalifax                 SystemSettingsRequestTimeZone = "America/Halifax"
	AmericaHavana                  SystemSettingsRequestTimeZone = "America/Havana"
	AmericaHermosillo              SystemSettingsRequestTimeZone = "America/Hermosillo"
	AmericaIndianaIndianapolis     SystemSettingsRequestTimeZone = "America/Indiana/Indianapolis"
	AmericaIndianaKnox             SystemSettingsRequestTimeZone = "America/Indiana/Knox"
	AmericaIndianaMarengo          SystemSettingsRequestTimeZone = "America/Indiana/Marengo"
	AmericaIndianaPetersburg       SystemSettingsRequestTimeZone = "America/Indiana/Petersburg"
	AmericaIndianaTellCity         SystemSettingsRequestTimeZone = "America/Indiana/Tell_City"
	AmericaIndianaVevay            SystemSettingsRequestTimeZone = "America/Indiana/Vevay"
	AmericaIndianaVincennes        SystemSettingsRequestTimeZone = "America/Indiana/Vincennes"
	AmericaIndianaWinamac          SystemSettingsRequestTimeZone = "America/Indiana/Winamac"
	AmericaIndianapolis            SystemSettingsRequestTimeZone = "America/Indianapolis"
	AmericaInuvik                  SystemSettingsRequestTimeZone = "America/Inuvik"
	AmericaIqaluit                 SystemSettingsRequestTimeZone = "America/Iqaluit"
	AmericaJamaica                 SystemSettingsRequestTimeZone = "America/Jamaica"
	AmericaJujuy                   SystemSettingsRequestTimeZone = "America/Jujuy"
	AmericaJuneau                  SystemSettingsRequestTimeZone = "America/Juneau"
	AmericaKentuckyLouisville      SystemSettingsRequestTimeZone = "America/Kentucky/Louisville"
	AmericaKentuckyMonticello      SystemSettingsRequestTimeZone = "America/Kentucky/Monticello"
	AmericaKnoxIN                  SystemSettingsRequestTimeZone = "America/Knox_IN"
	AmericaKralendijk              SystemSettingsRequestTimeZone = "America/Kralendijk"
	AmericaLaPaz                   SystemSettingsRequestTimeZone = "America/La_Paz"
	AmericaLima                    SystemSettingsRequestTimeZone = "America/Lima"
	AmericaLosAngeles              SystemSettingsRequestTimeZone = "America/Los_Angeles"
	AmericaLouisville              SystemSettingsRequestTimeZone = "America/Louisville"
	AmericaLowerPrinces            SystemSettingsRequestTimeZone = "America/Lower_Princes"
	AmericaMaceio                  SystemSettingsRequestTimeZone = "America/Maceio"
	AmericaManagua                 SystemSettingsRequestTimeZone = "America/Managua"
	AmericaManaus                  SystemSettingsRequestTimeZone = "America/Manaus"
	AmericaMarigot                 SystemSettingsRequestTimeZone = "America/Marigot"
	AmericaMartinique              SystemSettingsRequestTimeZone = "America/Martinique"
	AmericaMatamoros               SystemSettingsRequestTimeZone = "America/Matamoros"
	AmericaMazatlan                SystemSettingsRequestTimeZone = "America/Mazatlan"
	AmericaMendoza                 SystemSettingsRequestTimeZone = "America/Mendoza"
	AmericaMenominee               SystemSettingsRequestTimeZone = "America/Menominee"
	AmericaMerida                  SystemSettingsRequestTimeZone = "America/Merida"
	AmericaMetlakatla              SystemSettingsRequestTimeZone = "America/Metlakatla"
	AmericaMexicoCity              SystemSettingsRequestTimeZone = "America/Mexico_City"
	AmericaMiquelon                SystemSettingsRequestTimeZone = "America/Miquelon"
	AmericaMoncton                 SystemSettingsRequestTimeZone = "America/Moncton"
	AmericaMonterrey               SystemSettingsRequestTimeZone = "America/Monterrey"
	AmericaMontevideo              SystemSettingsRequestTimeZone = "America/Montevideo"
	AmericaMontreal                SystemSettingsRequestTimeZone = "America/Montreal"
	AmericaMontserrat              SystemSettingsRequestTimeZone = "America/Montserrat"
	AmericaNassau                  SystemSettingsRequestTimeZone = "America/Nassau"
	AmericaNewYork                 SystemSettingsRequestTimeZone = "America/New_York"
	AmericaNipigon                 SystemSettingsRequestTimeZone = "America/Nipigon"
	AmericaNome                    SystemSettingsRequestTimeZone = "America/Nome"
	AmericaNoronha                 SystemSettingsRequestTimeZone = "America/Noronha"
	AmericaNorthDakotaBeulah       SystemSettingsRequestTimeZone = "America/North_Dakota/Beulah"
	AmericaNorthDakotaCenter       SystemSettingsRequestTimeZone = "America/North_Dakota/Center"
	AmericaNorthDakotaNewSalem     SystemSettingsRequestTimeZone = "America/North_Dakota/New_Salem"
	AmericaNuuk                    SystemSettingsRequestTimeZone = "America/Nuuk"
	AmericaOjinaga                 SystemSettingsRequestTimeZone = "America/Ojinaga"
	AmericaPanama                  SystemSettingsRequestTimeZone = "America/Panama"
	AmericaPangnirtung             SystemSettingsRequestTimeZone = "America/Pangnirtung"
	AmericaParamaribo              SystemSettingsRequestTimeZone = "America/Paramaribo"
	AmericaPhoenix                 SystemSettingsRequestTimeZone = "America/Phoenix"
	AmericaPortAuPrince            SystemSettingsRequestTimeZone = "America/Port-au-Prince"
	AmericaPortOfSpain             SystemSettingsRequestTimeZone = "America/Port_of_Spain"
	AmericaPortoAcre               SystemSettingsRequestTimeZone = "America/Porto_Acre"
	AmericaPortoVelho              SystemSettingsRequestTimeZone = "America/Porto_Velho"
	AmericaPuertoRico              SystemSettingsRequestTimeZone = "America/Puerto_Rico"
	AmericaPuntaArenas             SystemSettingsRequestTimeZone = "America/Punta_Arenas"
	AmericaRainyRiver              SystemSettingsRequestTimeZone = "America/Rainy_River"
	AmericaRankinInlet             SystemSettingsRequestTimeZone = "America/Rankin_Inlet"
	AmericaRecife                  SystemSettingsRequestTimeZone = "America/Recife"
	AmericaRegina                  SystemSettingsRequestTimeZone = "America/Regina"
	AmericaResolute                SystemSettingsRequestTimeZone = "America/Resolute"
	AmericaRioBranco               SystemSettingsRequestTimeZone = "America/Rio_Branco"
	AmericaRosario                 SystemSettingsRequestTimeZone = "America/Rosario"
	AmericaSantaIsabel             SystemSettingsRequestTimeZone = "America/Santa_Isabel"
	AmericaSantarem                SystemSettingsRequestTimeZone = "America/Santarem"
	AmericaSantiago                SystemSettingsRequestTimeZone = "America/Santiago"
	AmericaSantoDomingo            SystemSettingsRequestTimeZone = "America/Santo_Domingo"
	AmericaSaoPaulo                SystemSettingsRequestTimeZone = "America/Sao_Paulo"
	AmericaScoresbysund            SystemSettingsRequestTimeZone = "America/Scoresbysund"
	AmericaShiprock                SystemSettingsRequestTimeZone = "America/Shiprock"
	AmericaSitka                   SystemSettingsRequestTimeZone = "America/Sitka"
	AmericaStBarthelemy            SystemSettingsRequestTimeZone = "America/St_Barthelemy"
	AmericaStJohns                 SystemSettingsRequestTimeZone = "America/St_Johns"
	AmericaStKitts                 SystemSettingsRequestTimeZone = "America/St_Kitts"
	AmericaStLucia                 SystemSettingsRequestTimeZone = "America/St_Lucia"
	AmericaStThomas                SystemSettingsRequestTimeZone = "America/St_Thomas"
	AmericaStVincent               SystemSettingsRequestTimeZone = "America/St_Vincent"
	AmericaSwiftCurrent            SystemSettingsRequestTimeZone = "America/Swift_Current"
	AmericaTegucigalpa             SystemSettingsRequestTimeZone = "America/Tegucigalpa"
	AmericaThule                   SystemSettingsRequestTimeZone = "America/Thule"
	AmericaThunderBay              SystemSettingsRequestTimeZone = "America/Thunder_Bay"
	AmericaTijuana                 SystemSettingsRequestTimeZone = "America/Tijuana"
	AmericaToronto                 SystemSettingsRequestTimeZone = "America/Toronto"
	AmericaTortola                 SystemSettingsRequestTimeZone = "America/Tortola"
	AmericaVancouver               SystemSettingsRequestTimeZone = "America/Vancouver"
	AmericaVirgin                  SystemSettingsRequestTimeZone = "America/Virgin"
	AmericaWhitehorse              SystemSettingsRequestTimeZone = "America/Whitehorse"
	AmericaWinnipeg                SystemSettingsRequestTimeZone = "America/Winnipeg"
	AmericaYakutat                 SystemSettingsRequestTimeZone = "America/Yakutat"
	AmericaYellowknife             SystemSettingsRequestTimeZone = "America/Yellowknife"
	AntarcticaCasey                SystemSettingsRequestTimeZone = "Antarctica/Casey"
	AntarcticaDavis                SystemSettingsRequestTimeZone = "Antarctica/Davis"
	AntarcticaDumontDUrville       SystemSettingsRequestTimeZone = "Antarctica/DumontDUrville"
	AntarcticaMacquarie            SystemSettingsRequestTimeZone = "Antarctica/Macquarie"
	AntarcticaMawson               SystemSettingsRequestTimeZone = "Antarctica/Mawson"
	AntarcticaMcMurdo              SystemSettingsRequestTimeZone = "Antarctica/McMurdo"
	AntarcticaPalmer               SystemSettingsRequestTimeZone = "Antarctica/Palmer"
	AntarcticaRothera              SystemSettingsRequestTimeZone = "Antarctica/Rothera"
	AntarcticaSouthPole            SystemSettingsRequestTimeZone = "Antarctica/South_Pole"
	AntarcticaSyowa                SystemSettingsRequestTimeZone = "Antarctica/Syowa"
	AntarcticaTroll                SystemSettingsRequestTimeZone = "Antarctica/Troll"
	AntarcticaVostok               SystemSettingsRequestTimeZone = "Antarctica/Vostok"
	ArcticLongyearbyen             SystemSettingsRequestTimeZone = "Arctic/Longyearbyen"
	AsiaAden                       SystemSettingsRequestTimeZone = "Asia/Aden"
	AsiaAlmaty                     SystemSettingsRequestTimeZone = "Asia/Almaty"
	AsiaAmman                      SystemSettingsRequestTimeZone = "Asia/Amman"
	AsiaAnadyr                     SystemSettingsRequestTimeZone = "Asia/Anadyr"
	AsiaAqtau                      SystemSettingsRequestTimeZone = "Asia/Aqtau"
	AsiaAqtobe                     SystemSettingsRequestTimeZone = "Asia/Aqtobe"
	AsiaAshgabat                   SystemSettingsRequestTimeZone = "Asia/Ashgabat"
	AsiaAshkhabad                  SystemSettingsRequestTimeZone = "Asia/Ashkhabad"
	AsiaAtyrau                     SystemSettingsRequestTimeZone = "Asia/Atyrau"
	AsiaBaghdad                    SystemSettingsRequestTimeZone = "Asia/Baghdad"
	AsiaBahrain                    SystemSettingsRequestTimeZone = "Asia/Bahrain"
	AsiaBaku                       SystemSettingsRequestTimeZone = "Asia/Baku"
	AsiaBangkok                    SystemSettingsRequestTimeZone = "Asia/Bangkok"
	AsiaBarnaul                    SystemSettingsRequestTimeZone = "Asia/Barnaul"
	AsiaBeirut                     SystemSettingsRequestTimeZone = "Asia/Beirut"
	AsiaBishkek                    SystemSettingsRequestTimeZone = "Asia/Bishkek"
	AsiaBrunei                     SystemSettingsRequestTimeZone = "Asia/Brunei"
	AsiaCalcutta                   SystemSettingsRequestTimeZone = "Asia/Calcutta"
	AsiaChita                      SystemSettingsRequestTimeZone = "Asia/Chita"
	AsiaChoibalsan                 SystemSettingsRequestTimeZone = "Asia/Choibalsan"
	AsiaChongqing                  SystemSettingsRequestTimeZone = "Asia/Chongqing"
	AsiaChungking                  SystemSettingsRequestTimeZone = "Asia/Chungking"
	AsiaColombo                    SystemSettingsRequestTimeZone = "Asia/Colombo"
	AsiaDacca                      SystemSettingsRequestTimeZone = "Asia/Dacca"
	AsiaDamascus                   SystemSettingsRequestTimeZone = "Asia/Damascus"
	AsiaDhaka                      SystemSettingsRequestTimeZone = "Asia/Dhaka"
	AsiaDili                       SystemSettingsRequestTimeZone = "Asia/Dili"
	AsiaDubai                      SystemSettingsRequestTimeZone = "Asia/Dubai"
	AsiaDushanbe                   SystemSettingsRequestTimeZone = "Asia/Dushanbe"
	AsiaFamagusta                  SystemSettingsRequestTimeZone = "Asia/Famagusta"
	AsiaGaza                       SystemSettingsRequestTimeZone = "Asia/Gaza"
	AsiaHarbin                     SystemSettingsRequestTimeZone = "Asia/Harbin"
	AsiaHebron                     SystemSettingsRequestTimeZone = "Asia/Hebron"
	AsiaHoChiMinh                  SystemSettingsRequestTimeZone = "Asia/Ho_Chi_Minh"
	AsiaHongKong                   SystemSettingsRequestTimeZone = "Asia/Hong_Kong"
	AsiaHovd                       SystemSettingsRequestTimeZone = "Asia/Hovd"
	AsiaIrkutsk                    SystemSettingsRequestTimeZone = "Asia/Irkutsk"
	AsiaIstanbul                   SystemSettingsRequestTimeZone = "Asia/Istanbul"
	AsiaJakarta                    SystemSettingsRequestTimeZone = "Asia/Jakarta"
	AsiaJayapura                   SystemSettingsRequestTimeZone = "Asia/Jayapura"
	AsiaJerusalem                  SystemSettingsRequestTimeZone = "Asia/Jerusalem"
	AsiaKabul                      SystemSettingsRequestTimeZone = "Asia/Kabul"
	AsiaKamchatka                  SystemSettingsRequestTimeZone = "Asia/Kamchatka"
	AsiaKarachi                    SystemSettingsRequestTimeZone = "Asia/Karachi"
	AsiaKashgar                    SystemSettingsRequestTimeZone = "Asia/Kashgar"
	AsiaKathmandu                  SystemSettingsRequestTimeZone = "Asia/Kathmandu"
	AsiaKatmandu                   SystemSettingsRequestTimeZone = "Asia/Katmandu"
	AsiaKhandyga                   SystemSettingsRequestTimeZone = "Asia/Khandyga"
	AsiaKolkata                    SystemSettingsRequestTimeZone = "Asia/Kolkata"
	AsiaKrasnoyarsk                SystemSettingsRequestTimeZone = "Asia/Krasnoyarsk"
	AsiaKualaLumpur                SystemSettingsRequestTimeZone = "Asia/Kuala_Lumpur"
	AsiaKuching                    SystemSettingsRequestTimeZone = "Asia/Kuching"
	AsiaKuwait                     SystemSettingsRequestTimeZone = "Asia/Kuwait"
	AsiaMacao                      SystemSettingsRequestTimeZone = "Asia/Macao"
	AsiaMacau                      SystemSettingsRequestTimeZone = "Asia/Macau"
	AsiaMagadan                    SystemSettingsRequestTimeZone = "Asia/Magadan"
	AsiaMakassar                   SystemSettingsRequestTimeZone = "Asia/Makassar"
	AsiaManila                     SystemSettingsRequestTimeZone = "Asia/Manila"
	AsiaMuscat                     SystemSettingsRequestTimeZone = "Asia/Muscat"
	AsiaNicosia                    SystemSettingsRequestTimeZone = "Asia/Nicosia"
	AsiaNovokuznetsk               SystemSettingsRequestTimeZone = "Asia/Novokuznetsk"
	AsiaNovosibirsk                SystemSettingsRequestTimeZone = "Asia/Novosibirsk"
	AsiaOmsk                       SystemSettingsRequestTimeZone = "Asia/Omsk"
	AsiaOral                       SystemSettingsRequestTimeZone = "Asia/Oral"
	AsiaPhnomPenh                  SystemSettingsRequestTimeZone = "Asia/Phnom_Penh"
	AsiaPontianak                  SystemSettingsRequestTimeZone = "Asia/Pontianak"
	AsiaPyongyang                  SystemSettingsRequestTimeZone = "Asia/Pyongyang"
	AsiaQatar                      SystemSettingsRequestTimeZone = "Asia/Qatar"
	AsiaQostanay                   SystemSettingsRequestTimeZone = "Asia/Qostanay"
	AsiaQyzylorda                  SystemSettingsRequestTimeZone = "Asia/Qyzylorda"
	AsiaRangoon                    SystemSettingsRequestTimeZone = "Asia/Rangoon"
	AsiaRiyadh                     SystemSettingsRequestTimeZone = "Asia/Riyadh"
	AsiaSaigon                     SystemSettingsRequestTimeZone = "Asia/Saigon"
	AsiaSakhalin                   SystemSettingsRequestTimeZone = "Asia/Sakhalin"
	AsiaSamarkand                  SystemSettingsRequestTimeZone = "Asia/Samarkand"
	AsiaSeoul                      SystemSettingsRequestTimeZone = "Asia/Seoul"
	AsiaShanghai                   SystemSettingsRequestTimeZone = "Asia/Shanghai"
	AsiaSingapore                  SystemSettingsRequestTimeZone = "Asia/Singapore"
	AsiaSrednekolymsk              SystemSettingsRequestTimeZone = "Asia/Srednekolymsk"
	AsiaTaipei                     SystemSettingsRequestTimeZone = "Asia/Taipei"
	AsiaTashkent                   SystemSettingsRequestTimeZone = "Asia/Tashkent"
	AsiaTbilisi                    SystemSettingsRequestTimeZone = "Asia/Tbilisi"
	AsiaTehran                     SystemSettingsRequestTimeZone = "Asia/Tehran"
	AsiaTelAviv                    SystemSettingsRequestTimeZone = "Asia/Tel_Aviv"
	AsiaThimbu                     SystemSettingsRequestTimeZone = "Asia/Thimbu"
	AsiaThimphu                    SystemSettingsRequestTimeZone = "Asia/Thimphu"
	AsiaTokyo                      SystemSettingsRequestTimeZone = "Asia/Tokyo"
	AsiaTomsk                      SystemSettingsRequestTimeZone = "Asia/Tomsk"
	AsiaUjungPandang               SystemSettingsRequestTimeZone = "Asia/Ujung_Pandang"
	AsiaUlaanbaatar                SystemSettingsRequestTimeZone = "Asia/Ulaanbaatar"
	AsiaUlanBator                  SystemSettingsRequestTimeZone = "Asia/Ulan_Bator"
	AsiaUrumqi                     SystemSettingsRequestTimeZone = "Asia/Urumqi"
	AsiaUstNera                    SystemSettingsRequestTimeZone = "Asia/Ust-Nera"
	AsiaVientiane                  SystemSettingsRequestTimeZone = "Asia/Vientiane"
	AsiaVladivostok                SystemSettingsRequestTimeZone = "Asia/Vladivostok"
	AsiaYakutsk                    SystemSettingsRequestTimeZone = "Asia/Yakutsk"
	AsiaYangon                     SystemSettingsRequestTimeZone = "Asia/Yangon"
	AsiaYekaterinburg              SystemSettingsRequestTimeZone = "Asia/Yekaterinburg"
	AsiaYerevan                    SystemSettingsRequestTimeZone = "Asia/Yerevan"
	AtlanticAzores                 SystemSettingsRequestTimeZone = "Atlantic/Azores"
	AtlanticBermuda                SystemSettingsRequestTimeZone = "Atlantic/Bermuda"
	AtlanticCanary                 SystemSettingsRequestTimeZone = "Atlantic/Canary"
	AtlanticCapeVerde              SystemSettingsRequestTimeZone = "Atlantic/Cape_Verde"
	AtlanticFaeroe                 SystemSettingsRequestTimeZone = "Atlantic/Faeroe"
	AtlanticFaroe                  SystemSettingsRequestTimeZone = "Atlantic/Faroe"
	AtlanticJanMayen               SystemSettingsRequestTimeZone = "Atlantic/Jan_Mayen"
	AtlanticMadeira                SystemSettingsRequestTimeZone = "Atlantic/Madeira"
	AtlanticReykjavik              SystemSettingsRequestTimeZone = "Atlantic/Reykjavik"
	AtlanticSouthGeorgia           SystemSettingsRequestTimeZone = "Atlantic/South_Georgia"
	AtlanticStHelena               SystemSettingsRequestTimeZone = "Atlantic/St_Helena"
	AtlanticStanley                SystemSettingsRequestTimeZone = "Atlantic/Stanley"
	AustraliaACT                   SystemSettingsRequestTimeZone = "Australia/ACT"
	AustraliaAdelaide              SystemSettingsRequestTimeZone = "Australia/Adelaide"
	AustraliaBrisbane              SystemSettingsRequestTimeZone = "Australia/Brisbane"
	AustraliaBrokenHill            SystemSettingsRequestTimeZone = "Australia/Broken_Hill"
	AustraliaCanberra              SystemSettingsRequestTimeZone = "Australia/Canberra"
	AustraliaCurrie                SystemSettingsRequestTimeZone = "Australia/Currie"
	AustraliaDarwin                SystemSettingsRequestTimeZone = "Australia/Darwin"
	AustraliaEucla                 SystemSettingsRequestTimeZone = "Australia/Eucla"
	AustraliaHobart                SystemSettingsRequestTimeZone = "Australia/Hobart"
	AustraliaLHI                   SystemSettingsRequestTimeZone = "Australia/LHI"
	AustraliaLindeman              SystemSettingsRequestTimeZone = "Australia/Lindeman"
	AustraliaLordHowe              SystemSettingsRequestTimeZone = "Australia/Lord_Howe"
	AustraliaMelbourne             SystemSettingsRequestTimeZone = "Australia/Melbourne"
	AustraliaNSW                   SystemSettingsRequestTimeZone = "Australia/NSW"
	AustraliaNorth                 SystemSettingsRequestTimeZone = "Australia/North"
	AustraliaPerth                 SystemSettingsRequestTimeZone = "Australia/Perth"
	AustraliaQueensland            SystemSettingsRequestTimeZone = "Australia/Queensland"
	AustraliaSouth                 SystemSettingsRequestTimeZone = "Australia/South"
	AustraliaSydney                SystemSettingsRequestTimeZone = "Australia/Sydney"
	AustraliaTasmania              SystemSettingsRequestTimeZone = "Australia/Tasmania"
	AustraliaVictoria              SystemSettingsRequestTimeZone = "Australia/Victoria"
	AustraliaWest                  SystemSettingsRequestTimeZone = "Australia/West"
	AustraliaYancowinna            SystemSettingsRequestTimeZone = "Australia/Yancowinna"
	BrazilAcre                     SystemSettingsRequestTimeZone = "Brazil/Acre"
	BrazilDeNoronha                SystemSettingsRequestTimeZone = "Brazil/DeNoronha"
	BrazilEast                     SystemSettingsRequestTimeZone = "Brazil/East"
	BrazilWest                     SystemSettingsRequestTimeZone = "Brazil/West"
	CET                            SystemSettingsRequestTimeZone = "CET"
	CST6CDT                        SystemSettingsRequestTimeZone = "CST6CDT"
	CanadaAtlantic                 SystemSettingsRequestTimeZone = "Canada/Atlantic"
	CanadaCentral                  SystemSettingsRequestTimeZone = "Canada/Central"
	CanadaEastern                  SystemSettingsRequestTimeZone = "Canada/Eastern"
	CanadaMountain                 SystemSettingsRequestTimeZone = "Canada/Mountain"
	CanadaNewfoundland             SystemSettingsRequestTimeZone = "Canada/Newfoundland"
	CanadaPacific                  SystemSettingsRequestTimeZone = "Canada/Pacific"
	CanadaSaskatchewan             SystemSettingsRequestTimeZone = "Canada/Saskatchewan"
	CanadaYukon                    SystemSettingsRequestTimeZone = "Canada/Yukon"
	ChileContinental               SystemSettingsRequestTimeZone = "Chile/Continental"
	ChileEasterIsland              SystemSettingsRequestTimeZone = "Chile/EasterIsland"
	Cuba                           SystemSettingsRequestTimeZone = "Cuba"
	EET                            SystemSettingsRequestTimeZone = "EET"
	EST                            SystemSettingsRequestTimeZone = "EST"
	EST5EDT                        SystemSettingsRequestTimeZone = "EST5EDT"
	Egypt                          SystemSettingsRequestTimeZone = "Egypt"
	Eire                           SystemSettingsRequestTimeZone = "Eire"
	EtcGMT                         SystemSettingsRequestTimeZone = "Etc/GMT"
	EtcGMT0                        SystemSettingsRequestTimeZone = "Etc/GMT+0"
	EtcGMT01                       SystemSettingsRequestTimeZone = "Etc/GMT-0"
	EtcGMT02                       SystemSettingsRequestTimeZone = "Etc/GMT0"
	EtcGMT1                        SystemSettingsRequestTimeZone = "Etc/GMT+1"
	EtcGMT10                       SystemSettingsRequestTimeZone = "Etc/GMT+10"
	EtcGMT101                      SystemSettingsRequestTimeZone = "Etc/GMT-10"
	EtcGMT11                       SystemSettingsRequestTimeZone = "Etc/GMT-1"
	EtcGMT111                      SystemSettingsRequestTimeZone = "Etc/GMT-11"
	EtcGMT12                       SystemSettingsRequestTimeZone = "Etc/GMT+12"
	EtcGMT121                      SystemSettingsRequestTimeZone = "Etc/GMT-12"
	EtcGMT13                       SystemSettingsRequestTimeZone = "Etc/GMT-13"
	EtcGMT14                       SystemSettingsRequestTimeZone = "Etc/GMT-14"
	EtcGMT2                        SystemSettingsRequestTimeZone = "Etc/GMT+2"
	EtcGMT21                       SystemSettingsRequestTimeZone = "Etc/GMT-2"
	EtcGMT3                        SystemSettingsRequestTimeZone = "Etc/GMT+3"
	EtcGMT31                       SystemSettingsRequestTimeZone = "Etc/GMT-3"
	EtcGMT4                        SystemSettingsRequestTimeZone = "Etc/GMT+4"
	EtcGMT41                       SystemSettingsRequestTimeZone = "Etc/GMT-4"
	EtcGMT5                        SystemSettingsRequestTimeZone = "Etc/GMT+5"
	EtcGMT51                       SystemSettingsRequestTimeZone = "Etc/GMT-5"
	EtcGMT6                        SystemSettingsRequestTimeZone = "Etc/GMT+6"
	EtcGMT61                       SystemSettingsRequestTimeZone = "Etc/GMT-6"
	EtcGMT7                        SystemSettingsRequestTimeZone = "Etc/GMT+7"
	EtcGMT71                       SystemSettingsRequestTimeZone = "Etc/GMT-7"
	EtcGMT8                        SystemSettingsRequestTimeZone = "Etc/GMT+8"
	EtcGMT81                       SystemSettingsRequestTimeZone = "Etc/GMT-8"
	EtcGMT9                        SystemSettingsRequestTimeZone = "Etc/GMT+9"
	EtcGMT91                       SystemSettingsRequestTimeZone = "Etc/GMT-9"
	EtcGreenwich                   SystemSettingsRequestTimeZone = "Etc/Greenwich"
	EtcUCT                         SystemSettingsRequestTimeZone = "Etc/UCT"
	EtcUTC                         SystemSettingsRequestTimeZone = "Etc/UTC"
	EtcUniversal                   SystemSettingsRequestTimeZone = "Etc/Universal"
	EtcZulu                        SystemSettingsRequestTimeZone = "Etc/Zulu"
	EuropeAmsterdam                SystemSettingsRequestTimeZone = "Europe/Amsterdam"
	EuropeAndorra                  SystemSettingsRequestTimeZone = "Europe/Andorra"
	EuropeAstrakhan                SystemSettingsRequestTimeZone = "Europe/Astrakhan"
	EuropeAthens                   SystemSettingsRequestTimeZone = "Europe/Athens"
	EuropeBelfast                  SystemSettingsRequestTimeZone = "Europe/Belfast"
	EuropeBelgrade                 SystemSettingsRequestTimeZone = "Europe/Belgrade"
	EuropeBerlin                   SystemSettingsRequestTimeZone = "Europe/Berlin"
	EuropeBratislava               SystemSettingsRequestTimeZone = "Europe/Bratislava"
	EuropeBrussels                 SystemSettingsRequestTimeZone = "Europe/Brussels"
	EuropeBucharest                SystemSettingsRequestTimeZone = "Europe/Bucharest"
	EuropeBudapest                 SystemSettingsRequestTimeZone = "Europe/Budapest"
	EuropeBusingen                 SystemSettingsRequestTimeZone = "Europe/Busingen"
	EuropeChisinau                 SystemSettingsRequestTimeZone = "Europe/Chisinau"
	EuropeCopenhagen               SystemSettingsRequestTimeZone = "Europe/Copenhagen"
	EuropeDublin                   SystemSettingsRequestTimeZone = "Europe/Dublin"
	EuropeGibraltar                SystemSettingsRequestTimeZone = "Europe/Gibraltar"
	EuropeGuernsey                 SystemSettingsRequestTimeZone = "Europe/Guernsey"
	EuropeHelsinki                 SystemSettingsRequestTimeZone = "Europe/Helsinki"
	EuropeIsleOfMan                SystemSettingsRequestTimeZone = "Europe/Isle_of_Man"
	EuropeIstanbul                 SystemSettingsRequestTimeZone = "Europe/Istanbul"
	EuropeJersey                   SystemSettingsRequestTimeZone = "Europe/Jersey"
	EuropeKaliningrad              SystemSettingsRequestTimeZone = "Europe/Kaliningrad"
	EuropeKiev                     SystemSettingsRequestTimeZone = "Europe/Kiev"
	EuropeKirov                    SystemSettingsRequestTimeZone = "Europe/Kirov"
	EuropeKyiv                     SystemSettingsRequestTimeZone = "Europe/Kyiv"
	EuropeLisbon                   SystemSettingsRequestTimeZone = "Europe/Lisbon"
	EuropeLjubljana                SystemSettingsRequestTimeZone = "Europe/Ljubljana"
	EuropeLondon                   SystemSettingsRequestTimeZone = "Europe/London"
	EuropeLuxembourg               SystemSettingsRequestTimeZone = "Europe/Luxembourg"
	EuropeMadrid                   SystemSettingsRequestTimeZone = "Europe/Madrid"
	EuropeMalta                    SystemSettingsRequestTimeZone = "Europe/Malta"
	EuropeMariehamn                SystemSettingsRequestTimeZone = "Europe/Mariehamn"
	EuropeMinsk                    SystemSettingsRequestTimeZone = "Europe/Minsk"
	EuropeMonaco                   SystemSettingsRequestTimeZone = "Europe/Monaco"
	EuropeMoscow                   SystemSettingsRequestTimeZone = "Europe/Moscow"
	EuropeNicosia                  SystemSettingsRequestTimeZone = "Europe/Nicosia"
	EuropeOslo                     SystemSettingsRequestTimeZone = "Europe/Oslo"
	EuropeParis                    SystemSettingsRequestTimeZone = "Europe/Paris"
	EuropePodgorica                SystemSettingsRequestTimeZone = "Europe/Podgorica"
	EuropePrague                   SystemSettingsRequestTimeZone = "Europe/Prague"
	EuropeRiga                     SystemSettingsRequestTimeZone = "Europe/Riga"
	EuropeRome                     SystemSettingsRequestTimeZone = "Europe/Rome"
	EuropeSamara                   SystemSettingsRequestTimeZone = "Europe/Samara"
	EuropeSanMarino                SystemSettingsRequestTimeZone = "Europe/San_Marino"
	EuropeSarajevo                 SystemSettingsRequestTimeZone = "Europe/Sarajevo"
	EuropeSaratov                  SystemSettingsRequestTimeZone = "Europe/Saratov"
	EuropeSimferopol               SystemSettingsRequestTimeZone = "Europe/Simferopol"
	EuropeSkopje                   SystemSettingsRequestTimeZone = "Europe/Skopje"
	EuropeSofia                    SystemSettingsRequestTimeZone = "Europe/Sofia"
	EuropeStockholm                SystemSettingsRequestTimeZone = "Europe/Stockholm"
	EuropeTallinn                  SystemSettingsRequestTimeZone = "Europe/Tallinn"
	EuropeTirane                   SystemSettingsRequestTimeZone = "Europe/Tirane"
	EuropeTiraspol                 SystemSettingsRequestTimeZone = "Europe/Tiraspol"
	EuropeUlyanovsk                SystemSettingsRequestTimeZone = "Europe/Ulyanovsk"
	EuropeUzhgorod                 SystemSettingsRequestTimeZone = "Europe/Uzhgorod"
	EuropeVaduz                    SystemSettingsRequestTimeZone = "Europe/Vaduz"
	EuropeVatican                  SystemSettingsRequestTimeZone = "Europe/Vatican"
	EuropeVienna                   SystemSettingsRequestTimeZone = "Europe/Vienna"
	EuropeVilnius                  SystemSettingsRequestTimeZone = "Europe/Vilnius"
	EuropeVolgograd                SystemSettingsRequestTimeZone = "Europe/Volgograd"
	EuropeWarsaw                   SystemSettingsRequestTimeZone = "Europe/Warsaw"
	EuropeZagreb                   SystemSettingsRequestTimeZone = "Europe/Zagreb"
	EuropeZaporozhye               SystemSettingsRequestTimeZone = "Europe/Zaporozhye"
	EuropeZurich                   SystemSettingsRequestTimeZone = "Europe/Zurich"
	GB                             SystemSettingsRequestTimeZone = "GB"
	GBEire                         SystemSettingsRequestTimeZone = "GB-Eire"
	GMT                            SystemSettingsRequestTimeZone = "GMT"
	GMT0                           SystemSettingsRequestTimeZone = "GMT+0"
	GMT01                          SystemSettingsRequestTimeZone = "GMT-0"
	GMT02                          SystemSettingsRequestTimeZone = "GMT0"
	Greenwich                      SystemSettingsRequestTimeZone = "Greenwich"
	HST                            SystemSettingsRequestTimeZone = "HST"
	Hongkong                       SystemSettingsRequestTimeZone = "Hongkong"
	Iceland                        SystemSettingsRequestTimeZone = "Iceland"
	IndianAntananarivo             SystemSettingsRequestTimeZone = "Indian/Antananarivo"
	IndianChagos                   SystemSettingsRequestTimeZone = "Indian/Chagos"
	IndianChristmas                SystemSettingsRequestTimeZone = "Indian/Christmas"
	IndianCocos                    SystemSettingsRequestTimeZone = "Indian/Cocos"
	IndianComoro                   SystemSettingsRequestTimeZone = "Indian/Comoro"
	IndianKerguelen                SystemSettingsRequestTimeZone = "Indian/Kerguelen"
	IndianMahe                     SystemSettingsRequestTimeZone = "Indian/Mahe"
	IndianMaldives                 SystemSettingsRequestTimeZone = "Indian/Maldives"
	IndianMauritius                SystemSettingsRequestTimeZone = "Indian/Mauritius"
	IndianMayotte                  SystemSettingsRequestTimeZone = "Indian/Mayotte"
	IndianReunion                  SystemSettingsRequestTimeZone = "Indian/Reunion"
	Iran                           SystemSettingsRequestTimeZone = "Iran"
	Israel                         SystemSettingsRequestTimeZone = "Israel"
	Jamaica                        SystemSettingsRequestTimeZone = "Jamaica"
	Japan                          SystemSettingsRequestTimeZone = "Japan"
	Kwajalein                      SystemSettingsRequestTimeZone = "Kwajalein"
	Libya                          SystemSettingsRequestTimeZone = "Libya"
	MET                            SystemSettingsRequestTimeZone = "MET"
	MST                            SystemSettingsRequestTimeZone = "MST"
	MST7MDT                        SystemSettingsRequestTimeZone = "MST7MDT"
	MexicoBajaNorte                SystemSettingsRequestTimeZone = "Mexico/BajaNorte"
	MexicoBajaSur                  SystemSettingsRequestTimeZone = "Mexico/BajaSur"
	MexicoGeneral                  SystemSettingsRequestTimeZone = "Mexico/General"
	NZ                             SystemSettingsRequestTimeZone = "NZ"
	NZCHAT                         SystemSettingsRequestTimeZone = "NZ-CHAT"
	Navajo                         SystemSettingsRequestTimeZone = "Navajo"
	PRC                            SystemSettingsRequestTimeZone = "PRC"
	PST8PDT                        SystemSettingsRequestTimeZone = "PST8PDT"
	PacificApia                    SystemSettingsRequestTimeZone = "Pacific/Apia"
	PacificAuckland                SystemSettingsRequestTimeZone = "Pacific/Auckland"
	PacificBougainville            SystemSettingsRequestTimeZone = "Pacific/Bougainville"
	PacificChatham                 SystemSettingsRequestTimeZone = "Pacific/Chatham"
	PacificChuuk                   SystemSettingsRequestTimeZone = "Pacific/Chuuk"
	PacificEaster                  SystemSettingsRequestTimeZone = "Pacific/Easter"
	PacificEfate                   SystemSettingsRequestTimeZone = "Pacific/Efate"
	PacificEnderbury               SystemSettingsRequestTimeZone = "Pacific/Enderbury"
	PacificFakaofo                 SystemSettingsRequestTimeZone = "Pacific/Fakaofo"
	PacificFiji                    SystemSettingsRequestTimeZone = "Pacific/Fiji"
	PacificFunafuti                SystemSettingsRequestTimeZone = "Pacific/Funafuti"
	PacificGalapagos               SystemSettingsRequestTimeZone = "Pacific/Galapagos"
	PacificGambier                 SystemSettingsRequestTimeZone = "Pacific/Gambier"
	PacificGuadalcanal             SystemSettingsRequestTimeZone = "Pacific/Guadalcanal"
	PacificGuam                    SystemSettingsRequestTimeZone = "Pacific/Guam"
	PacificHonolulu                SystemSettingsRequestTimeZone = "Pacific/Honolulu"
	PacificJohnston                SystemSettingsRequestTimeZone = "Pacific/Johnston"
	PacificKanton                  SystemSettingsRequestTimeZone = "Pacific/Kanton"
	PacificKiritimati              SystemSettingsRequestTimeZone = "Pacific/Kiritimati"
	PacificKosrae                  SystemSettingsRequestTimeZone = "Pacific/Kosrae"
	PacificKwajalein               SystemSettingsRequestTimeZone = "Pacific/Kwajalein"
	PacificMajuro                  SystemSettingsRequestTimeZone = "Pacific/Majuro"
	PacificMarquesas               SystemSettingsRequestTimeZone = "Pacific/Marquesas"
	PacificMidway                  SystemSettingsRequestTimeZone = "Pacific/Midway"
	PacificNauru                   SystemSettingsRequestTimeZone = "Pacific/Nauru"
	PacificNiue                    SystemSettingsRequestTimeZone = "Pacific/Niue"
	PacificNorfolk                 SystemSettingsRequestTimeZone = "Pacific/Norfolk"
	PacificNoumea                  SystemSettingsRequestTimeZone = "Pacific/Noumea"
	PacificPagoPago                SystemSettingsRequestTimeZone = "Pacific/Pago_Pago"
	PacificPalau                   SystemSettingsRequestTimeZone = "Pacific/Palau"
	PacificPitcairn                SystemSettingsRequestTimeZone = "Pacific/Pitcairn"
	PacificPohnpei                 SystemSettingsRequestTimeZone = "Pacific/Pohnpei"
	PacificPonape                  SystemSettingsRequestTimeZone = "Pacific/Ponape"
	PacificPortMoresby             SystemSettingsRequestTimeZone = "Pacific/Port_Moresby"
	PacificRarotonga               SystemSettingsRequestTimeZone = "Pacific/Rarotonga"
	PacificSaipan                  SystemSettingsRequestTimeZone = "Pacific/Saipan"
	PacificSamoa                   SystemSettingsRequestTimeZone = "Pacific/Samoa"
	PacificTahiti                  SystemSettingsRequestTimeZone = "Pacific/Tahiti"
	PacificTarawa                  SystemSettingsRequestTimeZone = "Pacific/Tarawa"
	PacificTongatapu               SystemSettingsRequestTimeZone = "Pacific/Tongatapu"
	PacificTruk                    SystemSettingsRequestTimeZone = "Pacific/Truk"
	PacificWake                    SystemSettingsRequestTimeZone = "Pacific/Wake"
	PacificWallis                  SystemSettingsRequestTimeZone = "Pacific/Wallis"
	PacificYap                     SystemSettingsRequestTimeZone = "Pacific/Yap"
	Poland                         SystemSettingsRequestTimeZone = "Poland"
	Portugal                       SystemSettingsRequestTimeZone = "Portugal"
	ROC                            SystemSettingsRequestTimeZone = "ROC"
	ROK                            SystemSettingsRequestTimeZone = "ROK"
	Singapore                      SystemSettingsRequestTimeZone = "Singapore"
	Turkey                         SystemSettingsRequestTimeZone = "Turkey"
	UCT                            SystemSettingsRequestTimeZone = "UCT"
	USAlaska                       SystemSettingsRequestTimeZone = "US/Alaska"
	USAleutian                     SystemSettingsRequestTimeZone = "US/Aleutian"
	USArizona                      SystemSettingsRequestTimeZone = "US/Arizona"
	USCentral                      SystemSettingsRequestTimeZone = "US/Central"
	USEastIndiana                  SystemSettingsRequestTimeZone = "US/East-Indiana"
	USEastern                      SystemSettingsRequestTimeZone = "US/Eastern"
	USHawaii                       SystemSettingsRequestTimeZone = "US/Hawaii"
	USIndianaStarke                SystemSettingsRequestTimeZone = "US/Indiana-Starke"
	USMichigan                     SystemSettingsRequestTimeZone = "US/Michigan"
	USMountain                     SystemSettingsRequestTimeZone = "US/Mountain"
	USPacific                      SystemSettingsRequestTimeZone = "US/Pacific"
	USSamoa                        SystemSettingsRequestTimeZone = "US/Samoa"
	UTC                            SystemSettingsRequestTimeZone = "UTC"
	Universal                      SystemSettingsRequestTimeZone = "Universal"
	WET                            SystemSettingsRequestTimeZone = "WET"
	WSU                            SystemSettingsRequestTimeZone = "W-SU"
	Zulu                           SystemSettingsRequestTimeZone = "Zulu"
)

Defines values for SystemSettingsRequestTimeZone.

type SystemSettingsTimeZone

type SystemSettingsTimeZone string

SystemSettingsTimeZone * `Africa/Abidjan` - Africa/Abidjan * `Africa/Accra` - Africa/Accra * `Africa/Addis_Ababa` - Africa/Addis_Ababa * `Africa/Algiers` - Africa/Algiers * `Africa/Asmara` - Africa/Asmara * `Africa/Asmera` - Africa/Asmera * `Africa/Bamako` - Africa/Bamako * `Africa/Bangui` - Africa/Bangui * `Africa/Banjul` - Africa/Banjul * `Africa/Bissau` - Africa/Bissau * `Africa/Blantyre` - Africa/Blantyre * `Africa/Brazzaville` - Africa/Brazzaville * `Africa/Bujumbura` - Africa/Bujumbura * `Africa/Cairo` - Africa/Cairo * `Africa/Casablanca` - Africa/Casablanca * `Africa/Ceuta` - Africa/Ceuta * `Africa/Conakry` - Africa/Conakry * `Africa/Dakar` - Africa/Dakar * `Africa/Dar_es_Salaam` - Africa/Dar_es_Salaam * `Africa/Djibouti` - Africa/Djibouti * `Africa/Douala` - Africa/Douala * `Africa/El_Aaiun` - Africa/El_Aaiun * `Africa/Freetown` - Africa/Freetown * `Africa/Gaborone` - Africa/Gaborone * `Africa/Harare` - Africa/Harare * `Africa/Johannesburg` - Africa/Johannesburg * `Africa/Juba` - Africa/Juba * `Africa/Kampala` - Africa/Kampala * `Africa/Khartoum` - Africa/Khartoum * `Africa/Kigali` - Africa/Kigali * `Africa/Kinshasa` - Africa/Kinshasa * `Africa/Lagos` - Africa/Lagos * `Africa/Libreville` - Africa/Libreville * `Africa/Lome` - Africa/Lome * `Africa/Luanda` - Africa/Luanda * `Africa/Lubumbashi` - Africa/Lubumbashi * `Africa/Lusaka` - Africa/Lusaka * `Africa/Malabo` - Africa/Malabo * `Africa/Maputo` - Africa/Maputo * `Africa/Maseru` - Africa/Maseru * `Africa/Mbabane` - Africa/Mbabane * `Africa/Mogadishu` - Africa/Mogadishu * `Africa/Monrovia` - Africa/Monrovia * `Africa/Nairobi` - Africa/Nairobi * `Africa/Ndjamena` - Africa/Ndjamena * `Africa/Niamey` - Africa/Niamey * `Africa/Nouakchott` - Africa/Nouakchott * `Africa/Ouagadougou` - Africa/Ouagadougou * `Africa/Porto-Novo` - Africa/Porto-Novo * `Africa/Sao_Tome` - Africa/Sao_Tome * `Africa/Timbuktu` - Africa/Timbuktu * `Africa/Tripoli` - Africa/Tripoli * `Africa/Tunis` - Africa/Tunis * `Africa/Windhoek` - Africa/Windhoek * `America/Adak` - America/Adak * `America/Anchorage` - America/Anchorage * `America/Anguilla` - America/Anguilla * `America/Antigua` - America/Antigua * `America/Araguaina` - America/Araguaina * `America/Argentina/Buenos_Aires` - America/Argentina/Buenos_Aires * `America/Argentina/Catamarca` - America/Argentina/Catamarca * `America/Argentina/ComodRivadavia` - America/Argentina/ComodRivadavia * `America/Argentina/Cordoba` - America/Argentina/Cordoba * `America/Argentina/Jujuy` - America/Argentina/Jujuy * `America/Argentina/La_Rioja` - America/Argentina/La_Rioja * `America/Argentina/Mendoza` - America/Argentina/Mendoza * `America/Argentina/Rio_Gallegos` - America/Argentina/Rio_Gallegos * `America/Argentina/Salta` - America/Argentina/Salta * `America/Argentina/San_Juan` - America/Argentina/San_Juan * `America/Argentina/San_Luis` - America/Argentina/San_Luis * `America/Argentina/Tucuman` - America/Argentina/Tucuman * `America/Argentina/Ushuaia` - America/Argentina/Ushuaia * `America/Aruba` - America/Aruba * `America/Asuncion` - America/Asuncion * `America/Atikokan` - America/Atikokan * `America/Atka` - America/Atka * `America/Bahia` - America/Bahia * `America/Bahia_Banderas` - America/Bahia_Banderas * `America/Barbados` - America/Barbados * `America/Belem` - America/Belem * `America/Belize` - America/Belize * `America/Blanc-Sablon` - America/Blanc-Sablon * `America/Boa_Vista` - America/Boa_Vista * `America/Bogota` - America/Bogota * `America/Boise` - America/Boise * `America/Buenos_Aires` - America/Buenos_Aires * `America/Cambridge_Bay` - America/Cambridge_Bay * `America/Campo_Grande` - America/Campo_Grande * `America/Cancun` - America/Cancun * `America/Caracas` - America/Caracas * `America/Catamarca` - America/Catamarca * `America/Cayenne` - America/Cayenne * `America/Cayman` - America/Cayman * `America/Chicago` - America/Chicago * `America/Chihuahua` - America/Chihuahua * `America/Ciudad_Juarez` - America/Ciudad_Juarez * `America/Coral_Harbour` - America/Coral_Harbour * `America/Cordoba` - America/Cordoba * `America/Costa_Rica` - America/Costa_Rica * `America/Creston` - America/Creston * `America/Cuiaba` - America/Cuiaba * `America/Curacao` - America/Curacao * `America/Danmarkshavn` - America/Danmarkshavn * `America/Dawson` - America/Dawson * `America/Dawson_Creek` - America/Dawson_Creek * `America/Denver` - America/Denver * `America/Detroit` - America/Detroit * `America/Dominica` - America/Dominica * `America/Edmonton` - America/Edmonton * `America/Eirunepe` - America/Eirunepe * `America/El_Salvador` - America/El_Salvador * `America/Ensenada` - America/Ensenada * `America/Fort_Nelson` - America/Fort_Nelson * `America/Fort_Wayne` - America/Fort_Wayne * `America/Fortaleza` - America/Fortaleza * `America/Glace_Bay` - America/Glace_Bay * `America/Godthab` - America/Godthab * `America/Goose_Bay` - America/Goose_Bay * `America/Grand_Turk` - America/Grand_Turk * `America/Grenada` - America/Grenada * `America/Guadeloupe` - America/Guadeloupe * `America/Guatemala` - America/Guatemala * `America/Guayaquil` - America/Guayaquil * `America/Guyana` - America/Guyana * `America/Halifax` - America/Halifax * `America/Havana` - America/Havana * `America/Hermosillo` - America/Hermosillo * `America/Indiana/Indianapolis` - America/Indiana/Indianapolis * `America/Indiana/Knox` - America/Indiana/Knox * `America/Indiana/Marengo` - America/Indiana/Marengo * `America/Indiana/Petersburg` - America/Indiana/Petersburg * `America/Indiana/Tell_City` - America/Indiana/Tell_City * `America/Indiana/Vevay` - America/Indiana/Vevay * `America/Indiana/Vincennes` - America/Indiana/Vincennes * `America/Indiana/Winamac` - America/Indiana/Winamac * `America/Indianapolis` - America/Indianapolis * `America/Inuvik` - America/Inuvik * `America/Iqaluit` - America/Iqaluit * `America/Jamaica` - America/Jamaica * `America/Jujuy` - America/Jujuy * `America/Juneau` - America/Juneau * `America/Kentucky/Louisville` - America/Kentucky/Louisville * `America/Kentucky/Monticello` - America/Kentucky/Monticello * `America/Knox_IN` - America/Knox_IN * `America/Kralendijk` - America/Kralendijk * `America/La_Paz` - America/La_Paz * `America/Lima` - America/Lima * `America/Los_Angeles` - America/Los_Angeles * `America/Louisville` - America/Louisville * `America/Lower_Princes` - America/Lower_Princes * `America/Maceio` - America/Maceio * `America/Managua` - America/Managua * `America/Manaus` - America/Manaus * `America/Marigot` - America/Marigot * `America/Martinique` - America/Martinique * `America/Matamoros` - America/Matamoros * `America/Mazatlan` - America/Mazatlan * `America/Mendoza` - America/Mendoza * `America/Menominee` - America/Menominee * `America/Merida` - America/Merida * `America/Metlakatla` - America/Metlakatla * `America/Mexico_City` - America/Mexico_City * `America/Miquelon` - America/Miquelon * `America/Moncton` - America/Moncton * `America/Monterrey` - America/Monterrey * `America/Montevideo` - America/Montevideo * `America/Montreal` - America/Montreal * `America/Montserrat` - America/Montserrat * `America/Nassau` - America/Nassau * `America/New_York` - America/New_York * `America/Nipigon` - America/Nipigon * `America/Nome` - America/Nome * `America/Noronha` - America/Noronha * `America/North_Dakota/Beulah` - America/North_Dakota/Beulah * `America/North_Dakota/Center` - America/North_Dakota/Center * `America/North_Dakota/New_Salem` - America/North_Dakota/New_Salem * `America/Nuuk` - America/Nuuk * `America/Ojinaga` - America/Ojinaga * `America/Panama` - America/Panama * `America/Pangnirtung` - America/Pangnirtung * `America/Paramaribo` - America/Paramaribo * `America/Phoenix` - America/Phoenix * `America/Port-au-Prince` - America/Port-au-Prince * `America/Port_of_Spain` - America/Port_of_Spain * `America/Porto_Acre` - America/Porto_Acre * `America/Porto_Velho` - America/Porto_Velho * `America/Puerto_Rico` - America/Puerto_Rico * `America/Punta_Arenas` - America/Punta_Arenas * `America/Rainy_River` - America/Rainy_River * `America/Rankin_Inlet` - America/Rankin_Inlet * `America/Recife` - America/Recife * `America/Regina` - America/Regina * `America/Resolute` - America/Resolute * `America/Rio_Branco` - America/Rio_Branco * `America/Rosario` - America/Rosario * `America/Santa_Isabel` - America/Santa_Isabel * `America/Santarem` - America/Santarem * `America/Santiago` - America/Santiago * `America/Santo_Domingo` - America/Santo_Domingo * `America/Sao_Paulo` - America/Sao_Paulo * `America/Scoresbysund` - America/Scoresbysund * `America/Shiprock` - America/Shiprock * `America/Sitka` - America/Sitka * `America/St_Barthelemy` - America/St_Barthelemy * `America/St_Johns` - America/St_Johns * `America/St_Kitts` - America/St_Kitts * `America/St_Lucia` - America/St_Lucia * `America/St_Thomas` - America/St_Thomas * `America/St_Vincent` - America/St_Vincent * `America/Swift_Current` - America/Swift_Current * `America/Tegucigalpa` - America/Tegucigalpa * `America/Thule` - America/Thule * `America/Thunder_Bay` - America/Thunder_Bay * `America/Tijuana` - America/Tijuana * `America/Toronto` - America/Toronto * `America/Tortola` - America/Tortola * `America/Vancouver` - America/Vancouver * `America/Virgin` - America/Virgin * `America/Whitehorse` - America/Whitehorse * `America/Winnipeg` - America/Winnipeg * `America/Yakutat` - America/Yakutat * `America/Yellowknife` - America/Yellowknife * `Antarctica/Casey` - Antarctica/Casey * `Antarctica/Davis` - Antarctica/Davis * `Antarctica/DumontDUrville` - Antarctica/DumontDUrville * `Antarctica/Macquarie` - Antarctica/Macquarie * `Antarctica/Mawson` - Antarctica/Mawson * `Antarctica/McMurdo` - Antarctica/McMurdo * `Antarctica/Palmer` - Antarctica/Palmer * `Antarctica/Rothera` - Antarctica/Rothera * `Antarctica/South_Pole` - Antarctica/South_Pole * `Antarctica/Syowa` - Antarctica/Syowa * `Antarctica/Troll` - Antarctica/Troll * `Antarctica/Vostok` - Antarctica/Vostok * `Arctic/Longyearbyen` - Arctic/Longyearbyen * `Asia/Aden` - Asia/Aden * `Asia/Almaty` - Asia/Almaty * `Asia/Amman` - Asia/Amman * `Asia/Anadyr` - Asia/Anadyr * `Asia/Aqtau` - Asia/Aqtau * `Asia/Aqtobe` - Asia/Aqtobe * `Asia/Ashgabat` - Asia/Ashgabat * `Asia/Ashkhabad` - Asia/Ashkhabad * `Asia/Atyrau` - Asia/Atyrau * `Asia/Baghdad` - Asia/Baghdad * `Asia/Bahrain` - Asia/Bahrain * `Asia/Baku` - Asia/Baku * `Asia/Bangkok` - Asia/Bangkok * `Asia/Barnaul` - Asia/Barnaul * `Asia/Beirut` - Asia/Beirut * `Asia/Bishkek` - Asia/Bishkek * `Asia/Brunei` - Asia/Brunei * `Asia/Calcutta` - Asia/Calcutta * `Asia/Chita` - Asia/Chita * `Asia/Choibalsan` - Asia/Choibalsan * `Asia/Chongqing` - Asia/Chongqing * `Asia/Chungking` - Asia/Chungking * `Asia/Colombo` - Asia/Colombo * `Asia/Dacca` - Asia/Dacca * `Asia/Damascus` - Asia/Damascus * `Asia/Dhaka` - Asia/Dhaka * `Asia/Dili` - Asia/Dili * `Asia/Dubai` - Asia/Dubai * `Asia/Dushanbe` - Asia/Dushanbe * `Asia/Famagusta` - Asia/Famagusta * `Asia/Gaza` - Asia/Gaza * `Asia/Harbin` - Asia/Harbin * `Asia/Hebron` - Asia/Hebron * `Asia/Ho_Chi_Minh` - Asia/Ho_Chi_Minh * `Asia/Hong_Kong` - Asia/Hong_Kong * `Asia/Hovd` - Asia/Hovd * `Asia/Irkutsk` - Asia/Irkutsk * `Asia/Istanbul` - Asia/Istanbul * `Asia/Jakarta` - Asia/Jakarta * `Asia/Jayapura` - Asia/Jayapura * `Asia/Jerusalem` - Asia/Jerusalem * `Asia/Kabul` - Asia/Kabul * `Asia/Kamchatka` - Asia/Kamchatka * `Asia/Karachi` - Asia/Karachi * `Asia/Kashgar` - Asia/Kashgar * `Asia/Kathmandu` - Asia/Kathmandu * `Asia/Katmandu` - Asia/Katmandu * `Asia/Khandyga` - Asia/Khandyga * `Asia/Kolkata` - Asia/Kolkata * `Asia/Krasnoyarsk` - Asia/Krasnoyarsk * `Asia/Kuala_Lumpur` - Asia/Kuala_Lumpur * `Asia/Kuching` - Asia/Kuching * `Asia/Kuwait` - Asia/Kuwait * `Asia/Macao` - Asia/Macao * `Asia/Macau` - Asia/Macau * `Asia/Magadan` - Asia/Magadan * `Asia/Makassar` - Asia/Makassar * `Asia/Manila` - Asia/Manila * `Asia/Muscat` - Asia/Muscat * `Asia/Nicosia` - Asia/Nicosia * `Asia/Novokuznetsk` - Asia/Novokuznetsk * `Asia/Novosibirsk` - Asia/Novosibirsk * `Asia/Omsk` - Asia/Omsk * `Asia/Oral` - Asia/Oral * `Asia/Phnom_Penh` - Asia/Phnom_Penh * `Asia/Pontianak` - Asia/Pontianak * `Asia/Pyongyang` - Asia/Pyongyang * `Asia/Qatar` - Asia/Qatar * `Asia/Qostanay` - Asia/Qostanay * `Asia/Qyzylorda` - Asia/Qyzylorda * `Asia/Rangoon` - Asia/Rangoon * `Asia/Riyadh` - Asia/Riyadh * `Asia/Saigon` - Asia/Saigon * `Asia/Sakhalin` - Asia/Sakhalin * `Asia/Samarkand` - Asia/Samarkand * `Asia/Seoul` - Asia/Seoul * `Asia/Shanghai` - Asia/Shanghai * `Asia/Singapore` - Asia/Singapore * `Asia/Srednekolymsk` - Asia/Srednekolymsk * `Asia/Taipei` - Asia/Taipei * `Asia/Tashkent` - Asia/Tashkent * `Asia/Tbilisi` - Asia/Tbilisi * `Asia/Tehran` - Asia/Tehran * `Asia/Tel_Aviv` - Asia/Tel_Aviv * `Asia/Thimbu` - Asia/Thimbu * `Asia/Thimphu` - Asia/Thimphu * `Asia/Tokyo` - Asia/Tokyo * `Asia/Tomsk` - Asia/Tomsk * `Asia/Ujung_Pandang` - Asia/Ujung_Pandang * `Asia/Ulaanbaatar` - Asia/Ulaanbaatar * `Asia/Ulan_Bator` - Asia/Ulan_Bator * `Asia/Urumqi` - Asia/Urumqi * `Asia/Ust-Nera` - Asia/Ust-Nera * `Asia/Vientiane` - Asia/Vientiane * `Asia/Vladivostok` - Asia/Vladivostok * `Asia/Yakutsk` - Asia/Yakutsk * `Asia/Yangon` - Asia/Yangon * `Asia/Yekaterinburg` - Asia/Yekaterinburg * `Asia/Yerevan` - Asia/Yerevan * `Atlantic/Azores` - Atlantic/Azores * `Atlantic/Bermuda` - Atlantic/Bermuda * `Atlantic/Canary` - Atlantic/Canary * `Atlantic/Cape_Verde` - Atlantic/Cape_Verde * `Atlantic/Faeroe` - Atlantic/Faeroe * `Atlantic/Faroe` - Atlantic/Faroe * `Atlantic/Jan_Mayen` - Atlantic/Jan_Mayen * `Atlantic/Madeira` - Atlantic/Madeira * `Atlantic/Reykjavik` - Atlantic/Reykjavik * `Atlantic/South_Georgia` - Atlantic/South_Georgia * `Atlantic/St_Helena` - Atlantic/St_Helena * `Atlantic/Stanley` - Atlantic/Stanley * `Australia/ACT` - Australia/ACT * `Australia/Adelaide` - Australia/Adelaide * `Australia/Brisbane` - Australia/Brisbane * `Australia/Broken_Hill` - Australia/Broken_Hill * `Australia/Canberra` - Australia/Canberra * `Australia/Currie` - Australia/Currie * `Australia/Darwin` - Australia/Darwin * `Australia/Eucla` - Australia/Eucla * `Australia/Hobart` - Australia/Hobart * `Australia/LHI` - Australia/LHI * `Australia/Lindeman` - Australia/Lindeman * `Australia/Lord_Howe` - Australia/Lord_Howe * `Australia/Melbourne` - Australia/Melbourne * `Australia/NSW` - Australia/NSW * `Australia/North` - Australia/North * `Australia/Perth` - Australia/Perth * `Australia/Queensland` - Australia/Queensland * `Australia/South` - Australia/South * `Australia/Sydney` - Australia/Sydney * `Australia/Tasmania` - Australia/Tasmania * `Australia/Victoria` - Australia/Victoria * `Australia/West` - Australia/West * `Australia/Yancowinna` - Australia/Yancowinna * `Brazil/Acre` - Brazil/Acre * `Brazil/DeNoronha` - Brazil/DeNoronha * `Brazil/East` - Brazil/East * `Brazil/West` - Brazil/West * `CET` - CET * `CST6CDT` - CST6CDT * `Canada/Atlantic` - Canada/Atlantic * `Canada/Central` - Canada/Central * `Canada/Eastern` - Canada/Eastern * `Canada/Mountain` - Canada/Mountain * `Canada/Newfoundland` - Canada/Newfoundland * `Canada/Pacific` - Canada/Pacific * `Canada/Saskatchewan` - Canada/Saskatchewan * `Canada/Yukon` - Canada/Yukon * `Chile/Continental` - Chile/Continental * `Chile/EasterIsland` - Chile/EasterIsland * `Cuba` - Cuba * `EET` - EET * `EST` - EST * `EST5EDT` - EST5EDT * `Egypt` - Egypt * `Eire` - Eire * `Etc/GMT` - Etc/GMT * `Etc/GMT+0` - Etc/GMT+0 * `Etc/GMT+1` - Etc/GMT+1 * `Etc/GMT+10` - Etc/GMT+10 * `Etc/GMT+11` - Etc/GMT+11 * `Etc/GMT+12` - Etc/GMT+12 * `Etc/GMT+2` - Etc/GMT+2 * `Etc/GMT+3` - Etc/GMT+3 * `Etc/GMT+4` - Etc/GMT+4 * `Etc/GMT+5` - Etc/GMT+5 * `Etc/GMT+6` - Etc/GMT+6 * `Etc/GMT+7` - Etc/GMT+7 * `Etc/GMT+8` - Etc/GMT+8 * `Etc/GMT+9` - Etc/GMT+9 * `Etc/GMT-0` - Etc/GMT-0 * `Etc/GMT-1` - Etc/GMT-1 * `Etc/GMT-10` - Etc/GMT-10 * `Etc/GMT-11` - Etc/GMT-11 * `Etc/GMT-12` - Etc/GMT-12 * `Etc/GMT-13` - Etc/GMT-13 * `Etc/GMT-14` - Etc/GMT-14 * `Etc/GMT-2` - Etc/GMT-2 * `Etc/GMT-3` - Etc/GMT-3 * `Etc/GMT-4` - Etc/GMT-4 * `Etc/GMT-5` - Etc/GMT-5 * `Etc/GMT-6` - Etc/GMT-6 * `Etc/GMT-7` - Etc/GMT-7 * `Etc/GMT-8` - Etc/GMT-8 * `Etc/GMT-9` - Etc/GMT-9 * `Etc/GMT0` - Etc/GMT0 * `Etc/Greenwich` - Etc/Greenwich * `Etc/UCT` - Etc/UCT * `Etc/UTC` - Etc/UTC * `Etc/Universal` - Etc/Universal * `Etc/Zulu` - Etc/Zulu * `Europe/Amsterdam` - Europe/Amsterdam * `Europe/Andorra` - Europe/Andorra * `Europe/Astrakhan` - Europe/Astrakhan * `Europe/Athens` - Europe/Athens * `Europe/Belfast` - Europe/Belfast * `Europe/Belgrade` - Europe/Belgrade * `Europe/Berlin` - Europe/Berlin * `Europe/Bratislava` - Europe/Bratislava * `Europe/Brussels` - Europe/Brussels * `Europe/Bucharest` - Europe/Bucharest * `Europe/Budapest` - Europe/Budapest * `Europe/Busingen` - Europe/Busingen * `Europe/Chisinau` - Europe/Chisinau * `Europe/Copenhagen` - Europe/Copenhagen * `Europe/Dublin` - Europe/Dublin * `Europe/Gibraltar` - Europe/Gibraltar * `Europe/Guernsey` - Europe/Guernsey * `Europe/Helsinki` - Europe/Helsinki * `Europe/Isle_of_Man` - Europe/Isle_of_Man * `Europe/Istanbul` - Europe/Istanbul * `Europe/Jersey` - Europe/Jersey * `Europe/Kaliningrad` - Europe/Kaliningrad * `Europe/Kiev` - Europe/Kiev * `Europe/Kirov` - Europe/Kirov * `Europe/Kyiv` - Europe/Kyiv * `Europe/Lisbon` - Europe/Lisbon * `Europe/Ljubljana` - Europe/Ljubljana * `Europe/London` - Europe/London * `Europe/Luxembourg` - Europe/Luxembourg * `Europe/Madrid` - Europe/Madrid * `Europe/Malta` - Europe/Malta * `Europe/Mariehamn` - Europe/Mariehamn * `Europe/Minsk` - Europe/Minsk * `Europe/Monaco` - Europe/Monaco * `Europe/Moscow` - Europe/Moscow * `Europe/Nicosia` - Europe/Nicosia * `Europe/Oslo` - Europe/Oslo * `Europe/Paris` - Europe/Paris * `Europe/Podgorica` - Europe/Podgorica * `Europe/Prague` - Europe/Prague * `Europe/Riga` - Europe/Riga * `Europe/Rome` - Europe/Rome * `Europe/Samara` - Europe/Samara * `Europe/San_Marino` - Europe/San_Marino * `Europe/Sarajevo` - Europe/Sarajevo * `Europe/Saratov` - Europe/Saratov * `Europe/Simferopol` - Europe/Simferopol * `Europe/Skopje` - Europe/Skopje * `Europe/Sofia` - Europe/Sofia * `Europe/Stockholm` - Europe/Stockholm * `Europe/Tallinn` - Europe/Tallinn * `Europe/Tirane` - Europe/Tirane * `Europe/Tiraspol` - Europe/Tiraspol * `Europe/Ulyanovsk` - Europe/Ulyanovsk * `Europe/Uzhgorod` - Europe/Uzhgorod * `Europe/Vaduz` - Europe/Vaduz * `Europe/Vatican` - Europe/Vatican * `Europe/Vienna` - Europe/Vienna * `Europe/Vilnius` - Europe/Vilnius * `Europe/Volgograd` - Europe/Volgograd * `Europe/Warsaw` - Europe/Warsaw * `Europe/Zagreb` - Europe/Zagreb * `Europe/Zaporozhye` - Europe/Zaporozhye * `Europe/Zurich` - Europe/Zurich * `GB` - GB * `GB-Eire` - GB-Eire * `GMT` - GMT * `GMT+0` - GMT+0 * `GMT-0` - GMT-0 * `GMT0` - GMT0 * `Greenwich` - Greenwich * `HST` - HST * `Hongkong` - Hongkong * `Iceland` - Iceland * `Indian/Antananarivo` - Indian/Antananarivo * `Indian/Chagos` - Indian/Chagos * `Indian/Christmas` - Indian/Christmas * `Indian/Cocos` - Indian/Cocos * `Indian/Comoro` - Indian/Comoro * `Indian/Kerguelen` - Indian/Kerguelen * `Indian/Mahe` - Indian/Mahe * `Indian/Maldives` - Indian/Maldives * `Indian/Mauritius` - Indian/Mauritius * `Indian/Mayotte` - Indian/Mayotte * `Indian/Reunion` - Indian/Reunion * `Iran` - Iran * `Israel` - Israel * `Jamaica` - Jamaica * `Japan` - Japan * `Kwajalein` - Kwajalein * `Libya` - Libya * `MET` - MET * `MST` - MST * `MST7MDT` - MST7MDT * `Mexico/BajaNorte` - Mexico/BajaNorte * `Mexico/BajaSur` - Mexico/BajaSur * `Mexico/General` - Mexico/General * `NZ` - NZ * `NZ-CHAT` - NZ-CHAT * `Navajo` - Navajo * `PRC` - PRC * `PST8PDT` - PST8PDT * `Pacific/Apia` - Pacific/Apia * `Pacific/Auckland` - Pacific/Auckland * `Pacific/Bougainville` - Pacific/Bougainville * `Pacific/Chatham` - Pacific/Chatham * `Pacific/Chuuk` - Pacific/Chuuk * `Pacific/Easter` - Pacific/Easter * `Pacific/Efate` - Pacific/Efate * `Pacific/Enderbury` - Pacific/Enderbury * `Pacific/Fakaofo` - Pacific/Fakaofo * `Pacific/Fiji` - Pacific/Fiji * `Pacific/Funafuti` - Pacific/Funafuti * `Pacific/Galapagos` - Pacific/Galapagos * `Pacific/Gambier` - Pacific/Gambier * `Pacific/Guadalcanal` - Pacific/Guadalcanal * `Pacific/Guam` - Pacific/Guam * `Pacific/Honolulu` - Pacific/Honolulu * `Pacific/Johnston` - Pacific/Johnston * `Pacific/Kanton` - Pacific/Kanton * `Pacific/Kiritimati` - Pacific/Kiritimati * `Pacific/Kosrae` - Pacific/Kosrae * `Pacific/Kwajalein` - Pacific/Kwajalein * `Pacific/Majuro` - Pacific/Majuro * `Pacific/Marquesas` - Pacific/Marquesas * `Pacific/Midway` - Pacific/Midway * `Pacific/Nauru` - Pacific/Nauru * `Pacific/Niue` - Pacific/Niue * `Pacific/Norfolk` - Pacific/Norfolk * `Pacific/Noumea` - Pacific/Noumea * `Pacific/Pago_Pago` - Pacific/Pago_Pago * `Pacific/Palau` - Pacific/Palau * `Pacific/Pitcairn` - Pacific/Pitcairn * `Pacific/Pohnpei` - Pacific/Pohnpei * `Pacific/Ponape` - Pacific/Ponape * `Pacific/Port_Moresby` - Pacific/Port_Moresby * `Pacific/Rarotonga` - Pacific/Rarotonga * `Pacific/Saipan` - Pacific/Saipan * `Pacific/Samoa` - Pacific/Samoa * `Pacific/Tahiti` - Pacific/Tahiti * `Pacific/Tarawa` - Pacific/Tarawa * `Pacific/Tongatapu` - Pacific/Tongatapu * `Pacific/Truk` - Pacific/Truk * `Pacific/Wake` - Pacific/Wake * `Pacific/Wallis` - Pacific/Wallis * `Pacific/Yap` - Pacific/Yap * `Poland` - Poland * `Portugal` - Portugal * `ROC` - ROC * `ROK` - ROK * `Singapore` - Singapore * `Turkey` - Turkey * `UCT` - UCT * `US/Alaska` - US/Alaska * `US/Aleutian` - US/Aleutian * `US/Arizona` - US/Arizona * `US/Central` - US/Central * `US/East-Indiana` - US/East-Indiana * `US/Eastern` - US/Eastern * `US/Hawaii` - US/Hawaii * `US/Indiana-Starke` - US/Indiana-Starke * `US/Michigan` - US/Michigan * `US/Mountain` - US/Mountain * `US/Pacific` - US/Pacific * `US/Samoa` - US/Samoa * `UTC` - UTC * `Universal` - Universal * `W-SU` - W-SU * `WET` - WET * `Zulu` - Zulu

const (
	SystemSettingsTimeZoneAfricaAbidjan                  SystemSettingsTimeZone = "Africa/Abidjan"
	SystemSettingsTimeZoneAfricaAccra                    SystemSettingsTimeZone = "Africa/Accra"
	SystemSettingsTimeZoneAfricaAddisAbaba               SystemSettingsTimeZone = "Africa/Addis_Ababa"
	SystemSettingsTimeZoneAfricaAlgiers                  SystemSettingsTimeZone = "Africa/Algiers"
	SystemSettingsTimeZoneAfricaAsmara                   SystemSettingsTimeZone = "Africa/Asmara"
	SystemSettingsTimeZoneAfricaAsmera                   SystemSettingsTimeZone = "Africa/Asmera"
	SystemSettingsTimeZoneAfricaBamako                   SystemSettingsTimeZone = "Africa/Bamako"
	SystemSettingsTimeZoneAfricaBangui                   SystemSettingsTimeZone = "Africa/Bangui"
	SystemSettingsTimeZoneAfricaBanjul                   SystemSettingsTimeZone = "Africa/Banjul"
	SystemSettingsTimeZoneAfricaBissau                   SystemSettingsTimeZone = "Africa/Bissau"
	SystemSettingsTimeZoneAfricaBlantyre                 SystemSettingsTimeZone = "Africa/Blantyre"
	SystemSettingsTimeZoneAfricaBrazzaville              SystemSettingsTimeZone = "Africa/Brazzaville"
	SystemSettingsTimeZoneAfricaBujumbura                SystemSettingsTimeZone = "Africa/Bujumbura"
	SystemSettingsTimeZoneAfricaCairo                    SystemSettingsTimeZone = "Africa/Cairo"
	SystemSettingsTimeZoneAfricaCasablanca               SystemSettingsTimeZone = "Africa/Casablanca"
	SystemSettingsTimeZoneAfricaCeuta                    SystemSettingsTimeZone = "Africa/Ceuta"
	SystemSettingsTimeZoneAfricaConakry                  SystemSettingsTimeZone = "Africa/Conakry"
	SystemSettingsTimeZoneAfricaDakar                    SystemSettingsTimeZone = "Africa/Dakar"
	SystemSettingsTimeZoneAfricaDarEsSalaam              SystemSettingsTimeZone = "Africa/Dar_es_Salaam"
	SystemSettingsTimeZoneAfricaDjibouti                 SystemSettingsTimeZone = "Africa/Djibouti"
	SystemSettingsTimeZoneAfricaDouala                   SystemSettingsTimeZone = "Africa/Douala"
	SystemSettingsTimeZoneAfricaElAaiun                  SystemSettingsTimeZone = "Africa/El_Aaiun"
	SystemSettingsTimeZoneAfricaFreetown                 SystemSettingsTimeZone = "Africa/Freetown"
	SystemSettingsTimeZoneAfricaGaborone                 SystemSettingsTimeZone = "Africa/Gaborone"
	SystemSettingsTimeZoneAfricaHarare                   SystemSettingsTimeZone = "Africa/Harare"
	SystemSettingsTimeZoneAfricaJohannesburg             SystemSettingsTimeZone = "Africa/Johannesburg"
	SystemSettingsTimeZoneAfricaJuba                     SystemSettingsTimeZone = "Africa/Juba"
	SystemSettingsTimeZoneAfricaKampala                  SystemSettingsTimeZone = "Africa/Kampala"
	SystemSettingsTimeZoneAfricaKhartoum                 SystemSettingsTimeZone = "Africa/Khartoum"
	SystemSettingsTimeZoneAfricaKigali                   SystemSettingsTimeZone = "Africa/Kigali"
	SystemSettingsTimeZoneAfricaKinshasa                 SystemSettingsTimeZone = "Africa/Kinshasa"
	SystemSettingsTimeZoneAfricaLagos                    SystemSettingsTimeZone = "Africa/Lagos"
	SystemSettingsTimeZoneAfricaLibreville               SystemSettingsTimeZone = "Africa/Libreville"
	SystemSettingsTimeZoneAfricaLome                     SystemSettingsTimeZone = "Africa/Lome"
	SystemSettingsTimeZoneAfricaLuanda                   SystemSettingsTimeZone = "Africa/Luanda"
	SystemSettingsTimeZoneAfricaLubumbashi               SystemSettingsTimeZone = "Africa/Lubumbashi"
	SystemSettingsTimeZoneAfricaLusaka                   SystemSettingsTimeZone = "Africa/Lusaka"
	SystemSettingsTimeZoneAfricaMalabo                   SystemSettingsTimeZone = "Africa/Malabo"
	SystemSettingsTimeZoneAfricaMaputo                   SystemSettingsTimeZone = "Africa/Maputo"
	SystemSettingsTimeZoneAfricaMaseru                   SystemSettingsTimeZone = "Africa/Maseru"
	SystemSettingsTimeZoneAfricaMbabane                  SystemSettingsTimeZone = "Africa/Mbabane"
	SystemSettingsTimeZoneAfricaMogadishu                SystemSettingsTimeZone = "Africa/Mogadishu"
	SystemSettingsTimeZoneAfricaMonrovia                 SystemSettingsTimeZone = "Africa/Monrovia"
	SystemSettingsTimeZoneAfricaNairobi                  SystemSettingsTimeZone = "Africa/Nairobi"
	SystemSettingsTimeZoneAfricaNdjamena                 SystemSettingsTimeZone = "Africa/Ndjamena"
	SystemSettingsTimeZoneAfricaNiamey                   SystemSettingsTimeZone = "Africa/Niamey"
	SystemSettingsTimeZoneAfricaNouakchott               SystemSettingsTimeZone = "Africa/Nouakchott"
	SystemSettingsTimeZoneAfricaOuagadougou              SystemSettingsTimeZone = "Africa/Ouagadougou"
	SystemSettingsTimeZoneAfricaPortoNovo                SystemSettingsTimeZone = "Africa/Porto-Novo"
	SystemSettingsTimeZoneAfricaSaoTome                  SystemSettingsTimeZone = "Africa/Sao_Tome"
	SystemSettingsTimeZoneAfricaTimbuktu                 SystemSettingsTimeZone = "Africa/Timbuktu"
	SystemSettingsTimeZoneAfricaTripoli                  SystemSettingsTimeZone = "Africa/Tripoli"
	SystemSettingsTimeZoneAfricaTunis                    SystemSettingsTimeZone = "Africa/Tunis"
	SystemSettingsTimeZoneAfricaWindhoek                 SystemSettingsTimeZone = "Africa/Windhoek"
	SystemSettingsTimeZoneAmericaAdak                    SystemSettingsTimeZone = "America/Adak"
	SystemSettingsTimeZoneAmericaAnchorage               SystemSettingsTimeZone = "America/Anchorage"
	SystemSettingsTimeZoneAmericaAnguilla                SystemSettingsTimeZone = "America/Anguilla"
	SystemSettingsTimeZoneAmericaAntigua                 SystemSettingsTimeZone = "America/Antigua"
	SystemSettingsTimeZoneAmericaAraguaina               SystemSettingsTimeZone = "America/Araguaina"
	SystemSettingsTimeZoneAmericaArgentinaBuenosAires    SystemSettingsTimeZone = "America/Argentina/Buenos_Aires"
	SystemSettingsTimeZoneAmericaArgentinaCatamarca      SystemSettingsTimeZone = "America/Argentina/Catamarca"
	SystemSettingsTimeZoneAmericaArgentinaComodRivadavia SystemSettingsTimeZone = "America/Argentina/ComodRivadavia"
	SystemSettingsTimeZoneAmericaArgentinaCordoba        SystemSettingsTimeZone = "America/Argentina/Cordoba"
	SystemSettingsTimeZoneAmericaArgentinaJujuy          SystemSettingsTimeZone = "America/Argentina/Jujuy"
	SystemSettingsTimeZoneAmericaArgentinaLaRioja        SystemSettingsTimeZone = "America/Argentina/La_Rioja"
	SystemSettingsTimeZoneAmericaArgentinaMendoza        SystemSettingsTimeZone = "America/Argentina/Mendoza"
	SystemSettingsTimeZoneAmericaArgentinaRioGallegos    SystemSettingsTimeZone = "America/Argentina/Rio_Gallegos"
	SystemSettingsTimeZoneAmericaArgentinaSalta          SystemSettingsTimeZone = "America/Argentina/Salta"
	SystemSettingsTimeZoneAmericaArgentinaSanJuan        SystemSettingsTimeZone = "America/Argentina/San_Juan"
	SystemSettingsTimeZoneAmericaArgentinaSanLuis        SystemSettingsTimeZone = "America/Argentina/San_Luis"
	SystemSettingsTimeZoneAmericaArgentinaTucuman        SystemSettingsTimeZone = "America/Argentina/Tucuman"
	SystemSettingsTimeZoneAmericaArgentinaUshuaia        SystemSettingsTimeZone = "America/Argentina/Ushuaia"
	SystemSettingsTimeZoneAmericaAruba                   SystemSettingsTimeZone = "America/Aruba"
	SystemSettingsTimeZoneAmericaAsuncion                SystemSettingsTimeZone = "America/Asuncion"
	SystemSettingsTimeZoneAmericaAtikokan                SystemSettingsTimeZone = "America/Atikokan"
	SystemSettingsTimeZoneAmericaAtka                    SystemSettingsTimeZone = "America/Atka"
	SystemSettingsTimeZoneAmericaBahia                   SystemSettingsTimeZone = "America/Bahia"
	SystemSettingsTimeZoneAmericaBahiaBanderas           SystemSettingsTimeZone = "America/Bahia_Banderas"
	SystemSettingsTimeZoneAmericaBarbados                SystemSettingsTimeZone = "America/Barbados"
	SystemSettingsTimeZoneAmericaBelem                   SystemSettingsTimeZone = "America/Belem"
	SystemSettingsTimeZoneAmericaBelize                  SystemSettingsTimeZone = "America/Belize"
	SystemSettingsTimeZoneAmericaBlancSablon             SystemSettingsTimeZone = "America/Blanc-Sablon"
	SystemSettingsTimeZoneAmericaBoaVista                SystemSettingsTimeZone = "America/Boa_Vista"
	SystemSettingsTimeZoneAmericaBogota                  SystemSettingsTimeZone = "America/Bogota"
	SystemSettingsTimeZoneAmericaBoise                   SystemSettingsTimeZone = "America/Boise"
	SystemSettingsTimeZoneAmericaBuenosAires             SystemSettingsTimeZone = "America/Buenos_Aires"
	SystemSettingsTimeZoneAmericaCambridgeBay            SystemSettingsTimeZone = "America/Cambridge_Bay"
	SystemSettingsTimeZoneAmericaCampoGrande             SystemSettingsTimeZone = "America/Campo_Grande"
	SystemSettingsTimeZoneAmericaCancun                  SystemSettingsTimeZone = "America/Cancun"
	SystemSettingsTimeZoneAmericaCaracas                 SystemSettingsTimeZone = "America/Caracas"
	SystemSettingsTimeZoneAmericaCatamarca               SystemSettingsTimeZone = "America/Catamarca"
	SystemSettingsTimeZoneAmericaCayenne                 SystemSettingsTimeZone = "America/Cayenne"
	SystemSettingsTimeZoneAmericaCayman                  SystemSettingsTimeZone = "America/Cayman"
	SystemSettingsTimeZoneAmericaChicago                 SystemSettingsTimeZone = "America/Chicago"
	SystemSettingsTimeZoneAmericaChihuahua               SystemSettingsTimeZone = "America/Chihuahua"
	SystemSettingsTimeZoneAmericaCiudadJuarez            SystemSettingsTimeZone = "America/Ciudad_Juarez"
	SystemSettingsTimeZoneAmericaCoralHarbour            SystemSettingsTimeZone = "America/Coral_Harbour"
	SystemSettingsTimeZoneAmericaCordoba                 SystemSettingsTimeZone = "America/Cordoba"
	SystemSettingsTimeZoneAmericaCostaRica               SystemSettingsTimeZone = "America/Costa_Rica"
	SystemSettingsTimeZoneAmericaCreston                 SystemSettingsTimeZone = "America/Creston"
	SystemSettingsTimeZoneAmericaCuiaba                  SystemSettingsTimeZone = "America/Cuiaba"
	SystemSettingsTimeZoneAmericaCuracao                 SystemSettingsTimeZone = "America/Curacao"
	SystemSettingsTimeZoneAmericaDanmarkshavn            SystemSettingsTimeZone = "America/Danmarkshavn"
	SystemSettingsTimeZoneAmericaDawson                  SystemSettingsTimeZone = "America/Dawson"
	SystemSettingsTimeZoneAmericaDawsonCreek             SystemSettingsTimeZone = "America/Dawson_Creek"
	SystemSettingsTimeZoneAmericaDenver                  SystemSettingsTimeZone = "America/Denver"
	SystemSettingsTimeZoneAmericaDetroit                 SystemSettingsTimeZone = "America/Detroit"
	SystemSettingsTimeZoneAmericaDominica                SystemSettingsTimeZone = "America/Dominica"
	SystemSettingsTimeZoneAmericaEdmonton                SystemSettingsTimeZone = "America/Edmonton"
	SystemSettingsTimeZoneAmericaEirunepe                SystemSettingsTimeZone = "America/Eirunepe"
	SystemSettingsTimeZoneAmericaElSalvador              SystemSettingsTimeZone = "America/El_Salvador"
	SystemSettingsTimeZoneAmericaEnsenada                SystemSettingsTimeZone = "America/Ensenada"
	SystemSettingsTimeZoneAmericaFortNelson              SystemSettingsTimeZone = "America/Fort_Nelson"
	SystemSettingsTimeZoneAmericaFortWayne               SystemSettingsTimeZone = "America/Fort_Wayne"
	SystemSettingsTimeZoneAmericaFortaleza               SystemSettingsTimeZone = "America/Fortaleza"
	SystemSettingsTimeZoneAmericaGlaceBay                SystemSettingsTimeZone = "America/Glace_Bay"
	SystemSettingsTimeZoneAmericaGodthab                 SystemSettingsTimeZone = "America/Godthab"
	SystemSettingsTimeZoneAmericaGooseBay                SystemSettingsTimeZone = "America/Goose_Bay"
	SystemSettingsTimeZoneAmericaGrandTurk               SystemSettingsTimeZone = "America/Grand_Turk"
	SystemSettingsTimeZoneAmericaGrenada                 SystemSettingsTimeZone = "America/Grenada"
	SystemSettingsTimeZoneAmericaGuadeloupe              SystemSettingsTimeZone = "America/Guadeloupe"
	SystemSettingsTimeZoneAmericaGuatemala               SystemSettingsTimeZone = "America/Guatemala"
	SystemSettingsTimeZoneAmericaGuayaquil               SystemSettingsTimeZone = "America/Guayaquil"
	SystemSettingsTimeZoneAmericaGuyana                  SystemSettingsTimeZone = "America/Guyana"
	SystemSettingsTimeZoneAmericaHalifax                 SystemSettingsTimeZone = "America/Halifax"
	SystemSettingsTimeZoneAmericaHavana                  SystemSettingsTimeZone = "America/Havana"
	SystemSettingsTimeZoneAmericaHermosillo              SystemSettingsTimeZone = "America/Hermosillo"
	SystemSettingsTimeZoneAmericaIndianaIndianapolis     SystemSettingsTimeZone = "America/Indiana/Indianapolis"
	SystemSettingsTimeZoneAmericaIndianaKnox             SystemSettingsTimeZone = "America/Indiana/Knox"
	SystemSettingsTimeZoneAmericaIndianaMarengo          SystemSettingsTimeZone = "America/Indiana/Marengo"
	SystemSettingsTimeZoneAmericaIndianaPetersburg       SystemSettingsTimeZone = "America/Indiana/Petersburg"
	SystemSettingsTimeZoneAmericaIndianaTellCity         SystemSettingsTimeZone = "America/Indiana/Tell_City"
	SystemSettingsTimeZoneAmericaIndianaVevay            SystemSettingsTimeZone = "America/Indiana/Vevay"
	SystemSettingsTimeZoneAmericaIndianaVincennes        SystemSettingsTimeZone = "America/Indiana/Vincennes"
	SystemSettingsTimeZoneAmericaIndianaWinamac          SystemSettingsTimeZone = "America/Indiana/Winamac"
	SystemSettingsTimeZoneAmericaIndianapolis            SystemSettingsTimeZone = "America/Indianapolis"
	SystemSettingsTimeZoneAmericaInuvik                  SystemSettingsTimeZone = "America/Inuvik"
	SystemSettingsTimeZoneAmericaIqaluit                 SystemSettingsTimeZone = "America/Iqaluit"
	SystemSettingsTimeZoneAmericaJamaica                 SystemSettingsTimeZone = "America/Jamaica"
	SystemSettingsTimeZoneAmericaJujuy                   SystemSettingsTimeZone = "America/Jujuy"
	SystemSettingsTimeZoneAmericaJuneau                  SystemSettingsTimeZone = "America/Juneau"
	SystemSettingsTimeZoneAmericaKentuckyLouisville      SystemSettingsTimeZone = "America/Kentucky/Louisville"
	SystemSettingsTimeZoneAmericaKentuckyMonticello      SystemSettingsTimeZone = "America/Kentucky/Monticello"
	SystemSettingsTimeZoneAmericaKnoxIN                  SystemSettingsTimeZone = "America/Knox_IN"
	SystemSettingsTimeZoneAmericaKralendijk              SystemSettingsTimeZone = "America/Kralendijk"
	SystemSettingsTimeZoneAmericaLaPaz                   SystemSettingsTimeZone = "America/La_Paz"
	SystemSettingsTimeZoneAmericaLima                    SystemSettingsTimeZone = "America/Lima"
	SystemSettingsTimeZoneAmericaLosAngeles              SystemSettingsTimeZone = "America/Los_Angeles"
	SystemSettingsTimeZoneAmericaLouisville              SystemSettingsTimeZone = "America/Louisville"
	SystemSettingsTimeZoneAmericaLowerPrinces            SystemSettingsTimeZone = "America/Lower_Princes"
	SystemSettingsTimeZoneAmericaMaceio                  SystemSettingsTimeZone = "America/Maceio"
	SystemSettingsTimeZoneAmericaManagua                 SystemSettingsTimeZone = "America/Managua"
	SystemSettingsTimeZoneAmericaManaus                  SystemSettingsTimeZone = "America/Manaus"
	SystemSettingsTimeZoneAmericaMarigot                 SystemSettingsTimeZone = "America/Marigot"
	SystemSettingsTimeZoneAmericaMartinique              SystemSettingsTimeZone = "America/Martinique"
	SystemSettingsTimeZoneAmericaMatamoros               SystemSettingsTimeZone = "America/Matamoros"
	SystemSettingsTimeZoneAmericaMazatlan                SystemSettingsTimeZone = "America/Mazatlan"
	SystemSettingsTimeZoneAmericaMendoza                 SystemSettingsTimeZone = "America/Mendoza"
	SystemSettingsTimeZoneAmericaMenominee               SystemSettingsTimeZone = "America/Menominee"
	SystemSettingsTimeZoneAmericaMerida                  SystemSettingsTimeZone = "America/Merida"
	SystemSettingsTimeZoneAmericaMetlakatla              SystemSettingsTimeZone = "America/Metlakatla"
	SystemSettingsTimeZoneAmericaMexicoCity              SystemSettingsTimeZone = "America/Mexico_City"
	SystemSettingsTimeZoneAmericaMiquelon                SystemSettingsTimeZone = "America/Miquelon"
	SystemSettingsTimeZoneAmericaMoncton                 SystemSettingsTimeZone = "America/Moncton"
	SystemSettingsTimeZoneAmericaMonterrey               SystemSettingsTimeZone = "America/Monterrey"
	SystemSettingsTimeZoneAmericaMontevideo              SystemSettingsTimeZone = "America/Montevideo"
	SystemSettingsTimeZoneAmericaMontreal                SystemSettingsTimeZone = "America/Montreal"
	SystemSettingsTimeZoneAmericaMontserrat              SystemSettingsTimeZone = "America/Montserrat"
	SystemSettingsTimeZoneAmericaNassau                  SystemSettingsTimeZone = "America/Nassau"
	SystemSettingsTimeZoneAmericaNewYork                 SystemSettingsTimeZone = "America/New_York"
	SystemSettingsTimeZoneAmericaNipigon                 SystemSettingsTimeZone = "America/Nipigon"
	SystemSettingsTimeZoneAmericaNome                    SystemSettingsTimeZone = "America/Nome"
	SystemSettingsTimeZoneAmericaNoronha                 SystemSettingsTimeZone = "America/Noronha"
	SystemSettingsTimeZoneAmericaNorthDakotaBeulah       SystemSettingsTimeZone = "America/North_Dakota/Beulah"
	SystemSettingsTimeZoneAmericaNorthDakotaCenter       SystemSettingsTimeZone = "America/North_Dakota/Center"
	SystemSettingsTimeZoneAmericaNorthDakotaNewSalem     SystemSettingsTimeZone = "America/North_Dakota/New_Salem"
	SystemSettingsTimeZoneAmericaNuuk                    SystemSettingsTimeZone = "America/Nuuk"
	SystemSettingsTimeZoneAmericaOjinaga                 SystemSettingsTimeZone = "America/Ojinaga"
	SystemSettingsTimeZoneAmericaPanama                  SystemSettingsTimeZone = "America/Panama"
	SystemSettingsTimeZoneAmericaPangnirtung             SystemSettingsTimeZone = "America/Pangnirtung"
	SystemSettingsTimeZoneAmericaParamaribo              SystemSettingsTimeZone = "America/Paramaribo"
	SystemSettingsTimeZoneAmericaPhoenix                 SystemSettingsTimeZone = "America/Phoenix"
	SystemSettingsTimeZoneAmericaPortAuPrince            SystemSettingsTimeZone = "America/Port-au-Prince"
	SystemSettingsTimeZoneAmericaPortOfSpain             SystemSettingsTimeZone = "America/Port_of_Spain"
	SystemSettingsTimeZoneAmericaPortoAcre               SystemSettingsTimeZone = "America/Porto_Acre"
	SystemSettingsTimeZoneAmericaPortoVelho              SystemSettingsTimeZone = "America/Porto_Velho"
	SystemSettingsTimeZoneAmericaPuertoRico              SystemSettingsTimeZone = "America/Puerto_Rico"
	SystemSettingsTimeZoneAmericaPuntaArenas             SystemSettingsTimeZone = "America/Punta_Arenas"
	SystemSettingsTimeZoneAmericaRainyRiver              SystemSettingsTimeZone = "America/Rainy_River"
	SystemSettingsTimeZoneAmericaRankinInlet             SystemSettingsTimeZone = "America/Rankin_Inlet"
	SystemSettingsTimeZoneAmericaRecife                  SystemSettingsTimeZone = "America/Recife"
	SystemSettingsTimeZoneAmericaRegina                  SystemSettingsTimeZone = "America/Regina"
	SystemSettingsTimeZoneAmericaResolute                SystemSettingsTimeZone = "America/Resolute"
	SystemSettingsTimeZoneAmericaRioBranco               SystemSettingsTimeZone = "America/Rio_Branco"
	SystemSettingsTimeZoneAmericaRosario                 SystemSettingsTimeZone = "America/Rosario"
	SystemSettingsTimeZoneAmericaSantaIsabel             SystemSettingsTimeZone = "America/Santa_Isabel"
	SystemSettingsTimeZoneAmericaSantarem                SystemSettingsTimeZone = "America/Santarem"
	SystemSettingsTimeZoneAmericaSantiago                SystemSettingsTimeZone = "America/Santiago"
	SystemSettingsTimeZoneAmericaSantoDomingo            SystemSettingsTimeZone = "America/Santo_Domingo"
	SystemSettingsTimeZoneAmericaSaoPaulo                SystemSettingsTimeZone = "America/Sao_Paulo"
	SystemSettingsTimeZoneAmericaScoresbysund            SystemSettingsTimeZone = "America/Scoresbysund"
	SystemSettingsTimeZoneAmericaShiprock                SystemSettingsTimeZone = "America/Shiprock"
	SystemSettingsTimeZoneAmericaSitka                   SystemSettingsTimeZone = "America/Sitka"
	SystemSettingsTimeZoneAmericaStBarthelemy            SystemSettingsTimeZone = "America/St_Barthelemy"
	SystemSettingsTimeZoneAmericaStJohns                 SystemSettingsTimeZone = "America/St_Johns"
	SystemSettingsTimeZoneAmericaStKitts                 SystemSettingsTimeZone = "America/St_Kitts"
	SystemSettingsTimeZoneAmericaStLucia                 SystemSettingsTimeZone = "America/St_Lucia"
	SystemSettingsTimeZoneAmericaStThomas                SystemSettingsTimeZone = "America/St_Thomas"
	SystemSettingsTimeZoneAmericaStVincent               SystemSettingsTimeZone = "America/St_Vincent"
	SystemSettingsTimeZoneAmericaSwiftCurrent            SystemSettingsTimeZone = "America/Swift_Current"
	SystemSettingsTimeZoneAmericaTegucigalpa             SystemSettingsTimeZone = "America/Tegucigalpa"
	SystemSettingsTimeZoneAmericaThule                   SystemSettingsTimeZone = "America/Thule"
	SystemSettingsTimeZoneAmericaThunderBay              SystemSettingsTimeZone = "America/Thunder_Bay"
	SystemSettingsTimeZoneAmericaTijuana                 SystemSettingsTimeZone = "America/Tijuana"
	SystemSettingsTimeZoneAmericaToronto                 SystemSettingsTimeZone = "America/Toronto"
	SystemSettingsTimeZoneAmericaTortola                 SystemSettingsTimeZone = "America/Tortola"
	SystemSettingsTimeZoneAmericaVancouver               SystemSettingsTimeZone = "America/Vancouver"
	SystemSettingsTimeZoneAmericaVirgin                  SystemSettingsTimeZone = "America/Virgin"
	SystemSettingsTimeZoneAmericaWhitehorse              SystemSettingsTimeZone = "America/Whitehorse"
	SystemSettingsTimeZoneAmericaWinnipeg                SystemSettingsTimeZone = "America/Winnipeg"
	SystemSettingsTimeZoneAmericaYakutat                 SystemSettingsTimeZone = "America/Yakutat"
	SystemSettingsTimeZoneAmericaYellowknife             SystemSettingsTimeZone = "America/Yellowknife"
	SystemSettingsTimeZoneAntarcticaCasey                SystemSettingsTimeZone = "Antarctica/Casey"
	SystemSettingsTimeZoneAntarcticaDavis                SystemSettingsTimeZone = "Antarctica/Davis"
	SystemSettingsTimeZoneAntarcticaDumontDUrville       SystemSettingsTimeZone = "Antarctica/DumontDUrville"
	SystemSettingsTimeZoneAntarcticaMacquarie            SystemSettingsTimeZone = "Antarctica/Macquarie"
	SystemSettingsTimeZoneAntarcticaMawson               SystemSettingsTimeZone = "Antarctica/Mawson"
	SystemSettingsTimeZoneAntarcticaMcMurdo              SystemSettingsTimeZone = "Antarctica/McMurdo"
	SystemSettingsTimeZoneAntarcticaPalmer               SystemSettingsTimeZone = "Antarctica/Palmer"
	SystemSettingsTimeZoneAntarcticaRothera              SystemSettingsTimeZone = "Antarctica/Rothera"
	SystemSettingsTimeZoneAntarcticaSouthPole            SystemSettingsTimeZone = "Antarctica/South_Pole"
	SystemSettingsTimeZoneAntarcticaSyowa                SystemSettingsTimeZone = "Antarctica/Syowa"
	SystemSettingsTimeZoneAntarcticaTroll                SystemSettingsTimeZone = "Antarctica/Troll"
	SystemSettingsTimeZoneAntarcticaVostok               SystemSettingsTimeZone = "Antarctica/Vostok"
	SystemSettingsTimeZoneArcticLongyearbyen             SystemSettingsTimeZone = "Arctic/Longyearbyen"
	SystemSettingsTimeZoneAsiaAden                       SystemSettingsTimeZone = "Asia/Aden"
	SystemSettingsTimeZoneAsiaAlmaty                     SystemSettingsTimeZone = "Asia/Almaty"
	SystemSettingsTimeZoneAsiaAmman                      SystemSettingsTimeZone = "Asia/Amman"
	SystemSettingsTimeZoneAsiaAnadyr                     SystemSettingsTimeZone = "Asia/Anadyr"
	SystemSettingsTimeZoneAsiaAqtau                      SystemSettingsTimeZone = "Asia/Aqtau"
	SystemSettingsTimeZoneAsiaAqtobe                     SystemSettingsTimeZone = "Asia/Aqtobe"
	SystemSettingsTimeZoneAsiaAshgabat                   SystemSettingsTimeZone = "Asia/Ashgabat"
	SystemSettingsTimeZoneAsiaAshkhabad                  SystemSettingsTimeZone = "Asia/Ashkhabad"
	SystemSettingsTimeZoneAsiaAtyrau                     SystemSettingsTimeZone = "Asia/Atyrau"
	SystemSettingsTimeZoneAsiaBaghdad                    SystemSettingsTimeZone = "Asia/Baghdad"
	SystemSettingsTimeZoneAsiaBahrain                    SystemSettingsTimeZone = "Asia/Bahrain"
	SystemSettingsTimeZoneAsiaBaku                       SystemSettingsTimeZone = "Asia/Baku"
	SystemSettingsTimeZoneAsiaBangkok                    SystemSettingsTimeZone = "Asia/Bangkok"
	SystemSettingsTimeZoneAsiaBarnaul                    SystemSettingsTimeZone = "Asia/Barnaul"
	SystemSettingsTimeZoneAsiaBeirut                     SystemSettingsTimeZone = "Asia/Beirut"
	SystemSettingsTimeZoneAsiaBishkek                    SystemSettingsTimeZone = "Asia/Bishkek"
	SystemSettingsTimeZoneAsiaBrunei                     SystemSettingsTimeZone = "Asia/Brunei"
	SystemSettingsTimeZoneAsiaCalcutta                   SystemSettingsTimeZone = "Asia/Calcutta"
	SystemSettingsTimeZoneAsiaChita                      SystemSettingsTimeZone = "Asia/Chita"
	SystemSettingsTimeZoneAsiaChoibalsan                 SystemSettingsTimeZone = "Asia/Choibalsan"
	SystemSettingsTimeZoneAsiaChongqing                  SystemSettingsTimeZone = "Asia/Chongqing"
	SystemSettingsTimeZoneAsiaChungking                  SystemSettingsTimeZone = "Asia/Chungking"
	SystemSettingsTimeZoneAsiaColombo                    SystemSettingsTimeZone = "Asia/Colombo"
	SystemSettingsTimeZoneAsiaDacca                      SystemSettingsTimeZone = "Asia/Dacca"
	SystemSettingsTimeZoneAsiaDamascus                   SystemSettingsTimeZone = "Asia/Damascus"
	SystemSettingsTimeZoneAsiaDhaka                      SystemSettingsTimeZone = "Asia/Dhaka"
	SystemSettingsTimeZoneAsiaDili                       SystemSettingsTimeZone = "Asia/Dili"
	SystemSettingsTimeZoneAsiaDubai                      SystemSettingsTimeZone = "Asia/Dubai"
	SystemSettingsTimeZoneAsiaDushanbe                   SystemSettingsTimeZone = "Asia/Dushanbe"
	SystemSettingsTimeZoneAsiaFamagusta                  SystemSettingsTimeZone = "Asia/Famagusta"
	SystemSettingsTimeZoneAsiaGaza                       SystemSettingsTimeZone = "Asia/Gaza"
	SystemSettingsTimeZoneAsiaHarbin                     SystemSettingsTimeZone = "Asia/Harbin"
	SystemSettingsTimeZoneAsiaHebron                     SystemSettingsTimeZone = "Asia/Hebron"
	SystemSettingsTimeZoneAsiaHoChiMinh                  SystemSettingsTimeZone = "Asia/Ho_Chi_Minh"
	SystemSettingsTimeZoneAsiaHongKong                   SystemSettingsTimeZone = "Asia/Hong_Kong"
	SystemSettingsTimeZoneAsiaHovd                       SystemSettingsTimeZone = "Asia/Hovd"
	SystemSettingsTimeZoneAsiaIrkutsk                    SystemSettingsTimeZone = "Asia/Irkutsk"
	SystemSettingsTimeZoneAsiaIstanbul                   SystemSettingsTimeZone = "Asia/Istanbul"
	SystemSettingsTimeZoneAsiaJakarta                    SystemSettingsTimeZone = "Asia/Jakarta"
	SystemSettingsTimeZoneAsiaJayapura                   SystemSettingsTimeZone = "Asia/Jayapura"
	SystemSettingsTimeZoneAsiaJerusalem                  SystemSettingsTimeZone = "Asia/Jerusalem"
	SystemSettingsTimeZoneAsiaKabul                      SystemSettingsTimeZone = "Asia/Kabul"
	SystemSettingsTimeZoneAsiaKamchatka                  SystemSettingsTimeZone = "Asia/Kamchatka"
	SystemSettingsTimeZoneAsiaKarachi                    SystemSettingsTimeZone = "Asia/Karachi"
	SystemSettingsTimeZoneAsiaKashgar                    SystemSettingsTimeZone = "Asia/Kashgar"
	SystemSettingsTimeZoneAsiaKathmandu                  SystemSettingsTimeZone = "Asia/Kathmandu"
	SystemSettingsTimeZoneAsiaKatmandu                   SystemSettingsTimeZone = "Asia/Katmandu"
	SystemSettingsTimeZoneAsiaKhandyga                   SystemSettingsTimeZone = "Asia/Khandyga"
	SystemSettingsTimeZoneAsiaKolkata                    SystemSettingsTimeZone = "Asia/Kolkata"
	SystemSettingsTimeZoneAsiaKrasnoyarsk                SystemSettingsTimeZone = "Asia/Krasnoyarsk"
	SystemSettingsTimeZoneAsiaKualaLumpur                SystemSettingsTimeZone = "Asia/Kuala_Lumpur"
	SystemSettingsTimeZoneAsiaKuching                    SystemSettingsTimeZone = "Asia/Kuching"
	SystemSettingsTimeZoneAsiaKuwait                     SystemSettingsTimeZone = "Asia/Kuwait"
	SystemSettingsTimeZoneAsiaMacao                      SystemSettingsTimeZone = "Asia/Macao"
	SystemSettingsTimeZoneAsiaMacau                      SystemSettingsTimeZone = "Asia/Macau"
	SystemSettingsTimeZoneAsiaMagadan                    SystemSettingsTimeZone = "Asia/Magadan"
	SystemSettingsTimeZoneAsiaMakassar                   SystemSettingsTimeZone = "Asia/Makassar"
	SystemSettingsTimeZoneAsiaManila                     SystemSettingsTimeZone = "Asia/Manila"
	SystemSettingsTimeZoneAsiaMuscat                     SystemSettingsTimeZone = "Asia/Muscat"
	SystemSettingsTimeZoneAsiaNicosia                    SystemSettingsTimeZone = "Asia/Nicosia"
	SystemSettingsTimeZoneAsiaNovokuznetsk               SystemSettingsTimeZone = "Asia/Novokuznetsk"
	SystemSettingsTimeZoneAsiaNovosibirsk                SystemSettingsTimeZone = "Asia/Novosibirsk"
	SystemSettingsTimeZoneAsiaOmsk                       SystemSettingsTimeZone = "Asia/Omsk"
	SystemSettingsTimeZoneAsiaOral                       SystemSettingsTimeZone = "Asia/Oral"
	SystemSettingsTimeZoneAsiaPhnomPenh                  SystemSettingsTimeZone = "Asia/Phnom_Penh"
	SystemSettingsTimeZoneAsiaPontianak                  SystemSettingsTimeZone = "Asia/Pontianak"
	SystemSettingsTimeZoneAsiaPyongyang                  SystemSettingsTimeZone = "Asia/Pyongyang"
	SystemSettingsTimeZoneAsiaQatar                      SystemSettingsTimeZone = "Asia/Qatar"
	SystemSettingsTimeZoneAsiaQostanay                   SystemSettingsTimeZone = "Asia/Qostanay"
	SystemSettingsTimeZoneAsiaQyzylorda                  SystemSettingsTimeZone = "Asia/Qyzylorda"
	SystemSettingsTimeZoneAsiaRangoon                    SystemSettingsTimeZone = "Asia/Rangoon"
	SystemSettingsTimeZoneAsiaRiyadh                     SystemSettingsTimeZone = "Asia/Riyadh"
	SystemSettingsTimeZoneAsiaSaigon                     SystemSettingsTimeZone = "Asia/Saigon"
	SystemSettingsTimeZoneAsiaSakhalin                   SystemSettingsTimeZone = "Asia/Sakhalin"
	SystemSettingsTimeZoneAsiaSamarkand                  SystemSettingsTimeZone = "Asia/Samarkand"
	SystemSettingsTimeZoneAsiaSeoul                      SystemSettingsTimeZone = "Asia/Seoul"
	SystemSettingsTimeZoneAsiaShanghai                   SystemSettingsTimeZone = "Asia/Shanghai"
	SystemSettingsTimeZoneAsiaSingapore                  SystemSettingsTimeZone = "Asia/Singapore"
	SystemSettingsTimeZoneAsiaSrednekolymsk              SystemSettingsTimeZone = "Asia/Srednekolymsk"
	SystemSettingsTimeZoneAsiaTaipei                     SystemSettingsTimeZone = "Asia/Taipei"
	SystemSettingsTimeZoneAsiaTashkent                   SystemSettingsTimeZone = "Asia/Tashkent"
	SystemSettingsTimeZoneAsiaTbilisi                    SystemSettingsTimeZone = "Asia/Tbilisi"
	SystemSettingsTimeZoneAsiaTehran                     SystemSettingsTimeZone = "Asia/Tehran"
	SystemSettingsTimeZoneAsiaTelAviv                    SystemSettingsTimeZone = "Asia/Tel_Aviv"
	SystemSettingsTimeZoneAsiaThimbu                     SystemSettingsTimeZone = "Asia/Thimbu"
	SystemSettingsTimeZoneAsiaThimphu                    SystemSettingsTimeZone = "Asia/Thimphu"
	SystemSettingsTimeZoneAsiaTokyo                      SystemSettingsTimeZone = "Asia/Tokyo"
	SystemSettingsTimeZoneAsiaTomsk                      SystemSettingsTimeZone = "Asia/Tomsk"
	SystemSettingsTimeZoneAsiaUjungPandang               SystemSettingsTimeZone = "Asia/Ujung_Pandang"
	SystemSettingsTimeZoneAsiaUlaanbaatar                SystemSettingsTimeZone = "Asia/Ulaanbaatar"
	SystemSettingsTimeZoneAsiaUlanBator                  SystemSettingsTimeZone = "Asia/Ulan_Bator"
	SystemSettingsTimeZoneAsiaUrumqi                     SystemSettingsTimeZone = "Asia/Urumqi"
	SystemSettingsTimeZoneAsiaUstNera                    SystemSettingsTimeZone = "Asia/Ust-Nera"
	SystemSettingsTimeZoneAsiaVientiane                  SystemSettingsTimeZone = "Asia/Vientiane"
	SystemSettingsTimeZoneAsiaVladivostok                SystemSettingsTimeZone = "Asia/Vladivostok"
	SystemSettingsTimeZoneAsiaYakutsk                    SystemSettingsTimeZone = "Asia/Yakutsk"
	SystemSettingsTimeZoneAsiaYangon                     SystemSettingsTimeZone = "Asia/Yangon"
	SystemSettingsTimeZoneAsiaYekaterinburg              SystemSettingsTimeZone = "Asia/Yekaterinburg"
	SystemSettingsTimeZoneAsiaYerevan                    SystemSettingsTimeZone = "Asia/Yerevan"
	SystemSettingsTimeZoneAtlanticAzores                 SystemSettingsTimeZone = "Atlantic/Azores"
	SystemSettingsTimeZoneAtlanticBermuda                SystemSettingsTimeZone = "Atlantic/Bermuda"
	SystemSettingsTimeZoneAtlanticCanary                 SystemSettingsTimeZone = "Atlantic/Canary"
	SystemSettingsTimeZoneAtlanticCapeVerde              SystemSettingsTimeZone = "Atlantic/Cape_Verde"
	SystemSettingsTimeZoneAtlanticFaeroe                 SystemSettingsTimeZone = "Atlantic/Faeroe"
	SystemSettingsTimeZoneAtlanticFaroe                  SystemSettingsTimeZone = "Atlantic/Faroe"
	SystemSettingsTimeZoneAtlanticJanMayen               SystemSettingsTimeZone = "Atlantic/Jan_Mayen"
	SystemSettingsTimeZoneAtlanticMadeira                SystemSettingsTimeZone = "Atlantic/Madeira"
	SystemSettingsTimeZoneAtlanticReykjavik              SystemSettingsTimeZone = "Atlantic/Reykjavik"
	SystemSettingsTimeZoneAtlanticSouthGeorgia           SystemSettingsTimeZone = "Atlantic/South_Georgia"
	SystemSettingsTimeZoneAtlanticStHelena               SystemSettingsTimeZone = "Atlantic/St_Helena"
	SystemSettingsTimeZoneAtlanticStanley                SystemSettingsTimeZone = "Atlantic/Stanley"
	SystemSettingsTimeZoneAustraliaACT                   SystemSettingsTimeZone = "Australia/ACT"
	SystemSettingsTimeZoneAustraliaAdelaide              SystemSettingsTimeZone = "Australia/Adelaide"
	SystemSettingsTimeZoneAustraliaBrisbane              SystemSettingsTimeZone = "Australia/Brisbane"
	SystemSettingsTimeZoneAustraliaBrokenHill            SystemSettingsTimeZone = "Australia/Broken_Hill"
	SystemSettingsTimeZoneAustraliaCanberra              SystemSettingsTimeZone = "Australia/Canberra"
	SystemSettingsTimeZoneAustraliaCurrie                SystemSettingsTimeZone = "Australia/Currie"
	SystemSettingsTimeZoneAustraliaDarwin                SystemSettingsTimeZone = "Australia/Darwin"
	SystemSettingsTimeZoneAustraliaEucla                 SystemSettingsTimeZone = "Australia/Eucla"
	SystemSettingsTimeZoneAustraliaHobart                SystemSettingsTimeZone = "Australia/Hobart"
	SystemSettingsTimeZoneAustraliaLHI                   SystemSettingsTimeZone = "Australia/LHI"
	SystemSettingsTimeZoneAustraliaLindeman              SystemSettingsTimeZone = "Australia/Lindeman"
	SystemSettingsTimeZoneAustraliaLordHowe              SystemSettingsTimeZone = "Australia/Lord_Howe"
	SystemSettingsTimeZoneAustraliaMelbourne             SystemSettingsTimeZone = "Australia/Melbourne"
	SystemSettingsTimeZoneAustraliaNSW                   SystemSettingsTimeZone = "Australia/NSW"
	SystemSettingsTimeZoneAustraliaNorth                 SystemSettingsTimeZone = "Australia/North"
	SystemSettingsTimeZoneAustraliaPerth                 SystemSettingsTimeZone = "Australia/Perth"
	SystemSettingsTimeZoneAustraliaQueensland            SystemSettingsTimeZone = "Australia/Queensland"
	SystemSettingsTimeZoneAustraliaSouth                 SystemSettingsTimeZone = "Australia/South"
	SystemSettingsTimeZoneAustraliaSydney                SystemSettingsTimeZone = "Australia/Sydney"
	SystemSettingsTimeZoneAustraliaTasmania              SystemSettingsTimeZone = "Australia/Tasmania"
	SystemSettingsTimeZoneAustraliaVictoria              SystemSettingsTimeZone = "Australia/Victoria"
	SystemSettingsTimeZoneAustraliaWest                  SystemSettingsTimeZone = "Australia/West"
	SystemSettingsTimeZoneAustraliaYancowinna            SystemSettingsTimeZone = "Australia/Yancowinna"
	SystemSettingsTimeZoneBrazilAcre                     SystemSettingsTimeZone = "Brazil/Acre"
	SystemSettingsTimeZoneBrazilDeNoronha                SystemSettingsTimeZone = "Brazil/DeNoronha"
	SystemSettingsTimeZoneBrazilEast                     SystemSettingsTimeZone = "Brazil/East"
	SystemSettingsTimeZoneBrazilWest                     SystemSettingsTimeZone = "Brazil/West"
	SystemSettingsTimeZoneCET                            SystemSettingsTimeZone = "CET"
	SystemSettingsTimeZoneCST6CDT                        SystemSettingsTimeZone = "CST6CDT"
	SystemSettingsTimeZoneCanadaAtlantic                 SystemSettingsTimeZone = "Canada/Atlantic"
	SystemSettingsTimeZoneCanadaCentral                  SystemSettingsTimeZone = "Canada/Central"
	SystemSettingsTimeZoneCanadaEastern                  SystemSettingsTimeZone = "Canada/Eastern"
	SystemSettingsTimeZoneCanadaMountain                 SystemSettingsTimeZone = "Canada/Mountain"
	SystemSettingsTimeZoneCanadaNewfoundland             SystemSettingsTimeZone = "Canada/Newfoundland"
	SystemSettingsTimeZoneCanadaPacific                  SystemSettingsTimeZone = "Canada/Pacific"
	SystemSettingsTimeZoneCanadaSaskatchewan             SystemSettingsTimeZone = "Canada/Saskatchewan"
	SystemSettingsTimeZoneCanadaYukon                    SystemSettingsTimeZone = "Canada/Yukon"
	SystemSettingsTimeZoneChileContinental               SystemSettingsTimeZone = "Chile/Continental"
	SystemSettingsTimeZoneChileEasterIsland              SystemSettingsTimeZone = "Chile/EasterIsland"
	SystemSettingsTimeZoneCuba                           SystemSettingsTimeZone = "Cuba"
	SystemSettingsTimeZoneEET                            SystemSettingsTimeZone = "EET"
	SystemSettingsTimeZoneEST                            SystemSettingsTimeZone = "EST"
	SystemSettingsTimeZoneEST5EDT                        SystemSettingsTimeZone = "EST5EDT"
	SystemSettingsTimeZoneEgypt                          SystemSettingsTimeZone = "Egypt"
	SystemSettingsTimeZoneEire                           SystemSettingsTimeZone = "Eire"
	SystemSettingsTimeZoneEtcGMT                         SystemSettingsTimeZone = "Etc/GMT"
	SystemSettingsTimeZoneEtcGMT0                        SystemSettingsTimeZone = "Etc/GMT+0"
	SystemSettingsTimeZoneEtcGMT01                       SystemSettingsTimeZone = "Etc/GMT-0"
	SystemSettingsTimeZoneEtcGMT02                       SystemSettingsTimeZone = "Etc/GMT0"
	SystemSettingsTimeZoneEtcGMT1                        SystemSettingsTimeZone = "Etc/GMT+1"
	SystemSettingsTimeZoneEtcGMT10                       SystemSettingsTimeZone = "Etc/GMT+10"
	SystemSettingsTimeZoneEtcGMT101                      SystemSettingsTimeZone = "Etc/GMT-10"
	SystemSettingsTimeZoneEtcGMT11                       SystemSettingsTimeZone = "Etc/GMT-1"
	SystemSettingsTimeZoneEtcGMT111                      SystemSettingsTimeZone = "Etc/GMT-11"
	SystemSettingsTimeZoneEtcGMT12                       SystemSettingsTimeZone = "Etc/GMT+12"
	SystemSettingsTimeZoneEtcGMT121                      SystemSettingsTimeZone = "Etc/GMT-12"
	SystemSettingsTimeZoneEtcGMT13                       SystemSettingsTimeZone = "Etc/GMT-13"
	SystemSettingsTimeZoneEtcGMT14                       SystemSettingsTimeZone = "Etc/GMT-14"
	SystemSettingsTimeZoneEtcGMT2                        SystemSettingsTimeZone = "Etc/GMT+2"
	SystemSettingsTimeZoneEtcGMT21                       SystemSettingsTimeZone = "Etc/GMT-2"
	SystemSettingsTimeZoneEtcGMT3                        SystemSettingsTimeZone = "Etc/GMT+3"
	SystemSettingsTimeZoneEtcGMT31                       SystemSettingsTimeZone = "Etc/GMT-3"
	SystemSettingsTimeZoneEtcGMT4                        SystemSettingsTimeZone = "Etc/GMT+4"
	SystemSettingsTimeZoneEtcGMT41                       SystemSettingsTimeZone = "Etc/GMT-4"
	SystemSettingsTimeZoneEtcGMT5                        SystemSettingsTimeZone = "Etc/GMT+5"
	SystemSettingsTimeZoneEtcGMT51                       SystemSettingsTimeZone = "Etc/GMT-5"
	SystemSettingsTimeZoneEtcGMT6                        SystemSettingsTimeZone = "Etc/GMT+6"
	SystemSettingsTimeZoneEtcGMT61                       SystemSettingsTimeZone = "Etc/GMT-6"
	SystemSettingsTimeZoneEtcGMT7                        SystemSettingsTimeZone = "Etc/GMT+7"
	SystemSettingsTimeZoneEtcGMT71                       SystemSettingsTimeZone = "Etc/GMT-7"
	SystemSettingsTimeZoneEtcGMT8                        SystemSettingsTimeZone = "Etc/GMT+8"
	SystemSettingsTimeZoneEtcGMT81                       SystemSettingsTimeZone = "Etc/GMT-8"
	SystemSettingsTimeZoneEtcGMT9                        SystemSettingsTimeZone = "Etc/GMT+9"
	SystemSettingsTimeZoneEtcGMT91                       SystemSettingsTimeZone = "Etc/GMT-9"
	SystemSettingsTimeZoneEtcGreenwich                   SystemSettingsTimeZone = "Etc/Greenwich"
	SystemSettingsTimeZoneEtcUCT                         SystemSettingsTimeZone = "Etc/UCT"
	SystemSettingsTimeZoneEtcUTC                         SystemSettingsTimeZone = "Etc/UTC"
	SystemSettingsTimeZoneEtcUniversal                   SystemSettingsTimeZone = "Etc/Universal"
	SystemSettingsTimeZoneEtcZulu                        SystemSettingsTimeZone = "Etc/Zulu"
	SystemSettingsTimeZoneEuropeAmsterdam                SystemSettingsTimeZone = "Europe/Amsterdam"
	SystemSettingsTimeZoneEuropeAndorra                  SystemSettingsTimeZone = "Europe/Andorra"
	SystemSettingsTimeZoneEuropeAstrakhan                SystemSettingsTimeZone = "Europe/Astrakhan"
	SystemSettingsTimeZoneEuropeAthens                   SystemSettingsTimeZone = "Europe/Athens"
	SystemSettingsTimeZoneEuropeBelfast                  SystemSettingsTimeZone = "Europe/Belfast"
	SystemSettingsTimeZoneEuropeBelgrade                 SystemSettingsTimeZone = "Europe/Belgrade"
	SystemSettingsTimeZoneEuropeBerlin                   SystemSettingsTimeZone = "Europe/Berlin"
	SystemSettingsTimeZoneEuropeBratislava               SystemSettingsTimeZone = "Europe/Bratislava"
	SystemSettingsTimeZoneEuropeBrussels                 SystemSettingsTimeZone = "Europe/Brussels"
	SystemSettingsTimeZoneEuropeBucharest                SystemSettingsTimeZone = "Europe/Bucharest"
	SystemSettingsTimeZoneEuropeBudapest                 SystemSettingsTimeZone = "Europe/Budapest"
	SystemSettingsTimeZoneEuropeBusingen                 SystemSettingsTimeZone = "Europe/Busingen"
	SystemSettingsTimeZoneEuropeChisinau                 SystemSettingsTimeZone = "Europe/Chisinau"
	SystemSettingsTimeZoneEuropeCopenhagen               SystemSettingsTimeZone = "Europe/Copenhagen"
	SystemSettingsTimeZoneEuropeDublin                   SystemSettingsTimeZone = "Europe/Dublin"
	SystemSettingsTimeZoneEuropeGibraltar                SystemSettingsTimeZone = "Europe/Gibraltar"
	SystemSettingsTimeZoneEuropeGuernsey                 SystemSettingsTimeZone = "Europe/Guernsey"
	SystemSettingsTimeZoneEuropeHelsinki                 SystemSettingsTimeZone = "Europe/Helsinki"
	SystemSettingsTimeZoneEuropeIsleOfMan                SystemSettingsTimeZone = "Europe/Isle_of_Man"
	SystemSettingsTimeZoneEuropeIstanbul                 SystemSettingsTimeZone = "Europe/Istanbul"
	SystemSettingsTimeZoneEuropeJersey                   SystemSettingsTimeZone = "Europe/Jersey"
	SystemSettingsTimeZoneEuropeKaliningrad              SystemSettingsTimeZone = "Europe/Kaliningrad"
	SystemSettingsTimeZoneEuropeKiev                     SystemSettingsTimeZone = "Europe/Kiev"
	SystemSettingsTimeZoneEuropeKirov                    SystemSettingsTimeZone = "Europe/Kirov"
	SystemSettingsTimeZoneEuropeKyiv                     SystemSettingsTimeZone = "Europe/Kyiv"
	SystemSettingsTimeZoneEuropeLisbon                   SystemSettingsTimeZone = "Europe/Lisbon"
	SystemSettingsTimeZoneEuropeLjubljana                SystemSettingsTimeZone = "Europe/Ljubljana"
	SystemSettingsTimeZoneEuropeLondon                   SystemSettingsTimeZone = "Europe/London"
	SystemSettingsTimeZoneEuropeLuxembourg               SystemSettingsTimeZone = "Europe/Luxembourg"
	SystemSettingsTimeZoneEuropeMadrid                   SystemSettingsTimeZone = "Europe/Madrid"
	SystemSettingsTimeZoneEuropeMalta                    SystemSettingsTimeZone = "Europe/Malta"
	SystemSettingsTimeZoneEuropeMariehamn                SystemSettingsTimeZone = "Europe/Mariehamn"
	SystemSettingsTimeZoneEuropeMinsk                    SystemSettingsTimeZone = "Europe/Minsk"
	SystemSettingsTimeZoneEuropeMonaco                   SystemSettingsTimeZone = "Europe/Monaco"
	SystemSettingsTimeZoneEuropeMoscow                   SystemSettingsTimeZone = "Europe/Moscow"
	SystemSettingsTimeZoneEuropeNicosia                  SystemSettingsTimeZone = "Europe/Nicosia"
	SystemSettingsTimeZoneEuropeOslo                     SystemSettingsTimeZone = "Europe/Oslo"
	SystemSettingsTimeZoneEuropeParis                    SystemSettingsTimeZone = "Europe/Paris"
	SystemSettingsTimeZoneEuropePodgorica                SystemSettingsTimeZone = "Europe/Podgorica"
	SystemSettingsTimeZoneEuropePrague                   SystemSettingsTimeZone = "Europe/Prague"
	SystemSettingsTimeZoneEuropeRiga                     SystemSettingsTimeZone = "Europe/Riga"
	SystemSettingsTimeZoneEuropeRome                     SystemSettingsTimeZone = "Europe/Rome"
	SystemSettingsTimeZoneEuropeSamara                   SystemSettingsTimeZone = "Europe/Samara"
	SystemSettingsTimeZoneEuropeSanMarino                SystemSettingsTimeZone = "Europe/San_Marino"
	SystemSettingsTimeZoneEuropeSarajevo                 SystemSettingsTimeZone = "Europe/Sarajevo"
	SystemSettingsTimeZoneEuropeSaratov                  SystemSettingsTimeZone = "Europe/Saratov"
	SystemSettingsTimeZoneEuropeSimferopol               SystemSettingsTimeZone = "Europe/Simferopol"
	SystemSettingsTimeZoneEuropeSkopje                   SystemSettingsTimeZone = "Europe/Skopje"
	SystemSettingsTimeZoneEuropeSofia                    SystemSettingsTimeZone = "Europe/Sofia"
	SystemSettingsTimeZoneEuropeStockholm                SystemSettingsTimeZone = "Europe/Stockholm"
	SystemSettingsTimeZoneEuropeTallinn                  SystemSettingsTimeZone = "Europe/Tallinn"
	SystemSettingsTimeZoneEuropeTirane                   SystemSettingsTimeZone = "Europe/Tirane"
	SystemSettingsTimeZoneEuropeTiraspol                 SystemSettingsTimeZone = "Europe/Tiraspol"
	SystemSettingsTimeZoneEuropeUlyanovsk                SystemSettingsTimeZone = "Europe/Ulyanovsk"
	SystemSettingsTimeZoneEuropeUzhgorod                 SystemSettingsTimeZone = "Europe/Uzhgorod"
	SystemSettingsTimeZoneEuropeVaduz                    SystemSettingsTimeZone = "Europe/Vaduz"
	SystemSettingsTimeZoneEuropeVatican                  SystemSettingsTimeZone = "Europe/Vatican"
	SystemSettingsTimeZoneEuropeVienna                   SystemSettingsTimeZone = "Europe/Vienna"
	SystemSettingsTimeZoneEuropeVilnius                  SystemSettingsTimeZone = "Europe/Vilnius"
	SystemSettingsTimeZoneEuropeVolgograd                SystemSettingsTimeZone = "Europe/Volgograd"
	SystemSettingsTimeZoneEuropeWarsaw                   SystemSettingsTimeZone = "Europe/Warsaw"
	SystemSettingsTimeZoneEuropeZagreb                   SystemSettingsTimeZone = "Europe/Zagreb"
	SystemSettingsTimeZoneEuropeZaporozhye               SystemSettingsTimeZone = "Europe/Zaporozhye"
	SystemSettingsTimeZoneEuropeZurich                   SystemSettingsTimeZone = "Europe/Zurich"
	SystemSettingsTimeZoneGB                             SystemSettingsTimeZone = "GB"
	SystemSettingsTimeZoneGBEire                         SystemSettingsTimeZone = "GB-Eire"
	SystemSettingsTimeZoneGMT                            SystemSettingsTimeZone = "GMT"
	SystemSettingsTimeZoneGMT0                           SystemSettingsTimeZone = "GMT+0"
	SystemSettingsTimeZoneGMT01                          SystemSettingsTimeZone = "GMT-0"
	SystemSettingsTimeZoneGMT02                          SystemSettingsTimeZone = "GMT0"
	SystemSettingsTimeZoneGreenwich                      SystemSettingsTimeZone = "Greenwich"
	SystemSettingsTimeZoneHST                            SystemSettingsTimeZone = "HST"
	SystemSettingsTimeZoneHongkong                       SystemSettingsTimeZone = "Hongkong"
	SystemSettingsTimeZoneIceland                        SystemSettingsTimeZone = "Iceland"
	SystemSettingsTimeZoneIndianAntananarivo             SystemSettingsTimeZone = "Indian/Antananarivo"
	SystemSettingsTimeZoneIndianChagos                   SystemSettingsTimeZone = "Indian/Chagos"
	SystemSettingsTimeZoneIndianChristmas                SystemSettingsTimeZone = "Indian/Christmas"
	SystemSettingsTimeZoneIndianCocos                    SystemSettingsTimeZone = "Indian/Cocos"
	SystemSettingsTimeZoneIndianComoro                   SystemSettingsTimeZone = "Indian/Comoro"
	SystemSettingsTimeZoneIndianKerguelen                SystemSettingsTimeZone = "Indian/Kerguelen"
	SystemSettingsTimeZoneIndianMahe                     SystemSettingsTimeZone = "Indian/Mahe"
	SystemSettingsTimeZoneIndianMaldives                 SystemSettingsTimeZone = "Indian/Maldives"
	SystemSettingsTimeZoneIndianMauritius                SystemSettingsTimeZone = "Indian/Mauritius"
	SystemSettingsTimeZoneIndianMayotte                  SystemSettingsTimeZone = "Indian/Mayotte"
	SystemSettingsTimeZoneIndianReunion                  SystemSettingsTimeZone = "Indian/Reunion"
	SystemSettingsTimeZoneIran                           SystemSettingsTimeZone = "Iran"
	SystemSettingsTimeZoneIsrael                         SystemSettingsTimeZone = "Israel"
	SystemSettingsTimeZoneJamaica                        SystemSettingsTimeZone = "Jamaica"
	SystemSettingsTimeZoneJapan                          SystemSettingsTimeZone = "Japan"
	SystemSettingsTimeZoneKwajalein                      SystemSettingsTimeZone = "Kwajalein"
	SystemSettingsTimeZoneLibya                          SystemSettingsTimeZone = "Libya"
	SystemSettingsTimeZoneMET                            SystemSettingsTimeZone = "MET"
	SystemSettingsTimeZoneMST                            SystemSettingsTimeZone = "MST"
	SystemSettingsTimeZoneMST7MDT                        SystemSettingsTimeZone = "MST7MDT"
	SystemSettingsTimeZoneMexicoBajaNorte                SystemSettingsTimeZone = "Mexico/BajaNorte"
	SystemSettingsTimeZoneMexicoBajaSur                  SystemSettingsTimeZone = "Mexico/BajaSur"
	SystemSettingsTimeZoneMexicoGeneral                  SystemSettingsTimeZone = "Mexico/General"
	SystemSettingsTimeZoneNZ                             SystemSettingsTimeZone = "NZ"
	SystemSettingsTimeZoneNZCHAT                         SystemSettingsTimeZone = "NZ-CHAT"
	SystemSettingsTimeZoneNavajo                         SystemSettingsTimeZone = "Navajo"
	SystemSettingsTimeZonePRC                            SystemSettingsTimeZone = "PRC"
	SystemSettingsTimeZonePST8PDT                        SystemSettingsTimeZone = "PST8PDT"
	SystemSettingsTimeZonePacificApia                    SystemSettingsTimeZone = "Pacific/Apia"
	SystemSettingsTimeZonePacificAuckland                SystemSettingsTimeZone = "Pacific/Auckland"
	SystemSettingsTimeZonePacificBougainville            SystemSettingsTimeZone = "Pacific/Bougainville"
	SystemSettingsTimeZonePacificChatham                 SystemSettingsTimeZone = "Pacific/Chatham"
	SystemSettingsTimeZonePacificChuuk                   SystemSettingsTimeZone = "Pacific/Chuuk"
	SystemSettingsTimeZonePacificEaster                  SystemSettingsTimeZone = "Pacific/Easter"
	SystemSettingsTimeZonePacificEfate                   SystemSettingsTimeZone = "Pacific/Efate"
	SystemSettingsTimeZonePacificEnderbury               SystemSettingsTimeZone = "Pacific/Enderbury"
	SystemSettingsTimeZonePacificFakaofo                 SystemSettingsTimeZone = "Pacific/Fakaofo"
	SystemSettingsTimeZonePacificFiji                    SystemSettingsTimeZone = "Pacific/Fiji"
	SystemSettingsTimeZonePacificFunafuti                SystemSettingsTimeZone = "Pacific/Funafuti"
	SystemSettingsTimeZonePacificGalapagos               SystemSettingsTimeZone = "Pacific/Galapagos"
	SystemSettingsTimeZonePacificGambier                 SystemSettingsTimeZone = "Pacific/Gambier"
	SystemSettingsTimeZonePacificGuadalcanal             SystemSettingsTimeZone = "Pacific/Guadalcanal"
	SystemSettingsTimeZonePacificGuam                    SystemSettingsTimeZone = "Pacific/Guam"
	SystemSettingsTimeZonePacificHonolulu                SystemSettingsTimeZone = "Pacific/Honolulu"
	SystemSettingsTimeZonePacificJohnston                SystemSettingsTimeZone = "Pacific/Johnston"
	SystemSettingsTimeZonePacificKanton                  SystemSettingsTimeZone = "Pacific/Kanton"
	SystemSettingsTimeZonePacificKiritimati              SystemSettingsTimeZone = "Pacific/Kiritimati"
	SystemSettingsTimeZonePacificKosrae                  SystemSettingsTimeZone = "Pacific/Kosrae"
	SystemSettingsTimeZonePacificKwajalein               SystemSettingsTimeZone = "Pacific/Kwajalein"
	SystemSettingsTimeZonePacificMajuro                  SystemSettingsTimeZone = "Pacific/Majuro"
	SystemSettingsTimeZonePacificMarquesas               SystemSettingsTimeZone = "Pacific/Marquesas"
	SystemSettingsTimeZonePacificMidway                  SystemSettingsTimeZone = "Pacific/Midway"
	SystemSettingsTimeZonePacificNauru                   SystemSettingsTimeZone = "Pacific/Nauru"
	SystemSettingsTimeZonePacificNiue                    SystemSettingsTimeZone = "Pacific/Niue"
	SystemSettingsTimeZonePacificNorfolk                 SystemSettingsTimeZone = "Pacific/Norfolk"
	SystemSettingsTimeZonePacificNoumea                  SystemSettingsTimeZone = "Pacific/Noumea"
	SystemSettingsTimeZonePacificPagoPago                SystemSettingsTimeZone = "Pacific/Pago_Pago"
	SystemSettingsTimeZonePacificPalau                   SystemSettingsTimeZone = "Pacific/Palau"
	SystemSettingsTimeZonePacificPitcairn                SystemSettingsTimeZone = "Pacific/Pitcairn"
	SystemSettingsTimeZonePacificPohnpei                 SystemSettingsTimeZone = "Pacific/Pohnpei"
	SystemSettingsTimeZonePacificPonape                  SystemSettingsTimeZone = "Pacific/Ponape"
	SystemSettingsTimeZonePacificPortMoresby             SystemSettingsTimeZone = "Pacific/Port_Moresby"
	SystemSettingsTimeZonePacificRarotonga               SystemSettingsTimeZone = "Pacific/Rarotonga"
	SystemSettingsTimeZonePacificSaipan                  SystemSettingsTimeZone = "Pacific/Saipan"
	SystemSettingsTimeZonePacificSamoa                   SystemSettingsTimeZone = "Pacific/Samoa"
	SystemSettingsTimeZonePacificTahiti                  SystemSettingsTimeZone = "Pacific/Tahiti"
	SystemSettingsTimeZonePacificTarawa                  SystemSettingsTimeZone = "Pacific/Tarawa"
	SystemSettingsTimeZonePacificTongatapu               SystemSettingsTimeZone = "Pacific/Tongatapu"
	SystemSettingsTimeZonePacificTruk                    SystemSettingsTimeZone = "Pacific/Truk"
	SystemSettingsTimeZonePacificWake                    SystemSettingsTimeZone = "Pacific/Wake"
	SystemSettingsTimeZonePacificWallis                  SystemSettingsTimeZone = "Pacific/Wallis"
	SystemSettingsTimeZonePacificYap                     SystemSettingsTimeZone = "Pacific/Yap"
	SystemSettingsTimeZonePoland                         SystemSettingsTimeZone = "Poland"
	SystemSettingsTimeZonePortugal                       SystemSettingsTimeZone = "Portugal"
	SystemSettingsTimeZoneROC                            SystemSettingsTimeZone = "ROC"
	SystemSettingsTimeZoneROK                            SystemSettingsTimeZone = "ROK"
	SystemSettingsTimeZoneSingapore                      SystemSettingsTimeZone = "Singapore"
	SystemSettingsTimeZoneTurkey                         SystemSettingsTimeZone = "Turkey"
	SystemSettingsTimeZoneUCT                            SystemSettingsTimeZone = "UCT"
	SystemSettingsTimeZoneUSAlaska                       SystemSettingsTimeZone = "US/Alaska"
	SystemSettingsTimeZoneUSAleutian                     SystemSettingsTimeZone = "US/Aleutian"
	SystemSettingsTimeZoneUSArizona                      SystemSettingsTimeZone = "US/Arizona"
	SystemSettingsTimeZoneUSCentral                      SystemSettingsTimeZone = "US/Central"
	SystemSettingsTimeZoneUSEastIndiana                  SystemSettingsTimeZone = "US/East-Indiana"
	SystemSettingsTimeZoneUSEastern                      SystemSettingsTimeZone = "US/Eastern"
	SystemSettingsTimeZoneUSHawaii                       SystemSettingsTimeZone = "US/Hawaii"
	SystemSettingsTimeZoneUSIndianaStarke                SystemSettingsTimeZone = "US/Indiana-Starke"
	SystemSettingsTimeZoneUSMichigan                     SystemSettingsTimeZone = "US/Michigan"
	SystemSettingsTimeZoneUSMountain                     SystemSettingsTimeZone = "US/Mountain"
	SystemSettingsTimeZoneUSPacific                      SystemSettingsTimeZone = "US/Pacific"
	SystemSettingsTimeZoneUSSamoa                        SystemSettingsTimeZone = "US/Samoa"
	SystemSettingsTimeZoneUTC                            SystemSettingsTimeZone = "UTC"
	SystemSettingsTimeZoneUniversal                      SystemSettingsTimeZone = "Universal"
	SystemSettingsTimeZoneWET                            SystemSettingsTimeZone = "WET"
	SystemSettingsTimeZoneWSU                            SystemSettingsTimeZone = "W-SU"
	SystemSettingsTimeZoneZulu                           SystemSettingsTimeZone = "Zulu"
)

Defines values for SystemSettingsTimeZone.

type SystemSettingsUpdateFormdataRequestBody added in v0.2.0

type SystemSettingsUpdateFormdataRequestBody = SystemSettingsRequest

SystemSettingsUpdateFormdataRequestBody defines body for SystemSettingsUpdate for application/x-www-form-urlencoded ContentType.

type SystemSettingsUpdateJSONRequestBody

type SystemSettingsUpdateJSONRequestBody = SystemSettingsRequest

SystemSettingsUpdateJSONRequestBody defines body for SystemSettingsUpdate for application/json ContentType.

type SystemSettingsUpdateMultipartRequestBody added in v0.2.0

type SystemSettingsUpdateMultipartRequestBody = SystemSettingsRequest

SystemSettingsUpdateMultipartRequestBody defines body for SystemSettingsUpdate for multipart/form-data ContentType.

type SystemSettingsUpdateResponse

type SystemSettingsUpdateResponse struct {
	Body         []byte
	HTTPResponse *http.Response
	JSON200      *SystemSettings
}

func ParseSystemSettingsUpdateResponse

func ParseSystemSettingsUpdateResponse(rsp *http.Response) (*SystemSettingsUpdateResponse, error)

ParseSystemSettingsUpdateResponse parses an HTTP response from a SystemSettingsUpdateWithResponse call

func (SystemSettingsUpdateResponse) Status

Status returns HTTPResponse.Status

func (SystemSettingsUpdateResponse) StatusCode

func (r SystemSettingsUpdateResponse) StatusCode() int

StatusCode returns HTTPResponse.StatusCode

type Tag

type Tag struct {
	Tags []string `json:"tags"`
}

Tag defines model for Tag.

type TagRequest added in v0.2.0

type TagRequest struct {
	Tags []string `json:"tags"`
}

TagRequest defines model for TagRequest.

type TechnologiesCreateFormdataRequestBody added in v0.2.0

type TechnologiesCreateFormdataRequestBody = AppAnalysisRequest

TechnologiesCreateFormdataRequestBody defines body for TechnologiesCreate for application/x-www-form-urlencoded ContentType.

type TechnologiesCreateJSONRequestBody

type TechnologiesCreateJSONRequestBody = AppAnalysisRequest

TechnologiesCreateJSONRequestBody defines body for TechnologiesCreate for application/json ContentType.

type TechnologiesCreateMultipartRequestBody added in v0.2.0

type TechnologiesCreateMultipartRequestBody = AppAnalysisRequest

TechnologiesCreateMultipartRequestBody defines body for TechnologiesCreate for multipart/form-data ContentType.

type TechnologiesCreateResponse

type TechnologiesCreateResponse struct {
	Body         []byte
	HTTPResponse *http.Response
	JSON201      *AppAnalysis
}

func ParseTechnologiesCreateResponse

func ParseTechnologiesCreateResponse(rsp *http.Response) (*TechnologiesCreateResponse, error)

ParseTechnologiesCreateResponse parses an HTTP response from a TechnologiesCreateWithResponse call

func (TechnologiesCreateResponse) Status

Status returns HTTPResponse.Status

func (TechnologiesCreateResponse) StatusCode

func (r TechnologiesCreateResponse) StatusCode() int

StatusCode returns HTTPResponse.StatusCode

type TechnologiesDeletePreviewListParams added in v0.2.0

type TechnologiesDeletePreviewListParams struct {
	// Limit Number of results to return per page.
	Limit *int `form:"limit,omitempty" json:"limit,omitempty"`

	// Offset The initial index from which to return the results.
	Offset *int `form:"offset,omitempty" json:"offset,omitempty"`
}

TechnologiesDeletePreviewListParams defines parameters for TechnologiesDeletePreviewList.

type TechnologiesDeletePreviewListResponse added in v0.2.0

type TechnologiesDeletePreviewListResponse struct {
	Body         []byte
	HTTPResponse *http.Response
	JSON200      *PaginatedDeletePreviewList
}

func ParseTechnologiesDeletePreviewListResponse added in v0.2.0

func ParseTechnologiesDeletePreviewListResponse(rsp *http.Response) (*TechnologiesDeletePreviewListResponse, error)

ParseTechnologiesDeletePreviewListResponse parses an HTTP response from a TechnologiesDeletePreviewListWithResponse call

func (TechnologiesDeletePreviewListResponse) Status added in v0.2.0

Status returns HTTPResponse.Status

func (TechnologiesDeletePreviewListResponse) StatusCode added in v0.2.0

StatusCode returns HTTPResponse.StatusCode

type TechnologiesDestroyResponse

type TechnologiesDestroyResponse struct {
	Body         []byte
	HTTPResponse *http.Response
}

func ParseTechnologiesDestroyResponse

func ParseTechnologiesDestroyResponse(rsp *http.Response) (*TechnologiesDestroyResponse, error)

ParseTechnologiesDestroyResponse parses an HTTP response from a TechnologiesDestroyWithResponse call

func (TechnologiesDestroyResponse) Status

Status returns HTTPResponse.Status

func (TechnologiesDestroyResponse) StatusCode

func (r TechnologiesDestroyResponse) StatusCode() int

StatusCode returns HTTPResponse.StatusCode

type TechnologiesListParams

type TechnologiesListParams struct {
	// Limit Number of results to return per page.
	Limit *int    `form:"limit,omitempty" json:"limit,omitempty"`
	Name  *string `form:"name,omitempty" json:"name,omitempty"`

	// NotTag Not Tag name contains
	NotTag *string `form:"not_tag,omitempty" json:"not_tag,omitempty"`

	// NotTags Comma seperated list of exact tags not present on model
	NotTags *[]string `form:"not_tags,omitempty" json:"not_tags,omitempty"`

	// Offset The initial index from which to return the results.
	Offset  *int `form:"offset,omitempty" json:"offset,omitempty"`
	Product *int `form:"product,omitempty" json:"product,omitempty"`

	// Tag Tag name contains
	Tag *string `form:"tag,omitempty" json:"tag,omitempty"`

	// Tags Comma seperated list of exact tags
	Tags    *[]string `form:"tags,omitempty" json:"tags,omitempty"`
	User    *int      `form:"user,omitempty" json:"user,omitempty"`
	Version *string   `form:"version,omitempty" json:"version,omitempty"`
}

TechnologiesListParams defines parameters for TechnologiesList.

type TechnologiesListResponse

type TechnologiesListResponse struct {
	Body         []byte
	HTTPResponse *http.Response
	JSON200      *PaginatedAppAnalysisList
}

func ParseTechnologiesListResponse

func ParseTechnologiesListResponse(rsp *http.Response) (*TechnologiesListResponse, error)

ParseTechnologiesListResponse parses an HTTP response from a TechnologiesListWithResponse call

func (TechnologiesListResponse) Status

func (r TechnologiesListResponse) Status() string

Status returns HTTPResponse.Status

func (TechnologiesListResponse) StatusCode

func (r TechnologiesListResponse) StatusCode() int

StatusCode returns HTTPResponse.StatusCode

type TechnologiesPartialUpdateFormdataRequestBody added in v0.2.0

type TechnologiesPartialUpdateFormdataRequestBody = PatchedAppAnalysisRequest

TechnologiesPartialUpdateFormdataRequestBody defines body for TechnologiesPartialUpdate for application/x-www-form-urlencoded ContentType.

type TechnologiesPartialUpdateJSONRequestBody

type TechnologiesPartialUpdateJSONRequestBody = PatchedAppAnalysisRequest

TechnologiesPartialUpdateJSONRequestBody defines body for TechnologiesPartialUpdate for application/json ContentType.

type TechnologiesPartialUpdateMultipartRequestBody added in v0.2.0

type TechnologiesPartialUpdateMultipartRequestBody = PatchedAppAnalysisRequest

TechnologiesPartialUpdateMultipartRequestBody defines body for TechnologiesPartialUpdate for multipart/form-data ContentType.

type TechnologiesPartialUpdateResponse

type TechnologiesPartialUpdateResponse struct {
	Body         []byte
	HTTPResponse *http.Response
	JSON200      *AppAnalysis
}

func ParseTechnologiesPartialUpdateResponse

func ParseTechnologiesPartialUpdateResponse(rsp *http.Response) (*TechnologiesPartialUpdateResponse, error)

ParseTechnologiesPartialUpdateResponse parses an HTTP response from a TechnologiesPartialUpdateWithResponse call

func (TechnologiesPartialUpdateResponse) Status

Status returns HTTPResponse.Status

func (TechnologiesPartialUpdateResponse) StatusCode

func (r TechnologiesPartialUpdateResponse) StatusCode() int

StatusCode returns HTTPResponse.StatusCode

type TechnologiesRetrieveResponse

type TechnologiesRetrieveResponse struct {
	Body         []byte
	HTTPResponse *http.Response
	JSON200      *AppAnalysis
}

func ParseTechnologiesRetrieveResponse

func ParseTechnologiesRetrieveResponse(rsp *http.Response) (*TechnologiesRetrieveResponse, error)

ParseTechnologiesRetrieveResponse parses an HTTP response from a TechnologiesRetrieveWithResponse call

func (TechnologiesRetrieveResponse) Status

Status returns HTTPResponse.Status

func (TechnologiesRetrieveResponse) StatusCode

func (r TechnologiesRetrieveResponse) StatusCode() int

StatusCode returns HTTPResponse.StatusCode

type TechnologiesUpdateFormdataRequestBody added in v0.2.0

type TechnologiesUpdateFormdataRequestBody = AppAnalysisRequest

TechnologiesUpdateFormdataRequestBody defines body for TechnologiesUpdate for application/x-www-form-urlencoded ContentType.

type TechnologiesUpdateJSONRequestBody

type TechnologiesUpdateJSONRequestBody = AppAnalysisRequest

TechnologiesUpdateJSONRequestBody defines body for TechnologiesUpdate for application/json ContentType.

type TechnologiesUpdateMultipartRequestBody added in v0.2.0

type TechnologiesUpdateMultipartRequestBody = AppAnalysisRequest

TechnologiesUpdateMultipartRequestBody defines body for TechnologiesUpdate for multipart/form-data ContentType.

type TechnologiesUpdateResponse

type TechnologiesUpdateResponse struct {
	Body         []byte
	HTTPResponse *http.Response
	JSON200      *AppAnalysis
}

func ParseTechnologiesUpdateResponse

func ParseTechnologiesUpdateResponse(rsp *http.Response) (*TechnologiesUpdateResponse, error)

ParseTechnologiesUpdateResponse parses an HTTP response from a TechnologiesUpdateWithResponse call

func (TechnologiesUpdateResponse) Status

Status returns HTTPResponse.Status

func (TechnologiesUpdateResponse) StatusCode

func (r TechnologiesUpdateResponse) StatusCode() int

StatusCode returns HTTPResponse.StatusCode

type Test

type Test struct {
	ActualTime           *string `json:"actual_time"`
	ApiScanConfiguration *int    `json:"api_scan_configuration"`

	// BranchTag Tag or branch that was tested, a reimport may update this field.
	BranchTag *string `json:"branch_tag"`

	// BuildId Build ID that was tested, a reimport may update this field.
	BuildId *string `json:"build_id"`

	// CommitHash Commit hash tested, a reimport may update this field.
	CommitHash      *string         `json:"commit_hash"`
	Created         *time.Time      `json:"created"`
	Description     *string         `json:"description"`
	Engagement      *int            `json:"engagement,omitempty"`
	Environment     *int            `json:"environment"`
	EstimatedTime   *string         `json:"estimated_time"`
	Files           *[]File         `json:"files,omitempty"`
	FindingGroups   *[]FindingGroup `json:"finding_groups,omitempty"`
	Id              *int            `json:"id,omitempty"`
	Lead            *int            `json:"lead"`
	Notes           *[]Note         `json:"notes,omitempty"`
	PercentComplete *int            `json:"percent_complete"`
	ScanType        *string         `json:"scan_type"`
	Tags            *[]string       `json:"tags,omitempty"`
	TargetEnd       time.Time       `json:"target_end"`
	TargetStart     time.Time       `json:"target_start"`
	TestType        int             `json:"test_type"`
	TestTypeName    *string         `json:"test_type_name,omitempty"`
	Title           *string         `json:"title"`
	Updated         *time.Time      `json:"updated"`
	Version         *string         `json:"version"`
}

Test defines model for Test.

type TestCreate

type TestCreate struct {
	ActualTime           *string `json:"actual_time"`
	ApiScanConfiguration *int    `json:"api_scan_configuration"`

	// BranchTag Tag or branch that was tested, a reimport may update this field.
	BranchTag *string `json:"branch_tag"`

	// BuildId Build ID that was tested, a reimport may update this field.
	BuildId *string `json:"build_id"`

	// CommitHash Commit hash tested, a reimport may update this field.
	CommitHash      *string    `json:"commit_hash"`
	Created         *time.Time `json:"created"`
	Description     *string    `json:"description"`
	Engagement      int        `json:"engagement"`
	Environment     *int       `json:"environment"`
	EstimatedTime   *string    `json:"estimated_time"`
	Files           *[]int     `json:"files,omitempty"`
	Id              *int       `json:"id,omitempty"`
	Lead            *int       `json:"lead"`
	Notes           *[]int     `json:"notes,omitempty"`
	PercentComplete *int       `json:"percent_complete"`
	ScanType        *string    `json:"scan_type"`
	Tags            *[]string  `json:"tags,omitempty"`
	TargetEnd       time.Time  `json:"target_end"`
	TargetStart     time.Time  `json:"target_start"`
	TestType        int        `json:"test_type"`
	Title           *string    `json:"title"`
	Updated         *time.Time `json:"updated"`
	Version         *string    `json:"version"`
}

TestCreate defines model for TestCreate.

type TestCreateRequest added in v0.2.0

type TestCreateRequest struct {
	ApiScanConfiguration *int `json:"api_scan_configuration"`

	// BranchTag Tag or branch that was tested, a reimport may update this field.
	BranchTag *string `json:"branch_tag"`

	// BuildId Build ID that was tested, a reimport may update this field.
	BuildId *string `json:"build_id"`

	// CommitHash Commit hash tested, a reimport may update this field.
	CommitHash      *string   `json:"commit_hash"`
	Description     *string   `json:"description"`
	Engagement      int       `json:"engagement"`
	Environment     *int      `json:"environment"`
	Lead            *int      `json:"lead"`
	Notes           *[]int    `json:"notes,omitempty"`
	PercentComplete *int      `json:"percent_complete"`
	ScanType        *string   `json:"scan_type"`
	Tags            *[]string `json:"tags,omitempty"`
	TargetEnd       time.Time `json:"target_end"`
	TargetStart     time.Time `json:"target_start"`
	TestType        int       `json:"test_type"`
	Title           *string   `json:"title"`
	Version         *string   `json:"version"`
}

TestCreateRequest defines model for TestCreateRequest.

type TestImport

type TestImport struct {
	// BranchTag Tag or branch that was tested, a reimport may update this field.
	BranchTag *string `json:"branch_tag"`

	// BuildId Build ID that was tested, a reimport may update this field.
	BuildId *string `json:"build_id"`

	// CommitHash Commit hash tested, a reimport may update this field.
	CommitHash       *string                 `json:"commit_hash"`
	Created          *time.Time              `json:"created,omitempty"`
	FindingsAffected *[]int                  `json:"findings_affected,omitempty"`
	Id               *int                    `json:"id,omitempty"`
	ImportSettings   *map[string]interface{} `json:"import_settings"`
	Modified         *time.Time              `json:"modified,omitempty"`
	Prefetch         *struct {
		FindingsAffected *map[string]Finding `json:"findings_affected,omitempty"`
		Test             *map[string]Test    `json:"test,omitempty"`
	} `json:"prefetch,omitempty"`
	Test                       *int                       `json:"test,omitempty"`
	TestImportFindingActionSet *[]TestImportFindingAction `json:"test_import_finding_action_set,omitempty"`
	Type                       *string                    `json:"type,omitempty"`
	Version                    *string                    `json:"version"`
}

TestImport defines model for TestImport.

type TestImportFindingAction

type TestImportFindingAction struct {
	// Action * `N` - created
	// * `C` - closed
	// * `R` - reactivated
	// * `U` - left untouched
	Action     *TestImportFindingActionAction `json:"action"`
	Created    *time.Time                     `json:"created,omitempty"`
	Finding    *int                           `json:"finding,omitempty"`
	Id         *int                           `json:"id,omitempty"`
	Modified   *time.Time                     `json:"modified,omitempty"`
	TestImport *int                           `json:"test_import,omitempty"`
}

TestImportFindingAction defines model for TestImportFindingAction.

type TestImportFindingActionAction

type TestImportFindingActionAction string

TestImportFindingActionAction * `N` - created * `C` - closed * `R` - reactivated * `U` - left untouched

const (
	TestImportFindingActionActionC     TestImportFindingActionAction = "C"
	TestImportFindingActionActionEmpty TestImportFindingActionAction = ""
	TestImportFindingActionActionN     TestImportFindingActionAction = "N"
	TestImportFindingActionActionNil   TestImportFindingActionAction = "<nil>"
	TestImportFindingActionActionR     TestImportFindingActionAction = "R"
	TestImportFindingActionActionU     TestImportFindingActionAction = "U"
)

Defines values for TestImportFindingActionAction.

type TestImportRequest added in v0.2.0

type TestImportRequest struct {
	// BranchTag Tag or branch that was tested, a reimport may update this field.
	BranchTag *string `json:"branch_tag"`

	// BuildId Build ID that was tested, a reimport may update this field.
	BuildId *string `json:"build_id"`

	// CommitHash Commit hash tested, a reimport may update this field.
	CommitHash     *string                 `json:"commit_hash"`
	ImportSettings *map[string]interface{} `json:"import_settings"`
	Type           *string                 `json:"type,omitempty"`
	Version        *string                 `json:"version"`
}

TestImportRequest defines model for TestImportRequest.

type TestImportsCreateFormdataRequestBody added in v0.2.0

type TestImportsCreateFormdataRequestBody = TestImportRequest

TestImportsCreateFormdataRequestBody defines body for TestImportsCreate for application/x-www-form-urlencoded ContentType.

type TestImportsCreateJSONRequestBody

type TestImportsCreateJSONRequestBody = TestImportRequest

TestImportsCreateJSONRequestBody defines body for TestImportsCreate for application/json ContentType.

type TestImportsCreateMultipartRequestBody added in v0.2.0

type TestImportsCreateMultipartRequestBody = TestImportRequest

TestImportsCreateMultipartRequestBody defines body for TestImportsCreate for multipart/form-data ContentType.

type TestImportsCreateResponse

type TestImportsCreateResponse struct {
	Body         []byte
	HTTPResponse *http.Response
	JSON201      *TestImport
}

func ParseTestImportsCreateResponse

func ParseTestImportsCreateResponse(rsp *http.Response) (*TestImportsCreateResponse, error)

ParseTestImportsCreateResponse parses an HTTP response from a TestImportsCreateWithResponse call

func (TestImportsCreateResponse) Status

func (r TestImportsCreateResponse) Status() string

Status returns HTTPResponse.Status

func (TestImportsCreateResponse) StatusCode

func (r TestImportsCreateResponse) StatusCode() int

StatusCode returns HTTPResponse.StatusCode

type TestImportsDeletePreviewListParams added in v0.2.0

type TestImportsDeletePreviewListParams struct {
	// Limit Number of results to return per page.
	Limit *int `form:"limit,omitempty" json:"limit,omitempty"`

	// Offset The initial index from which to return the results.
	Offset *int `form:"offset,omitempty" json:"offset,omitempty"`
}

TestImportsDeletePreviewListParams defines parameters for TestImportsDeletePreviewList.

type TestImportsDeletePreviewListResponse added in v0.2.0

type TestImportsDeletePreviewListResponse struct {
	Body         []byte
	HTTPResponse *http.Response
	JSON200      *PaginatedDeletePreviewList
}

func ParseTestImportsDeletePreviewListResponse added in v0.2.0

func ParseTestImportsDeletePreviewListResponse(rsp *http.Response) (*TestImportsDeletePreviewListResponse, error)

ParseTestImportsDeletePreviewListResponse parses an HTTP response from a TestImportsDeletePreviewListWithResponse call

func (TestImportsDeletePreviewListResponse) Status added in v0.2.0

Status returns HTTPResponse.Status

func (TestImportsDeletePreviewListResponse) StatusCode added in v0.2.0

StatusCode returns HTTPResponse.StatusCode

type TestImportsDestroyResponse

type TestImportsDestroyResponse struct {
	Body         []byte
	HTTPResponse *http.Response
}

func ParseTestImportsDestroyResponse

func ParseTestImportsDestroyResponse(rsp *http.Response) (*TestImportsDestroyResponse, error)

ParseTestImportsDestroyResponse parses an HTTP response from a TestImportsDestroyWithResponse call

func (TestImportsDestroyResponse) Status

Status returns HTTPResponse.Status

func (TestImportsDestroyResponse) StatusCode

func (r TestImportsDestroyResponse) StatusCode() int

StatusCode returns HTTPResponse.StatusCode

type TestImportsListParams

type TestImportsListParams struct {
	BranchTag        *string `form:"branch_tag,omitempty" json:"branch_tag,omitempty"`
	BuildId          *string `form:"build_id,omitempty" json:"build_id,omitempty"`
	CommitHash       *string `form:"commit_hash,omitempty" json:"commit_hash,omitempty"`
	FindingsAffected *[]int  `form:"findings_affected,omitempty" json:"findings_affected,omitempty"`

	// Limit Number of results to return per page.
	Limit *int `form:"limit,omitempty" json:"limit,omitempty"`

	// Offset The initial index from which to return the results.
	Offset *int `form:"offset,omitempty" json:"offset,omitempty"`

	// Prefetch List of fields for which to prefetch model instances and add those to the response
	Prefetch *[]TestImportsListParamsPrefetch `form:"prefetch,omitempty" json:"prefetch,omitempty"`
	Test     *int                             `form:"test,omitempty" json:"test,omitempty"`

	// TestImportFindingActionAction * `N` - created
	// * `C` - closed
	// * `R` - reactivated
	// * `U` - left untouched
	TestImportFindingActionAction  *TestImportsListParamsTestImportFindingActionAction `form:"test_import_finding_action__action,omitempty" json:"test_import_finding_action__action,omitempty"`
	TestImportFindingActionCreated *time.Time                                          `form:"test_import_finding_action__created,omitempty" json:"test_import_finding_action__created,omitempty"`
	TestImportFindingActionFinding *int                                                `form:"test_import_finding_action__finding,omitempty" json:"test_import_finding_action__finding,omitempty"`
	Version                        *string                                             `form:"version,omitempty" json:"version,omitempty"`
}

TestImportsListParams defines parameters for TestImportsList.

type TestImportsListParamsPrefetch

type TestImportsListParamsPrefetch string

TestImportsListParamsPrefetch defines parameters for TestImportsList.

const (
	TestImportsListParamsPrefetchFindingsAffected TestImportsListParamsPrefetch = "findings_affected"
	TestImportsListParamsPrefetchTest             TestImportsListParamsPrefetch = "test"
)

Defines values for TestImportsListParamsPrefetch.

type TestImportsListParamsTestImportFindingActionAction

type TestImportsListParamsTestImportFindingActionAction string

TestImportsListParamsTestImportFindingActionAction defines parameters for TestImportsList.

type TestImportsListResponse

type TestImportsListResponse struct {
	Body         []byte
	HTTPResponse *http.Response
	JSON200      *PaginatedTestImportList
}

func ParseTestImportsListResponse

func ParseTestImportsListResponse(rsp *http.Response) (*TestImportsListResponse, error)

ParseTestImportsListResponse parses an HTTP response from a TestImportsListWithResponse call

func (TestImportsListResponse) Status

func (r TestImportsListResponse) Status() string

Status returns HTTPResponse.Status

func (TestImportsListResponse) StatusCode

func (r TestImportsListResponse) StatusCode() int

StatusCode returns HTTPResponse.StatusCode

type TestImportsPartialUpdateFormdataRequestBody added in v0.2.0

type TestImportsPartialUpdateFormdataRequestBody = PatchedTestImportRequest

TestImportsPartialUpdateFormdataRequestBody defines body for TestImportsPartialUpdate for application/x-www-form-urlencoded ContentType.

type TestImportsPartialUpdateJSONRequestBody

type TestImportsPartialUpdateJSONRequestBody = PatchedTestImportRequest

TestImportsPartialUpdateJSONRequestBody defines body for TestImportsPartialUpdate for application/json ContentType.

type TestImportsPartialUpdateMultipartRequestBody added in v0.2.0

type TestImportsPartialUpdateMultipartRequestBody = PatchedTestImportRequest

TestImportsPartialUpdateMultipartRequestBody defines body for TestImportsPartialUpdate for multipart/form-data ContentType.

type TestImportsPartialUpdateResponse

type TestImportsPartialUpdateResponse struct {
	Body         []byte
	HTTPResponse *http.Response
	JSON200      *TestImport
}

func ParseTestImportsPartialUpdateResponse

func ParseTestImportsPartialUpdateResponse(rsp *http.Response) (*TestImportsPartialUpdateResponse, error)

ParseTestImportsPartialUpdateResponse parses an HTTP response from a TestImportsPartialUpdateWithResponse call

func (TestImportsPartialUpdateResponse) Status

Status returns HTTPResponse.Status

func (TestImportsPartialUpdateResponse) StatusCode

func (r TestImportsPartialUpdateResponse) StatusCode() int

StatusCode returns HTTPResponse.StatusCode

type TestImportsRetrieveParams

type TestImportsRetrieveParams struct {
	// Prefetch List of fields for which to prefetch model instances and add those to the response
	Prefetch *[]TestImportsRetrieveParamsPrefetch `form:"prefetch,omitempty" json:"prefetch,omitempty"`
}

TestImportsRetrieveParams defines parameters for TestImportsRetrieve.

type TestImportsRetrieveParamsPrefetch

type TestImportsRetrieveParamsPrefetch string

TestImportsRetrieveParamsPrefetch defines parameters for TestImportsRetrieve.

const (
	TestImportsRetrieveParamsPrefetchFindingsAffected TestImportsRetrieveParamsPrefetch = "findings_affected"
	TestImportsRetrieveParamsPrefetchTest             TestImportsRetrieveParamsPrefetch = "test"
)

Defines values for TestImportsRetrieveParamsPrefetch.

type TestImportsRetrieveResponse

type TestImportsRetrieveResponse struct {
	Body         []byte
	HTTPResponse *http.Response
	JSON200      *TestImport
}

func ParseTestImportsRetrieveResponse

func ParseTestImportsRetrieveResponse(rsp *http.Response) (*TestImportsRetrieveResponse, error)

ParseTestImportsRetrieveResponse parses an HTTP response from a TestImportsRetrieveWithResponse call

func (TestImportsRetrieveResponse) Status

Status returns HTTPResponse.Status

func (TestImportsRetrieveResponse) StatusCode

func (r TestImportsRetrieveResponse) StatusCode() int

StatusCode returns HTTPResponse.StatusCode

type TestImportsUpdateFormdataRequestBody added in v0.2.0

type TestImportsUpdateFormdataRequestBody = TestImportRequest

TestImportsUpdateFormdataRequestBody defines body for TestImportsUpdate for application/x-www-form-urlencoded ContentType.

type TestImportsUpdateJSONRequestBody

type TestImportsUpdateJSONRequestBody = TestImportRequest

TestImportsUpdateJSONRequestBody defines body for TestImportsUpdate for application/json ContentType.

type TestImportsUpdateMultipartRequestBody added in v0.2.0

type TestImportsUpdateMultipartRequestBody = TestImportRequest

TestImportsUpdateMultipartRequestBody defines body for TestImportsUpdate for multipart/form-data ContentType.

type TestImportsUpdateResponse

type TestImportsUpdateResponse struct {
	Body         []byte
	HTTPResponse *http.Response
	JSON200      *TestImport
}

func ParseTestImportsUpdateResponse

func ParseTestImportsUpdateResponse(rsp *http.Response) (*TestImportsUpdateResponse, error)

ParseTestImportsUpdateResponse parses an HTTP response from a TestImportsUpdateWithResponse call

func (TestImportsUpdateResponse) Status

func (r TestImportsUpdateResponse) Status() string

Status returns HTTPResponse.Status

func (TestImportsUpdateResponse) StatusCode

func (r TestImportsUpdateResponse) StatusCode() int

StatusCode returns HTTPResponse.StatusCode

type TestRequest added in v0.2.0

type TestRequest struct {
	ApiScanConfiguration *int `json:"api_scan_configuration"`

	// BranchTag Tag or branch that was tested, a reimport may update this field.
	BranchTag *string `json:"branch_tag"`

	// BuildId Build ID that was tested, a reimport may update this field.
	BuildId *string `json:"build_id"`

	// CommitHash Commit hash tested, a reimport may update this field.
	CommitHash      *string   `json:"commit_hash"`
	Description     *string   `json:"description"`
	Environment     *int      `json:"environment"`
	Lead            *int      `json:"lead"`
	PercentComplete *int      `json:"percent_complete"`
	ScanType        *string   `json:"scan_type"`
	Tags            *[]string `json:"tags,omitempty"`
	TargetEnd       time.Time `json:"target_end"`
	TargetStart     time.Time `json:"target_start"`
	TestType        int       `json:"test_type"`
	Title           *string   `json:"title"`
	Version         *string   `json:"version"`
}

TestRequest defines model for TestRequest.

type TestToFiles

type TestToFiles struct {
	Files  []File `json:"files"`
	TestId *int   `json:"test_id"`
}

TestToFiles defines model for TestToFiles.

type TestToNotes

type TestToNotes struct {
	Notes  []Note `json:"notes"`
	TestId *int   `json:"test_id"`
}

TestToNotes defines model for TestToNotes.

type TestType

type TestType struct {
	Active      *bool     `json:"active,omitempty"`
	DynamicTool *bool     `json:"dynamic_tool,omitempty"`
	Id          *int      `json:"id,omitempty"`
	Name        string    `json:"name"`
	StaticTool  *bool     `json:"static_tool,omitempty"`
	Tags        *[]string `json:"tags,omitempty"`
}

TestType defines model for TestType.

type TestTypeRequest added in v0.2.0

type TestTypeRequest struct {
	Active      *bool     `json:"active,omitempty"`
	DynamicTool *bool     `json:"dynamic_tool,omitempty"`
	Name        string    `json:"name"`
	StaticTool  *bool     `json:"static_tool,omitempty"`
	Tags        *[]string `json:"tags,omitempty"`
}

TestTypeRequest defines model for TestTypeRequest.

type TestTypesCreateFormdataRequestBody added in v0.2.0

type TestTypesCreateFormdataRequestBody = TestTypeRequest

TestTypesCreateFormdataRequestBody defines body for TestTypesCreate for application/x-www-form-urlencoded ContentType.

type TestTypesCreateJSONRequestBody

type TestTypesCreateJSONRequestBody = TestTypeRequest

TestTypesCreateJSONRequestBody defines body for TestTypesCreate for application/json ContentType.

type TestTypesCreateMultipartRequestBody added in v0.2.0

type TestTypesCreateMultipartRequestBody = TestTypeRequest

TestTypesCreateMultipartRequestBody defines body for TestTypesCreate for multipart/form-data ContentType.

type TestTypesCreateResponse

type TestTypesCreateResponse struct {
	Body         []byte
	HTTPResponse *http.Response
	JSON201      *TestType
}

func ParseTestTypesCreateResponse

func ParseTestTypesCreateResponse(rsp *http.Response) (*TestTypesCreateResponse, error)

ParseTestTypesCreateResponse parses an HTTP response from a TestTypesCreateWithResponse call

func (TestTypesCreateResponse) Status

func (r TestTypesCreateResponse) Status() string

Status returns HTTPResponse.Status

func (TestTypesCreateResponse) StatusCode

func (r TestTypesCreateResponse) StatusCode() int

StatusCode returns HTTPResponse.StatusCode

type TestTypesListParams

type TestTypesListParams struct {
	// Limit Number of results to return per page.
	Limit *int    `form:"limit,omitempty" json:"limit,omitempty"`
	Name  *string `form:"name,omitempty" json:"name,omitempty"`

	// Offset The initial index from which to return the results.
	Offset *int `form:"offset,omitempty" json:"offset,omitempty"`
}

TestTypesListParams defines parameters for TestTypesList.

type TestTypesListResponse

type TestTypesListResponse struct {
	Body         []byte
	HTTPResponse *http.Response
	JSON200      *PaginatedTestTypeList
}

func ParseTestTypesListResponse

func ParseTestTypesListResponse(rsp *http.Response) (*TestTypesListResponse, error)

ParseTestTypesListResponse parses an HTTP response from a TestTypesListWithResponse call

func (TestTypesListResponse) Status

func (r TestTypesListResponse) Status() string

Status returns HTTPResponse.Status

func (TestTypesListResponse) StatusCode

func (r TestTypesListResponse) StatusCode() int

StatusCode returns HTTPResponse.StatusCode

type TestTypesPartialUpdateFormdataRequestBody added in v0.2.0

type TestTypesPartialUpdateFormdataRequestBody = PatchedTestTypeRequest

TestTypesPartialUpdateFormdataRequestBody defines body for TestTypesPartialUpdate for application/x-www-form-urlencoded ContentType.

type TestTypesPartialUpdateJSONRequestBody

type TestTypesPartialUpdateJSONRequestBody = PatchedTestTypeRequest

TestTypesPartialUpdateJSONRequestBody defines body for TestTypesPartialUpdate for application/json ContentType.

type TestTypesPartialUpdateMultipartRequestBody added in v0.2.0

type TestTypesPartialUpdateMultipartRequestBody = PatchedTestTypeRequest

TestTypesPartialUpdateMultipartRequestBody defines body for TestTypesPartialUpdate for multipart/form-data ContentType.

type TestTypesPartialUpdateResponse

type TestTypesPartialUpdateResponse struct {
	Body         []byte
	HTTPResponse *http.Response
	JSON200      *TestType
}

func ParseTestTypesPartialUpdateResponse

func ParseTestTypesPartialUpdateResponse(rsp *http.Response) (*TestTypesPartialUpdateResponse, error)

ParseTestTypesPartialUpdateResponse parses an HTTP response from a TestTypesPartialUpdateWithResponse call

func (TestTypesPartialUpdateResponse) Status

Status returns HTTPResponse.Status

func (TestTypesPartialUpdateResponse) StatusCode

func (r TestTypesPartialUpdateResponse) StatusCode() int

StatusCode returns HTTPResponse.StatusCode

type TestTypesRetrieveResponse

type TestTypesRetrieveResponse struct {
	Body         []byte
	HTTPResponse *http.Response
	JSON200      *TestType
}

func ParseTestTypesRetrieveResponse

func ParseTestTypesRetrieveResponse(rsp *http.Response) (*TestTypesRetrieveResponse, error)

ParseTestTypesRetrieveResponse parses an HTTP response from a TestTypesRetrieveWithResponse call

func (TestTypesRetrieveResponse) Status

func (r TestTypesRetrieveResponse) Status() string

Status returns HTTPResponse.Status

func (TestTypesRetrieveResponse) StatusCode

func (r TestTypesRetrieveResponse) StatusCode() int

StatusCode returns HTTPResponse.StatusCode

type TestTypesUpdateFormdataRequestBody added in v0.2.0

type TestTypesUpdateFormdataRequestBody = TestTypeRequest

TestTypesUpdateFormdataRequestBody defines body for TestTypesUpdate for application/x-www-form-urlencoded ContentType.

type TestTypesUpdateJSONRequestBody

type TestTypesUpdateJSONRequestBody = TestTypeRequest

TestTypesUpdateJSONRequestBody defines body for TestTypesUpdate for application/json ContentType.

type TestTypesUpdateMultipartRequestBody added in v0.2.0

type TestTypesUpdateMultipartRequestBody = TestTypeRequest

TestTypesUpdateMultipartRequestBody defines body for TestTypesUpdate for multipart/form-data ContentType.

type TestTypesUpdateResponse

type TestTypesUpdateResponse struct {
	Body         []byte
	HTTPResponse *http.Response
	JSON200      *TestType
}

func ParseTestTypesUpdateResponse

func ParseTestTypesUpdateResponse(rsp *http.Response) (*TestTypesUpdateResponse, error)

ParseTestTypesUpdateResponse parses an HTTP response from a TestTypesUpdateWithResponse call

func (TestTypesUpdateResponse) Status

func (r TestTypesUpdateResponse) Status() string

Status returns HTTPResponse.Status

func (TestTypesUpdateResponse) StatusCode

func (r TestTypesUpdateResponse) StatusCode() int

StatusCode returns HTTPResponse.StatusCode

type TestsAcceptRisksCreateFormdataBody added in v0.2.0

type TestsAcceptRisksCreateFormdataBody = struct {
}

TestsAcceptRisksCreateFormdataBody defines parameters for TestsAcceptRisksCreate.

type TestsAcceptRisksCreateFormdataRequestBody added in v0.2.0

type TestsAcceptRisksCreateFormdataRequestBody = TestsAcceptRisksCreateFormdataBody

TestsAcceptRisksCreateFormdataRequestBody defines body for TestsAcceptRisksCreate for application/x-www-form-urlencoded ContentType.

type TestsAcceptRisksCreateJSONBody

type TestsAcceptRisksCreateJSONBody = []AcceptedRiskRequest

TestsAcceptRisksCreateJSONBody defines parameters for TestsAcceptRisksCreate.

type TestsAcceptRisksCreateJSONRequestBody

type TestsAcceptRisksCreateJSONRequestBody = TestsAcceptRisksCreateJSONBody

TestsAcceptRisksCreateJSONRequestBody defines body for TestsAcceptRisksCreate for application/json ContentType.

type TestsAcceptRisksCreateMultipartBody added in v0.2.0

type TestsAcceptRisksCreateMultipartBody = []AcceptedRiskRequest

TestsAcceptRisksCreateMultipartBody defines parameters for TestsAcceptRisksCreate.

type TestsAcceptRisksCreateMultipartRequestBody added in v0.2.0

type TestsAcceptRisksCreateMultipartRequestBody = TestsAcceptRisksCreateMultipartBody

TestsAcceptRisksCreateMultipartRequestBody defines body for TestsAcceptRisksCreate for multipart/form-data ContentType.

type TestsAcceptRisksCreateResponse

type TestsAcceptRisksCreateResponse struct {
	Body         []byte
	HTTPResponse *http.Response
	JSON201      *[]RiskAcceptance
}

func ParseTestsAcceptRisksCreateResponse

func ParseTestsAcceptRisksCreateResponse(rsp *http.Response) (*TestsAcceptRisksCreateResponse, error)

ParseTestsAcceptRisksCreateResponse parses an HTTP response from a TestsAcceptRisksCreateWithResponse call

func (TestsAcceptRisksCreateResponse) Status

Status returns HTTPResponse.Status

func (TestsAcceptRisksCreateResponse) StatusCode

func (r TestsAcceptRisksCreateResponse) StatusCode() int

StatusCode returns HTTPResponse.StatusCode

type TestsCreateFormdataRequestBody added in v0.2.0

type TestsCreateFormdataRequestBody = TestCreateRequest

TestsCreateFormdataRequestBody defines body for TestsCreate for application/x-www-form-urlencoded ContentType.

type TestsCreateJSONRequestBody

type TestsCreateJSONRequestBody = TestCreateRequest

TestsCreateJSONRequestBody defines body for TestsCreate for application/json ContentType.

type TestsCreateMultipartRequestBody added in v0.2.0

type TestsCreateMultipartRequestBody = TestCreateRequest

TestsCreateMultipartRequestBody defines body for TestsCreate for multipart/form-data ContentType.

type TestsCreateResponse

type TestsCreateResponse struct {
	Body         []byte
	HTTPResponse *http.Response
	JSON201      *TestCreate
}

func ParseTestsCreateResponse

func ParseTestsCreateResponse(rsp *http.Response) (*TestsCreateResponse, error)

ParseTestsCreateResponse parses an HTTP response from a TestsCreateWithResponse call

func (TestsCreateResponse) Status

func (r TestsCreateResponse) Status() string

Status returns HTTPResponse.Status

func (TestsCreateResponse) StatusCode

func (r TestsCreateResponse) StatusCode() int

StatusCode returns HTTPResponse.StatusCode

type TestsDeletePreviewListParams added in v0.2.0

type TestsDeletePreviewListParams struct {
	// Limit Number of results to return per page.
	Limit *int `form:"limit,omitempty" json:"limit,omitempty"`

	// Offset The initial index from which to return the results.
	Offset *int `form:"offset,omitempty" json:"offset,omitempty"`
}

TestsDeletePreviewListParams defines parameters for TestsDeletePreviewList.

type TestsDeletePreviewListResponse added in v0.2.0

type TestsDeletePreviewListResponse struct {
	Body         []byte
	HTTPResponse *http.Response
	JSON200      *PaginatedDeletePreviewList
}

func ParseTestsDeletePreviewListResponse added in v0.2.0

func ParseTestsDeletePreviewListResponse(rsp *http.Response) (*TestsDeletePreviewListResponse, error)

ParseTestsDeletePreviewListResponse parses an HTTP response from a TestsDeletePreviewListWithResponse call

func (TestsDeletePreviewListResponse) Status added in v0.2.0

Status returns HTTPResponse.Status

func (TestsDeletePreviewListResponse) StatusCode added in v0.2.0

func (r TestsDeletePreviewListResponse) StatusCode() int

StatusCode returns HTTPResponse.StatusCode

type TestsDestroyResponse

type TestsDestroyResponse struct {
	Body         []byte
	HTTPResponse *http.Response
}

func ParseTestsDestroyResponse

func ParseTestsDestroyResponse(rsp *http.Response) (*TestsDestroyResponse, error)

ParseTestsDestroyResponse parses an HTTP response from a TestsDestroyWithResponse call

func (TestsDestroyResponse) Status

func (r TestsDestroyResponse) Status() string

Status returns HTTPResponse.Status

func (TestsDestroyResponse) StatusCode

func (r TestsDestroyResponse) StatusCode() int

StatusCode returns HTTPResponse.StatusCode

type TestsFilesCreateMultipartRequestBody added in v0.2.0

type TestsFilesCreateMultipartRequestBody = AddNewFileOptionRequest

TestsFilesCreateMultipartRequestBody defines body for TestsFilesCreate for multipart/form-data ContentType.

type TestsFilesCreateResponse

type TestsFilesCreateResponse struct {
	Body         []byte
	HTTPResponse *http.Response
	JSON201      *File
}

func ParseTestsFilesCreateResponse

func ParseTestsFilesCreateResponse(rsp *http.Response) (*TestsFilesCreateResponse, error)

ParseTestsFilesCreateResponse parses an HTTP response from a TestsFilesCreateWithResponse call

func (TestsFilesCreateResponse) Status

func (r TestsFilesCreateResponse) Status() string

Status returns HTTPResponse.Status

func (TestsFilesCreateResponse) StatusCode

func (r TestsFilesCreateResponse) StatusCode() int

StatusCode returns HTTPResponse.StatusCode

type TestsFilesDownloadRetrieveResponse added in v0.2.0

type TestsFilesDownloadRetrieveResponse struct {
	Body         []byte
	HTTPResponse *http.Response
	JSON200      *RawFile
}

func ParseTestsFilesDownloadRetrieveResponse added in v0.2.0

func ParseTestsFilesDownloadRetrieveResponse(rsp *http.Response) (*TestsFilesDownloadRetrieveResponse, error)

ParseTestsFilesDownloadRetrieveResponse parses an HTTP response from a TestsFilesDownloadRetrieveWithResponse call

func (TestsFilesDownloadRetrieveResponse) Status added in v0.2.0

Status returns HTTPResponse.Status

func (TestsFilesDownloadRetrieveResponse) StatusCode added in v0.2.0

func (r TestsFilesDownloadRetrieveResponse) StatusCode() int

StatusCode returns HTTPResponse.StatusCode

type TestsFilesRetrieveResponse

type TestsFilesRetrieveResponse struct {
	Body         []byte
	HTTPResponse *http.Response
	JSON200      *TestToFiles
}

func ParseTestsFilesRetrieveResponse

func ParseTestsFilesRetrieveResponse(rsp *http.Response) (*TestsFilesRetrieveResponse, error)

ParseTestsFilesRetrieveResponse parses an HTTP response from a TestsFilesRetrieveWithResponse call

func (TestsFilesRetrieveResponse) Status

Status returns HTTPResponse.Status

func (TestsFilesRetrieveResponse) StatusCode

func (r TestsFilesRetrieveResponse) StatusCode() int

StatusCode returns HTTPResponse.StatusCode

type TestsGenerateReportCreateFormdataRequestBody added in v0.2.0

type TestsGenerateReportCreateFormdataRequestBody = ReportGenerateOptionRequest

TestsGenerateReportCreateFormdataRequestBody defines body for TestsGenerateReportCreate for application/x-www-form-urlencoded ContentType.

type TestsGenerateReportCreateJSONRequestBody

type TestsGenerateReportCreateJSONRequestBody = ReportGenerateOptionRequest

TestsGenerateReportCreateJSONRequestBody defines body for TestsGenerateReportCreate for application/json ContentType.

type TestsGenerateReportCreateMultipartRequestBody added in v0.2.0

type TestsGenerateReportCreateMultipartRequestBody = ReportGenerateOptionRequest

TestsGenerateReportCreateMultipartRequestBody defines body for TestsGenerateReportCreate for multipart/form-data ContentType.

type TestsGenerateReportCreateResponse

type TestsGenerateReportCreateResponse struct {
	Body         []byte
	HTTPResponse *http.Response
	JSON200      *ReportGenerate
}

func ParseTestsGenerateReportCreateResponse

func ParseTestsGenerateReportCreateResponse(rsp *http.Response) (*TestsGenerateReportCreateResponse, error)

ParseTestsGenerateReportCreateResponse parses an HTTP response from a TestsGenerateReportCreateWithResponse call

func (TestsGenerateReportCreateResponse) Status

Status returns HTTPResponse.Status

func (TestsGenerateReportCreateResponse) StatusCode

func (r TestsGenerateReportCreateResponse) StatusCode() int

StatusCode returns HTTPResponse.StatusCode

type TestsListParams

type TestsListParams struct {
	ActualTime           *string `form:"actual_time,omitempty" json:"actual_time,omitempty"`
	ApiScanConfiguration *int    `form:"api_scan_configuration,omitempty" json:"api_scan_configuration,omitempty"`
	BranchTag            *string `form:"branch_tag,omitempty" json:"branch_tag,omitempty"`
	BuildId              *string `form:"build_id,omitempty" json:"build_id,omitempty"`
	CommitHash           *string `form:"commit_hash,omitempty" json:"commit_hash,omitempty"`
	Engagement           *int    `form:"engagement,omitempty" json:"engagement,omitempty"`

	// EngagementProductTagsName Comma seperated list of exact tags present on product
	EngagementProductTagsName *[]string `form:"engagement__product__tags__name,omitempty" json:"engagement__product__tags__name,omitempty"`

	// EngagementTags Comma seperated list of exact tags present on engagement
	EngagementTags *[]string `form:"engagement__tags,omitempty" json:"engagement__tags,omitempty"`
	Id             *int      `form:"id,omitempty" json:"id,omitempty"`

	// Limit Number of results to return per page.
	Limit *int `form:"limit,omitempty" json:"limit,omitempty"`

	// NotEngagementProductTagsName Comma seperated list of exact tags not present on product
	NotEngagementProductTagsName *[]string `form:"not_engagement__product__tags__name,omitempty" json:"not_engagement__product__tags__name,omitempty"`

	// NotEngagementTags Comma seperated list of exact tags not present on engagement
	NotEngagementTags *[]string `form:"not_engagement__tags,omitempty" json:"not_engagement__tags,omitempty"`

	// NotTag Not Tag name contains
	NotTag *string `form:"not_tag,omitempty" json:"not_tag,omitempty"`

	// NotTags Comma seperated list of exact tags not present on model
	NotTags *[]string `form:"not_tags,omitempty" json:"not_tags,omitempty"`
	Notes   *[]int    `form:"notes,omitempty" json:"notes,omitempty"`

	// O Ordering
	//
	// * `title` - Title
	// * `-title` - Title (descending)
	// * `version` - Version
	// * `-version` - Version (descending)
	// * `target_start` - Target start
	// * `-target_start` - Target start (descending)
	// * `target_end` - Target end
	// * `-target_end` - Target end (descending)
	// * `test_type` - Test type
	// * `-test_type` - Test type (descending)
	// * `lead` - Lead
	// * `-lead` - Lead (descending)
	// * `branch_tag` - Branch tag
	// * `-branch_tag` - Branch tag (descending)
	// * `build_id` - Build id
	// * `-build_id` - Build id (descending)
	// * `commit_hash` - Commit hash
	// * `-commit_hash` - Commit hash (descending)
	// * `api_scan_configuration` - Api scan configuration
	// * `-api_scan_configuration` - Api scan configuration (descending)
	// * `engagement` - Engagement
	// * `-engagement` - Engagement (descending)
	// * `created` - Created
	// * `-created` - Created (descending)
	// * `updated` - Updated
	// * `-updated` - Updated (descending)
	O *[]TestsListParamsO `form:"o,omitempty" json:"o,omitempty"`

	// Offset The initial index from which to return the results.
	Offset          *int `form:"offset,omitempty" json:"offset,omitempty"`
	PercentComplete *int `form:"percent_complete,omitempty" json:"percent_complete,omitempty"`

	// Tag Tag name contains
	Tag *string `form:"tag,omitempty" json:"tag,omitempty"`

	// Tags Comma seperated list of exact tags
	Tags        *[]string  `form:"tags,omitempty" json:"tags,omitempty"`
	TargetEnd   *time.Time `form:"target_end,omitempty" json:"target_end,omitempty"`
	TargetStart *time.Time `form:"target_start,omitempty" json:"target_start,omitempty"`
	TestType    *int       `form:"test_type,omitempty" json:"test_type,omitempty"`
	Title       *string    `form:"title,omitempty" json:"title,omitempty"`
	Version     *string    `form:"version,omitempty" json:"version,omitempty"`
}

TestsListParams defines parameters for TestsList.

type TestsListParamsO

type TestsListParamsO string

TestsListParamsO defines parameters for TestsList.

const (
	TestsListParamsOApiScanConfiguration      TestsListParamsO = "api_scan_configuration"
	TestsListParamsOBranchTag                 TestsListParamsO = "branch_tag"
	TestsListParamsOBuildId                   TestsListParamsO = "build_id"
	TestsListParamsOCommitHash                TestsListParamsO = "commit_hash"
	TestsListParamsOCreated                   TestsListParamsO = "created"
	TestsListParamsOEngagement                TestsListParamsO = "engagement"
	TestsListParamsOLead                      TestsListParamsO = "lead"
	TestsListParamsOMinusApiScanConfiguration TestsListParamsO = "-api_scan_configuration"
	TestsListParamsOMinusBranchTag            TestsListParamsO = "-branch_tag"
	TestsListParamsOMinusBuildId              TestsListParamsO = "-build_id"
	TestsListParamsOMinusCommitHash           TestsListParamsO = "-commit_hash"
	TestsListParamsOMinusCreated              TestsListParamsO = "-created"
	TestsListParamsOMinusEngagement           TestsListParamsO = "-engagement"
	TestsListParamsOMinusLead                 TestsListParamsO = "-lead"
	TestsListParamsOMinusTargetEnd            TestsListParamsO = "-target_end"
	TestsListParamsOMinusTargetStart          TestsListParamsO = "-target_start"
	TestsListParamsOMinusTestType             TestsListParamsO = "-test_type"
	TestsListParamsOMinusTitle                TestsListParamsO = "-title"
	TestsListParamsOMinusUpdated              TestsListParamsO = "-updated"
	TestsListParamsOMinusVersion              TestsListParamsO = "-version"
	TestsListParamsOTargetEnd                 TestsListParamsO = "target_end"
	TestsListParamsOTargetStart               TestsListParamsO = "target_start"
	TestsListParamsOTestType                  TestsListParamsO = "test_type"
	TestsListParamsOTitle                     TestsListParamsO = "title"
	TestsListParamsOUpdated                   TestsListParamsO = "updated"
	TestsListParamsOVersion                   TestsListParamsO = "version"
)

Defines values for TestsListParamsO.

type TestsListResponse

type TestsListResponse struct {
	Body         []byte
	HTTPResponse *http.Response
	JSON200      *PaginatedTestList
}

func ParseTestsListResponse

func ParseTestsListResponse(rsp *http.Response) (*TestsListResponse, error)

ParseTestsListResponse parses an HTTP response from a TestsListWithResponse call

func (TestsListResponse) Status

func (r TestsListResponse) Status() string

Status returns HTTPResponse.Status

func (TestsListResponse) StatusCode

func (r TestsListResponse) StatusCode() int

StatusCode returns HTTPResponse.StatusCode

type TestsNotesCreateFormdataRequestBody added in v0.2.0

type TestsNotesCreateFormdataRequestBody = AddNewNoteOptionRequest

TestsNotesCreateFormdataRequestBody defines body for TestsNotesCreate for application/x-www-form-urlencoded ContentType.

type TestsNotesCreateJSONRequestBody

type TestsNotesCreateJSONRequestBody = AddNewNoteOptionRequest

TestsNotesCreateJSONRequestBody defines body for TestsNotesCreate for application/json ContentType.

type TestsNotesCreateMultipartRequestBody added in v0.2.0

type TestsNotesCreateMultipartRequestBody = AddNewNoteOptionRequest

TestsNotesCreateMultipartRequestBody defines body for TestsNotesCreate for multipart/form-data ContentType.

type TestsNotesCreateResponse

type TestsNotesCreateResponse struct {
	Body         []byte
	HTTPResponse *http.Response
	JSON201      *Note
}

func ParseTestsNotesCreateResponse

func ParseTestsNotesCreateResponse(rsp *http.Response) (*TestsNotesCreateResponse, error)

ParseTestsNotesCreateResponse parses an HTTP response from a TestsNotesCreateWithResponse call

func (TestsNotesCreateResponse) Status

func (r TestsNotesCreateResponse) Status() string

Status returns HTTPResponse.Status

func (TestsNotesCreateResponse) StatusCode

func (r TestsNotesCreateResponse) StatusCode() int

StatusCode returns HTTPResponse.StatusCode

type TestsNotesRetrieveResponse

type TestsNotesRetrieveResponse struct {
	Body         []byte
	HTTPResponse *http.Response
	JSON200      *TestToNotes
}

func ParseTestsNotesRetrieveResponse

func ParseTestsNotesRetrieveResponse(rsp *http.Response) (*TestsNotesRetrieveResponse, error)

ParseTestsNotesRetrieveResponse parses an HTTP response from a TestsNotesRetrieveWithResponse call

func (TestsNotesRetrieveResponse) Status

Status returns HTTPResponse.Status

func (TestsNotesRetrieveResponse) StatusCode

func (r TestsNotesRetrieveResponse) StatusCode() int

StatusCode returns HTTPResponse.StatusCode

type TestsPartialUpdateFormdataRequestBody added in v0.2.0

type TestsPartialUpdateFormdataRequestBody = PatchedTestRequest

TestsPartialUpdateFormdataRequestBody defines body for TestsPartialUpdate for application/x-www-form-urlencoded ContentType.

type TestsPartialUpdateJSONRequestBody

type TestsPartialUpdateJSONRequestBody = PatchedTestRequest

TestsPartialUpdateJSONRequestBody defines body for TestsPartialUpdate for application/json ContentType.

type TestsPartialUpdateMultipartRequestBody added in v0.2.0

type TestsPartialUpdateMultipartRequestBody = PatchedTestRequest

TestsPartialUpdateMultipartRequestBody defines body for TestsPartialUpdate for multipart/form-data ContentType.

type TestsPartialUpdateResponse

type TestsPartialUpdateResponse struct {
	Body         []byte
	HTTPResponse *http.Response
	JSON200      *Test
}

func ParseTestsPartialUpdateResponse

func ParseTestsPartialUpdateResponse(rsp *http.Response) (*TestsPartialUpdateResponse, error)

ParseTestsPartialUpdateResponse parses an HTTP response from a TestsPartialUpdateWithResponse call

func (TestsPartialUpdateResponse) Status

Status returns HTTPResponse.Status

func (TestsPartialUpdateResponse) StatusCode

func (r TestsPartialUpdateResponse) StatusCode() int

StatusCode returns HTTPResponse.StatusCode

type TestsRetrieveResponse

type TestsRetrieveResponse struct {
	Body         []byte
	HTTPResponse *http.Response
	JSON200      *Test
}

func ParseTestsRetrieveResponse

func ParseTestsRetrieveResponse(rsp *http.Response) (*TestsRetrieveResponse, error)

ParseTestsRetrieveResponse parses an HTTP response from a TestsRetrieveWithResponse call

func (TestsRetrieveResponse) Status

func (r TestsRetrieveResponse) Status() string

Status returns HTTPResponse.Status

func (TestsRetrieveResponse) StatusCode

func (r TestsRetrieveResponse) StatusCode() int

StatusCode returns HTTPResponse.StatusCode

type TestsUpdateFormdataRequestBody added in v0.2.0

type TestsUpdateFormdataRequestBody = TestRequest

TestsUpdateFormdataRequestBody defines body for TestsUpdate for application/x-www-form-urlencoded ContentType.

type TestsUpdateJSONRequestBody

type TestsUpdateJSONRequestBody = TestRequest

TestsUpdateJSONRequestBody defines body for TestsUpdate for application/json ContentType.

type TestsUpdateMultipartRequestBody added in v0.2.0

type TestsUpdateMultipartRequestBody = TestRequest

TestsUpdateMultipartRequestBody defines body for TestsUpdate for multipart/form-data ContentType.

type TestsUpdateResponse

type TestsUpdateResponse struct {
	Body         []byte
	HTTPResponse *http.Response
	JSON200      *Test
}

func ParseTestsUpdateResponse

func ParseTestsUpdateResponse(rsp *http.Response) (*TestsUpdateResponse, error)

ParseTestsUpdateResponse parses an HTTP response from a TestsUpdateWithResponse call

func (TestsUpdateResponse) Status

func (r TestsUpdateResponse) Status() string

Status returns HTTPResponse.Status

func (TestsUpdateResponse) StatusCode

func (r TestsUpdateResponse) StatusCode() int

StatusCode returns HTTPResponse.StatusCode

type ToolConfiguration

type ToolConfiguration struct {
	AuthTitle *string `json:"auth_title"`

	// AuthenticationType * `API` - API Key
	// * `Password` - Username/Password
	// * `SSH` - SSH
	AuthenticationType *ToolConfigurationAuthenticationType `json:"authentication_type"`
	Description        *string                              `json:"description"`

	// Extras Additional definitions that will be consumed by scanner
	Extras   *string `json:"extras"`
	Id       *int    `json:"id,omitempty"`
	Name     string  `json:"name"`
	ToolType int     `json:"tool_type"`
	Url      *string `json:"url"`
	Username *string `json:"username"`
}

ToolConfiguration defines model for ToolConfiguration.

type ToolConfigurationAuthenticationType

type ToolConfigurationAuthenticationType string

ToolConfigurationAuthenticationType * `API` - API Key * `Password` - Username/Password * `SSH` - SSH

const (
	ToolConfigurationAuthenticationTypeAPI      ToolConfigurationAuthenticationType = "API"
	ToolConfigurationAuthenticationTypeEmpty    ToolConfigurationAuthenticationType = ""
	ToolConfigurationAuthenticationTypeNil      ToolConfigurationAuthenticationType = "<nil>"
	ToolConfigurationAuthenticationTypePassword ToolConfigurationAuthenticationType = "Password"
	ToolConfigurationAuthenticationTypeSSH      ToolConfigurationAuthenticationType = "SSH"
)

Defines values for ToolConfigurationAuthenticationType.

type ToolConfigurationRequest added in v0.2.0

type ToolConfigurationRequest struct {
	ApiKey    *string `json:"api_key"`
	AuthTitle *string `json:"auth_title"`

	// AuthenticationType * `API` - API Key
	// * `Password` - Username/Password
	// * `SSH` - SSH
	AuthenticationType *ToolConfigurationRequestAuthenticationType `json:"authentication_type"`
	Description        *string                                     `json:"description"`

	// Extras Additional definitions that will be consumed by scanner
	Extras   *string `json:"extras"`
	Name     string  `json:"name"`
	Password *string `json:"password"`
	Ssh      *string `json:"ssh"`
	ToolType int     `json:"tool_type"`
	Url      *string `json:"url"`
	Username *string `json:"username"`
}

ToolConfigurationRequest defines model for ToolConfigurationRequest.

type ToolConfigurationRequestAuthenticationType added in v0.2.0

type ToolConfigurationRequestAuthenticationType string

ToolConfigurationRequestAuthenticationType * `API` - API Key * `Password` - Username/Password * `SSH` - SSH

const (
	ToolConfigurationRequestAuthenticationTypeAPI      ToolConfigurationRequestAuthenticationType = "API"
	ToolConfigurationRequestAuthenticationTypeEmpty    ToolConfigurationRequestAuthenticationType = ""
	ToolConfigurationRequestAuthenticationTypeNil      ToolConfigurationRequestAuthenticationType = "<nil>"
	ToolConfigurationRequestAuthenticationTypePassword ToolConfigurationRequestAuthenticationType = "Password"
	ToolConfigurationRequestAuthenticationTypeSSH      ToolConfigurationRequestAuthenticationType = "SSH"
)

Defines values for ToolConfigurationRequestAuthenticationType.

type ToolConfigurationsCreateFormdataRequestBody added in v0.2.0

type ToolConfigurationsCreateFormdataRequestBody = ToolConfigurationRequest

ToolConfigurationsCreateFormdataRequestBody defines body for ToolConfigurationsCreate for application/x-www-form-urlencoded ContentType.

type ToolConfigurationsCreateJSONRequestBody

type ToolConfigurationsCreateJSONRequestBody = ToolConfigurationRequest

ToolConfigurationsCreateJSONRequestBody defines body for ToolConfigurationsCreate for application/json ContentType.

type ToolConfigurationsCreateMultipartRequestBody added in v0.2.0

type ToolConfigurationsCreateMultipartRequestBody = ToolConfigurationRequest

ToolConfigurationsCreateMultipartRequestBody defines body for ToolConfigurationsCreate for multipart/form-data ContentType.

type ToolConfigurationsCreateResponse

type ToolConfigurationsCreateResponse struct {
	Body         []byte
	HTTPResponse *http.Response
	JSON201      *ToolConfiguration
}

func ParseToolConfigurationsCreateResponse

func ParseToolConfigurationsCreateResponse(rsp *http.Response) (*ToolConfigurationsCreateResponse, error)

ParseToolConfigurationsCreateResponse parses an HTTP response from a ToolConfigurationsCreateWithResponse call

func (ToolConfigurationsCreateResponse) Status

Status returns HTTPResponse.Status

func (ToolConfigurationsCreateResponse) StatusCode

func (r ToolConfigurationsCreateResponse) StatusCode() int

StatusCode returns HTTPResponse.StatusCode

type ToolConfigurationsDeletePreviewListParams added in v0.2.0

type ToolConfigurationsDeletePreviewListParams struct {
	// Limit Number of results to return per page.
	Limit *int `form:"limit,omitempty" json:"limit,omitempty"`

	// Offset The initial index from which to return the results.
	Offset *int `form:"offset,omitempty" json:"offset,omitempty"`
}

ToolConfigurationsDeletePreviewListParams defines parameters for ToolConfigurationsDeletePreviewList.

type ToolConfigurationsDeletePreviewListResponse added in v0.2.0

type ToolConfigurationsDeletePreviewListResponse struct {
	Body         []byte
	HTTPResponse *http.Response
	JSON200      *PaginatedDeletePreviewList
}

func ParseToolConfigurationsDeletePreviewListResponse added in v0.2.0

func ParseToolConfigurationsDeletePreviewListResponse(rsp *http.Response) (*ToolConfigurationsDeletePreviewListResponse, error)

ParseToolConfigurationsDeletePreviewListResponse parses an HTTP response from a ToolConfigurationsDeletePreviewListWithResponse call

func (ToolConfigurationsDeletePreviewListResponse) Status added in v0.2.0

Status returns HTTPResponse.Status

func (ToolConfigurationsDeletePreviewListResponse) StatusCode added in v0.2.0

StatusCode returns HTTPResponse.StatusCode

type ToolConfigurationsDestroyResponse

type ToolConfigurationsDestroyResponse struct {
	Body         []byte
	HTTPResponse *http.Response
}

func ParseToolConfigurationsDestroyResponse

func ParseToolConfigurationsDestroyResponse(rsp *http.Response) (*ToolConfigurationsDestroyResponse, error)

ParseToolConfigurationsDestroyResponse parses an HTTP response from a ToolConfigurationsDestroyWithResponse call

func (ToolConfigurationsDestroyResponse) Status

Status returns HTTPResponse.Status

func (ToolConfigurationsDestroyResponse) StatusCode

func (r ToolConfigurationsDestroyResponse) StatusCode() int

StatusCode returns HTTPResponse.StatusCode

type ToolConfigurationsListParams

type ToolConfigurationsListParams struct {
	// AuthenticationType * `API` - API Key
	// * `Password` - Username/Password
	// * `SSH` - SSH
	AuthenticationType *ToolConfigurationsListParamsAuthenticationType `form:"authentication_type,omitempty" json:"authentication_type,omitempty"`
	Id                 *int                                            `form:"id,omitempty" json:"id,omitempty"`

	// Limit Number of results to return per page.
	Limit *int    `form:"limit,omitempty" json:"limit,omitempty"`
	Name  *string `form:"name,omitempty" json:"name,omitempty"`

	// Offset The initial index from which to return the results.
	Offset   *int    `form:"offset,omitempty" json:"offset,omitempty"`
	ToolType *int    `form:"tool_type,omitempty" json:"tool_type,omitempty"`
	Url      *string `form:"url,omitempty" json:"url,omitempty"`
}

ToolConfigurationsListParams defines parameters for ToolConfigurationsList.

type ToolConfigurationsListParamsAuthenticationType

type ToolConfigurationsListParamsAuthenticationType string

ToolConfigurationsListParamsAuthenticationType defines parameters for ToolConfigurationsList.

Defines values for ToolConfigurationsListParamsAuthenticationType.

type ToolConfigurationsListResponse

type ToolConfigurationsListResponse struct {
	Body         []byte
	HTTPResponse *http.Response
	JSON200      *PaginatedToolConfigurationList
}

func ParseToolConfigurationsListResponse

func ParseToolConfigurationsListResponse(rsp *http.Response) (*ToolConfigurationsListResponse, error)

ParseToolConfigurationsListResponse parses an HTTP response from a ToolConfigurationsListWithResponse call

func (ToolConfigurationsListResponse) Status

Status returns HTTPResponse.Status

func (ToolConfigurationsListResponse) StatusCode

func (r ToolConfigurationsListResponse) StatusCode() int

StatusCode returns HTTPResponse.StatusCode

type ToolConfigurationsPartialUpdateFormdataRequestBody added in v0.2.0

type ToolConfigurationsPartialUpdateFormdataRequestBody = PatchedToolConfigurationRequest

ToolConfigurationsPartialUpdateFormdataRequestBody defines body for ToolConfigurationsPartialUpdate for application/x-www-form-urlencoded ContentType.

type ToolConfigurationsPartialUpdateJSONRequestBody

type ToolConfigurationsPartialUpdateJSONRequestBody = PatchedToolConfigurationRequest

ToolConfigurationsPartialUpdateJSONRequestBody defines body for ToolConfigurationsPartialUpdate for application/json ContentType.

type ToolConfigurationsPartialUpdateMultipartRequestBody added in v0.2.0

type ToolConfigurationsPartialUpdateMultipartRequestBody = PatchedToolConfigurationRequest

ToolConfigurationsPartialUpdateMultipartRequestBody defines body for ToolConfigurationsPartialUpdate for multipart/form-data ContentType.

type ToolConfigurationsPartialUpdateResponse

type ToolConfigurationsPartialUpdateResponse struct {
	Body         []byte
	HTTPResponse *http.Response
	JSON200      *ToolConfiguration
}

func ParseToolConfigurationsPartialUpdateResponse

func ParseToolConfigurationsPartialUpdateResponse(rsp *http.Response) (*ToolConfigurationsPartialUpdateResponse, error)

ParseToolConfigurationsPartialUpdateResponse parses an HTTP response from a ToolConfigurationsPartialUpdateWithResponse call

func (ToolConfigurationsPartialUpdateResponse) Status

Status returns HTTPResponse.Status

func (ToolConfigurationsPartialUpdateResponse) StatusCode

StatusCode returns HTTPResponse.StatusCode

type ToolConfigurationsRetrieveResponse

type ToolConfigurationsRetrieveResponse struct {
	Body         []byte
	HTTPResponse *http.Response
	JSON200      *ToolConfiguration
}

func ParseToolConfigurationsRetrieveResponse

func ParseToolConfigurationsRetrieveResponse(rsp *http.Response) (*ToolConfigurationsRetrieveResponse, error)

ParseToolConfigurationsRetrieveResponse parses an HTTP response from a ToolConfigurationsRetrieveWithResponse call

func (ToolConfigurationsRetrieveResponse) Status

Status returns HTTPResponse.Status

func (ToolConfigurationsRetrieveResponse) StatusCode

func (r ToolConfigurationsRetrieveResponse) StatusCode() int

StatusCode returns HTTPResponse.StatusCode

type ToolConfigurationsUpdateFormdataRequestBody added in v0.2.0

type ToolConfigurationsUpdateFormdataRequestBody = ToolConfigurationRequest

ToolConfigurationsUpdateFormdataRequestBody defines body for ToolConfigurationsUpdate for application/x-www-form-urlencoded ContentType.

type ToolConfigurationsUpdateJSONRequestBody

type ToolConfigurationsUpdateJSONRequestBody = ToolConfigurationRequest

ToolConfigurationsUpdateJSONRequestBody defines body for ToolConfigurationsUpdate for application/json ContentType.

type ToolConfigurationsUpdateMultipartRequestBody added in v0.2.0

type ToolConfigurationsUpdateMultipartRequestBody = ToolConfigurationRequest

ToolConfigurationsUpdateMultipartRequestBody defines body for ToolConfigurationsUpdate for multipart/form-data ContentType.

type ToolConfigurationsUpdateResponse

type ToolConfigurationsUpdateResponse struct {
	Body         []byte
	HTTPResponse *http.Response
	JSON200      *ToolConfiguration
}

func ParseToolConfigurationsUpdateResponse

func ParseToolConfigurationsUpdateResponse(rsp *http.Response) (*ToolConfigurationsUpdateResponse, error)

ParseToolConfigurationsUpdateResponse parses an HTTP response from a ToolConfigurationsUpdateWithResponse call

func (ToolConfigurationsUpdateResponse) Status

Status returns HTTPResponse.Status

func (ToolConfigurationsUpdateResponse) StatusCode

func (r ToolConfigurationsUpdateResponse) StatusCode() int

StatusCode returns HTTPResponse.StatusCode

type ToolProductSettings

type ToolProductSettings struct {
	Description       *string `json:"description"`
	Id                *int    `json:"id,omitempty"`
	Name              string  `json:"name"`
	Notes             *[]int  `json:"notes,omitempty"`
	Product           int     `json:"product"`
	SettingUrl        string  `json:"setting_url"`
	ToolConfiguration int     `json:"tool_configuration"`
	ToolProjectId     *string `json:"tool_project_id"`
	Url               *string `json:"url"`
}

ToolProductSettings defines model for ToolProductSettings.

type ToolProductSettingsCreateFormdataRequestBody added in v0.2.0

type ToolProductSettingsCreateFormdataRequestBody = ToolProductSettingsRequest

ToolProductSettingsCreateFormdataRequestBody defines body for ToolProductSettingsCreate for application/x-www-form-urlencoded ContentType.

type ToolProductSettingsCreateJSONRequestBody

type ToolProductSettingsCreateJSONRequestBody = ToolProductSettingsRequest

ToolProductSettingsCreateJSONRequestBody defines body for ToolProductSettingsCreate for application/json ContentType.

type ToolProductSettingsCreateMultipartRequestBody added in v0.2.0

type ToolProductSettingsCreateMultipartRequestBody = ToolProductSettingsRequest

ToolProductSettingsCreateMultipartRequestBody defines body for ToolProductSettingsCreate for multipart/form-data ContentType.

type ToolProductSettingsCreateResponse

type ToolProductSettingsCreateResponse struct {
	Body         []byte
	HTTPResponse *http.Response
	JSON201      *ToolProductSettings
}

func ParseToolProductSettingsCreateResponse

func ParseToolProductSettingsCreateResponse(rsp *http.Response) (*ToolProductSettingsCreateResponse, error)

ParseToolProductSettingsCreateResponse parses an HTTP response from a ToolProductSettingsCreateWithResponse call

func (ToolProductSettingsCreateResponse) Status

Status returns HTTPResponse.Status

func (ToolProductSettingsCreateResponse) StatusCode

func (r ToolProductSettingsCreateResponse) StatusCode() int

StatusCode returns HTTPResponse.StatusCode

type ToolProductSettingsDeletePreviewListParams added in v0.2.0

type ToolProductSettingsDeletePreviewListParams struct {
	// Limit Number of results to return per page.
	Limit *int `form:"limit,omitempty" json:"limit,omitempty"`

	// Offset The initial index from which to return the results.
	Offset *int `form:"offset,omitempty" json:"offset,omitempty"`
}

ToolProductSettingsDeletePreviewListParams defines parameters for ToolProductSettingsDeletePreviewList.

type ToolProductSettingsDeletePreviewListResponse added in v0.2.0

type ToolProductSettingsDeletePreviewListResponse struct {
	Body         []byte
	HTTPResponse *http.Response
	JSON200      *PaginatedDeletePreviewList
}

func ParseToolProductSettingsDeletePreviewListResponse added in v0.2.0

func ParseToolProductSettingsDeletePreviewListResponse(rsp *http.Response) (*ToolProductSettingsDeletePreviewListResponse, error)

ParseToolProductSettingsDeletePreviewListResponse parses an HTTP response from a ToolProductSettingsDeletePreviewListWithResponse call

func (ToolProductSettingsDeletePreviewListResponse) Status added in v0.2.0

Status returns HTTPResponse.Status

func (ToolProductSettingsDeletePreviewListResponse) StatusCode added in v0.2.0

StatusCode returns HTTPResponse.StatusCode

type ToolProductSettingsDestroyResponse

type ToolProductSettingsDestroyResponse struct {
	Body         []byte
	HTTPResponse *http.Response
}

func ParseToolProductSettingsDestroyResponse

func ParseToolProductSettingsDestroyResponse(rsp *http.Response) (*ToolProductSettingsDestroyResponse, error)

ParseToolProductSettingsDestroyResponse parses an HTTP response from a ToolProductSettingsDestroyWithResponse call

func (ToolProductSettingsDestroyResponse) Status

Status returns HTTPResponse.Status

func (ToolProductSettingsDestroyResponse) StatusCode

func (r ToolProductSettingsDestroyResponse) StatusCode() int

StatusCode returns HTTPResponse.StatusCode

type ToolProductSettingsListParams

type ToolProductSettingsListParams struct {
	Id *int `form:"id,omitempty" json:"id,omitempty"`

	// Limit Number of results to return per page.
	Limit *int    `form:"limit,omitempty" json:"limit,omitempty"`
	Name  *string `form:"name,omitempty" json:"name,omitempty"`

	// Offset The initial index from which to return the results.
	Offset            *int    `form:"offset,omitempty" json:"offset,omitempty"`
	Product           *int    `form:"product,omitempty" json:"product,omitempty"`
	ToolConfiguration *int    `form:"tool_configuration,omitempty" json:"tool_configuration,omitempty"`
	ToolProjectId     *string `form:"tool_project_id,omitempty" json:"tool_project_id,omitempty"`
	Url               *string `form:"url,omitempty" json:"url,omitempty"`
}

ToolProductSettingsListParams defines parameters for ToolProductSettingsList.

type ToolProductSettingsListResponse

type ToolProductSettingsListResponse struct {
	Body         []byte
	HTTPResponse *http.Response
	JSON200      *PaginatedToolProductSettingsList
}

func ParseToolProductSettingsListResponse

func ParseToolProductSettingsListResponse(rsp *http.Response) (*ToolProductSettingsListResponse, error)

ParseToolProductSettingsListResponse parses an HTTP response from a ToolProductSettingsListWithResponse call

func (ToolProductSettingsListResponse) Status

Status returns HTTPResponse.Status

func (ToolProductSettingsListResponse) StatusCode

func (r ToolProductSettingsListResponse) StatusCode() int

StatusCode returns HTTPResponse.StatusCode

type ToolProductSettingsPartialUpdateFormdataRequestBody added in v0.2.0

type ToolProductSettingsPartialUpdateFormdataRequestBody = PatchedToolProductSettingsRequest

ToolProductSettingsPartialUpdateFormdataRequestBody defines body for ToolProductSettingsPartialUpdate for application/x-www-form-urlencoded ContentType.

type ToolProductSettingsPartialUpdateJSONRequestBody

type ToolProductSettingsPartialUpdateJSONRequestBody = PatchedToolProductSettingsRequest

ToolProductSettingsPartialUpdateJSONRequestBody defines body for ToolProductSettingsPartialUpdate for application/json ContentType.

type ToolProductSettingsPartialUpdateMultipartRequestBody added in v0.2.0

type ToolProductSettingsPartialUpdateMultipartRequestBody = PatchedToolProductSettingsRequest

ToolProductSettingsPartialUpdateMultipartRequestBody defines body for ToolProductSettingsPartialUpdate for multipart/form-data ContentType.

type ToolProductSettingsPartialUpdateResponse

type ToolProductSettingsPartialUpdateResponse struct {
	Body         []byte
	HTTPResponse *http.Response
	JSON200      *ToolProductSettings
}

func ParseToolProductSettingsPartialUpdateResponse

func ParseToolProductSettingsPartialUpdateResponse(rsp *http.Response) (*ToolProductSettingsPartialUpdateResponse, error)

ParseToolProductSettingsPartialUpdateResponse parses an HTTP response from a ToolProductSettingsPartialUpdateWithResponse call

func (ToolProductSettingsPartialUpdateResponse) Status

Status returns HTTPResponse.Status

func (ToolProductSettingsPartialUpdateResponse) StatusCode

StatusCode returns HTTPResponse.StatusCode

type ToolProductSettingsRequest added in v0.2.0

type ToolProductSettingsRequest struct {
	Description       *string `json:"description"`
	Name              string  `json:"name"`
	Product           int     `json:"product"`
	SettingUrl        string  `json:"setting_url"`
	ToolConfiguration int     `json:"tool_configuration"`
	ToolProjectId     *string `json:"tool_project_id"`
	Url               *string `json:"url"`
}

ToolProductSettingsRequest defines model for ToolProductSettingsRequest.

type ToolProductSettingsRetrieveResponse

type ToolProductSettingsRetrieveResponse struct {
	Body         []byte
	HTTPResponse *http.Response
	JSON200      *ToolProductSettings
}

func ParseToolProductSettingsRetrieveResponse

func ParseToolProductSettingsRetrieveResponse(rsp *http.Response) (*ToolProductSettingsRetrieveResponse, error)

ParseToolProductSettingsRetrieveResponse parses an HTTP response from a ToolProductSettingsRetrieveWithResponse call

func (ToolProductSettingsRetrieveResponse) Status

Status returns HTTPResponse.Status

func (ToolProductSettingsRetrieveResponse) StatusCode

StatusCode returns HTTPResponse.StatusCode

type ToolProductSettingsUpdateFormdataRequestBody added in v0.2.0

type ToolProductSettingsUpdateFormdataRequestBody = ToolProductSettingsRequest

ToolProductSettingsUpdateFormdataRequestBody defines body for ToolProductSettingsUpdate for application/x-www-form-urlencoded ContentType.

type ToolProductSettingsUpdateJSONRequestBody

type ToolProductSettingsUpdateJSONRequestBody = ToolProductSettingsRequest

ToolProductSettingsUpdateJSONRequestBody defines body for ToolProductSettingsUpdate for application/json ContentType.

type ToolProductSettingsUpdateMultipartRequestBody added in v0.2.0

type ToolProductSettingsUpdateMultipartRequestBody = ToolProductSettingsRequest

ToolProductSettingsUpdateMultipartRequestBody defines body for ToolProductSettingsUpdate for multipart/form-data ContentType.

type ToolProductSettingsUpdateResponse

type ToolProductSettingsUpdateResponse struct {
	Body         []byte
	HTTPResponse *http.Response
	JSON200      *ToolProductSettings
}

func ParseToolProductSettingsUpdateResponse

func ParseToolProductSettingsUpdateResponse(rsp *http.Response) (*ToolProductSettingsUpdateResponse, error)

ParseToolProductSettingsUpdateResponse parses an HTTP response from a ToolProductSettingsUpdateWithResponse call

func (ToolProductSettingsUpdateResponse) Status

Status returns HTTPResponse.Status

func (ToolProductSettingsUpdateResponse) StatusCode

func (r ToolProductSettingsUpdateResponse) StatusCode() int

StatusCode returns HTTPResponse.StatusCode

type ToolType

type ToolType struct {
	Description *string `json:"description"`
	Id          *int    `json:"id,omitempty"`
	Name        string  `json:"name"`
}

ToolType defines model for ToolType.

type ToolTypeRequest added in v0.2.0

type ToolTypeRequest struct {
	Description *string `json:"description"`
	Name        string  `json:"name"`
}

ToolTypeRequest defines model for ToolTypeRequest.

type ToolTypesCreateFormdataRequestBody added in v0.2.0

type ToolTypesCreateFormdataRequestBody = ToolTypeRequest

ToolTypesCreateFormdataRequestBody defines body for ToolTypesCreate for application/x-www-form-urlencoded ContentType.

type ToolTypesCreateJSONRequestBody

type ToolTypesCreateJSONRequestBody = ToolTypeRequest

ToolTypesCreateJSONRequestBody defines body for ToolTypesCreate for application/json ContentType.

type ToolTypesCreateMultipartRequestBody added in v0.2.0

type ToolTypesCreateMultipartRequestBody = ToolTypeRequest

ToolTypesCreateMultipartRequestBody defines body for ToolTypesCreate for multipart/form-data ContentType.

type ToolTypesCreateResponse

type ToolTypesCreateResponse struct {
	Body         []byte
	HTTPResponse *http.Response
	JSON201      *ToolType
}

func ParseToolTypesCreateResponse

func ParseToolTypesCreateResponse(rsp *http.Response) (*ToolTypesCreateResponse, error)

ParseToolTypesCreateResponse parses an HTTP response from a ToolTypesCreateWithResponse call

func (ToolTypesCreateResponse) Status

func (r ToolTypesCreateResponse) Status() string

Status returns HTTPResponse.Status

func (ToolTypesCreateResponse) StatusCode

func (r ToolTypesCreateResponse) StatusCode() int

StatusCode returns HTTPResponse.StatusCode

type ToolTypesDeletePreviewListParams added in v0.2.0

type ToolTypesDeletePreviewListParams struct {
	// Limit Number of results to return per page.
	Limit *int `form:"limit,omitempty" json:"limit,omitempty"`

	// Offset The initial index from which to return the results.
	Offset *int `form:"offset,omitempty" json:"offset,omitempty"`
}

ToolTypesDeletePreviewListParams defines parameters for ToolTypesDeletePreviewList.

type ToolTypesDeletePreviewListResponse added in v0.2.0

type ToolTypesDeletePreviewListResponse struct {
	Body         []byte
	HTTPResponse *http.Response
	JSON200      *PaginatedDeletePreviewList
}

func ParseToolTypesDeletePreviewListResponse added in v0.2.0

func ParseToolTypesDeletePreviewListResponse(rsp *http.Response) (*ToolTypesDeletePreviewListResponse, error)

ParseToolTypesDeletePreviewListResponse parses an HTTP response from a ToolTypesDeletePreviewListWithResponse call

func (ToolTypesDeletePreviewListResponse) Status added in v0.2.0

Status returns HTTPResponse.Status

func (ToolTypesDeletePreviewListResponse) StatusCode added in v0.2.0

func (r ToolTypesDeletePreviewListResponse) StatusCode() int

StatusCode returns HTTPResponse.StatusCode

type ToolTypesDestroyResponse

type ToolTypesDestroyResponse struct {
	Body         []byte
	HTTPResponse *http.Response
}

func ParseToolTypesDestroyResponse

func ParseToolTypesDestroyResponse(rsp *http.Response) (*ToolTypesDestroyResponse, error)

ParseToolTypesDestroyResponse parses an HTTP response from a ToolTypesDestroyWithResponse call

func (ToolTypesDestroyResponse) Status

func (r ToolTypesDestroyResponse) Status() string

Status returns HTTPResponse.Status

func (ToolTypesDestroyResponse) StatusCode

func (r ToolTypesDestroyResponse) StatusCode() int

StatusCode returns HTTPResponse.StatusCode

type ToolTypesListParams

type ToolTypesListParams struct {
	Description *string `form:"description,omitempty" json:"description,omitempty"`
	Id          *int    `form:"id,omitempty" json:"id,omitempty"`

	// Limit Number of results to return per page.
	Limit *int    `form:"limit,omitempty" json:"limit,omitempty"`
	Name  *string `form:"name,omitempty" json:"name,omitempty"`

	// Offset The initial index from which to return the results.
	Offset *int `form:"offset,omitempty" json:"offset,omitempty"`
}

ToolTypesListParams defines parameters for ToolTypesList.

type ToolTypesListResponse

type ToolTypesListResponse struct {
	Body         []byte
	HTTPResponse *http.Response
	JSON200      *PaginatedToolTypeList
}

func ParseToolTypesListResponse

func ParseToolTypesListResponse(rsp *http.Response) (*ToolTypesListResponse, error)

ParseToolTypesListResponse parses an HTTP response from a ToolTypesListWithResponse call

func (ToolTypesListResponse) Status

func (r ToolTypesListResponse) Status() string

Status returns HTTPResponse.Status

func (ToolTypesListResponse) StatusCode

func (r ToolTypesListResponse) StatusCode() int

StatusCode returns HTTPResponse.StatusCode

type ToolTypesPartialUpdateFormdataRequestBody added in v0.2.0

type ToolTypesPartialUpdateFormdataRequestBody = PatchedToolTypeRequest

ToolTypesPartialUpdateFormdataRequestBody defines body for ToolTypesPartialUpdate for application/x-www-form-urlencoded ContentType.

type ToolTypesPartialUpdateJSONRequestBody

type ToolTypesPartialUpdateJSONRequestBody = PatchedToolTypeRequest

ToolTypesPartialUpdateJSONRequestBody defines body for ToolTypesPartialUpdate for application/json ContentType.

type ToolTypesPartialUpdateMultipartRequestBody added in v0.2.0

type ToolTypesPartialUpdateMultipartRequestBody = PatchedToolTypeRequest

ToolTypesPartialUpdateMultipartRequestBody defines body for ToolTypesPartialUpdate for multipart/form-data ContentType.

type ToolTypesPartialUpdateResponse

type ToolTypesPartialUpdateResponse struct {
	Body         []byte
	HTTPResponse *http.Response
	JSON200      *ToolType
}

func ParseToolTypesPartialUpdateResponse

func ParseToolTypesPartialUpdateResponse(rsp *http.Response) (*ToolTypesPartialUpdateResponse, error)

ParseToolTypesPartialUpdateResponse parses an HTTP response from a ToolTypesPartialUpdateWithResponse call

func (ToolTypesPartialUpdateResponse) Status

Status returns HTTPResponse.Status

func (ToolTypesPartialUpdateResponse) StatusCode

func (r ToolTypesPartialUpdateResponse) StatusCode() int

StatusCode returns HTTPResponse.StatusCode

type ToolTypesRetrieveResponse

type ToolTypesRetrieveResponse struct {
	Body         []byte
	HTTPResponse *http.Response
	JSON200      *ToolType
}

func ParseToolTypesRetrieveResponse

func ParseToolTypesRetrieveResponse(rsp *http.Response) (*ToolTypesRetrieveResponse, error)

ParseToolTypesRetrieveResponse parses an HTTP response from a ToolTypesRetrieveWithResponse call

func (ToolTypesRetrieveResponse) Status

func (r ToolTypesRetrieveResponse) Status() string

Status returns HTTPResponse.Status

func (ToolTypesRetrieveResponse) StatusCode

func (r ToolTypesRetrieveResponse) StatusCode() int

StatusCode returns HTTPResponse.StatusCode

type ToolTypesUpdateFormdataRequestBody added in v0.2.0

type ToolTypesUpdateFormdataRequestBody = ToolTypeRequest

ToolTypesUpdateFormdataRequestBody defines body for ToolTypesUpdate for application/x-www-form-urlencoded ContentType.

type ToolTypesUpdateJSONRequestBody

type ToolTypesUpdateJSONRequestBody = ToolTypeRequest

ToolTypesUpdateJSONRequestBody defines body for ToolTypesUpdate for application/json ContentType.

type ToolTypesUpdateMultipartRequestBody added in v0.2.0

type ToolTypesUpdateMultipartRequestBody = ToolTypeRequest

ToolTypesUpdateMultipartRequestBody defines body for ToolTypesUpdate for multipart/form-data ContentType.

type ToolTypesUpdateResponse

type ToolTypesUpdateResponse struct {
	Body         []byte
	HTTPResponse *http.Response
	JSON200      *ToolType
}

func ParseToolTypesUpdateResponse

func ParseToolTypesUpdateResponse(rsp *http.Response) (*ToolTypesUpdateResponse, error)

ParseToolTypesUpdateResponse parses an HTTP response from a ToolTypesUpdateWithResponse call

func (ToolTypesUpdateResponse) Status

func (r ToolTypesUpdateResponse) Status() string

Status returns HTTPResponse.Status

func (ToolTypesUpdateResponse) StatusCode

func (r ToolTypesUpdateResponse) StatusCode() int

StatusCode returns HTTPResponse.StatusCode

type User

type User struct {
	ConfigurationPermissions *[]int               `json:"configuration_permissions,omitempty"`
	Email                    *openapi_types.Email `json:"email,omitempty"`
	FirstName                *string              `json:"first_name,omitempty"`
	Id                       *int                 `json:"id,omitempty"`

	// IsActive Designates whether this user should be treated as active. Unselect this instead of deleting accounts.
	IsActive *bool `json:"is_active,omitempty"`

	// IsSuperuser Designates that this user has all permissions without explicitly assigning them.
	IsSuperuser *bool      `json:"is_superuser,omitempty"`
	LastLogin   *time.Time `json:"last_login,omitempty"`
	LastName    *string    `json:"last_name,omitempty"`

	// Username Required. 150 characters or fewer. Letters, digits and @/./+/-/_ only.
	Username string `json:"username"`
}

User defines model for User.

type UserContactInfo

type UserContactInfo struct {
	// BlockExecution Instead of async deduping a finding the findings will be deduped synchronously and will 'block' the user until completion.
	BlockExecution *bool `json:"block_execution,omitempty"`

	// CellNumber Phone number must be entered in the format: '+999999999'. Up to 15 digits allowed.
	CellNumber *string `json:"cell_number,omitempty"`

	// ForcePasswordReset Forces this user to reset their password on next login.
	ForcePasswordReset *bool   `json:"force_password_reset,omitempty"`
	GithubUsername     *string `json:"github_username"`
	Id                 *int    `json:"id,omitempty"`

	// PhoneNumber Phone number must be entered in the format: '+999999999'. Up to 15 digits allowed.
	PhoneNumber *string `json:"phone_number,omitempty"`
	Prefetch    *struct {
		User *map[string]UserStub `json:"user,omitempty"`
	} `json:"prefetch,omitempty"`
	SlackUserId *string `json:"slack_user_id"`

	// SlackUsername Email address associated with your slack account
	SlackUsername   *string `json:"slack_username"`
	Title           *string `json:"title"`
	TwitterUsername *string `json:"twitter_username"`
	User            int     `json:"user"`
}

UserContactInfo defines model for UserContactInfo.

type UserContactInfoRequest added in v0.2.0

type UserContactInfoRequest struct {
	// BlockExecution Instead of async deduping a finding the findings will be deduped synchronously and will 'block' the user until completion.
	BlockExecution *bool `json:"block_execution,omitempty"`

	// CellNumber Phone number must be entered in the format: '+999999999'. Up to 15 digits allowed.
	CellNumber *string `json:"cell_number,omitempty"`

	// ForcePasswordReset Forces this user to reset their password on next login.
	ForcePasswordReset *bool   `json:"force_password_reset,omitempty"`
	GithubUsername     *string `json:"github_username"`

	// PhoneNumber Phone number must be entered in the format: '+999999999'. Up to 15 digits allowed.
	PhoneNumber *string `json:"phone_number,omitempty"`
	SlackUserId *string `json:"slack_user_id"`

	// SlackUsername Email address associated with your slack account
	SlackUsername   *string `json:"slack_username"`
	Title           *string `json:"title"`
	TwitterUsername *string `json:"twitter_username"`
	User            int     `json:"user"`
}

UserContactInfoRequest defines model for UserContactInfoRequest.

type UserContactInfosCreateFormdataRequestBody added in v0.2.0

type UserContactInfosCreateFormdataRequestBody = UserContactInfoRequest

UserContactInfosCreateFormdataRequestBody defines body for UserContactInfosCreate for application/x-www-form-urlencoded ContentType.

type UserContactInfosCreateJSONRequestBody

type UserContactInfosCreateJSONRequestBody = UserContactInfoRequest

UserContactInfosCreateJSONRequestBody defines body for UserContactInfosCreate for application/json ContentType.

type UserContactInfosCreateMultipartRequestBody added in v0.2.0

type UserContactInfosCreateMultipartRequestBody = UserContactInfoRequest

UserContactInfosCreateMultipartRequestBody defines body for UserContactInfosCreate for multipart/form-data ContentType.

type UserContactInfosCreateResponse

type UserContactInfosCreateResponse struct {
	Body         []byte
	HTTPResponse *http.Response
	JSON201      *UserContactInfo
}

func ParseUserContactInfosCreateResponse

func ParseUserContactInfosCreateResponse(rsp *http.Response) (*UserContactInfosCreateResponse, error)

ParseUserContactInfosCreateResponse parses an HTTP response from a UserContactInfosCreateWithResponse call

func (UserContactInfosCreateResponse) Status

Status returns HTTPResponse.Status

func (UserContactInfosCreateResponse) StatusCode

func (r UserContactInfosCreateResponse) StatusCode() int

StatusCode returns HTTPResponse.StatusCode

type UserContactInfosDeletePreviewListParams added in v0.2.0

type UserContactInfosDeletePreviewListParams struct {
	// Limit Number of results to return per page.
	Limit *int `form:"limit,omitempty" json:"limit,omitempty"`

	// Offset The initial index from which to return the results.
	Offset *int `form:"offset,omitempty" json:"offset,omitempty"`
}

UserContactInfosDeletePreviewListParams defines parameters for UserContactInfosDeletePreviewList.

type UserContactInfosDeletePreviewListResponse added in v0.2.0

type UserContactInfosDeletePreviewListResponse struct {
	Body         []byte
	HTTPResponse *http.Response
	JSON200      *PaginatedDeletePreviewList
}

func ParseUserContactInfosDeletePreviewListResponse added in v0.2.0

func ParseUserContactInfosDeletePreviewListResponse(rsp *http.Response) (*UserContactInfosDeletePreviewListResponse, error)

ParseUserContactInfosDeletePreviewListResponse parses an HTTP response from a UserContactInfosDeletePreviewListWithResponse call

func (UserContactInfosDeletePreviewListResponse) Status added in v0.2.0

Status returns HTTPResponse.Status

func (UserContactInfosDeletePreviewListResponse) StatusCode added in v0.2.0

StatusCode returns HTTPResponse.StatusCode

type UserContactInfosDestroyResponse

type UserContactInfosDestroyResponse struct {
	Body         []byte
	HTTPResponse *http.Response
}

func ParseUserContactInfosDestroyResponse

func ParseUserContactInfosDestroyResponse(rsp *http.Response) (*UserContactInfosDestroyResponse, error)

ParseUserContactInfosDestroyResponse parses an HTTP response from a UserContactInfosDestroyWithResponse call

func (UserContactInfosDestroyResponse) Status

Status returns HTTPResponse.Status

func (UserContactInfosDestroyResponse) StatusCode

func (r UserContactInfosDestroyResponse) StatusCode() int

StatusCode returns HTTPResponse.StatusCode

type UserContactInfosListParams

type UserContactInfosListParams struct {
	BlockExecution     *bool   `form:"block_execution,omitempty" json:"block_execution,omitempty"`
	CellNumber         *string `form:"cell_number,omitempty" json:"cell_number,omitempty"`
	ForcePasswordReset *bool   `form:"force_password_reset,omitempty" json:"force_password_reset,omitempty"`
	GithubUsername     *string `form:"github_username,omitempty" json:"github_username,omitempty"`

	// Limit Number of results to return per page.
	Limit *int `form:"limit,omitempty" json:"limit,omitempty"`

	// Offset The initial index from which to return the results.
	Offset      *int    `form:"offset,omitempty" json:"offset,omitempty"`
	PhoneNumber *string `form:"phone_number,omitempty" json:"phone_number,omitempty"`

	// Prefetch List of fields for which to prefetch model instances and add those to the response
	Prefetch        *[]UserContactInfosListParamsPrefetch `form:"prefetch,omitempty" json:"prefetch,omitempty"`
	SlackUserId     *string                               `form:"slack_user_id,omitempty" json:"slack_user_id,omitempty"`
	SlackUsername   *string                               `form:"slack_username,omitempty" json:"slack_username,omitempty"`
	Title           *string                               `form:"title,omitempty" json:"title,omitempty"`
	TwitterUsername *string                               `form:"twitter_username,omitempty" json:"twitter_username,omitempty"`
	User            *int                                  `form:"user,omitempty" json:"user,omitempty"`
}

UserContactInfosListParams defines parameters for UserContactInfosList.

type UserContactInfosListParamsPrefetch

type UserContactInfosListParamsPrefetch string

UserContactInfosListParamsPrefetch defines parameters for UserContactInfosList.

const (
	UserContactInfosListParamsPrefetchUser UserContactInfosListParamsPrefetch = "user"
)

Defines values for UserContactInfosListParamsPrefetch.

type UserContactInfosListResponse

type UserContactInfosListResponse struct {
	Body         []byte
	HTTPResponse *http.Response
	JSON200      *PaginatedUserContactInfoList
}

func ParseUserContactInfosListResponse

func ParseUserContactInfosListResponse(rsp *http.Response) (*UserContactInfosListResponse, error)

ParseUserContactInfosListResponse parses an HTTP response from a UserContactInfosListWithResponse call

func (UserContactInfosListResponse) Status

Status returns HTTPResponse.Status

func (UserContactInfosListResponse) StatusCode

func (r UserContactInfosListResponse) StatusCode() int

StatusCode returns HTTPResponse.StatusCode

type UserContactInfosPartialUpdateFormdataRequestBody added in v0.2.0

type UserContactInfosPartialUpdateFormdataRequestBody = PatchedUserContactInfoRequest

UserContactInfosPartialUpdateFormdataRequestBody defines body for UserContactInfosPartialUpdate for application/x-www-form-urlencoded ContentType.

type UserContactInfosPartialUpdateJSONRequestBody

type UserContactInfosPartialUpdateJSONRequestBody = PatchedUserContactInfoRequest

UserContactInfosPartialUpdateJSONRequestBody defines body for UserContactInfosPartialUpdate for application/json ContentType.

type UserContactInfosPartialUpdateMultipartRequestBody added in v0.2.0

type UserContactInfosPartialUpdateMultipartRequestBody = PatchedUserContactInfoRequest

UserContactInfosPartialUpdateMultipartRequestBody defines body for UserContactInfosPartialUpdate for multipart/form-data ContentType.

type UserContactInfosPartialUpdateResponse

type UserContactInfosPartialUpdateResponse struct {
	Body         []byte
	HTTPResponse *http.Response
	JSON200      *UserContactInfo
}

func ParseUserContactInfosPartialUpdateResponse

func ParseUserContactInfosPartialUpdateResponse(rsp *http.Response) (*UserContactInfosPartialUpdateResponse, error)

ParseUserContactInfosPartialUpdateResponse parses an HTTP response from a UserContactInfosPartialUpdateWithResponse call

func (UserContactInfosPartialUpdateResponse) Status

Status returns HTTPResponse.Status

func (UserContactInfosPartialUpdateResponse) StatusCode

StatusCode returns HTTPResponse.StatusCode

type UserContactInfosRetrieveParams

type UserContactInfosRetrieveParams struct {
	// Prefetch List of fields for which to prefetch model instances and add those to the response
	Prefetch *[]UserContactInfosRetrieveParamsPrefetch `form:"prefetch,omitempty" json:"prefetch,omitempty"`
}

UserContactInfosRetrieveParams defines parameters for UserContactInfosRetrieve.

type UserContactInfosRetrieveParamsPrefetch

type UserContactInfosRetrieveParamsPrefetch string

UserContactInfosRetrieveParamsPrefetch defines parameters for UserContactInfosRetrieve.

const (
	UserContactInfosRetrieveParamsPrefetchUser UserContactInfosRetrieveParamsPrefetch = "user"
)

Defines values for UserContactInfosRetrieveParamsPrefetch.

type UserContactInfosRetrieveResponse

type UserContactInfosRetrieveResponse struct {
	Body         []byte
	HTTPResponse *http.Response
	JSON200      *UserContactInfo
}

func ParseUserContactInfosRetrieveResponse

func ParseUserContactInfosRetrieveResponse(rsp *http.Response) (*UserContactInfosRetrieveResponse, error)

ParseUserContactInfosRetrieveResponse parses an HTTP response from a UserContactInfosRetrieveWithResponse call

func (UserContactInfosRetrieveResponse) Status

Status returns HTTPResponse.Status

func (UserContactInfosRetrieveResponse) StatusCode

func (r UserContactInfosRetrieveResponse) StatusCode() int

StatusCode returns HTTPResponse.StatusCode

type UserContactInfosUpdateFormdataRequestBody added in v0.2.0

type UserContactInfosUpdateFormdataRequestBody = UserContactInfoRequest

UserContactInfosUpdateFormdataRequestBody defines body for UserContactInfosUpdate for application/x-www-form-urlencoded ContentType.

type UserContactInfosUpdateJSONRequestBody

type UserContactInfosUpdateJSONRequestBody = UserContactInfoRequest

UserContactInfosUpdateJSONRequestBody defines body for UserContactInfosUpdate for application/json ContentType.

type UserContactInfosUpdateMultipartRequestBody added in v0.2.0

type UserContactInfosUpdateMultipartRequestBody = UserContactInfoRequest

UserContactInfosUpdateMultipartRequestBody defines body for UserContactInfosUpdate for multipart/form-data ContentType.

type UserContactInfosUpdateResponse

type UserContactInfosUpdateResponse struct {
	Body         []byte
	HTTPResponse *http.Response
	JSON200      *UserContactInfo
}

func ParseUserContactInfosUpdateResponse

func ParseUserContactInfosUpdateResponse(rsp *http.Response) (*UserContactInfosUpdateResponse, error)

ParseUserContactInfosUpdateResponse parses an HTTP response from a UserContactInfosUpdateWithResponse call

func (UserContactInfosUpdateResponse) Status

Status returns HTTPResponse.Status

func (UserContactInfosUpdateResponse) StatusCode

func (r UserContactInfosUpdateResponse) StatusCode() int

StatusCode returns HTTPResponse.StatusCode

type UserProfile

type UserProfile struct {
	DojoGroupMember   []DojoGroupMember   `json:"dojo_group_member"`
	GlobalRole        GlobalRole          `json:"global_role"`
	ProductMember     []ProductMember     `json:"product_member"`
	ProductTypeMember []ProductTypeMember `json:"product_type_member"`
	User              User                `json:"user"`
	UserContactInfo   UserContactInfo     `json:"user_contact_info"`
}

UserProfile defines model for UserProfile.

type UserProfileRetrieveResponse

type UserProfileRetrieveResponse struct {
	Body         []byte
	HTTPResponse *http.Response
	JSON200      *UserProfile
}

func ParseUserProfileRetrieveResponse

func ParseUserProfileRetrieveResponse(rsp *http.Response) (*UserProfileRetrieveResponse, error)

ParseUserProfileRetrieveResponse parses an HTTP response from a UserProfileRetrieveWithResponse call

func (UserProfileRetrieveResponse) Status

Status returns HTTPResponse.Status

func (UserProfileRetrieveResponse) StatusCode

func (r UserProfileRetrieveResponse) StatusCode() int

StatusCode returns HTTPResponse.StatusCode

type UserRequest added in v0.2.0

type UserRequest struct {
	ConfigurationPermissions *[]int               `json:"configuration_permissions,omitempty"`
	Email                    *openapi_types.Email `json:"email,omitempty"`
	FirstName                *string              `json:"first_name,omitempty"`

	// IsActive Designates whether this user should be treated as active. Unselect this instead of deleting accounts.
	IsActive *bool `json:"is_active,omitempty"`

	// IsSuperuser Designates that this user has all permissions without explicitly assigning them.
	IsSuperuser *bool   `json:"is_superuser,omitempty"`
	LastName    *string `json:"last_name,omitempty"`
	Password    *string `json:"password,omitempty"`

	// Username Required. 150 characters or fewer. Letters, digits and @/./+/-/_ only.
	Username string `json:"username"`
}

UserRequest defines model for UserRequest.

type UserStub

type UserStub struct {
	FirstName *string `json:"first_name,omitempty"`
	Id        *int    `json:"id,omitempty"`
	LastName  *string `json:"last_name,omitempty"`

	// Username Required. 150 characters or fewer. Letters, digits and @/./+/-/_ only.
	Username string `json:"username"`
}

UserStub defines model for UserStub.

type UsersCreateFormdataRequestBody added in v0.2.0

type UsersCreateFormdataRequestBody = UserRequest

UsersCreateFormdataRequestBody defines body for UsersCreate for application/x-www-form-urlencoded ContentType.

type UsersCreateJSONRequestBody

type UsersCreateJSONRequestBody = UserRequest

UsersCreateJSONRequestBody defines body for UsersCreate for application/json ContentType.

type UsersCreateMultipartRequestBody added in v0.2.0

type UsersCreateMultipartRequestBody = UserRequest

UsersCreateMultipartRequestBody defines body for UsersCreate for multipart/form-data ContentType.

type UsersCreateResponse

type UsersCreateResponse struct {
	Body         []byte
	HTTPResponse *http.Response
	JSON201      *User
}

func ParseUsersCreateResponse

func ParseUsersCreateResponse(rsp *http.Response) (*UsersCreateResponse, error)

ParseUsersCreateResponse parses an HTTP response from a UsersCreateWithResponse call

func (UsersCreateResponse) Status

func (r UsersCreateResponse) Status() string

Status returns HTTPResponse.Status

func (UsersCreateResponse) StatusCode

func (r UsersCreateResponse) StatusCode() int

StatusCode returns HTTPResponse.StatusCode

type UsersDeletePreviewListParams added in v0.2.0

type UsersDeletePreviewListParams struct {
	// Limit Number of results to return per page.
	Limit *int `form:"limit,omitempty" json:"limit,omitempty"`

	// Offset The initial index from which to return the results.
	Offset *int `form:"offset,omitempty" json:"offset,omitempty"`
}

UsersDeletePreviewListParams defines parameters for UsersDeletePreviewList.

type UsersDeletePreviewListResponse added in v0.2.0

type UsersDeletePreviewListResponse struct {
	Body         []byte
	HTTPResponse *http.Response
	JSON200      *PaginatedDeletePreviewList
}

func ParseUsersDeletePreviewListResponse added in v0.2.0

func ParseUsersDeletePreviewListResponse(rsp *http.Response) (*UsersDeletePreviewListResponse, error)

ParseUsersDeletePreviewListResponse parses an HTTP response from a UsersDeletePreviewListWithResponse call

func (UsersDeletePreviewListResponse) Status added in v0.2.0

Status returns HTTPResponse.Status

func (UsersDeletePreviewListResponse) StatusCode added in v0.2.0

func (r UsersDeletePreviewListResponse) StatusCode() int

StatusCode returns HTTPResponse.StatusCode

type UsersDestroyResponse

type UsersDestroyResponse struct {
	Body         []byte
	HTTPResponse *http.Response
}

func ParseUsersDestroyResponse

func ParseUsersDestroyResponse(rsp *http.Response) (*UsersDestroyResponse, error)

ParseUsersDestroyResponse parses an HTTP response from a UsersDestroyWithResponse call

func (UsersDestroyResponse) Status

func (r UsersDestroyResponse) Status() string

Status returns HTTPResponse.Status

func (UsersDestroyResponse) StatusCode

func (r UsersDestroyResponse) StatusCode() int

StatusCode returns HTTPResponse.StatusCode

type UsersListParams

type UsersListParams struct {
	Email       *string `form:"email,omitempty" json:"email,omitempty"`
	FirstName   *string `form:"first_name,omitempty" json:"first_name,omitempty"`
	Id          *int    `form:"id,omitempty" json:"id,omitempty"`
	IsActive    *bool   `form:"is_active,omitempty" json:"is_active,omitempty"`
	IsSuperuser *bool   `form:"is_superuser,omitempty" json:"is_superuser,omitempty"`
	LastName    *string `form:"last_name,omitempty" json:"last_name,omitempty"`

	// Limit Number of results to return per page.
	Limit *int `form:"limit,omitempty" json:"limit,omitempty"`

	// Offset The initial index from which to return the results.
	Offset   *int    `form:"offset,omitempty" json:"offset,omitempty"`
	Username *string `form:"username,omitempty" json:"username,omitempty"`
}

UsersListParams defines parameters for UsersList.

type UsersListResponse

type UsersListResponse struct {
	Body         []byte
	HTTPResponse *http.Response
	JSON200      *PaginatedUserList
}

func ParseUsersListResponse

func ParseUsersListResponse(rsp *http.Response) (*UsersListResponse, error)

ParseUsersListResponse parses an HTTP response from a UsersListWithResponse call

func (UsersListResponse) Status

func (r UsersListResponse) Status() string

Status returns HTTPResponse.Status

func (UsersListResponse) StatusCode

func (r UsersListResponse) StatusCode() int

StatusCode returns HTTPResponse.StatusCode

type UsersPartialUpdateFormdataRequestBody added in v0.2.0

type UsersPartialUpdateFormdataRequestBody = PatchedUserRequest

UsersPartialUpdateFormdataRequestBody defines body for UsersPartialUpdate for application/x-www-form-urlencoded ContentType.

type UsersPartialUpdateJSONRequestBody

type UsersPartialUpdateJSONRequestBody = PatchedUserRequest

UsersPartialUpdateJSONRequestBody defines body for UsersPartialUpdate for application/json ContentType.

type UsersPartialUpdateMultipartRequestBody added in v0.2.0

type UsersPartialUpdateMultipartRequestBody = PatchedUserRequest

UsersPartialUpdateMultipartRequestBody defines body for UsersPartialUpdate for multipart/form-data ContentType.

type UsersPartialUpdateResponse

type UsersPartialUpdateResponse struct {
	Body         []byte
	HTTPResponse *http.Response
	JSON200      *User
}

func ParseUsersPartialUpdateResponse

func ParseUsersPartialUpdateResponse(rsp *http.Response) (*UsersPartialUpdateResponse, error)

ParseUsersPartialUpdateResponse parses an HTTP response from a UsersPartialUpdateWithResponse call

func (UsersPartialUpdateResponse) Status

Status returns HTTPResponse.Status

func (UsersPartialUpdateResponse) StatusCode

func (r UsersPartialUpdateResponse) StatusCode() int

StatusCode returns HTTPResponse.StatusCode

type UsersRetrieveResponse

type UsersRetrieveResponse struct {
	Body         []byte
	HTTPResponse *http.Response
	JSON200      *User
}

func ParseUsersRetrieveResponse

func ParseUsersRetrieveResponse(rsp *http.Response) (*UsersRetrieveResponse, error)

ParseUsersRetrieveResponse parses an HTTP response from a UsersRetrieveWithResponse call

func (UsersRetrieveResponse) Status

func (r UsersRetrieveResponse) Status() string

Status returns HTTPResponse.Status

func (UsersRetrieveResponse) StatusCode

func (r UsersRetrieveResponse) StatusCode() int

StatusCode returns HTTPResponse.StatusCode

type UsersUpdateFormdataRequestBody added in v0.2.0

type UsersUpdateFormdataRequestBody = UserRequest

UsersUpdateFormdataRequestBody defines body for UsersUpdate for application/x-www-form-urlencoded ContentType.

type UsersUpdateJSONRequestBody

type UsersUpdateJSONRequestBody = UserRequest

UsersUpdateJSONRequestBody defines body for UsersUpdate for application/json ContentType.

type UsersUpdateMultipartRequestBody added in v0.2.0

type UsersUpdateMultipartRequestBody = UserRequest

UsersUpdateMultipartRequestBody defines body for UsersUpdate for multipart/form-data ContentType.

type UsersUpdateResponse

type UsersUpdateResponse struct {
	Body         []byte
	HTTPResponse *http.Response
	JSON200      *User
}

func ParseUsersUpdateResponse

func ParseUsersUpdateResponse(rsp *http.Response) (*UsersUpdateResponse, error)

ParseUsersUpdateResponse parses an HTTP response from a UsersUpdateWithResponse call

func (UsersUpdateResponse) Status

func (r UsersUpdateResponse) Status() string

Status returns HTTPResponse.Status

func (UsersUpdateResponse) StatusCode

func (r UsersUpdateResponse) StatusCode() int

StatusCode returns HTTPResponse.StatusCode

type VulnerabilityId added in v0.2.0

type VulnerabilityId struct {
	VulnerabilityId string `json:"vulnerability_id"`
}

VulnerabilityId defines model for VulnerabilityId.

type VulnerabilityIdRequest added in v0.2.0

type VulnerabilityIdRequest struct {
	VulnerabilityId string `json:"vulnerability_id"`
}

VulnerabilityIdRequest defines model for VulnerabilityIdRequest.

type VulnerabilityIdTemplate added in v0.2.0

type VulnerabilityIdTemplate struct {
	VulnerabilityId string `json:"vulnerability_id"`
}

VulnerabilityIdTemplate defines model for VulnerabilityIdTemplate.

type VulnerabilityIdTemplateRequest added in v0.2.0

type VulnerabilityIdTemplateRequest struct {
	VulnerabilityId string `json:"vulnerability_id"`
}

VulnerabilityIdTemplateRequest defines model for VulnerabilityIdTemplateRequest.

Jump to

Keyboard shortcuts

? : This menu
/ : Search site
f or F : Jump to
y or Y : Canonical URL