package
4.3.0+incompatible
Repository: https://github.com/nextlinux/enterprise-client-go.git
Documentation: pkg.go.dev

# README

Go API client for engine

This is the Nextlinux Engine API. Provides the primary external API for users of the service.

Overview

This API client was generated by the OpenAPI Generator project. By using the OpenAPI-spec from a remote server, you can easily generate an API client.

  • API version: 0.6.0
  • Package version: 4.6.0
  • Build package: org.openapitools.codegen.languages.GoClientCodegen

Installation

Install the following dependencies:

go get github.com/stretchr/testify/assert
go get golang.org/x/oauth2
go get golang.org/x/net/context

Put the package under your project folder and add the following in import:

import sw "./engine"

To use a proxy, set the environment variable HTTP_PROXY:

os.Setenv("HTTP_PROXY", "http://proxy_name:proxy_port")

Configuration of Server URL

Default configuration comes with Servers field that contains server objects as defined in the OpenAPI specification.

Select Server Configuration

For using other server than the one defined on index 0 set context value sw.ContextServerIndex of type int.

ctx := context.WithValue(context.Background(), sw.ContextServerIndex, 1)

Templated Server URL

Templated server URL is formatted using default variables from configuration or from context value sw.ContextServerVariables of type map[string]string.

ctx := context.WithValue(context.Background(), sw.ContextServerVariables, map[string]string{
	"basePath": "v2",
})

Note, enum values are always validated and all unused variables are silently ignored.

URLs Configuration per Operation

Each operation can use different server URL defined using OperationServers map in the Configuration. An operation is uniquely identifield by "{classname}Service.{nickname}" string. Similar rules for overriding default operation server index and variables applies by using sw.ContextOperationServerIndices and sw.ContextOperationServerVariables context maps.

ctx := context.WithValue(context.Background(), sw.ContextOperationServerIndices, map[string]int{
	"{classname}Service.{nickname}": 2,
})
ctx = context.WithValue(context.Background(), sw.ContextOperationServerVariables, map[string]map[string]string{
	"{classname}Service.{nickname}": {
		"port": "8443",
	},
})

Documentation for API Endpoints

All URIs are relative to http://localhost

