├── .github ├── ISSUE_TEMPLATE │ └── bug_report.md ├── pull_request_template.md └── workflows │ └── main.yml ├── .gitignore ├── .gitlab-ci.yml ├── .gitlab └── helper_functions.sh ├── .hooks ├── bootstrap └── install.python-poetry.py ├── .idea └── vcs.xml ├── .lgtm.yaml ├── .swagger-codegen-ignore ├── CHANGELOG.md ├── LICENSE ├── README.md ├── demisto_client ├── __init__.py └── demisto_api │ ├── README.md │ ├── __init__.py │ ├── api │ ├── __init__.py │ └── default_api.py │ ├── api_client.py │ ├── configuration.py │ ├── models │ ├── __init__.py │ ├── advance_arg.py │ ├── arg_atomic_filter.py │ ├── arg_filter.py │ ├── arg_transformer.py │ ├── argument.py │ ├── array_positions.py │ ├── attachment.py │ ├── audit.py │ ├── audit_result.py │ ├── automation_script.py │ ├── automation_script_api.py │ ├── automation_script_filter.py │ ├── automation_script_filter_wrapper.py │ ├── automation_script_result.py │ ├── command.py │ ├── common_fields.py │ ├── complex_arg.py │ ├── config_data_type.py │ ├── config_field.py │ ├── create_incident_request.py │ ├── custom_fields.py │ ├── d_bot_score.py │ ├── dashboard.py │ ├── data_collection_form.py │ ├── date_range.py │ ├── date_range_filter.py │ ├── delete_evidence.py │ ├── docker_image.py │ ├── docker_images_result.py │ ├── download_entry.py │ ├── duration.py │ ├── ending_type.py │ ├── entry.py │ ├── entry_category.py │ ├── entry_history.py │ ├── entry_reputation.py │ ├── entry_task.py │ ├── entry_type.py │ ├── evidence.py │ ├── evidence_data.py │ ├── evidences.py │ ├── evidences_filter_wrapper.py │ ├── evidences_search_response.py │ ├── expiration_policy.py │ ├── expiration_settings_source.py │ ├── expiration_source.py │ ├── feed_indicator.py │ ├── feed_indicators.py │ ├── feed_indicators_request.py │ ├── field_group.py │ ├── field_mapping.py │ ├── field_term_location_map.py │ ├── file_metadata.py │ ├── filter_cache.py │ ├── filter_operator_id.py │ ├── form_display.py │ ├── generic_indicator_update_batch.py │ ├── generic_string_date_filter.py │ ├── generic_string_filter.py │ ├── grid_column.py │ ├── group.py │ ├── groups.py │ ├── human_cron.py │ ├── important.py │ ├── incident.py │ ├── incident_field.py │ ├── incident_filter.py │ ├── incident_search_response_wrapper.py │ ├── incident_status.py │ ├── incident_type.py │ ├── incident_wrapper.py │ ├── incidents.py │ ├── indicator_context.py │ ├── indicator_edit_bulk_response.py │ ├── indicator_filter.py │ ├── indicator_result.py │ ├── inline_response200.py │ ├── insight_cache.py │ ├── instance_classifier.py │ ├── integration_script.py │ ├── inv_playbook_assignee.py │ ├── inv_playbook_due.py │ ├── inv_playbook_task_complete_data.py │ ├── inv_playbook_task_data.py │ ├── inv_task_info.py │ ├── investigation.py │ ├── investigation_filter.py │ ├── investigation_playbook.py │ ├── investigation_playbook_data.py │ ├── investigation_playbook_state.py │ ├── investigation_playbook_task.py │ ├── investigation_playbook_tasks_api.py │ ├── investigation_search_response.py │ ├── investigation_status.py │ ├── investigation_type.py │ ├── investigations.py │ ├── ioc_object.py │ ├── ioc_objects.py │ ├── label.py │ ├── layout.py │ ├── layout_api.py │ ├── layout_field.py │ ├── layout_section.py │ ├── location.py │ ├── locations.py │ ├── mapper.py │ ├── module_args.py │ ├── module_configuration.py │ ├── new_docker_image.py │ ├── new_docker_image_result.py │ ├── notifiable_item.py │ ├── notify_timings.py │ ├── operator_argument.py │ ├── order.py │ ├── output.py │ ├── output_type.py │ ├── period.py │ ├── playbook.py │ ├── playbook_input.py │ ├── playbook_inputs.py │ ├── playbook_output.py │ ├── playbook_outputs.py │ ├── playbook_task.py │ ├── playbook_view.py │ ├── question.py │ ├── quiet_mode.py │ ├── raw_feed_indicator.py │ ├── raw_message.py │ ├── reliability.py │ ├── remote_repos.py │ ├── report.py │ ├── report_automation.py │ ├── report_fields_decoder.py │ ├── report_query.py │ ├── reputation.py │ ├── reputation_calc_alg.py │ ├── reputation_data.py │ ├── reputations_with_errors.py │ ├── run_status.py │ ├── script_api.py │ ├── script_sub_type.py │ ├── script_target.py │ ├── script_type.py │ ├── search_incidents_data.py │ ├── section.py │ ├── section_item.py │ ├── severity.py │ ├── sla.py │ ├── sla_state.py │ ├── stats_query_response.py │ ├── stats_text_response.py │ ├── stats_trends_response.py │ ├── system.py │ ├── system_agent.py │ ├── task.py │ ├── task_condition.py │ ├── task_loop.py │ ├── task_state.py │ ├── task_type.py │ ├── task_view.py │ ├── term_location_map.py │ ├── terminal_options.py │ ├── timer_action.py │ ├── timer_trigger.py │ ├── transformer_operator_id.py │ ├── update_data_batch.py │ ├── update_entry.py │ ├── update_entry_tags.py │ ├── update_indicator_reputation_data.py │ ├── update_response.py │ ├── uploaded_entry.py │ ├── version.py │ ├── widget.py │ ├── widget_cell.py │ └── widget_cells.py │ └── rest.py ├── docs ├── AdvanceArg.md ├── ArgAtomicFilter.md ├── ArgFilter.md ├── ArgTransformer.md ├── Argument.md ├── ArrayPositions.md ├── Attachment.md ├── Audit.md ├── AuditResult.md ├── AutomationScript.md ├── AutomationScriptAPI.md ├── AutomationScriptFilter.md ├── AutomationScriptFilterWrapper.md ├── AutomationScriptResult.md ├── Command.md ├── CommonFields.md ├── ComplexArg.md ├── ConfigDataType.md ├── ConfigField.md ├── CreateIncidentRequest.md ├── CustomFields.md ├── DBotScore.md ├── Dashboard.md ├── DataCollectionForm.md ├── DateRange.md ├── DateRangeFilter.md ├── DefaultApi.md ├── DeleteEvidence.md ├── DockerImage.md ├── DockerImagesResult.md ├── DownloadEntry.md ├── Duration.md ├── EndingType.md ├── Entry.md ├── EntryCategory.md ├── EntryHistory.md ├── EntryReputation.md ├── EntryTask.md ├── EntryType.md ├── Evidence.md ├── EvidenceData.md ├── Evidences.md ├── EvidencesFilterWrapper.md ├── EvidencesSearchResponse.md ├── ExpirationPolicy.md ├── ExpirationSettingsSource.md ├── ExpirationSource.md ├── FeedIndicator.md ├── FeedIndicators.md ├── FeedIndicatorsRequest.md ├── FieldGroup.md ├── FieldMapping.md ├── FieldTermLocationMap.md ├── FileMetadata.md ├── FilterCache.md ├── FilterOperatorID.md ├── FormDisplay.md ├── GenericIndicatorUpdateBatch.md ├── GenericStringDateFilter.md ├── GenericStringFilter.md ├── GridColumn.md ├── Group.md ├── Groups.md ├── HumanCron.md ├── Important.md ├── Incident.md ├── IncidentField.md ├── IncidentFilter.md ├── IncidentSearchResponseWrapper.md ├── IncidentStatus.md ├── IncidentType.md ├── IncidentWrapper.md ├── Incidents.md ├── IndicatorContext.md ├── IndicatorEditBulkResponse.md ├── IndicatorFilter.md ├── IndicatorResult.md ├── InlineResponse200.md ├── InsightCache.md ├── InstanceClassifier.md ├── IntegrationScript.md ├── InvPlaybookAssignee.md ├── InvPlaybookDue.md ├── InvPlaybookTaskCompleteData.md ├── InvPlaybookTaskData.md ├── InvTaskInfo.md ├── Investigation.md ├── InvestigationFilter.md ├── InvestigationPlaybook.md ├── InvestigationPlaybookData.md ├── InvestigationPlaybookState.md ├── InvestigationPlaybookTask.md ├── InvestigationPlaybookTasksAPI.md ├── InvestigationSearchResponse.md ├── InvestigationStatus.md ├── InvestigationType.md ├── Investigations.md ├── IocObject.md ├── IocObjects.md ├── Label.md ├── Layout.md ├── LayoutAPI.md ├── LayoutField.md ├── LayoutSection.md ├── Location.md ├── Locations.md ├── Mapper.md ├── ModuleArgs.md ├── ModuleConfiguration.md ├── NewDockerImage.md ├── NewDockerImageResult.md ├── NotifiableItem.md ├── NotifyTimings.md ├── OperatorArgument.md ├── Order.md ├── Output.md ├── OutputType.md ├── Period.md ├── Playbook.md ├── PlaybookInput.md ├── PlaybookInputs.md ├── PlaybookOutput.md ├── PlaybookOutputs.md ├── PlaybookTask.md ├── PlaybookView.md ├── Question.md ├── QuietMode.md ├── README.md ├── RawFeedIndicator.md ├── RawMessage.md ├── Reliability.md ├── RemoteRepos.md ├── Report.md ├── ReportAutomation.md ├── ReportFieldsDecoder.md ├── ReportQuery.md ├── Reputation.md ├── ReputationCalcAlg.md ├── ReputationData.md ├── ReputationsWithErrors.md ├── RunStatus.md ├── SLA.md ├── SLAState.md ├── ScriptAPI.md ├── ScriptSubType.md ├── ScriptTarget.md ├── ScriptType.md ├── SearchIncidentsData.md ├── Section.md ├── SectionItem.md ├── Severity.md ├── StatsQueryResponse.md ├── StatsTextResponse.md ├── StatsTrendsResponse.md ├── System.md ├── SystemAgent.md ├── Task.md ├── TaskCondition.md ├── TaskLoop.md ├── TaskState.md ├── TaskType.md ├── TaskView.md ├── TermLocationMap.md ├── TerminalOptions.md ├── TimerAction.md ├── TimerTrigger.md ├── TransformerOperatorID.md ├── UpdateDataBatch.md ├── UpdateEntry.md ├── UpdateEntryTags.md ├── UpdateIndicatorReputationData.md ├── UpdateResponse.md ├── UploadedEntry.md ├── Version.md ├── Widget.md ├── WidgetCell.md └── WidgetCells.md ├── examples ├── batch_util_example.py ├── create_incident_example.py ├── download_file_example.py ├── incidents_search_example.py ├── indicators_search_example.py ├── update_automation_example.py └── widget_upload.py ├── gen-code.sh ├── poetry.lock ├── poetry.toml ├── pyproject.toml ├── server_api_swagger.json ├── swagger-config.json ├── tests ├── examples_test.py ├── mocks_test.py └── tests_data │ ├── layout-details-test-V2.json │ └── layoutscontainer-test.json └── verify.sh /.github/ISSUE_TEMPLATE/bug_report.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demisto/demisto-py/HEAD/.github/ISSUE_TEMPLATE/bug_report.md -------------------------------------------------------------------------------- /.github/pull_request_template.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demisto/demisto-py/HEAD/.github/pull_request_template.md -------------------------------------------------------------------------------- /.github/workflows/main.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demisto/demisto-py/HEAD/.github/workflows/main.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demisto/demisto-py/HEAD/.gitignore -------------------------------------------------------------------------------- /.gitlab-ci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demisto/demisto-py/HEAD/.gitlab-ci.yml -------------------------------------------------------------------------------- /.gitlab/helper_functions.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demisto/demisto-py/HEAD/.gitlab/helper_functions.sh -------------------------------------------------------------------------------- /.hooks/bootstrap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demisto/demisto-py/HEAD/.hooks/bootstrap -------------------------------------------------------------------------------- /.hooks/install.python-poetry.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demisto/demisto-py/HEAD/.hooks/install.python-poetry.py -------------------------------------------------------------------------------- /.idea/vcs.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demisto/demisto-py/HEAD/.idea/vcs.xml -------------------------------------------------------------------------------- /.lgtm.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demisto/demisto-py/HEAD/.lgtm.yaml -------------------------------------------------------------------------------- /.swagger-codegen-ignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demisto/demisto-py/HEAD/.swagger-codegen-ignore -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demisto/demisto-py/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demisto/demisto-py/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demisto/demisto-py/HEAD/README.md -------------------------------------------------------------------------------- /demisto_client/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demisto/demisto-py/HEAD/demisto_client/__init__.py -------------------------------------------------------------------------------- /demisto_client/demisto_api/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demisto/demisto-py/HEAD/demisto_client/demisto_api/README.md -------------------------------------------------------------------------------- /demisto_client/demisto_api/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demisto/demisto-py/HEAD/demisto_client/demisto_api/__init__.py -------------------------------------------------------------------------------- /demisto_client/demisto_api/api/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demisto/demisto-py/HEAD/demisto_client/demisto_api/api/__init__.py -------------------------------------------------------------------------------- /demisto_client/demisto_api/api/default_api.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demisto/demisto-py/HEAD/demisto_client/demisto_api/api/default_api.py -------------------------------------------------------------------------------- /demisto_client/demisto_api/api_client.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demisto/demisto-py/HEAD/demisto_client/demisto_api/api_client.py -------------------------------------------------------------------------------- /demisto_client/demisto_api/configuration.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demisto/demisto-py/HEAD/demisto_client/demisto_api/configuration.py -------------------------------------------------------------------------------- /demisto_client/demisto_api/models/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demisto/demisto-py/HEAD/demisto_client/demisto_api/models/__init__.py -------------------------------------------------------------------------------- /demisto_client/demisto_api/models/advance_arg.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demisto/demisto-py/HEAD/demisto_client/demisto_api/models/advance_arg.py -------------------------------------------------------------------------------- /demisto_client/demisto_api/models/arg_atomic_filter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demisto/demisto-py/HEAD/demisto_client/demisto_api/models/arg_atomic_filter.py -------------------------------------------------------------------------------- /demisto_client/demisto_api/models/arg_filter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demisto/demisto-py/HEAD/demisto_client/demisto_api/models/arg_filter.py -------------------------------------------------------------------------------- /demisto_client/demisto_api/models/arg_transformer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demisto/demisto-py/HEAD/demisto_client/demisto_api/models/arg_transformer.py -------------------------------------------------------------------------------- /demisto_client/demisto_api/models/argument.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demisto/demisto-py/HEAD/demisto_client/demisto_api/models/argument.py -------------------------------------------------------------------------------- /demisto_client/demisto_api/models/array_positions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demisto/demisto-py/HEAD/demisto_client/demisto_api/models/array_positions.py -------------------------------------------------------------------------------- /demisto_client/demisto_api/models/attachment.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demisto/demisto-py/HEAD/demisto_client/demisto_api/models/attachment.py -------------------------------------------------------------------------------- /demisto_client/demisto_api/models/audit.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demisto/demisto-py/HEAD/demisto_client/demisto_api/models/audit.py -------------------------------------------------------------------------------- /demisto_client/demisto_api/models/audit_result.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demisto/demisto-py/HEAD/demisto_client/demisto_api/models/audit_result.py -------------------------------------------------------------------------------- /demisto_client/demisto_api/models/automation_script.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demisto/demisto-py/HEAD/demisto_client/demisto_api/models/automation_script.py -------------------------------------------------------------------------------- /demisto_client/demisto_api/models/automation_script_api.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demisto/demisto-py/HEAD/demisto_client/demisto_api/models/automation_script_api.py -------------------------------------------------------------------------------- /demisto_client/demisto_api/models/automation_script_filter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demisto/demisto-py/HEAD/demisto_client/demisto_api/models/automation_script_filter.py -------------------------------------------------------------------------------- /demisto_client/demisto_api/models/automation_script_filter_wrapper.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demisto/demisto-py/HEAD/demisto_client/demisto_api/models/automation_script_filter_wrapper.py -------------------------------------------------------------------------------- /demisto_client/demisto_api/models/automation_script_result.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demisto/demisto-py/HEAD/demisto_client/demisto_api/models/automation_script_result.py -------------------------------------------------------------------------------- /demisto_client/demisto_api/models/command.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demisto/demisto-py/HEAD/demisto_client/demisto_api/models/command.py -------------------------------------------------------------------------------- /demisto_client/demisto_api/models/common_fields.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demisto/demisto-py/HEAD/demisto_client/demisto_api/models/common_fields.py -------------------------------------------------------------------------------- /demisto_client/demisto_api/models/complex_arg.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demisto/demisto-py/HEAD/demisto_client/demisto_api/models/complex_arg.py -------------------------------------------------------------------------------- /demisto_client/demisto_api/models/config_data_type.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demisto/demisto-py/HEAD/demisto_client/demisto_api/models/config_data_type.py -------------------------------------------------------------------------------- /demisto_client/demisto_api/models/config_field.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demisto/demisto-py/HEAD/demisto_client/demisto_api/models/config_field.py -------------------------------------------------------------------------------- /demisto_client/demisto_api/models/create_incident_request.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demisto/demisto-py/HEAD/demisto_client/demisto_api/models/create_incident_request.py -------------------------------------------------------------------------------- /demisto_client/demisto_api/models/custom_fields.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demisto/demisto-py/HEAD/demisto_client/demisto_api/models/custom_fields.py -------------------------------------------------------------------------------- /demisto_client/demisto_api/models/d_bot_score.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demisto/demisto-py/HEAD/demisto_client/demisto_api/models/d_bot_score.py -------------------------------------------------------------------------------- /demisto_client/demisto_api/models/dashboard.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demisto/demisto-py/HEAD/demisto_client/demisto_api/models/dashboard.py -------------------------------------------------------------------------------- /demisto_client/demisto_api/models/data_collection_form.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demisto/demisto-py/HEAD/demisto_client/demisto_api/models/data_collection_form.py -------------------------------------------------------------------------------- /demisto_client/demisto_api/models/date_range.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demisto/demisto-py/HEAD/demisto_client/demisto_api/models/date_range.py -------------------------------------------------------------------------------- /demisto_client/demisto_api/models/date_range_filter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demisto/demisto-py/HEAD/demisto_client/demisto_api/models/date_range_filter.py -------------------------------------------------------------------------------- /demisto_client/demisto_api/models/delete_evidence.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demisto/demisto-py/HEAD/demisto_client/demisto_api/models/delete_evidence.py -------------------------------------------------------------------------------- /demisto_client/demisto_api/models/docker_image.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demisto/demisto-py/HEAD/demisto_client/demisto_api/models/docker_image.py -------------------------------------------------------------------------------- /demisto_client/demisto_api/models/docker_images_result.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demisto/demisto-py/HEAD/demisto_client/demisto_api/models/docker_images_result.py -------------------------------------------------------------------------------- /demisto_client/demisto_api/models/download_entry.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demisto/demisto-py/HEAD/demisto_client/demisto_api/models/download_entry.py -------------------------------------------------------------------------------- /demisto_client/demisto_api/models/duration.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demisto/demisto-py/HEAD/demisto_client/demisto_api/models/duration.py -------------------------------------------------------------------------------- /demisto_client/demisto_api/models/ending_type.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demisto/demisto-py/HEAD/demisto_client/demisto_api/models/ending_type.py -------------------------------------------------------------------------------- /demisto_client/demisto_api/models/entry.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demisto/demisto-py/HEAD/demisto_client/demisto_api/models/entry.py -------------------------------------------------------------------------------- /demisto_client/demisto_api/models/entry_category.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demisto/demisto-py/HEAD/demisto_client/demisto_api/models/entry_category.py -------------------------------------------------------------------------------- /demisto_client/demisto_api/models/entry_history.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demisto/demisto-py/HEAD/demisto_client/demisto_api/models/entry_history.py -------------------------------------------------------------------------------- /demisto_client/demisto_api/models/entry_reputation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demisto/demisto-py/HEAD/demisto_client/demisto_api/models/entry_reputation.py -------------------------------------------------------------------------------- /demisto_client/demisto_api/models/entry_task.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demisto/demisto-py/HEAD/demisto_client/demisto_api/models/entry_task.py -------------------------------------------------------------------------------- /demisto_client/demisto_api/models/entry_type.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demisto/demisto-py/HEAD/demisto_client/demisto_api/models/entry_type.py -------------------------------------------------------------------------------- /demisto_client/demisto_api/models/evidence.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demisto/demisto-py/HEAD/demisto_client/demisto_api/models/evidence.py -------------------------------------------------------------------------------- /demisto_client/demisto_api/models/evidence_data.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demisto/demisto-py/HEAD/demisto_client/demisto_api/models/evidence_data.py -------------------------------------------------------------------------------- /demisto_client/demisto_api/models/evidences.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demisto/demisto-py/HEAD/demisto_client/demisto_api/models/evidences.py -------------------------------------------------------------------------------- /demisto_client/demisto_api/models/evidences_filter_wrapper.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demisto/demisto-py/HEAD/demisto_client/demisto_api/models/evidences_filter_wrapper.py -------------------------------------------------------------------------------- /demisto_client/demisto_api/models/evidences_search_response.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demisto/demisto-py/HEAD/demisto_client/demisto_api/models/evidences_search_response.py -------------------------------------------------------------------------------- /demisto_client/demisto_api/models/expiration_policy.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demisto/demisto-py/HEAD/demisto_client/demisto_api/models/expiration_policy.py -------------------------------------------------------------------------------- /demisto_client/demisto_api/models/expiration_settings_source.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demisto/demisto-py/HEAD/demisto_client/demisto_api/models/expiration_settings_source.py -------------------------------------------------------------------------------- /demisto_client/demisto_api/models/expiration_source.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demisto/demisto-py/HEAD/demisto_client/demisto_api/models/expiration_source.py -------------------------------------------------------------------------------- /demisto_client/demisto_api/models/feed_indicator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demisto/demisto-py/HEAD/demisto_client/demisto_api/models/feed_indicator.py -------------------------------------------------------------------------------- /demisto_client/demisto_api/models/feed_indicators.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demisto/demisto-py/HEAD/demisto_client/demisto_api/models/feed_indicators.py -------------------------------------------------------------------------------- /demisto_client/demisto_api/models/feed_indicators_request.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demisto/demisto-py/HEAD/demisto_client/demisto_api/models/feed_indicators_request.py -------------------------------------------------------------------------------- /demisto_client/demisto_api/models/field_group.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demisto/demisto-py/HEAD/demisto_client/demisto_api/models/field_group.py -------------------------------------------------------------------------------- /demisto_client/demisto_api/models/field_mapping.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demisto/demisto-py/HEAD/demisto_client/demisto_api/models/field_mapping.py -------------------------------------------------------------------------------- /demisto_client/demisto_api/models/field_term_location_map.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demisto/demisto-py/HEAD/demisto_client/demisto_api/models/field_term_location_map.py -------------------------------------------------------------------------------- /demisto_client/demisto_api/models/file_metadata.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demisto/demisto-py/HEAD/demisto_client/demisto_api/models/file_metadata.py -------------------------------------------------------------------------------- /demisto_client/demisto_api/models/filter_cache.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demisto/demisto-py/HEAD/demisto_client/demisto_api/models/filter_cache.py -------------------------------------------------------------------------------- /demisto_client/demisto_api/models/filter_operator_id.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demisto/demisto-py/HEAD/demisto_client/demisto_api/models/filter_operator_id.py -------------------------------------------------------------------------------- /demisto_client/demisto_api/models/form_display.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demisto/demisto-py/HEAD/demisto_client/demisto_api/models/form_display.py -------------------------------------------------------------------------------- /demisto_client/demisto_api/models/generic_indicator_update_batch.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demisto/demisto-py/HEAD/demisto_client/demisto_api/models/generic_indicator_update_batch.py -------------------------------------------------------------------------------- /demisto_client/demisto_api/models/generic_string_date_filter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demisto/demisto-py/HEAD/demisto_client/demisto_api/models/generic_string_date_filter.py -------------------------------------------------------------------------------- /demisto_client/demisto_api/models/generic_string_filter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demisto/demisto-py/HEAD/demisto_client/demisto_api/models/generic_string_filter.py -------------------------------------------------------------------------------- /demisto_client/demisto_api/models/grid_column.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demisto/demisto-py/HEAD/demisto_client/demisto_api/models/grid_column.py -------------------------------------------------------------------------------- /demisto_client/demisto_api/models/group.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demisto/demisto-py/HEAD/demisto_client/demisto_api/models/group.py -------------------------------------------------------------------------------- /demisto_client/demisto_api/models/groups.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demisto/demisto-py/HEAD/demisto_client/demisto_api/models/groups.py -------------------------------------------------------------------------------- /demisto_client/demisto_api/models/human_cron.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demisto/demisto-py/HEAD/demisto_client/demisto_api/models/human_cron.py -------------------------------------------------------------------------------- /demisto_client/demisto_api/models/important.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demisto/demisto-py/HEAD/demisto_client/demisto_api/models/important.py -------------------------------------------------------------------------------- /demisto_client/demisto_api/models/incident.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demisto/demisto-py/HEAD/demisto_client/demisto_api/models/incident.py -------------------------------------------------------------------------------- /demisto_client/demisto_api/models/incident_field.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demisto/demisto-py/HEAD/demisto_client/demisto_api/models/incident_field.py -------------------------------------------------------------------------------- /demisto_client/demisto_api/models/incident_filter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demisto/demisto-py/HEAD/demisto_client/demisto_api/models/incident_filter.py -------------------------------------------------------------------------------- /demisto_client/demisto_api/models/incident_search_response_wrapper.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demisto/demisto-py/HEAD/demisto_client/demisto_api/models/incident_search_response_wrapper.py -------------------------------------------------------------------------------- /demisto_client/demisto_api/models/incident_status.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demisto/demisto-py/HEAD/demisto_client/demisto_api/models/incident_status.py -------------------------------------------------------------------------------- /demisto_client/demisto_api/models/incident_type.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demisto/demisto-py/HEAD/demisto_client/demisto_api/models/incident_type.py -------------------------------------------------------------------------------- /demisto_client/demisto_api/models/incident_wrapper.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demisto/demisto-py/HEAD/demisto_client/demisto_api/models/incident_wrapper.py -------------------------------------------------------------------------------- /demisto_client/demisto_api/models/incidents.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demisto/demisto-py/HEAD/demisto_client/demisto_api/models/incidents.py -------------------------------------------------------------------------------- /demisto_client/demisto_api/models/indicator_context.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demisto/demisto-py/HEAD/demisto_client/demisto_api/models/indicator_context.py -------------------------------------------------------------------------------- /demisto_client/demisto_api/models/indicator_edit_bulk_response.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demisto/demisto-py/HEAD/demisto_client/demisto_api/models/indicator_edit_bulk_response.py -------------------------------------------------------------------------------- /demisto_client/demisto_api/models/indicator_filter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demisto/demisto-py/HEAD/demisto_client/demisto_api/models/indicator_filter.py -------------------------------------------------------------------------------- /demisto_client/demisto_api/models/indicator_result.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demisto/demisto-py/HEAD/demisto_client/demisto_api/models/indicator_result.py -------------------------------------------------------------------------------- /demisto_client/demisto_api/models/inline_response200.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demisto/demisto-py/HEAD/demisto_client/demisto_api/models/inline_response200.py -------------------------------------------------------------------------------- /demisto_client/demisto_api/models/insight_cache.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demisto/demisto-py/HEAD/demisto_client/demisto_api/models/insight_cache.py -------------------------------------------------------------------------------- /demisto_client/demisto_api/models/instance_classifier.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demisto/demisto-py/HEAD/demisto_client/demisto_api/models/instance_classifier.py -------------------------------------------------------------------------------- /demisto_client/demisto_api/models/integration_script.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demisto/demisto-py/HEAD/demisto_client/demisto_api/models/integration_script.py -------------------------------------------------------------------------------- /demisto_client/demisto_api/models/inv_playbook_assignee.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demisto/demisto-py/HEAD/demisto_client/demisto_api/models/inv_playbook_assignee.py -------------------------------------------------------------------------------- /demisto_client/demisto_api/models/inv_playbook_due.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demisto/demisto-py/HEAD/demisto_client/demisto_api/models/inv_playbook_due.py -------------------------------------------------------------------------------- /demisto_client/demisto_api/models/inv_playbook_task_complete_data.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demisto/demisto-py/HEAD/demisto_client/demisto_api/models/inv_playbook_task_complete_data.py -------------------------------------------------------------------------------- /demisto_client/demisto_api/models/inv_playbook_task_data.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demisto/demisto-py/HEAD/demisto_client/demisto_api/models/inv_playbook_task_data.py -------------------------------------------------------------------------------- /demisto_client/demisto_api/models/inv_task_info.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demisto/demisto-py/HEAD/demisto_client/demisto_api/models/inv_task_info.py -------------------------------------------------------------------------------- /demisto_client/demisto_api/models/investigation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demisto/demisto-py/HEAD/demisto_client/demisto_api/models/investigation.py -------------------------------------------------------------------------------- /demisto_client/demisto_api/models/investigation_filter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demisto/demisto-py/HEAD/demisto_client/demisto_api/models/investigation_filter.py -------------------------------------------------------------------------------- /demisto_client/demisto_api/models/investigation_playbook.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demisto/demisto-py/HEAD/demisto_client/demisto_api/models/investigation_playbook.py -------------------------------------------------------------------------------- /demisto_client/demisto_api/models/investigation_playbook_data.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demisto/demisto-py/HEAD/demisto_client/demisto_api/models/investigation_playbook_data.py -------------------------------------------------------------------------------- /demisto_client/demisto_api/models/investigation_playbook_state.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demisto/demisto-py/HEAD/demisto_client/demisto_api/models/investigation_playbook_state.py -------------------------------------------------------------------------------- /demisto_client/demisto_api/models/investigation_playbook_task.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demisto/demisto-py/HEAD/demisto_client/demisto_api/models/investigation_playbook_task.py -------------------------------------------------------------------------------- /demisto_client/demisto_api/models/investigation_playbook_tasks_api.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demisto/demisto-py/HEAD/demisto_client/demisto_api/models/investigation_playbook_tasks_api.py -------------------------------------------------------------------------------- /demisto_client/demisto_api/models/investigation_search_response.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demisto/demisto-py/HEAD/demisto_client/demisto_api/models/investigation_search_response.py -------------------------------------------------------------------------------- /demisto_client/demisto_api/models/investigation_status.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demisto/demisto-py/HEAD/demisto_client/demisto_api/models/investigation_status.py -------------------------------------------------------------------------------- /demisto_client/demisto_api/models/investigation_type.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demisto/demisto-py/HEAD/demisto_client/demisto_api/models/investigation_type.py -------------------------------------------------------------------------------- /demisto_client/demisto_api/models/investigations.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demisto/demisto-py/HEAD/demisto_client/demisto_api/models/investigations.py -------------------------------------------------------------------------------- /demisto_client/demisto_api/models/ioc_object.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demisto/demisto-py/HEAD/demisto_client/demisto_api/models/ioc_object.py -------------------------------------------------------------------------------- /demisto_client/demisto_api/models/ioc_objects.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demisto/demisto-py/HEAD/demisto_client/demisto_api/models/ioc_objects.py -------------------------------------------------------------------------------- /demisto_client/demisto_api/models/label.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demisto/demisto-py/HEAD/demisto_client/demisto_api/models/label.py -------------------------------------------------------------------------------- /demisto_client/demisto_api/models/layout.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demisto/demisto-py/HEAD/demisto_client/demisto_api/models/layout.py -------------------------------------------------------------------------------- /demisto_client/demisto_api/models/layout_api.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demisto/demisto-py/HEAD/demisto_client/demisto_api/models/layout_api.py -------------------------------------------------------------------------------- /demisto_client/demisto_api/models/layout_field.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demisto/demisto-py/HEAD/demisto_client/demisto_api/models/layout_field.py -------------------------------------------------------------------------------- /demisto_client/demisto_api/models/layout_section.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demisto/demisto-py/HEAD/demisto_client/demisto_api/models/layout_section.py -------------------------------------------------------------------------------- /demisto_client/demisto_api/models/location.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demisto/demisto-py/HEAD/demisto_client/demisto_api/models/location.py -------------------------------------------------------------------------------- /demisto_client/demisto_api/models/locations.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demisto/demisto-py/HEAD/demisto_client/demisto_api/models/locations.py -------------------------------------------------------------------------------- /demisto_client/demisto_api/models/mapper.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demisto/demisto-py/HEAD/demisto_client/demisto_api/models/mapper.py -------------------------------------------------------------------------------- /demisto_client/demisto_api/models/module_args.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demisto/demisto-py/HEAD/demisto_client/demisto_api/models/module_args.py -------------------------------------------------------------------------------- /demisto_client/demisto_api/models/module_configuration.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demisto/demisto-py/HEAD/demisto_client/demisto_api/models/module_configuration.py -------------------------------------------------------------------------------- /demisto_client/demisto_api/models/new_docker_image.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demisto/demisto-py/HEAD/demisto_client/demisto_api/models/new_docker_image.py -------------------------------------------------------------------------------- /demisto_client/demisto_api/models/new_docker_image_result.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demisto/demisto-py/HEAD/demisto_client/demisto_api/models/new_docker_image_result.py -------------------------------------------------------------------------------- /demisto_client/demisto_api/models/notifiable_item.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demisto/demisto-py/HEAD/demisto_client/demisto_api/models/notifiable_item.py -------------------------------------------------------------------------------- /demisto_client/demisto_api/models/notify_timings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demisto/demisto-py/HEAD/demisto_client/demisto_api/models/notify_timings.py -------------------------------------------------------------------------------- /demisto_client/demisto_api/models/operator_argument.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demisto/demisto-py/HEAD/demisto_client/demisto_api/models/operator_argument.py -------------------------------------------------------------------------------- /demisto_client/demisto_api/models/order.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demisto/demisto-py/HEAD/demisto_client/demisto_api/models/order.py -------------------------------------------------------------------------------- /demisto_client/demisto_api/models/output.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demisto/demisto-py/HEAD/demisto_client/demisto_api/models/output.py -------------------------------------------------------------------------------- /demisto_client/demisto_api/models/output_type.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demisto/demisto-py/HEAD/demisto_client/demisto_api/models/output_type.py -------------------------------------------------------------------------------- /demisto_client/demisto_api/models/period.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demisto/demisto-py/HEAD/demisto_client/demisto_api/models/period.py -------------------------------------------------------------------------------- /demisto_client/demisto_api/models/playbook.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demisto/demisto-py/HEAD/demisto_client/demisto_api/models/playbook.py -------------------------------------------------------------------------------- /demisto_client/demisto_api/models/playbook_input.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demisto/demisto-py/HEAD/demisto_client/demisto_api/models/playbook_input.py -------------------------------------------------------------------------------- /demisto_client/demisto_api/models/playbook_inputs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demisto/demisto-py/HEAD/demisto_client/demisto_api/models/playbook_inputs.py -------------------------------------------------------------------------------- /demisto_client/demisto_api/models/playbook_output.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demisto/demisto-py/HEAD/demisto_client/demisto_api/models/playbook_output.py -------------------------------------------------------------------------------- /demisto_client/demisto_api/models/playbook_outputs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demisto/demisto-py/HEAD/demisto_client/demisto_api/models/playbook_outputs.py -------------------------------------------------------------------------------- /demisto_client/demisto_api/models/playbook_task.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demisto/demisto-py/HEAD/demisto_client/demisto_api/models/playbook_task.py -------------------------------------------------------------------------------- /demisto_client/demisto_api/models/playbook_view.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demisto/demisto-py/HEAD/demisto_client/demisto_api/models/playbook_view.py -------------------------------------------------------------------------------- /demisto_client/demisto_api/models/question.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demisto/demisto-py/HEAD/demisto_client/demisto_api/models/question.py -------------------------------------------------------------------------------- /demisto_client/demisto_api/models/quiet_mode.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demisto/demisto-py/HEAD/demisto_client/demisto_api/models/quiet_mode.py -------------------------------------------------------------------------------- /demisto_client/demisto_api/models/raw_feed_indicator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demisto/demisto-py/HEAD/demisto_client/demisto_api/models/raw_feed_indicator.py -------------------------------------------------------------------------------- /demisto_client/demisto_api/models/raw_message.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demisto/demisto-py/HEAD/demisto_client/demisto_api/models/raw_message.py -------------------------------------------------------------------------------- /demisto_client/demisto_api/models/reliability.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demisto/demisto-py/HEAD/demisto_client/demisto_api/models/reliability.py -------------------------------------------------------------------------------- /demisto_client/demisto_api/models/remote_repos.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demisto/demisto-py/HEAD/demisto_client/demisto_api/models/remote_repos.py -------------------------------------------------------------------------------- /demisto_client/demisto_api/models/report.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demisto/demisto-py/HEAD/demisto_client/demisto_api/models/report.py -------------------------------------------------------------------------------- /demisto_client/demisto_api/models/report_automation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demisto/demisto-py/HEAD/demisto_client/demisto_api/models/report_automation.py -------------------------------------------------------------------------------- /demisto_client/demisto_api/models/report_fields_decoder.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demisto/demisto-py/HEAD/demisto_client/demisto_api/models/report_fields_decoder.py -------------------------------------------------------------------------------- /demisto_client/demisto_api/models/report_query.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demisto/demisto-py/HEAD/demisto_client/demisto_api/models/report_query.py -------------------------------------------------------------------------------- /demisto_client/demisto_api/models/reputation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demisto/demisto-py/HEAD/demisto_client/demisto_api/models/reputation.py -------------------------------------------------------------------------------- /demisto_client/demisto_api/models/reputation_calc_alg.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demisto/demisto-py/HEAD/demisto_client/demisto_api/models/reputation_calc_alg.py -------------------------------------------------------------------------------- /demisto_client/demisto_api/models/reputation_data.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demisto/demisto-py/HEAD/demisto_client/demisto_api/models/reputation_data.py -------------------------------------------------------------------------------- /demisto_client/demisto_api/models/reputations_with_errors.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demisto/demisto-py/HEAD/demisto_client/demisto_api/models/reputations_with_errors.py -------------------------------------------------------------------------------- /demisto_client/demisto_api/models/run_status.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demisto/demisto-py/HEAD/demisto_client/demisto_api/models/run_status.py -------------------------------------------------------------------------------- /demisto_client/demisto_api/models/script_api.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demisto/demisto-py/HEAD/demisto_client/demisto_api/models/script_api.py -------------------------------------------------------------------------------- /demisto_client/demisto_api/models/script_sub_type.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demisto/demisto-py/HEAD/demisto_client/demisto_api/models/script_sub_type.py -------------------------------------------------------------------------------- /demisto_client/demisto_api/models/script_target.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demisto/demisto-py/HEAD/demisto_client/demisto_api/models/script_target.py -------------------------------------------------------------------------------- /demisto_client/demisto_api/models/script_type.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demisto/demisto-py/HEAD/demisto_client/demisto_api/models/script_type.py -------------------------------------------------------------------------------- /demisto_client/demisto_api/models/search_incidents_data.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demisto/demisto-py/HEAD/demisto_client/demisto_api/models/search_incidents_data.py -------------------------------------------------------------------------------- /demisto_client/demisto_api/models/section.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demisto/demisto-py/HEAD/demisto_client/demisto_api/models/section.py -------------------------------------------------------------------------------- /demisto_client/demisto_api/models/section_item.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demisto/demisto-py/HEAD/demisto_client/demisto_api/models/section_item.py -------------------------------------------------------------------------------- /demisto_client/demisto_api/models/severity.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demisto/demisto-py/HEAD/demisto_client/demisto_api/models/severity.py -------------------------------------------------------------------------------- /demisto_client/demisto_api/models/sla.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demisto/demisto-py/HEAD/demisto_client/demisto_api/models/sla.py -------------------------------------------------------------------------------- /demisto_client/demisto_api/models/sla_state.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demisto/demisto-py/HEAD/demisto_client/demisto_api/models/sla_state.py -------------------------------------------------------------------------------- /demisto_client/demisto_api/models/stats_query_response.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demisto/demisto-py/HEAD/demisto_client/demisto_api/models/stats_query_response.py -------------------------------------------------------------------------------- /demisto_client/demisto_api/models/stats_text_response.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demisto/demisto-py/HEAD/demisto_client/demisto_api/models/stats_text_response.py -------------------------------------------------------------------------------- /demisto_client/demisto_api/models/stats_trends_response.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demisto/demisto-py/HEAD/demisto_client/demisto_api/models/stats_trends_response.py -------------------------------------------------------------------------------- /demisto_client/demisto_api/models/system.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demisto/demisto-py/HEAD/demisto_client/demisto_api/models/system.py -------------------------------------------------------------------------------- /demisto_client/demisto_api/models/system_agent.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demisto/demisto-py/HEAD/demisto_client/demisto_api/models/system_agent.py -------------------------------------------------------------------------------- /demisto_client/demisto_api/models/task.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demisto/demisto-py/HEAD/demisto_client/demisto_api/models/task.py -------------------------------------------------------------------------------- /demisto_client/demisto_api/models/task_condition.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demisto/demisto-py/HEAD/demisto_client/demisto_api/models/task_condition.py -------------------------------------------------------------------------------- /demisto_client/demisto_api/models/task_loop.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demisto/demisto-py/HEAD/demisto_client/demisto_api/models/task_loop.py -------------------------------------------------------------------------------- /demisto_client/demisto_api/models/task_state.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demisto/demisto-py/HEAD/demisto_client/demisto_api/models/task_state.py -------------------------------------------------------------------------------- /demisto_client/demisto_api/models/task_type.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demisto/demisto-py/HEAD/demisto_client/demisto_api/models/task_type.py -------------------------------------------------------------------------------- /demisto_client/demisto_api/models/task_view.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demisto/demisto-py/HEAD/demisto_client/demisto_api/models/task_view.py -------------------------------------------------------------------------------- /demisto_client/demisto_api/models/term_location_map.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demisto/demisto-py/HEAD/demisto_client/demisto_api/models/term_location_map.py -------------------------------------------------------------------------------- /demisto_client/demisto_api/models/terminal_options.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demisto/demisto-py/HEAD/demisto_client/demisto_api/models/terminal_options.py -------------------------------------------------------------------------------- /demisto_client/demisto_api/models/timer_action.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demisto/demisto-py/HEAD/demisto_client/demisto_api/models/timer_action.py -------------------------------------------------------------------------------- /demisto_client/demisto_api/models/timer_trigger.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demisto/demisto-py/HEAD/demisto_client/demisto_api/models/timer_trigger.py -------------------------------------------------------------------------------- /demisto_client/demisto_api/models/transformer_operator_id.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demisto/demisto-py/HEAD/demisto_client/demisto_api/models/transformer_operator_id.py -------------------------------------------------------------------------------- /demisto_client/demisto_api/models/update_data_batch.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demisto/demisto-py/HEAD/demisto_client/demisto_api/models/update_data_batch.py -------------------------------------------------------------------------------- /demisto_client/demisto_api/models/update_entry.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demisto/demisto-py/HEAD/demisto_client/demisto_api/models/update_entry.py -------------------------------------------------------------------------------- /demisto_client/demisto_api/models/update_entry_tags.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demisto/demisto-py/HEAD/demisto_client/demisto_api/models/update_entry_tags.py -------------------------------------------------------------------------------- /demisto_client/demisto_api/models/update_indicator_reputation_data.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demisto/demisto-py/HEAD/demisto_client/demisto_api/models/update_indicator_reputation_data.py -------------------------------------------------------------------------------- /demisto_client/demisto_api/models/update_response.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demisto/demisto-py/HEAD/demisto_client/demisto_api/models/update_response.py -------------------------------------------------------------------------------- /demisto_client/demisto_api/models/uploaded_entry.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demisto/demisto-py/HEAD/demisto_client/demisto_api/models/uploaded_entry.py -------------------------------------------------------------------------------- /demisto_client/demisto_api/models/version.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demisto/demisto-py/HEAD/demisto_client/demisto_api/models/version.py -------------------------------------------------------------------------------- /demisto_client/demisto_api/models/widget.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demisto/demisto-py/HEAD/demisto_client/demisto_api/models/widget.py -------------------------------------------------------------------------------- /demisto_client/demisto_api/models/widget_cell.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demisto/demisto-py/HEAD/demisto_client/demisto_api/models/widget_cell.py -------------------------------------------------------------------------------- /demisto_client/demisto_api/models/widget_cells.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demisto/demisto-py/HEAD/demisto_client/demisto_api/models/widget_cells.py -------------------------------------------------------------------------------- /demisto_client/demisto_api/rest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demisto/demisto-py/HEAD/demisto_client/demisto_api/rest.py -------------------------------------------------------------------------------- /docs/AdvanceArg.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demisto/demisto-py/HEAD/docs/AdvanceArg.md -------------------------------------------------------------------------------- /docs/ArgAtomicFilter.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demisto/demisto-py/HEAD/docs/ArgAtomicFilter.md -------------------------------------------------------------------------------- /docs/ArgFilter.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demisto/demisto-py/HEAD/docs/ArgFilter.md -------------------------------------------------------------------------------- /docs/ArgTransformer.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demisto/demisto-py/HEAD/docs/ArgTransformer.md -------------------------------------------------------------------------------- /docs/Argument.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demisto/demisto-py/HEAD/docs/Argument.md -------------------------------------------------------------------------------- /docs/ArrayPositions.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demisto/demisto-py/HEAD/docs/ArrayPositions.md -------------------------------------------------------------------------------- /docs/Attachment.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demisto/demisto-py/HEAD/docs/Attachment.md -------------------------------------------------------------------------------- /docs/Audit.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demisto/demisto-py/HEAD/docs/Audit.md -------------------------------------------------------------------------------- /docs/AuditResult.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demisto/demisto-py/HEAD/docs/AuditResult.md -------------------------------------------------------------------------------- /docs/AutomationScript.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demisto/demisto-py/HEAD/docs/AutomationScript.md -------------------------------------------------------------------------------- /docs/AutomationScriptAPI.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demisto/demisto-py/HEAD/docs/AutomationScriptAPI.md -------------------------------------------------------------------------------- /docs/AutomationScriptFilter.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demisto/demisto-py/HEAD/docs/AutomationScriptFilter.md -------------------------------------------------------------------------------- /docs/AutomationScriptFilterWrapper.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demisto/demisto-py/HEAD/docs/AutomationScriptFilterWrapper.md -------------------------------------------------------------------------------- /docs/AutomationScriptResult.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demisto/demisto-py/HEAD/docs/AutomationScriptResult.md -------------------------------------------------------------------------------- /docs/Command.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demisto/demisto-py/HEAD/docs/Command.md -------------------------------------------------------------------------------- /docs/CommonFields.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demisto/demisto-py/HEAD/docs/CommonFields.md -------------------------------------------------------------------------------- /docs/ComplexArg.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demisto/demisto-py/HEAD/docs/ComplexArg.md -------------------------------------------------------------------------------- /docs/ConfigDataType.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demisto/demisto-py/HEAD/docs/ConfigDataType.md -------------------------------------------------------------------------------- /docs/ConfigField.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demisto/demisto-py/HEAD/docs/ConfigField.md -------------------------------------------------------------------------------- /docs/CreateIncidentRequest.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demisto/demisto-py/HEAD/docs/CreateIncidentRequest.md -------------------------------------------------------------------------------- /docs/CustomFields.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demisto/demisto-py/HEAD/docs/CustomFields.md -------------------------------------------------------------------------------- /docs/DBotScore.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demisto/demisto-py/HEAD/docs/DBotScore.md -------------------------------------------------------------------------------- /docs/Dashboard.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demisto/demisto-py/HEAD/docs/Dashboard.md -------------------------------------------------------------------------------- /docs/DataCollectionForm.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demisto/demisto-py/HEAD/docs/DataCollectionForm.md -------------------------------------------------------------------------------- /docs/DateRange.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demisto/demisto-py/HEAD/docs/DateRange.md -------------------------------------------------------------------------------- /docs/DateRangeFilter.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demisto/demisto-py/HEAD/docs/DateRangeFilter.md -------------------------------------------------------------------------------- /docs/DefaultApi.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demisto/demisto-py/HEAD/docs/DefaultApi.md -------------------------------------------------------------------------------- /docs/DeleteEvidence.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demisto/demisto-py/HEAD/docs/DeleteEvidence.md -------------------------------------------------------------------------------- /docs/DockerImage.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demisto/demisto-py/HEAD/docs/DockerImage.md -------------------------------------------------------------------------------- /docs/DockerImagesResult.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demisto/demisto-py/HEAD/docs/DockerImagesResult.md -------------------------------------------------------------------------------- /docs/DownloadEntry.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demisto/demisto-py/HEAD/docs/DownloadEntry.md -------------------------------------------------------------------------------- /docs/Duration.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demisto/demisto-py/HEAD/docs/Duration.md -------------------------------------------------------------------------------- /docs/EndingType.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demisto/demisto-py/HEAD/docs/EndingType.md -------------------------------------------------------------------------------- /docs/Entry.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demisto/demisto-py/HEAD/docs/Entry.md -------------------------------------------------------------------------------- /docs/EntryCategory.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demisto/demisto-py/HEAD/docs/EntryCategory.md -------------------------------------------------------------------------------- /docs/EntryHistory.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demisto/demisto-py/HEAD/docs/EntryHistory.md -------------------------------------------------------------------------------- /docs/EntryReputation.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demisto/demisto-py/HEAD/docs/EntryReputation.md -------------------------------------------------------------------------------- /docs/EntryTask.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demisto/demisto-py/HEAD/docs/EntryTask.md -------------------------------------------------------------------------------- /docs/EntryType.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demisto/demisto-py/HEAD/docs/EntryType.md -------------------------------------------------------------------------------- /docs/Evidence.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demisto/demisto-py/HEAD/docs/Evidence.md -------------------------------------------------------------------------------- /docs/EvidenceData.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demisto/demisto-py/HEAD/docs/EvidenceData.md -------------------------------------------------------------------------------- /docs/Evidences.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demisto/demisto-py/HEAD/docs/Evidences.md -------------------------------------------------------------------------------- /docs/EvidencesFilterWrapper.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demisto/demisto-py/HEAD/docs/EvidencesFilterWrapper.md -------------------------------------------------------------------------------- /docs/EvidencesSearchResponse.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demisto/demisto-py/HEAD/docs/EvidencesSearchResponse.md -------------------------------------------------------------------------------- /docs/ExpirationPolicy.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demisto/demisto-py/HEAD/docs/ExpirationPolicy.md -------------------------------------------------------------------------------- /docs/ExpirationSettingsSource.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demisto/demisto-py/HEAD/docs/ExpirationSettingsSource.md -------------------------------------------------------------------------------- /docs/ExpirationSource.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demisto/demisto-py/HEAD/docs/ExpirationSource.md -------------------------------------------------------------------------------- /docs/FeedIndicator.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demisto/demisto-py/HEAD/docs/FeedIndicator.md -------------------------------------------------------------------------------- /docs/FeedIndicators.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demisto/demisto-py/HEAD/docs/FeedIndicators.md -------------------------------------------------------------------------------- /docs/FeedIndicatorsRequest.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demisto/demisto-py/HEAD/docs/FeedIndicatorsRequest.md -------------------------------------------------------------------------------- /docs/FieldGroup.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demisto/demisto-py/HEAD/docs/FieldGroup.md -------------------------------------------------------------------------------- /docs/FieldMapping.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demisto/demisto-py/HEAD/docs/FieldMapping.md -------------------------------------------------------------------------------- /docs/FieldTermLocationMap.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demisto/demisto-py/HEAD/docs/FieldTermLocationMap.md -------------------------------------------------------------------------------- /docs/FileMetadata.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demisto/demisto-py/HEAD/docs/FileMetadata.md -------------------------------------------------------------------------------- /docs/FilterCache.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demisto/demisto-py/HEAD/docs/FilterCache.md -------------------------------------------------------------------------------- /docs/FilterOperatorID.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demisto/demisto-py/HEAD/docs/FilterOperatorID.md -------------------------------------------------------------------------------- /docs/FormDisplay.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demisto/demisto-py/HEAD/docs/FormDisplay.md -------------------------------------------------------------------------------- /docs/GenericIndicatorUpdateBatch.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demisto/demisto-py/HEAD/docs/GenericIndicatorUpdateBatch.md -------------------------------------------------------------------------------- /docs/GenericStringDateFilter.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demisto/demisto-py/HEAD/docs/GenericStringDateFilter.md -------------------------------------------------------------------------------- /docs/GenericStringFilter.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demisto/demisto-py/HEAD/docs/GenericStringFilter.md -------------------------------------------------------------------------------- /docs/GridColumn.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demisto/demisto-py/HEAD/docs/GridColumn.md -------------------------------------------------------------------------------- /docs/Group.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demisto/demisto-py/HEAD/docs/Group.md -------------------------------------------------------------------------------- /docs/Groups.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demisto/demisto-py/HEAD/docs/Groups.md -------------------------------------------------------------------------------- /docs/HumanCron.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demisto/demisto-py/HEAD/docs/HumanCron.md -------------------------------------------------------------------------------- /docs/Important.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demisto/demisto-py/HEAD/docs/Important.md -------------------------------------------------------------------------------- /docs/Incident.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demisto/demisto-py/HEAD/docs/Incident.md -------------------------------------------------------------------------------- /docs/IncidentField.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demisto/demisto-py/HEAD/docs/IncidentField.md -------------------------------------------------------------------------------- /docs/IncidentFilter.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demisto/demisto-py/HEAD/docs/IncidentFilter.md -------------------------------------------------------------------------------- /docs/IncidentSearchResponseWrapper.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demisto/demisto-py/HEAD/docs/IncidentSearchResponseWrapper.md -------------------------------------------------------------------------------- /docs/IncidentStatus.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demisto/demisto-py/HEAD/docs/IncidentStatus.md -------------------------------------------------------------------------------- /docs/IncidentType.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demisto/demisto-py/HEAD/docs/IncidentType.md -------------------------------------------------------------------------------- /docs/IncidentWrapper.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demisto/demisto-py/HEAD/docs/IncidentWrapper.md -------------------------------------------------------------------------------- /docs/Incidents.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demisto/demisto-py/HEAD/docs/Incidents.md -------------------------------------------------------------------------------- /docs/IndicatorContext.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demisto/demisto-py/HEAD/docs/IndicatorContext.md -------------------------------------------------------------------------------- /docs/IndicatorEditBulkResponse.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demisto/demisto-py/HEAD/docs/IndicatorEditBulkResponse.md -------------------------------------------------------------------------------- /docs/IndicatorFilter.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demisto/demisto-py/HEAD/docs/IndicatorFilter.md -------------------------------------------------------------------------------- /docs/IndicatorResult.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demisto/demisto-py/HEAD/docs/IndicatorResult.md -------------------------------------------------------------------------------- /docs/InlineResponse200.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demisto/demisto-py/HEAD/docs/InlineResponse200.md -------------------------------------------------------------------------------- /docs/InsightCache.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demisto/demisto-py/HEAD/docs/InsightCache.md -------------------------------------------------------------------------------- /docs/InstanceClassifier.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demisto/demisto-py/HEAD/docs/InstanceClassifier.md -------------------------------------------------------------------------------- /docs/IntegrationScript.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demisto/demisto-py/HEAD/docs/IntegrationScript.md -------------------------------------------------------------------------------- /docs/InvPlaybookAssignee.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demisto/demisto-py/HEAD/docs/InvPlaybookAssignee.md -------------------------------------------------------------------------------- /docs/InvPlaybookDue.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demisto/demisto-py/HEAD/docs/InvPlaybookDue.md -------------------------------------------------------------------------------- /docs/InvPlaybookTaskCompleteData.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demisto/demisto-py/HEAD/docs/InvPlaybookTaskCompleteData.md -------------------------------------------------------------------------------- /docs/InvPlaybookTaskData.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demisto/demisto-py/HEAD/docs/InvPlaybookTaskData.md -------------------------------------------------------------------------------- /docs/InvTaskInfo.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demisto/demisto-py/HEAD/docs/InvTaskInfo.md -------------------------------------------------------------------------------- /docs/Investigation.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demisto/demisto-py/HEAD/docs/Investigation.md -------------------------------------------------------------------------------- /docs/InvestigationFilter.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demisto/demisto-py/HEAD/docs/InvestigationFilter.md -------------------------------------------------------------------------------- /docs/InvestigationPlaybook.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demisto/demisto-py/HEAD/docs/InvestigationPlaybook.md -------------------------------------------------------------------------------- /docs/InvestigationPlaybookData.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demisto/demisto-py/HEAD/docs/InvestigationPlaybookData.md -------------------------------------------------------------------------------- /docs/InvestigationPlaybookState.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demisto/demisto-py/HEAD/docs/InvestigationPlaybookState.md -------------------------------------------------------------------------------- /docs/InvestigationPlaybookTask.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demisto/demisto-py/HEAD/docs/InvestigationPlaybookTask.md -------------------------------------------------------------------------------- /docs/InvestigationPlaybookTasksAPI.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demisto/demisto-py/HEAD/docs/InvestigationPlaybookTasksAPI.md -------------------------------------------------------------------------------- /docs/InvestigationSearchResponse.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demisto/demisto-py/HEAD/docs/InvestigationSearchResponse.md -------------------------------------------------------------------------------- /docs/InvestigationStatus.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demisto/demisto-py/HEAD/docs/InvestigationStatus.md -------------------------------------------------------------------------------- /docs/InvestigationType.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demisto/demisto-py/HEAD/docs/InvestigationType.md -------------------------------------------------------------------------------- /docs/Investigations.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demisto/demisto-py/HEAD/docs/Investigations.md -------------------------------------------------------------------------------- /docs/IocObject.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demisto/demisto-py/HEAD/docs/IocObject.md -------------------------------------------------------------------------------- /docs/IocObjects.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demisto/demisto-py/HEAD/docs/IocObjects.md -------------------------------------------------------------------------------- /docs/Label.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demisto/demisto-py/HEAD/docs/Label.md -------------------------------------------------------------------------------- /docs/Layout.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demisto/demisto-py/HEAD/docs/Layout.md -------------------------------------------------------------------------------- /docs/LayoutAPI.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demisto/demisto-py/HEAD/docs/LayoutAPI.md -------------------------------------------------------------------------------- /docs/LayoutField.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demisto/demisto-py/HEAD/docs/LayoutField.md -------------------------------------------------------------------------------- /docs/LayoutSection.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demisto/demisto-py/HEAD/docs/LayoutSection.md -------------------------------------------------------------------------------- /docs/Location.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demisto/demisto-py/HEAD/docs/Location.md -------------------------------------------------------------------------------- /docs/Locations.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demisto/demisto-py/HEAD/docs/Locations.md -------------------------------------------------------------------------------- /docs/Mapper.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demisto/demisto-py/HEAD/docs/Mapper.md -------------------------------------------------------------------------------- /docs/ModuleArgs.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demisto/demisto-py/HEAD/docs/ModuleArgs.md -------------------------------------------------------------------------------- /docs/ModuleConfiguration.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demisto/demisto-py/HEAD/docs/ModuleConfiguration.md -------------------------------------------------------------------------------- /docs/NewDockerImage.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demisto/demisto-py/HEAD/docs/NewDockerImage.md -------------------------------------------------------------------------------- /docs/NewDockerImageResult.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demisto/demisto-py/HEAD/docs/NewDockerImageResult.md -------------------------------------------------------------------------------- /docs/NotifiableItem.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demisto/demisto-py/HEAD/docs/NotifiableItem.md -------------------------------------------------------------------------------- /docs/NotifyTimings.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demisto/demisto-py/HEAD/docs/NotifyTimings.md -------------------------------------------------------------------------------- /docs/OperatorArgument.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demisto/demisto-py/HEAD/docs/OperatorArgument.md -------------------------------------------------------------------------------- /docs/Order.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demisto/demisto-py/HEAD/docs/Order.md -------------------------------------------------------------------------------- /docs/Output.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demisto/demisto-py/HEAD/docs/Output.md -------------------------------------------------------------------------------- /docs/OutputType.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demisto/demisto-py/HEAD/docs/OutputType.md -------------------------------------------------------------------------------- /docs/Period.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demisto/demisto-py/HEAD/docs/Period.md -------------------------------------------------------------------------------- /docs/Playbook.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demisto/demisto-py/HEAD/docs/Playbook.md -------------------------------------------------------------------------------- /docs/PlaybookInput.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demisto/demisto-py/HEAD/docs/PlaybookInput.md -------------------------------------------------------------------------------- /docs/PlaybookInputs.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demisto/demisto-py/HEAD/docs/PlaybookInputs.md -------------------------------------------------------------------------------- /docs/PlaybookOutput.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demisto/demisto-py/HEAD/docs/PlaybookOutput.md -------------------------------------------------------------------------------- /docs/PlaybookOutputs.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demisto/demisto-py/HEAD/docs/PlaybookOutputs.md -------------------------------------------------------------------------------- /docs/PlaybookTask.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demisto/demisto-py/HEAD/docs/PlaybookTask.md -------------------------------------------------------------------------------- /docs/PlaybookView.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demisto/demisto-py/HEAD/docs/PlaybookView.md -------------------------------------------------------------------------------- /docs/Question.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demisto/demisto-py/HEAD/docs/Question.md -------------------------------------------------------------------------------- /docs/QuietMode.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demisto/demisto-py/HEAD/docs/QuietMode.md -------------------------------------------------------------------------------- /docs/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demisto/demisto-py/HEAD/docs/README.md -------------------------------------------------------------------------------- /docs/RawFeedIndicator.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demisto/demisto-py/HEAD/docs/RawFeedIndicator.md -------------------------------------------------------------------------------- /docs/RawMessage.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demisto/demisto-py/HEAD/docs/RawMessage.md -------------------------------------------------------------------------------- /docs/Reliability.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demisto/demisto-py/HEAD/docs/Reliability.md -------------------------------------------------------------------------------- /docs/RemoteRepos.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demisto/demisto-py/HEAD/docs/RemoteRepos.md -------------------------------------------------------------------------------- /docs/Report.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demisto/demisto-py/HEAD/docs/Report.md -------------------------------------------------------------------------------- /docs/ReportAutomation.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demisto/demisto-py/HEAD/docs/ReportAutomation.md -------------------------------------------------------------------------------- /docs/ReportFieldsDecoder.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demisto/demisto-py/HEAD/docs/ReportFieldsDecoder.md -------------------------------------------------------------------------------- /docs/ReportQuery.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demisto/demisto-py/HEAD/docs/ReportQuery.md -------------------------------------------------------------------------------- /docs/Reputation.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demisto/demisto-py/HEAD/docs/Reputation.md -------------------------------------------------------------------------------- /docs/ReputationCalcAlg.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demisto/demisto-py/HEAD/docs/ReputationCalcAlg.md -------------------------------------------------------------------------------- /docs/ReputationData.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demisto/demisto-py/HEAD/docs/ReputationData.md -------------------------------------------------------------------------------- /docs/ReputationsWithErrors.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demisto/demisto-py/HEAD/docs/ReputationsWithErrors.md -------------------------------------------------------------------------------- /docs/RunStatus.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demisto/demisto-py/HEAD/docs/RunStatus.md -------------------------------------------------------------------------------- /docs/SLA.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demisto/demisto-py/HEAD/docs/SLA.md -------------------------------------------------------------------------------- /docs/SLAState.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demisto/demisto-py/HEAD/docs/SLAState.md -------------------------------------------------------------------------------- /docs/ScriptAPI.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demisto/demisto-py/HEAD/docs/ScriptAPI.md -------------------------------------------------------------------------------- /docs/ScriptSubType.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demisto/demisto-py/HEAD/docs/ScriptSubType.md -------------------------------------------------------------------------------- /docs/ScriptTarget.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demisto/demisto-py/HEAD/docs/ScriptTarget.md -------------------------------------------------------------------------------- /docs/ScriptType.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demisto/demisto-py/HEAD/docs/ScriptType.md -------------------------------------------------------------------------------- /docs/SearchIncidentsData.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demisto/demisto-py/HEAD/docs/SearchIncidentsData.md -------------------------------------------------------------------------------- /docs/Section.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demisto/demisto-py/HEAD/docs/Section.md -------------------------------------------------------------------------------- /docs/SectionItem.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demisto/demisto-py/HEAD/docs/SectionItem.md -------------------------------------------------------------------------------- /docs/Severity.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demisto/demisto-py/HEAD/docs/Severity.md -------------------------------------------------------------------------------- /docs/StatsQueryResponse.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demisto/demisto-py/HEAD/docs/StatsQueryResponse.md -------------------------------------------------------------------------------- /docs/StatsTextResponse.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demisto/demisto-py/HEAD/docs/StatsTextResponse.md -------------------------------------------------------------------------------- /docs/StatsTrendsResponse.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demisto/demisto-py/HEAD/docs/StatsTrendsResponse.md -------------------------------------------------------------------------------- /docs/System.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demisto/demisto-py/HEAD/docs/System.md -------------------------------------------------------------------------------- /docs/SystemAgent.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demisto/demisto-py/HEAD/docs/SystemAgent.md -------------------------------------------------------------------------------- /docs/Task.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demisto/demisto-py/HEAD/docs/Task.md -------------------------------------------------------------------------------- /docs/TaskCondition.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demisto/demisto-py/HEAD/docs/TaskCondition.md -------------------------------------------------------------------------------- /docs/TaskLoop.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demisto/demisto-py/HEAD/docs/TaskLoop.md -------------------------------------------------------------------------------- /docs/TaskState.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demisto/demisto-py/HEAD/docs/TaskState.md -------------------------------------------------------------------------------- /docs/TaskType.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demisto/demisto-py/HEAD/docs/TaskType.md -------------------------------------------------------------------------------- /docs/TaskView.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demisto/demisto-py/HEAD/docs/TaskView.md -------------------------------------------------------------------------------- /docs/TermLocationMap.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demisto/demisto-py/HEAD/docs/TermLocationMap.md -------------------------------------------------------------------------------- /docs/TerminalOptions.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demisto/demisto-py/HEAD/docs/TerminalOptions.md -------------------------------------------------------------------------------- /docs/TimerAction.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demisto/demisto-py/HEAD/docs/TimerAction.md -------------------------------------------------------------------------------- /docs/TimerTrigger.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demisto/demisto-py/HEAD/docs/TimerTrigger.md -------------------------------------------------------------------------------- /docs/TransformerOperatorID.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demisto/demisto-py/HEAD/docs/TransformerOperatorID.md -------------------------------------------------------------------------------- /docs/UpdateDataBatch.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demisto/demisto-py/HEAD/docs/UpdateDataBatch.md -------------------------------------------------------------------------------- /docs/UpdateEntry.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demisto/demisto-py/HEAD/docs/UpdateEntry.md -------------------------------------------------------------------------------- /docs/UpdateEntryTags.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demisto/demisto-py/HEAD/docs/UpdateEntryTags.md -------------------------------------------------------------------------------- /docs/UpdateIndicatorReputationData.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demisto/demisto-py/HEAD/docs/UpdateIndicatorReputationData.md -------------------------------------------------------------------------------- /docs/UpdateResponse.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demisto/demisto-py/HEAD/docs/UpdateResponse.md -------------------------------------------------------------------------------- /docs/UploadedEntry.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demisto/demisto-py/HEAD/docs/UploadedEntry.md -------------------------------------------------------------------------------- /docs/Version.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demisto/demisto-py/HEAD/docs/Version.md -------------------------------------------------------------------------------- /docs/Widget.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demisto/demisto-py/HEAD/docs/Widget.md -------------------------------------------------------------------------------- /docs/WidgetCell.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demisto/demisto-py/HEAD/docs/WidgetCell.md -------------------------------------------------------------------------------- /docs/WidgetCells.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demisto/demisto-py/HEAD/docs/WidgetCells.md -------------------------------------------------------------------------------- /examples/batch_util_example.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demisto/demisto-py/HEAD/examples/batch_util_example.py -------------------------------------------------------------------------------- /examples/create_incident_example.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demisto/demisto-py/HEAD/examples/create_incident_example.py -------------------------------------------------------------------------------- /examples/download_file_example.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demisto/demisto-py/HEAD/examples/download_file_example.py -------------------------------------------------------------------------------- /examples/incidents_search_example.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demisto/demisto-py/HEAD/examples/incidents_search_example.py -------------------------------------------------------------------------------- /examples/indicators_search_example.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demisto/demisto-py/HEAD/examples/indicators_search_example.py -------------------------------------------------------------------------------- /examples/update_automation_example.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demisto/demisto-py/HEAD/examples/update_automation_example.py -------------------------------------------------------------------------------- /examples/widget_upload.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demisto/demisto-py/HEAD/examples/widget_upload.py -------------------------------------------------------------------------------- /gen-code.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demisto/demisto-py/HEAD/gen-code.sh -------------------------------------------------------------------------------- /poetry.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demisto/demisto-py/HEAD/poetry.lock -------------------------------------------------------------------------------- /poetry.toml: -------------------------------------------------------------------------------- 1 | [virtualenvs] 2 | in-project = true 3 | -------------------------------------------------------------------------------- /pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demisto/demisto-py/HEAD/pyproject.toml -------------------------------------------------------------------------------- /server_api_swagger.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demisto/demisto-py/HEAD/server_api_swagger.json -------------------------------------------------------------------------------- /swagger-config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demisto/demisto-py/HEAD/swagger-config.json -------------------------------------------------------------------------------- /tests/examples_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demisto/demisto-py/HEAD/tests/examples_test.py -------------------------------------------------------------------------------- /tests/mocks_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demisto/demisto-py/HEAD/tests/mocks_test.py -------------------------------------------------------------------------------- /tests/tests_data/layout-details-test-V2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demisto/demisto-py/HEAD/tests/tests_data/layout-details-test-V2.json -------------------------------------------------------------------------------- /tests/tests_data/layoutscontainer-test.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demisto/demisto-py/HEAD/tests/tests_data/layoutscontainer-test.json -------------------------------------------------------------------------------- /verify.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/demisto/demisto-py/HEAD/verify.sh --------------------------------------------------------------------------------