-
Notifications
You must be signed in to change notification settings - Fork 597
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'main' into ui-feat-azure-tenants
- Loading branch information
Showing
18 changed files
with
198 additions
and
41 deletions.
There are no files selected for viewing
Submodule cloud-scanner
updated
14 files
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
84 changes: 84 additions & 0 deletions
84
deepfence_frontend/apps/dashboard/src/api/generated/models/ModelCloudNodeMonitoredAccount.ts
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,84 @@ | ||
/* tslint:disable */ | ||
/* eslint-disable */ | ||
/** | ||
* Deepfence ThreatMapper | ||
* Deepfence Runtime API provides programmatic control over Deepfence microservice securing your container, kubernetes and cloud deployments. The API abstracts away underlying infrastructure details like cloud provider, container distros, container orchestrator and type of deployment. This is one uniform API to manage and control security alerts, policies and response to alerts for microservices running anywhere i.e. managed pure greenfield container deployments or a mix of containers, VMs and serverless paradigms like AWS Fargate. | ||
* | ||
* The version of the OpenAPI document: v2.2.1 | ||
* Contact: community@deepfence.io | ||
* | ||
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). | ||
* https://openapi-generator.tech | ||
* Do not edit the class manually. | ||
*/ | ||
|
||
import { exists, mapValues } from '../runtime'; | ||
/** | ||
* | ||
* @export | ||
* @interface ModelCloudNodeMonitoredAccount | ||
*/ | ||
export interface ModelCloudNodeMonitoredAccount { | ||
/** | ||
* | ||
* @type {string} | ||
* @memberof ModelCloudNodeMonitoredAccount | ||
*/ | ||
account_id: string; | ||
/** | ||
* | ||
* @type {string} | ||
* @memberof ModelCloudNodeMonitoredAccount | ||
*/ | ||
account_name: string; | ||
/** | ||
* | ||
* @type {string} | ||
* @memberof ModelCloudNodeMonitoredAccount | ||
*/ | ||
node_id: string; | ||
} | ||
|
||
/** | ||
* Check if a given object implements the ModelCloudNodeMonitoredAccount interface. | ||
*/ | ||
export function instanceOfModelCloudNodeMonitoredAccount(value: object): boolean { | ||
let isInstance = true; | ||
isInstance = isInstance && "account_id" in value; | ||
isInstance = isInstance && "account_name" in value; | ||
isInstance = isInstance && "node_id" in value; | ||
|
||
return isInstance; | ||
} | ||
|
||
export function ModelCloudNodeMonitoredAccountFromJSON(json: any): ModelCloudNodeMonitoredAccount { | ||
return ModelCloudNodeMonitoredAccountFromJSONTyped(json, false); | ||
} | ||
|
||
export function ModelCloudNodeMonitoredAccountFromJSONTyped(json: any, ignoreDiscriminator: boolean): ModelCloudNodeMonitoredAccount { | ||
if ((json === undefined) || (json === null)) { | ||
return json; | ||
} | ||
return { | ||
|
||
'account_id': json['account_id'], | ||
'account_name': json['account_name'], | ||
'node_id': json['node_id'], | ||
}; | ||
} | ||
|
||
export function ModelCloudNodeMonitoredAccountToJSON(value?: ModelCloudNodeMonitoredAccount | null): any { | ||
if (value === undefined) { | ||
return undefined; | ||
} | ||
if (value === null) { | ||
return null; | ||
} | ||
return { | ||
|
||
'account_id': value.account_id, | ||
'account_name': value.account_name, | ||
'node_id': value.node_id, | ||
}; | ||
} | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.