ClassMethodHTTP requestDescription
ArchivesApiArchiveImageAnalysisPost /archives/images
ArchivesApiCreateAnalysisArchiveRulePost /archives/rules
ArchivesApiDeleteAnalysisArchiveRuleDelete /archives/rules/{ruleId}
ArchivesApiDeleteArchivedAnalysisDelete /archives/images/{imageDigest}
ArchivesApiGetAnalysisArchiveRuleGet /archives/rules/{ruleId}
ArchivesApiGetArchivedAnalysisGet /archives/images/{imageDigest}
ArchivesApiListAnalysisArchiveGet /archives/images
ArchivesApiListAnalysisArchiveRulesGet /archives/rules
ArchivesApiListArchivesGet /archives
DefaultApiGetOauthTokenPost /oauth/token
DefaultApiHealthCheckGet /health
DefaultApiListFileContentSearchResultsGet /images/{imageDigest}/artifacts/file_content_searchReturn a list of analyzer artifacts of the specified type
DefaultApiListRetrievedFilesGet /images/{imageDigest}/artifacts/retrieved_filesReturn a list of analyzer artifacts of the specified type
DefaultApiListSecretSearchResultsGet /images/{imageDigest}/artifacts/secret_searchReturn a list of analyzer artifacts of the specified type
DefaultApiPingGet /
DefaultApiRevokeOauthTokenPost /oauth/revoke
DefaultApiVersionCheckGet /version
EventsApiDeleteEventDelete /events/{eventId}Delete Event
EventsApiDeleteEventsDelete /eventsDelete Events
EventsApiGetEventGet /events/{eventId}Get Event
EventsApiListEventTypesGet /event_typesList Event Types
EventsApiListEventsGet /eventsList Events
IdentityApiAddCredentialPost /user/credentialsadd/replace credential
IdentityApiGetCredentialsGet /user/credentialsGet current credential summary
IdentityApiGetUserGet /userList authenticated user info
IdentityApiGetUsersAccountGet /accountList the account for the authenticated user
ImagesApiAddImagePost /imagesSubmit a new image for analysis by the engine
ImagesApiDeleteImageDelete /images/{imageDigest}Delete an image analysis
ImagesApiDeleteImageByImageIdDelete /images/by_id/{imageId}Delete image by docker imageId
ImagesApiDeleteImagesAsyncDelete /imagesBulk mark images for deletion
ImagesApiGetImageGet /images/{imageDigest}Get image metadata
ImagesApiGetImageByImageIdGet /images/by_id/{imageId}Lookup image by docker imageId
ImagesApiGetImageContentByTypeGet /images/{imageDigest}/content/{ctype}Get the content of an image by type
ImagesApiGetImageContentByTypeFilesGet /images/{imageDigest}/content/filesGet the content of an image by type files
ImagesApiGetImageContentByTypeImageIdGet /images/by_id/{imageId}/content/{ctype}Get the content of an image by type
ImagesApiGetImageContentByTypeImageIdFilesGet /images/by_id/{imageId}/content/filesGet the content of an image by type files
ImagesApiGetImageContentByTypeImageIdJavapackageGet /images/by_id/{imageId}/content/javaGet the content of an image by type java
ImagesApiGetImageContentByTypeJavapackageGet /images/{imageDigest}/content/javaGet the content of an image by type java
ImagesApiGetImageContentByTypeMalwareGet /images/{imageDigest}/content/malwareGet the content of an image by type malware
ImagesApiGetImageMetadataByTypeGet /images/{imageDigest}/metadata/{mtype}Get the metadata of an image by type
ImagesApiGetImagePolicyCheckGet /images/{imageDigest}/checkCheck policy evaluation status for image
ImagesApiGetImagePolicyCheckByImageIdGet /images/by_id/{imageId}/checkCheck policy evaluation status for image
ImagesApiGetImageSbomCyclonedxJsonGet /images/{imageDigest}/sboms/cyclonedx-jsonGet image sbom in the CycloneDX format
ImagesApiGetImageSbomNativeGet /images/{imageDigest}/sboms/nativeGet image sbom in the native Nextlinux format
ImagesApiGetImageSbomNativeJsonGet /images/{imageDigest}/sboms/native-jsonGet image sbom in the native Nextlinux format
ImagesApiGetImageSbomSpdxJsonGet /images/{imageDigest}/sboms/spdx-jsonGet image sbom in the SPDX format
ImagesApiGetImageVulnerabilitiesByTypeGet /images/{imageDigest}/vuln/{vtype}Get vulnerabilities by type
ImagesApiGetImageVulnerabilitiesByTypeImageIdGet /images/by_id/{imageId}/vuln/{vtype}Get vulnerabilities by type
ImagesApiGetImageVulnerabilityTypesGet /images/{imageDigest}/vulnGet vulnerability types
ImagesApiGetImageVulnerabilityTypesByImageIdGet /images/by_id/{imageId}/vulnGet vulnerability types
ImagesApiListImageContentGet /images/{imageDigest}/contentList image content types
ImagesApiListImageContentByImageidGet /images/by_id/{imageId}/contentList image content types
ImagesApiListImageMetadataGet /images/{imageDigest}/metadataList image metadata types
ImagesApiListImagesGet /imagesList all visible images
ImportApiImportImageArchivePost /import/imagesImport an nextlinux image tar.gz archive file. This is a deprecated API replaced by the "/imports/images" route
ImportsApiCreateOperationPost /imports/imagesBegin the import of an image SBOM into the system
ImportsApiGetOperationGet /imports/images/{operation_id}Get detail on a single import
ImportsApiImportContentSearchesPost /imports/images/{operation_id}/content_searchesImport a content search analysis catalog
ImportsApiImportFileContentsPost /imports/images/{operation_id}/file_contentsImport a file contents analysis catalog
ImportsApiImportImageConfigPost /imports/images/{operation_id}/image_configImport a docker or OCI image config to associate with the image
ImportsApiImportImageDockerfilePost /imports/images/{operation_id}/dockerfileBegin the import of an image analyzed by Syft into the system
ImportsApiImportImageManifestPost /imports/images/{operation_id}/manifestImport a docker or OCI distribution manifest to associate with the image
ImportsApiImportImagePackagesPost /imports/images/{operation_id}/packagesBegin the import of an image analyzed by Syft into the system
ImportsApiImportImageParentManifestPost /imports/images/{operation_id}/parent_manifestImport a docker or OCI distribution manifest list to associate with the image
ImportsApiImportSecretSearchesPost /imports/images/{operation_id}/secret_searchesImport a secret search analysis catalog
ImportsApiInvalidateOperationDelete /imports/images/{operation_id}Invalidate operation ID so it can be garbage collected
ImportsApiListImportContentSearchesGet /imports/images/{operation_id}/content_searchesList uploaded content search results
ImportsApiListImportDockerfilesGet /imports/images/{operation_id}/dockerfileList uploaded dockerfiles
ImportsApiListImportFileContentsGet /imports/images/{operation_id}/file_contentsList uploaded file contents
ImportsApiListImportImageConfigsGet /imports/images/{operation_id}/image_configList uploaded image configs
ImportsApiListImportImageManifestsGet /imports/images/{operation_id}/manifestList uploaded image manifests
ImportsApiListImportPackagesGet /imports/images/{operation_id}/packagesList uploaded package manifests
ImportsApiListImportParentManifestsGet /imports/images/{operation_id}/parent_manifestList uploaded parent manifests (manifest lists for a tag)
ImportsApiListImportSecretSearchesGet /imports/images/{operation_id}/secret_searchesList uploaded secret search results
ImportsApiListOperationsGet /imports/imagesLists in-progress imports
PoliciesApiAddPolicyPost /policiesAdd a new policy
PoliciesApiDeletePolicyDelete /policies/{policyId}Delete policy
PoliciesApiGetPolicyGet /policies/{policyId}Get specific policy
PoliciesApiListPoliciesGet /policiesList policies
PoliciesApiUpdatePolicyPut /policies/{policyId}Update policy
QueryApiQueryImagesByPackageGet /query/images/by_packageList of images containing given package
QueryApiQueryImagesByVulnerabilityGet /query/images/by_vulnerabilityList images vulnerable to the specific vulnerability ID.
QueryApiQueryVulnerabilitiesGet /query/vulnerabilitiesListing information about given vulnerability
RegistriesApiCreateRegistryPost /registriesAdd a new registry
RegistriesApiDeleteRegistryDelete /registries/{registry}Delete a registry configuration
RegistriesApiGetRegistryGet /registries/{registry}Get a specific registry configuration
RegistriesApiListRegistriesGet /registriesList configured registries
RegistriesApiUpdateRegistryPut /registries/{registry}Update/replace a registry configuration
RepositoryCredentialsApiAddRepositoryPost /repositoriesAdd repository to watch
SubscriptionsApiAddSubscriptionPost /subscriptionsAdd a subscription of a specific type
SubscriptionsApiDeleteSubscriptionDelete /subscriptions/{subscriptionId}Delete subscriptions of a specific type
SubscriptionsApiGetSubscriptionGet /subscriptions/{subscriptionId}Get a specific subscription set
SubscriptionsApiListSubscriptionsGet /subscriptionsList all subscriptions
SubscriptionsApiUpdateSubscriptionPut /subscriptions/{subscriptionId}Update an existing and specific subscription
SummariesApiListImagetagsGet /summaries/imagetagsList all visible image digests and tags
SystemApiDeleteFeedDelete /system/feeds/{feed}
SystemApiDeleteFeedGroupDelete /system/feeds/{feed}/{group}
SystemApiDeleteServiceDelete /system/services/{servicename}/{hostid}Delete the service config
SystemApiDescribeErrorCodesGet /system/error_codesDescribe nextlinux engine error codes.
SystemApiDescribePolicyGet /system/policy_specDescribe the policy language spec implemented by this service.
SystemApiGetServiceDetailGet /systemSystem status
SystemApiGetServicesByNameGet /system/services/{servicename}Get a service configuration and state
SystemApiGetServicesByNameAndHostGet /system/services/{servicename}/{hostid}Get service config for a specific host
SystemApiGetStatusGet /statusService status
SystemApiGetSystemFeedsGet /system/feedslist feeds operations and information
SystemApiListServicesGet /system/servicesList system services
SystemApiPostSystemFeedsPost /system/feedstrigger feeds operations
SystemApiTestWebhookPost /system/webhooks/{webhook_type}/testAdds the capabilities to test a webhook delivery for the given notification type
SystemApiToggleFeedEnabledPut /system/feeds/{feed}
SystemApiToggleGroupEnabledPut /system/feeds/{feed}/{group}
UserManagementApiCreateAccountPost /accountsCreate a new account. Only available to admin user.
UserManagementApiCreateUserPost /accounts/{accountname}/usersCreate a new user within the specified account.
UserManagementApiCreateUserCredentialPost /accounts/{accountname}/users/{username}/credentialsadd/replace credential
UserManagementApiDeleteAccountDelete /accounts/{accountname}Delete the specified account, only allowed if the account is in the disabled state. All users will be deleted along with the account and all resources will be garbage collected
UserManagementApiDeleteUserDelete /accounts/{accountname}/users/{username}Delete a specific user credential by username of the credential. Cannot be the credential used to authenticate the request.
UserManagementApiDeleteUserCredentialDelete /accounts/{accountname}/users/{username}/credentialsDelete a credential by type
UserManagementApiGetAccountGet /accounts/{accountname}Get account info about this specific account.
UserManagementApiGetAccountUserGet /accounts/{accountname}/users/{username}Get a specific user in the specified account
UserManagementApiListAccountsGet /accountsList account summaries. Only available to the system admin user.
UserManagementApiListUserCredentialsGet /accounts/{accountname}/users/{username}/credentialsGet current credential summary
UserManagementApiListUsersGet /accounts/{accountname}/usersList of users found in this account.
UserManagementApiUpdateAccountPut /accounts/{accountname}Update the info for this specific account.
UserManagementApiUpdateAccountStatePut /accounts/{accountname}/stateUpdate the state of an account to either enabled or disabled. For deletion use the DELETE route

Documentation For Models

Documentation For Authorization

Endpoints do not require authorization.

Documentation for Utility Methods

Due to the fact that model structure members are all pointers, this package contains a number of utility functions to easily obtain pointers to values of basic types. Each of these functions takes a value of the given basic type and returns a pointer to it:

  • PtrBool
  • PtrInt
  • PtrInt32
  • PtrInt64
  • PtrFloat
  • PtrFloat32
  • PtrFloat64
  • PtrString
  • PtrTime

Author

[email protected]

# Functions

CacheExpires helper function to determine remaining time before repeating a request.
No description provided by the author
NewAccessCredential instantiates a new AccessCredential object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewAccessCredentialWithDefaults instantiates a new AccessCredential object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewAccount instantiates a new Account object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewAccountCreationRequest instantiates a new AccountCreationRequest object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewAccountCreationRequestWithDefaults instantiates a new AccountCreationRequest object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewAccountInfo instantiates a new AccountInfo object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewAccountInfoWithDefaults instantiates a new AccountInfo object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewAccountStatus instantiates a new AccountStatus object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewAccountStatusWithDefaults instantiates a new AccountStatus object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewAccountWithDefaults instantiates a new Account object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewAnalysisArchiveAddResult instantiates a new AnalysisArchiveAddResult object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewAnalysisArchiveAddResultWithDefaults instantiates a new AnalysisArchiveAddResult object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewAnalysisArchiveRulesSummary instantiates a new AnalysisArchiveRulesSummary object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewAnalysisArchiveRulesSummaryWithDefaults instantiates a new AnalysisArchiveRulesSummary object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewAnalysisArchiveSource instantiates a new AnalysisArchiveSource object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewAnalysisArchiveSourceWithDefaults instantiates a new AnalysisArchiveSource object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewAnalysisArchiveSummary instantiates a new AnalysisArchiveSummary object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewAnalysisArchiveSummaryWithDefaults instantiates a new AnalysisArchiveSummary object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewAnalysisArchiveTransitionHistory instantiates a new AnalysisArchiveTransitionHistory object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewAnalysisArchiveTransitionHistoryWithDefaults instantiates a new AnalysisArchiveTransitionHistory object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewAnalysisArchiveTransitionRule instantiates a new AnalysisArchiveTransitionRule object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewAnalysisArchiveTransitionRuleExclude instantiates a new AnalysisArchiveTransitionRuleExclude object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewAnalysisArchiveTransitionRuleExcludeWithDefaults instantiates a new AnalysisArchiveTransitionRuleExclude object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewAnalysisArchiveTransitionRuleWithDefaults instantiates a new AnalysisArchiveTransitionRule object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewAnalysisStatusDetail instantiates a new AnalysisStatusDetail object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewAnalysisStatusDetailWithDefaults instantiates a new AnalysisStatusDetail object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewAnalysisUpdateEval instantiates a new AnalysisUpdateEval object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewAnalysisUpdateEvalWithDefaults instantiates a new AnalysisUpdateEval object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewAnalysisUpdateNotification instantiates a new AnalysisUpdateNotification object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewAnalysisUpdateNotificationAllOf instantiates a new AnalysisUpdateNotificationAllOf object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewAnalysisUpdateNotificationAllOfWithDefaults instantiates a new AnalysisUpdateNotificationAllOf object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewAnalysisUpdateNotificationData instantiates a new AnalysisUpdateNotificationData object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewAnalysisUpdateNotificationDataAllOf instantiates a new AnalysisUpdateNotificationDataAllOf object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewAnalysisUpdateNotificationDataAllOfWithDefaults instantiates a new AnalysisUpdateNotificationDataAllOf object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewAnalysisUpdateNotificationDataWithDefaults instantiates a new AnalysisUpdateNotificationData object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewAnalysisUpdateNotificationPayload instantiates a new AnalysisUpdateNotificationPayload object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewAnalysisUpdateNotificationPayloadAllOf instantiates a new AnalysisUpdateNotificationPayloadAllOf object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewAnalysisUpdateNotificationPayloadAllOfWithDefaults instantiates a new AnalysisUpdateNotificationPayloadAllOf object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewAnalysisUpdateNotificationPayloadWithDefaults instantiates a new AnalysisUpdateNotificationPayload object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewAnalysisUpdateNotificationWithDefaults instantiates a new AnalysisUpdateNotification object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewAPIClient creates a new API client.
NewApiErrorResponse instantiates a new ApiErrorResponse object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewApiErrorResponseWithDefaults instantiates a new ApiErrorResponse object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewAPIResponse returns a new APIResponse object.
NewAPIResponseWithError returns a new APIResponse object with the provided error message.
NewArchivedAnalysis instantiates a new ArchivedAnalysis object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewArchivedAnalysisWithDefaults instantiates a new ArchivedAnalysis object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewArchiveSummary instantiates a new ArchiveSummary object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewArchiveSummaryWithDefaults instantiates a new ArchiveSummary object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewArchiveTagEntry instantiates a new ArchiveTagEntry object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewArchiveTagEntryWithDefaults instantiates a new ArchiveTagEntry object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewBaseNotificationData instantiates a new BaseNotificationData object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewBaseNotificationDataWithDefaults instantiates a new BaseNotificationData object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewConfiguration returns a new Configuration object.
NewContentFilesResponse instantiates a new ContentFilesResponse object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewContentFilesResponseContent instantiates a new ContentFilesResponseContent object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewContentFilesResponseContentWithDefaults instantiates a new ContentFilesResponseContent object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewContentFilesResponseWithDefaults instantiates a new ContentFilesResponse object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewContentJAVAPackageResponse instantiates a new ContentJAVAPackageResponse object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewContentJAVAPackageResponseContent instantiates a new ContentJAVAPackageResponseContent object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewContentJAVAPackageResponseContentWithDefaults instantiates a new ContentJAVAPackageResponseContent object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewContentJAVAPackageResponseWithDefaults instantiates a new ContentJAVAPackageResponse object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewContentMalwareResponse instantiates a new ContentMalwareResponse object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewContentMalwareResponseWithDefaults instantiates a new ContentMalwareResponse object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewContentPackageResponse instantiates a new ContentPackageResponse object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewContentPackageResponseContent instantiates a new ContentPackageResponseContent object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewContentPackageResponseContentWithDefaults instantiates a new ContentPackageResponseContent object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewContentPackageResponseWithDefaults instantiates a new ContentPackageResponse object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewContentResponse instantiates a new ContentResponse object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewContentResponseWithDefaults instantiates a new ContentResponse object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewCVSSV2Scores instantiates a new CVSSV2Scores object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewCVSSV2ScoresWithDefaults instantiates a new CVSSV2Scores object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewCVSSV3Scores instantiates a new CVSSV3Scores object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewCVSSV3ScoresWithDefaults instantiates a new CVSSV3Scores object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewDeleteImageResponse instantiates a new DeleteImageResponse object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewDeleteImageResponseWithDefaults instantiates a new DeleteImageResponse object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewEventCategory instantiates a new EventCategory object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewEventCategoryWithDefaults instantiates a new EventCategory object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewEventDescription instantiates a new EventDescription object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewEventDescriptionWithDefaults instantiates a new EventDescription object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewEventResponse instantiates a new EventResponse object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewEventResponseEvent instantiates a new EventResponseEvent object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewEventResponseEventResource instantiates a new EventResponseEventResource object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewEventResponseEventResourceWithDefaults instantiates a new EventResponseEventResource object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewEventResponseEventSource instantiates a new EventResponseEventSource object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewEventResponseEventSourceWithDefaults instantiates a new EventResponseEventSource object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewEventResponseEventWithDefaults instantiates a new EventResponseEvent object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewEventResponseWithDefaults instantiates a new EventResponse object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewEventsList instantiates a new EventsList object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewEventsListWithDefaults instantiates a new EventsList object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewEventSubcategory instantiates a new EventSubcategory object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewEventSubcategoryWithDefaults instantiates a new EventSubcategory object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewFeedGroupMetadata instantiates a new FeedGroupMetadata object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewFeedGroupMetadataWithDefaults instantiates a new FeedGroupMetadata object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewFeedMetadata instantiates a new FeedMetadata object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewFeedMetadataWithDefaults instantiates a new FeedMetadata object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewFeedSyncResult instantiates a new FeedSyncResult object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewFeedSyncResultWithDefaults instantiates a new FeedSyncResult object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewFileContentSearchResult instantiates a new FileContentSearchResult object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewFileContentSearchResultWithDefaults instantiates a new FileContentSearchResult object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewGateSpec instantiates a new GateSpec object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewGateSpecWithDefaults instantiates a new GateSpec object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewGenericNotificationPayload instantiates a new GenericNotificationPayload object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewGenericNotificationPayloadWithDefaults instantiates a new GenericNotificationPayload object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewGroupSyncResult instantiates a new GroupSyncResult object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewGroupSyncResultWithDefaults instantiates a new GroupSyncResult object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewImageAnalysisRequest instantiates a new ImageAnalysisRequest object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewImageAnalysisRequestWithDefaults instantiates a new ImageAnalysisRequest object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewImageDetail instantiates a new ImageDetail object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewImageDetailWithDefaults instantiates a new ImageDetail object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewImageFilter instantiates a new ImageFilter object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewImageFilterWithDefaults instantiates a new ImageFilter object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewImageImportContentResponse instantiates a new ImageImportContentResponse object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewImageImportContentResponseWithDefaults instantiates a new ImageImportContentResponse object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewImageImportContentSearch instantiates a new ImageImportContentSearch object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewImageImportContentSearchWithDefaults instantiates a new ImageImportContentSearch object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewImageImportFileContent instantiates a new ImageImportFileContent object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewImageImportFileContentWithDefaults instantiates a new ImageImportFileContent object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewImageImportFileCoordinate instantiates a new ImageImportFileCoordinate object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewImageImportFileCoordinateWithDefaults instantiates a new ImageImportFileCoordinate object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewImageImportManifest instantiates a new ImageImportManifest object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewImageImportManifestWithDefaults instantiates a new ImageImportManifest object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewImageImportOperation instantiates a new ImageImportOperation object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewImageImportOperationWithDefaults instantiates a new ImageImportOperation object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewImagePackageManifest instantiates a new ImagePackageManifest object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewImagePackageManifestWithDefaults instantiates a new ImagePackageManifest object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewImageRef instantiates a new ImageRef object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewImageReference instantiates a new ImageReference object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewImageReferenceWithDefaults instantiates a new ImageReference object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewImageRefWithDefaults instantiates a new ImageRef object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewImageSelectionRule instantiates a new ImageSelectionRule object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewImageSelectionRuleWithDefaults instantiates a new ImageSelectionRule object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewImageSelector instantiates a new ImageSelector object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewImageSelectorWithDefaults instantiates a new ImageSelector object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewImageSource instantiates a new ImageSource object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewImageSourceWithDefaults instantiates a new ImageSource object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewImageWithPackages instantiates a new ImageWithPackages object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewImageWithPackagesWithDefaults instantiates a new ImageWithPackages object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewImportContentDigests instantiates a new ImportContentDigests object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewImportContentDigestsWithDefaults instantiates a new ImportContentDigests object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewImportContentSearchElement instantiates a new ImportContentSearchElement object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewImportContentSearchElementWithDefaults instantiates a new ImportContentSearchElement object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewImportDescriptor instantiates a new ImportDescriptor object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewImportDescriptorWithDefaults instantiates a new ImportDescriptor object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewImportDistribution instantiates a new ImportDistribution object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewImportDistributionWithDefaults instantiates a new ImportDistribution object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewImportFile instantiates a new ImportFile object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewImportFileDigest instantiates a new ImportFileDigest object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewImportFileDigestWithDefaults instantiates a new ImportFileDigest object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewImportFileWithDefaults instantiates a new ImportFile object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewImportPackage instantiates a new ImportPackage object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewImportPackageLocation instantiates a new ImportPackageLocation object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewImportPackageLocationWithDefaults instantiates a new ImportPackageLocation object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewImportPackageRelationship instantiates a new ImportPackageRelationship object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewImportPackageRelationshipWithDefaults instantiates a new ImportPackageRelationship object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewImportPackageWithDefaults instantiates a new ImportPackage object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewImportSchema instantiates a new ImportSchema object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewImportSchemaWithDefaults instantiates a new ImportSchema object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewImportSource instantiates a new ImportSource object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewImportSourceWithDefaults instantiates a new ImportSource object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewInlineResponse400 instantiates a new InlineResponse400 object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewInlineResponse400WithDefaults instantiates a new InlineResponse400 object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewLocalAnalysisSource instantiates a new LocalAnalysisSource object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewLocalAnalysisSourceWithDefaults instantiates a new LocalAnalysisSource object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewMalwareScan instantiates a new MalwareScan object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewMalwareScanFindings instantiates a new MalwareScanFindings object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewMalwareScanFindingsWithDefaults instantiates a new MalwareScanFindings object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewMalwareScanWithDefaults instantiates a new MalwareScan object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewMappingRule instantiates a new MappingRule object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewMappingRuleWithDefaults instantiates a new MappingRule object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewMetadataResponse instantiates a new MetadataResponse object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewMetadataResponseWithDefaults instantiates a new MetadataResponse object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewNextlinuxErrorCode instantiates a new NextlinuxErrorCode object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewNextlinuxErrorCodeWithDefaults instantiates a new NextlinuxErrorCode object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewNextlinuxImage instantiates a new NextlinuxImage object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewNextlinuxImageTagSummary instantiates a new NextlinuxImageTagSummary object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewNextlinuxImageTagSummaryWithDefaults instantiates a new NextlinuxImageTagSummary object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewNextlinuxImageWithDefaults instantiates a new NextlinuxImage object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewNotificationBase instantiates a new NotificationBase object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewNotificationBaseWithDefaults instantiates a new NotificationBase object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
NewNvdDataObject instantiates a new NvdDataObject object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewNvdDataObjectWithDefaults instantiates a new NvdDataObject object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewPackageReference instantiates a new PackageReference object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewPackageReferenceWithDefaults instantiates a new PackageReference object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewPaginatedImageList instantiates a new PaginatedImageList object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewPaginatedImageListAllOf instantiates a new PaginatedImageListAllOf object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewPaginatedImageListAllOfWithDefaults instantiates a new PaginatedImageListAllOf object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewPaginatedImageListWithDefaults instantiates a new PaginatedImageList object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewPaginatedVulnerabilityList instantiates a new PaginatedVulnerabilityList object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewPaginatedVulnerabilityListAllOf instantiates a new PaginatedVulnerabilityListAllOf object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewPaginatedVulnerabilityListAllOfWithDefaults instantiates a new PaginatedVulnerabilityListAllOf object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewPaginatedVulnerabilityListWithDefaults instantiates a new PaginatedVulnerabilityList object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewPaginatedVulnerableImageList instantiates a new PaginatedVulnerableImageList object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewPaginatedVulnerableImageListAllOf instantiates a new PaginatedVulnerableImageListAllOf object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewPaginatedVulnerableImageListAllOfWithDefaults instantiates a new PaginatedVulnerableImageListAllOf object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewPaginatedVulnerableImageListWithDefaults instantiates a new PaginatedVulnerableImageList object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewPaginationProperties instantiates a new PaginationProperties object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewPaginationPropertiesWithDefaults instantiates a new PaginationProperties object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewPolicy instantiates a new Policy object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewPolicyBundle instantiates a new PolicyBundle object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewPolicyBundleRecord instantiates a new PolicyBundleRecord object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewPolicyBundleRecordWithDefaults instantiates a new PolicyBundleRecord object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewPolicyBundleWithDefaults instantiates a new PolicyBundle object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewPolicyEvalNotification instantiates a new PolicyEvalNotification object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewPolicyEvalNotificationAllOf instantiates a new PolicyEvalNotificationAllOf object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewPolicyEvalNotificationAllOfWithDefaults instantiates a new PolicyEvalNotificationAllOf object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewPolicyEvalNotificationData instantiates a new PolicyEvalNotificationData object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewPolicyEvalNotificationDataAllOf instantiates a new PolicyEvalNotificationDataAllOf object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewPolicyEvalNotificationDataAllOfWithDefaults instantiates a new PolicyEvalNotificationDataAllOf object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewPolicyEvalNotificationDataWithDefaults instantiates a new PolicyEvalNotificationData object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewPolicyEvalNotificationPayload instantiates a new PolicyEvalNotificationPayload object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewPolicyEvalNotificationPayloadAllOf instantiates a new PolicyEvalNotificationPayloadAllOf object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewPolicyEvalNotificationPayloadAllOfWithDefaults instantiates a new PolicyEvalNotificationPayloadAllOf object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewPolicyEvalNotificationPayloadWithDefaults instantiates a new PolicyEvalNotificationPayload object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewPolicyEvalNotificationWithDefaults instantiates a new PolicyEvalNotification object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewPolicyRule instantiates a new PolicyRule object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewPolicyRuleParams instantiates a new PolicyRuleParams object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewPolicyRuleParamsWithDefaults instantiates a new PolicyRuleParams object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewPolicyRuleWithDefaults instantiates a new PolicyRule object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewPolicyWithDefaults instantiates a new Policy object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewRegexContentMatch instantiates a new RegexContentMatch object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewRegexContentMatchWithDefaults instantiates a new RegexContentMatch object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewRegistryConfiguration instantiates a new RegistryConfiguration object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewRegistryConfigurationRequest instantiates a new RegistryConfigurationRequest object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewRegistryConfigurationRequestWithDefaults instantiates a new RegistryConfigurationRequest object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewRegistryConfigurationWithDefaults instantiates a new RegistryConfiguration object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewRegistryDigestSource instantiates a new RegistryDigestSource object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewRegistryDigestSourceWithDefaults instantiates a new RegistryDigestSource object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewRegistryTagSource instantiates a new RegistryTagSource object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewRegistryTagSourceWithDefaults instantiates a new RegistryTagSource object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewRetrievedFile instantiates a new RetrievedFile object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewRetrievedFileWithDefaults instantiates a new RetrievedFile object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewSecretSearchResult instantiates a new SecretSearchResult object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewSecretSearchResultWithDefaults instantiates a new SecretSearchResult object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewService instantiates a new Service object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewServiceReference instantiates a new ServiceReference object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewServiceReferenceWithDefaults instantiates a new ServiceReference object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewServiceVersion instantiates a new ServiceVersion object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewServiceVersionApi instantiates a new ServiceVersionApi object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewServiceVersionApiWithDefaults instantiates a new ServiceVersionApi object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewServiceVersionDb instantiates a new ServiceVersionDb object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewServiceVersionDbWithDefaults instantiates a new ServiceVersionDb object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewServiceVersionService instantiates a new ServiceVersionService object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewServiceVersionServiceWithDefaults instantiates a new ServiceVersionService object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewServiceVersionWithDefaults instantiates a new ServiceVersion object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewServiceWithDefaults instantiates a new Service object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewSourceMappingRule instantiates a new SourceMappingRule object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewSourceMappingRuleWithDefaults instantiates a new SourceMappingRule object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewStandaloneVulnerability instantiates a new StandaloneVulnerability object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewStandaloneVulnerabilityWithDefaults instantiates a new StandaloneVulnerability object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewStatusResponse instantiates a new StatusResponse object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewStatusResponseWithDefaults instantiates a new StatusResponse object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewSubscription instantiates a new Subscription object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewSubscriptionRequest instantiates a new SubscriptionRequest object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewSubscriptionRequestWithDefaults instantiates a new SubscriptionRequest object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewSubscriptionUpdate instantiates a new SubscriptionUpdate object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewSubscriptionUpdateWithDefaults instantiates a new SubscriptionUpdate object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewSubscriptionWithDefaults instantiates a new Subscription object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewSystemStatusResponse instantiates a new SystemStatusResponse object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewSystemStatusResponseWithDefaults instantiates a new SystemStatusResponse object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewTagEntry instantiates a new TagEntry object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewTagEntryWithDefaults instantiates a new TagEntry object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewTagUpdateNotification instantiates a new TagUpdateNotification object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewTagUpdateNotificationAllOf instantiates a new TagUpdateNotificationAllOf object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewTagUpdateNotificationAllOfWithDefaults instantiates a new TagUpdateNotificationAllOf object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewTagUpdateNotificationData instantiates a new TagUpdateNotificationData object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewTagUpdateNotificationDataAllOf instantiates a new TagUpdateNotificationDataAllOf object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewTagUpdateNotificationDataAllOfWithDefaults instantiates a new TagUpdateNotificationDataAllOf object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewTagUpdateNotificationDataWithDefaults instantiates a new TagUpdateNotificationData object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewTagUpdateNotificationPayload instantiates a new TagUpdateNotificationPayload object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewTagUpdateNotificationPayloadAllOf instantiates a new TagUpdateNotificationPayloadAllOf object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewTagUpdateNotificationPayloadAllOfWithDefaults instantiates a new TagUpdateNotificationPayloadAllOf object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewTagUpdateNotificationPayloadWithDefaults instantiates a new TagUpdateNotificationPayload object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewTagUpdateNotificationWithDefaults instantiates a new TagUpdateNotification object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewTokenResponse instantiates a new TokenResponse object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewTokenResponseWithDefaults instantiates a new TokenResponse object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewTriggerParamSpec instantiates a new TriggerParamSpec object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewTriggerParamSpecWithDefaults instantiates a new TriggerParamSpec object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewTriggerSpec instantiates a new TriggerSpec object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewTriggerSpecWithDefaults instantiates a new TriggerSpec object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewUser instantiates a new User object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewUserCreationRequest instantiates a new UserCreationRequest object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewUserCreationRequestWithDefaults instantiates a new UserCreationRequest object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewUserWithDefaults instantiates a new User object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewVendorDataObject instantiates a new VendorDataObject object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewVendorDataObjectWithDefaults instantiates a new VendorDataObject object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewVulnDiffResult instantiates a new VulnDiffResult object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewVulnDiffResultWithDefaults instantiates a new VulnDiffResult object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewVulnerability instantiates a new Vulnerability object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewVulnerabilityReference instantiates a new VulnerabilityReference object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewVulnerabilityReferenceWithDefaults instantiates a new VulnerabilityReference object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewVulnerabilityResponse instantiates a new VulnerabilityResponse object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewVulnerabilityResponseWithDefaults instantiates a new VulnerabilityResponse object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewVulnerabilityWithDefaults instantiates a new Vulnerability object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewVulnerableImage instantiates a new VulnerableImage object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewVulnerableImageWithDefaults instantiates a new VulnerableImage object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewVulnerablePackageReference instantiates a new VulnerablePackageReference object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewVulnerablePackageReferenceWithDefaults instantiates a new VulnerablePackageReference object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewVulnUpdateNotification instantiates a new VulnUpdateNotification object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewVulnUpdateNotificationAllOf instantiates a new VulnUpdateNotificationAllOf object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewVulnUpdateNotificationAllOfWithDefaults instantiates a new VulnUpdateNotificationAllOf object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewVulnUpdateNotificationData instantiates a new VulnUpdateNotificationData object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewVulnUpdateNotificationDataAllOf instantiates a new VulnUpdateNotificationDataAllOf object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewVulnUpdateNotificationDataAllOfWithDefaults instantiates a new VulnUpdateNotificationDataAllOf object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewVulnUpdateNotificationDataWithDefaults instantiates a new VulnUpdateNotificationData object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewVulnUpdateNotificationPayload instantiates a new VulnUpdateNotificationPayload object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewVulnUpdateNotificationPayloadAllOf instantiates a new VulnUpdateNotificationPayloadAllOf object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewVulnUpdateNotificationPayloadAllOfWithDefaults instantiates a new VulnUpdateNotificationPayloadAllOf object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewVulnUpdateNotificationPayloadWithDefaults instantiates a new VulnUpdateNotificationPayload object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewVulnUpdateNotificationWithDefaults instantiates a new VulnUpdateNotification object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewWhitelist instantiates a new Whitelist object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewWhitelistItem instantiates a new WhitelistItem object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewWhitelistItemWithDefaults instantiates a new WhitelistItem object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewWhitelistWithDefaults instantiates a new Whitelist object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
PtrBool is a helper routine that returns a pointer to given boolean value.
PtrFloat32 is a helper routine that returns a pointer to given float value.
PtrFloat64 is a helper routine that returns a pointer to given float value.
PtrInt is a helper routine that returns a pointer to given integer value.
PtrInt32 is a helper routine that returns a pointer to given integer value.
PtrInt64 is a helper routine that returns a pointer to given integer value.
PtrString is a helper routine that returns a pointer to given string value.
PtrTime is helper routine that returns a pointer to given Time value.

# Constants

No description provided by the author

# Variables

ContextAccessToken takes a string oauth2 access token as authentication for the request.
ContextAPIKeys takes a string apikey as authentication for the request.
ContextBasicAuth takes BasicAuth as authentication for the request.
ContextHttpSignatureAuth takes HttpSignatureAuth as authentication for the request.
ContextOAuth2 takes an oauth2.TokenSource as authentication for the request.
ContextOperationServerIndices uses a server configuration from the index mapping.
ContextOperationServerVariables overrides a server configuration variables using operation specific values.
ContextServerIndex uses a server configuration from the index.
ContextServerVariables overrides a server configuration variables.

# Structs

AccessCredential A login credential mapped to a user identity.
Account Account information.
AccountCreationRequest An account to create/add to the system.
AccountInfo Account Information.
AccountStatus A summary of account status.
AnalysisArchiveAddResult The result of adding a single digest to the archive.
AnalysisArchiveRulesSummary Summary of the transition rule set.
AnalysisArchiveSource An image reference in the analysis archive for the purposes of loading analysis from the archive into th working set.
AnalysisArchiveSummary A summarization of the analysis archive, including size, counts, etc.
AnalysisArchiveTransitionHistory A rule for auto-archiving image analysis by time and/or tag-history.
AnalysisArchiveTransitionRule A rule for auto-archiving image analysis by time and/or tag-history.
AnalysisArchiveTransitionRuleExclude Which Images to exclude from auto-archiving logic.
AnalysisStatusDetail The detail of an analysis status change recording which service initiated the state change, when, and which transition.
AnalysisUpdateEval Evaluation Results for an entity (current or last).
AnalysisUpdateNotification struct for AnalysisUpdateNotification.
AnalysisUpdateNotificationAllOf The Notification Object definition for Tag Update Notifications.
AnalysisUpdateNotificationData struct for AnalysisUpdateNotificationData.
AnalysisUpdateNotificationDataAllOf struct for AnalysisUpdateNotificationDataAllOf.
AnalysisUpdateNotificationPayload struct for AnalysisUpdateNotificationPayload.
AnalysisUpdateNotificationPayloadAllOf struct for AnalysisUpdateNotificationPayloadAllOf.
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
APIClient manages communication with the Nextlinux Engine API Server API v0.6.0 In most cases there should be only one, shared, APIClient.
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
ApiErrorResponse Generic HTTP API error response.
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
APIKey provides API key based authentication to a request passed via context using ContextAPIKey.
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
APIResponse stores the API response returned by the server.
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
ArchivedAnalysis struct for ArchivedAnalysis.
ArchiveSummary A summarization of the available archives, a place to for long-term storage of audit, analysis, or other data to remove it from the system's working set but keep it available.
ArchiveTagEntry A docker-pullable tag value as well as deconstructed components.
BaseNotificationData Every notification has a payload, which follows this basic structure.
BasicAuth provides basic http authentication to a request passed via context using ContextBasicAuth.
Configuration stores the configuration of the API client.
ContentFilesResponse File content listings from images.
ContentFilesResponseContent struct for ContentFilesResponseContent.
ContentJAVAPackageResponse Java package content listings from images.
ContentJAVAPackageResponseContent struct for ContentJAVAPackageResponseContent.
ContentMalwareResponse Malware listing response.
ContentPackageResponse Package content listings from images.
ContentPackageResponseContent struct for ContentPackageResponseContent.
ContentResponse Generic wrapper for content listings from images.
CVSSV2Scores struct for CVSSV2Scores.
CVSSV3Scores struct for CVSSV3Scores.
DeleteImageResponse Image deletion response containing status and details.
EventCategory A collection of event subcategories.
EventDescription A description of an event type.
EventResponse A record of occurance of an asynchronous event triggered either by system or by user activity.
EventResponseEvent struct for EventResponseEvent.
EventResponseEventResource struct for EventResponseEventResource.
EventResponseEventSource struct for EventResponseEventSource.
EventsList Response envelope for paginated listing of events.
EventSubcategory A collection of events related to each other.
FeedGroupMetadata struct for FeedGroupMetadata.
FeedMetadata Metadata on a single feed based on what the engine finds from querying the endpoints.
FeedSyncResult The result of a sync of a single feed.
FileContentSearchResult The retrieved file entry including content (b64 encoded).
GateSpec A description of the set of gates available in this engine and the triggers and parameters supported.
GenericNotificationPayload Parent class for Notification Payloads.
GenericOpenAPIError Provides access to the body, error and model on returned errors.
GroupSyncResult struct for GroupSyncResult.
ImageAnalysisRequest A request to add an image to be watched and analyzed by the engine.
ImageDetail A metadata detail record for a specific image.
ImageFilter Filter for an image list by id, tag, or digest, but not both.
ImageImportContentResponse struct for ImageImportContentResponse.
ImageImportContentSearch struct for ImageImportContentSearch.
ImageImportFileContent struct for ImageImportFileContent.
ImageImportFileCoordinate struct for ImageImportFileCoordinate.
ImageImportManifest struct for ImageImportManifest.
ImageImportOperation An import record, creating a unique identifier for referencing the operation as well as its state.
ImagePackageManifest struct for ImagePackageManifest.
ImageRef A reference to an image.
ImageReference A summary of an image identity, including digest, id (if available), and any tags known to have ever been mapped to the digest.
ImageSelectionRule struct for ImageSelectionRule.
ImageSelector A set of selection criteria to match an image by a tagged pullstring based on its components, with regex support in each field.
ImageSource A set of analysis source types.
ImageWithPackages An image record that contains packages.
ImportContentDigests Digest of content to use in the final import.
ImportContentSearchElement struct for ImportContentSearchElement.
ImportDescriptor struct for ImportDescriptor.
ImportDistribution struct for ImportDistribution.
ImportFile struct for ImportFile.
ImportFileDigest struct for ImportFileDigest.
ImportPackage struct for ImportPackage.
ImportPackageLocation struct for ImportPackageLocation.
ImportPackageRelationship struct for ImportPackageRelationship.
ImportSchema struct for ImportSchema.
ImportSource struct for ImportSource.
InlineResponse400 struct for InlineResponse400.
LocalAnalysisSource struct for LocalAnalysisSource.
MalwareScan A single scan from a scanner.
MalwareScanFindings struct for MalwareScanFindings.
MappingRule struct for MappingRule.
MetadataResponse Generic wrapper for metadata listings from images.
NextlinuxErrorCode A description of an nextlinux error code (name, description).
NextlinuxImage A unique image in the engine.
NextlinuxImageTagSummary A unique image in the engine.
NotificationBase base object for Notifications (every notification has this basic structure).
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
NvdDataObject struct for NvdDataObject.
PackageReference A record of a software item which is vulnerable or carries a fix for a vulnerability.
PaginatedImageList Pagination wrapped list of images that match some filter.
PaginatedImageListAllOf struct for PaginatedImageListAllOf.
PaginatedVulnerabilityList A paginated listing of vulnerability records sorted by ID in descending order.
PaginatedVulnerabilityListAllOf struct for PaginatedVulnerabilityListAllOf.
PaginatedVulnerableImageList Pagination wrapped list of images with vulnerabilties that match some filter.
PaginatedVulnerableImageListAllOf struct for PaginatedVulnerableImageListAllOf.
PaginationProperties Properties for common pagination handling to be included in any wrapping object that needs pagination elements.
Policy struct for Policy.
PolicyBundle A bundle containing a set of policies, whitelists, and rules for mapping them to specific images.
PolicyBundleRecord A policy bundle plus some metadata.
PolicyEvalNotification struct for PolicyEvalNotification.
PolicyEvalNotificationAllOf The Notification Object definition for Policy Eval Notifications.
PolicyEvalNotificationData struct for PolicyEvalNotificationData.
PolicyEvalNotificationDataAllOf struct for PolicyEvalNotificationDataAllOf.
PolicyEvalNotificationPayload struct for PolicyEvalNotificationPayload.
PolicyEvalNotificationPayloadAllOf struct for PolicyEvalNotificationPayloadAllOf.
PolicyRule A rule that defines and decision value if the match is found true for a given image.
PolicyRuleParams struct for PolicyRuleParams.
RegexContentMatch Match of a named regex on a file.
RegistryConfiguration A registry entry describing the endpoint and credentials for a registry to pull images from.
RegistryConfigurationRequest A registry record describing the endpoint and credentials for a registry.
RegistryDigestSource An image reference using a digest in a registry, includes some extra tag and timestamp info in addition to the pull string to allow proper tag history reconstruction.
RegistryTagSource An image reference using a tag in a registry, this is the most common source type.
RetrievedFile The retrieved file entry including content (b64 encoded).
SecretSearchResult The retrieved file entry including content (b64 encoded).
ServerConfiguration stores the information about a server.
ServerVariable stores the information about a server variable.
Service A service status record.
ServiceReference A reference to a service in the system.
ServiceVersion Version information for a service.
ServiceVersionApi Api Version string.
ServiceVersionDb struct for ServiceVersionDb.
ServiceVersionService struct for ServiceVersionService.
SourceMappingRule struct for SourceMappingRule.
StandaloneVulnerability A single vulnerability record in a single namespace, the unique key is the combination of the id and namespace.
StatusResponse System status response.
Subscription Subscription entry.
SubscriptionRequest A subscription entry to add to the system.
SubscriptionUpdate A modification to a subscription entry to change its status or value.
SystemStatusResponse System status response.
TagEntry A docker-pullable tag value as well as deconstructed components.
TagUpdateNotification struct for TagUpdateNotification.
TagUpdateNotificationAllOf The Notification Object definition for Tag Update Notifications.
TagUpdateNotificationData struct for TagUpdateNotificationData.
TagUpdateNotificationDataAllOf struct for TagUpdateNotificationDataAllOf.
TagUpdateNotificationPayload struct for TagUpdateNotificationPayload.
TagUpdateNotificationPayloadAllOf struct for TagUpdateNotificationPayloadAllOf.
TokenResponse struct for TokenResponse.
TriggerParamSpec struct for TriggerParamSpec.
TriggerSpec Definition of a trigger and its parameters.
User A username for authenticating with one or more types of credentials.
UserCreationRequest A payload for creating a new user, includes the username and password in a single request.
VendorDataObject struct for VendorDataObject.
VulnDiffResult The results of the comparing two vulnerability records during an update.
Vulnerability struct for Vulnerability.
VulnerabilityReference An external link/reference.
VulnerabilityResponse envelope containing list of vulnerabilities.
VulnerableImage A record of an image vulnerable to some known vulnerability.
VulnerablePackageReference A record of a software item which is vulnerable or carries a fix for a vulnerability.
VulnUpdateNotification struct for VulnUpdateNotification.
VulnUpdateNotificationAllOf The Notification Object definition for Tag Update Notifications.
VulnUpdateNotificationData struct for VulnUpdateNotificationData.
VulnUpdateNotificationDataAllOf struct for VulnUpdateNotificationDataAllOf.
VulnUpdateNotificationPayload struct for VulnUpdateNotificationPayload.
VulnUpdateNotificationPayloadAllOf struct for VulnUpdateNotificationPayloadAllOf.
Whitelist A collection of whitelist items to match a policy evaluation against.
WhitelistItem Identifies a specific gate and trigger match from a policy against an image and indicates it should be ignored in final policy decisions.

# Interfaces

No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author

# Type aliases

ArchivesApiService ArchivesApi service.
DefaultApiService DefaultApi service.
EventsApiService EventsApi service.
IdentityApiService IdentityApi service.
ImagesApiService ImagesApi service.
ImportApiService ImportApi service.
ImportsApiService ImportsApi service.
PoliciesApiService PoliciesApi service.
QueryApiService QueryApi service.
RegistriesApiService RegistriesApi service.
RepositoryCredentialsApiService RepositoryCredentialsApi service.
ServerConfigurations stores multiple ServerConfiguration items.
SubscriptionsApiService SubscriptionsApi service.
SummariesApiService SummariesApi service.
SystemApiService SystemApi service.
UserManagementApiService UserManagementApi service.