├── .codecov.yml ├── .editorconfig ├── .github ├── ISSUE_TEMPLATE │ ├── bug_report.md │ └── feature_request.md ├── PULL_REQUEST_TEMPLATE.md ├── draft-release-notes-config.yml └── workflows │ ├── draft-release-notes-workflow.yml │ ├── multi-node-test-workflow.yml │ ├── release-workflow.yml │ └── test-and-build-workflow.yml ├── .gitignore ├── CODE_OF_CONDUCT.md ├── CONTRIBUTING.md ├── LICENSE ├── NOTICE ├── README.md ├── detekt.yml ├── docs ├── rfc.md ├── rollup-rfc.md └── transform-rfc.md ├── gradle.properties ├── gradle └── wrapper │ ├── gradle-wrapper.jar │ └── gradle-wrapper.properties ├── gradlew ├── gradlew.bat ├── release-notes ├── create_release_notes.py ├── opendistro-for-elasticsearch-index-management.release-notes-1.10.0.0.md ├── opendistro-for-elasticsearch-index-management.release-notes-1.10.1.0.md ├── opendistro-for-elasticsearch-index-management.release-notes-1.10.1.1.md ├── opendistro-for-elasticsearch-index-management.release-notes-1.11.0.0.md ├── opendistro-for-elasticsearch-index-management.release-notes-1.12.0.0.md ├── opendistro-for-elasticsearch-index-management.release-notes-1.12.0.1.md ├── opendistro-for-elasticsearch-index-management.release-notes-1.13.0.0.md ├── opendistro-for-elasticsearch-index-management.release-notes-1.13.1.0.md ├── opendistro-for-elasticsearch-index-management.release-notes-1.13.2.0.md ├── opendistro-for-elasticsearch-index-management.release-notes-1.3.0.0.md ├── opendistro-for-elasticsearch-index-management.release-notes-1.4.0.0.md ├── opendistro-for-elasticsearch-index-management.release-notes-1.6.0.0.md ├── opendistro-for-elasticsearch-index-management.release-notes-1.7.0.0.md ├── opendistro-for-elasticsearch-index-management.release-notes-1.8.0.0.md ├── opendistro-for-elasticsearch-index-management.release-notes-1.9.0.0.md └── opendistro-for-elasticsearch-index-management.release-notes-1.9.0.1.md ├── settings.gradle ├── src ├── main │ ├── kotlin │ │ └── com │ │ │ └── amazon │ │ │ └── opendistroforelasticsearch │ │ │ └── indexmanagement │ │ │ ├── IndexManagementIndices.kt │ │ │ ├── IndexManagementPlugin.kt │ │ │ ├── IndexManagementRunner.kt │ │ │ ├── elasticapi │ │ │ └── ElasticExtensions.kt │ │ │ ├── indexstatemanagement │ │ │ ├── ISMTemplateService.kt │ │ │ ├── IndexStateManagementHistory.kt │ │ │ ├── ManagedIndexCoordinator.kt │ │ │ ├── ManagedIndexRunner.kt │ │ │ ├── MetadataService.kt │ │ │ ├── SkipExecution.kt │ │ │ ├── action │ │ │ │ ├── Action.kt │ │ │ │ ├── AllocationAction.kt │ │ │ │ ├── CloseAction.kt │ │ │ │ ├── DeleteAction.kt │ │ │ │ ├── ForceMergeAction.kt │ │ │ │ ├── IndexPriorityAction.kt │ │ │ │ ├── NotificationAction.kt │ │ │ │ ├── OpenAction.kt │ │ │ │ ├── ReadOnlyAction.kt │ │ │ │ ├── ReadWriteAction.kt │ │ │ │ ├── ReplicaCountAction.kt │ │ │ │ ├── RolloverAction.kt │ │ │ │ ├── RollupAction.kt │ │ │ │ ├── SnapshotAction.kt │ │ │ │ └── TransitionsAction.kt │ │ │ ├── elasticapi │ │ │ │ └── ElasticExtensions.kt │ │ │ ├── model │ │ │ │ ├── ChangePolicy.kt │ │ │ │ ├── ErrorNotification.kt │ │ │ │ ├── ISMTemplate.kt │ │ │ │ ├── ManagedIndexConfig.kt │ │ │ │ ├── ManagedIndexMetaData.kt │ │ │ │ ├── Policy.kt │ │ │ │ ├── SearchParams.kt │ │ │ │ ├── State.kt │ │ │ │ ├── StateFilter.kt │ │ │ │ ├── Transition.kt │ │ │ │ ├── action │ │ │ │ │ ├── ActionConfig.kt │ │ │ │ │ ├── ActionRetry.kt │ │ │ │ │ ├── ActionTimeout.kt │ │ │ │ │ ├── AllocationActionConfig.kt │ │ │ │ │ ├── CloseActionConfig.kt │ │ │ │ │ ├── DeleteActionConfig.kt │ │ │ │ │ ├── ForceMergeActionConfig.kt │ │ │ │ │ ├── IndexPriorityActionConfig.kt │ │ │ │ │ ├── NotificationActionConfig.kt │ │ │ │ │ ├── OpenActionConfig.kt │ │ │ │ │ ├── ReadOnlyActionConfig.kt │ │ │ │ │ ├── ReadWriteActionConfig.kt │ │ │ │ │ ├── ReplicaCountActionConfig.kt │ │ │ │ │ ├── RolloverActionConfig.kt │ │ │ │ │ ├── RollupActionConfig.kt │ │ │ │ │ ├── SnapshotActionConfig.kt │ │ │ │ │ └── TransitionsActionConfig.kt │ │ │ │ ├── coordinator │ │ │ │ │ ├── ClusterStateManagedIndexConfig.kt │ │ │ │ │ └── SweptManagedIndexConfig.kt │ │ │ │ ├── destination │ │ │ │ │ ├── Chime.kt │ │ │ │ │ ├── CustomWebhook.kt │ │ │ │ │ ├── Destination.kt │ │ │ │ │ └── Slack.kt │ │ │ │ └── managedindexmetadata │ │ │ │ │ ├── ActionMetaData.kt │ │ │ │ │ ├── ActionProperties.kt │ │ │ │ │ ├── PolicyRetryInfoMetaData.kt │ │ │ │ │ ├── StateMetaData.kt │ │ │ │ │ └── StepMetaData.kt │ │ │ ├── resthandler │ │ │ │ ├── RestAddPolicyAction.kt │ │ │ │ ├── RestChangePolicyAction.kt │ │ │ │ ├── RestDeletePolicyAction.kt │ │ │ │ ├── RestExplainAction.kt │ │ │ │ ├── RestGetPolicyAction.kt │ │ │ │ ├── RestIndexPolicyAction.kt │ │ │ │ ├── RestRemovePolicyAction.kt │ │ │ │ └── RestRetryFailedManagedIndexAction.kt │ │ │ ├── settings │ │ │ │ └── ManagedIndexSettings.kt │ │ │ ├── step │ │ │ │ ├── Step.kt │ │ │ │ ├── allocation │ │ │ │ │ └── AttemptAllocationStep.kt │ │ │ │ ├── close │ │ │ │ │ └── AttemptCloseStep.kt │ │ │ │ ├── delete │ │ │ │ │ └── AttemptDeleteStep.kt │ │ │ │ ├── forcemerge │ │ │ │ │ ├── AttemptCallForceMergeStep.kt │ │ │ │ │ ├── AttemptSetReadOnlyStep.kt │ │ │ │ │ └── WaitForForceMergeStep.kt │ │ │ │ ├── indexpriority │ │ │ │ │ └── AttemptSetIndexPriorityStep.kt │ │ │ │ ├── notification │ │ │ │ │ └── AttemptNotificationStep.kt │ │ │ │ ├── open │ │ │ │ │ └── AttemptOpenStep.kt │ │ │ │ ├── readonly │ │ │ │ │ └── SetReadOnlyStep.kt │ │ │ │ ├── readwrite │ │ │ │ │ └── SetReadWriteStep.kt │ │ │ │ ├── replicacount │ │ │ │ │ └── AttemptSetReplicaCountStep.kt │ │ │ │ ├── rollover │ │ │ │ │ └── AttemptRolloverStep.kt │ │ │ │ ├── rollup │ │ │ │ │ ├── AttemptCreateRollupJobStep.kt │ │ │ │ │ └── WaitForRollupCompletionStep.kt │ │ │ │ ├── snapshot │ │ │ │ │ ├── AttemptSnapshotStep.kt │ │ │ │ │ └── WaitForSnapshotStep.kt │ │ │ │ └── transition │ │ │ │ │ └── AttemptTransitionStep.kt │ │ │ ├── transport │ │ │ │ └── action │ │ │ │ │ ├── ISMStatusResponse.kt │ │ │ │ │ ├── addpolicy │ │ │ │ │ ├── AddPolicyAction.kt │ │ │ │ │ ├── AddPolicyRequest.kt │ │ │ │ │ └── TransportAddPolicyAction.kt │ │ │ │ │ ├── changepolicy │ │ │ │ │ ├── ChangePolicyAction.kt │ │ │ │ │ ├── ChangePolicyRequest.kt │ │ │ │ │ └── TransportChangePolicyAction.kt │ │ │ │ │ ├── deletepolicy │ │ │ │ │ ├── DeletePolicyAction.kt │ │ │ │ │ ├── DeletePolicyRequest.kt │ │ │ │ │ └── TransportDeletePolicyAction.kt │ │ │ │ │ ├── explain │ │ │ │ │ ├── ExplainAction.kt │ │ │ │ │ ├── ExplainAllResponse.kt │ │ │ │ │ ├── ExplainRequest.kt │ │ │ │ │ ├── ExplainResponse.kt │ │ │ │ │ └── TransportExplainAction.kt │ │ │ │ │ ├── getpolicy │ │ │ │ │ ├── GetPoliciesAction.kt │ │ │ │ │ ├── GetPoliciesRequest.kt │ │ │ │ │ ├── GetPoliciesResponse.kt │ │ │ │ │ ├── GetPolicyAction.kt │ │ │ │ │ ├── GetPolicyRequest.kt │ │ │ │ │ ├── GetPolicyResponse.kt │ │ │ │ │ ├── TransportGetPoliciesAction.kt │ │ │ │ │ └── TransportGetPolicyAction.kt │ │ │ │ │ ├── indexpolicy │ │ │ │ │ ├── IndexPolicyAction.kt │ │ │ │ │ ├── IndexPolicyRequest.kt │ │ │ │ │ ├── IndexPolicyResponse.kt │ │ │ │ │ └── TransportIndexPolicyAction.kt │ │ │ │ │ ├── removepolicy │ │ │ │ │ ├── RemovePolicyAction.kt │ │ │ │ │ ├── RemovePolicyRequest.kt │ │ │ │ │ └── TransportRemovePolicyAction.kt │ │ │ │ │ ├── retryfailedmanagedindex │ │ │ │ │ ├── RetryFailedManagedIndexAction.kt │ │ │ │ │ ├── RetryFailedManagedIndexRequest.kt │ │ │ │ │ └── TransportRetryFailedManagedIndexAction.kt │ │ │ │ │ └── updateindexmetadata │ │ │ │ │ ├── TransportUpdateManagedIndexMetaDataAction.kt │ │ │ │ │ ├── UpdateManagedIndexMetaDataAction.kt │ │ │ │ │ └── UpdateManagedIndexMetaDataRequest.kt │ │ │ └── util │ │ │ │ ├── DestinationType.kt │ │ │ │ ├── ManagedIndexUtils.kt │ │ │ │ └── RestHandlerUtils.kt │ │ │ ├── refreshanalyzer │ │ │ ├── RefreshSearchAnalyzerAction.kt │ │ │ ├── RefreshSearchAnalyzerRequest.kt │ │ │ ├── RefreshSearchAnalyzerResponse.kt │ │ │ ├── RefreshSearchAnalyzerShardResponse.kt │ │ │ ├── RestRefreshSearchAnalyzerAction.kt │ │ │ └── TransportRefreshSearchAnalyzerAction.kt │ │ │ ├── rollup │ │ │ ├── RollupIndexer.kt │ │ │ ├── RollupMapperService.kt │ │ │ ├── RollupMetadataService.kt │ │ │ ├── RollupRunner.kt │ │ │ ├── RollupSearchService.kt │ │ │ ├── action │ │ │ │ ├── delete │ │ │ │ │ ├── DeleteRollupAction.kt │ │ │ │ │ ├── DeleteRollupRequest.kt │ │ │ │ │ └── TransportDeleteRollupAction.kt │ │ │ │ ├── explain │ │ │ │ │ ├── ExplainRollupAction.kt │ │ │ │ │ ├── ExplainRollupRequest.kt │ │ │ │ │ ├── ExplainRollupResponse.kt │ │ │ │ │ └── TransportExplainRollupAction.kt │ │ │ │ ├── get │ │ │ │ │ ├── GetRollupAction.kt │ │ │ │ │ ├── GetRollupRequest.kt │ │ │ │ │ ├── GetRollupResponse.kt │ │ │ │ │ ├── GetRollupsAction.kt │ │ │ │ │ ├── GetRollupsRequest.kt │ │ │ │ │ ├── GetRollupsResponse.kt │ │ │ │ │ ├── TransportGetRollupAction.kt │ │ │ │ │ └── TransportGetRollupsAction.kt │ │ │ │ ├── index │ │ │ │ │ ├── IndexRollupAction.kt │ │ │ │ │ ├── IndexRollupRequest.kt │ │ │ │ │ ├── IndexRollupResponse.kt │ │ │ │ │ └── TransportIndexRollupAction.kt │ │ │ │ ├── mapping │ │ │ │ │ ├── TransportUpdateRollupMappingAction.kt │ │ │ │ │ ├── UpdateRollupMappingAction.kt │ │ │ │ │ └── UpdateRollupMappingRequest.kt │ │ │ │ ├── start │ │ │ │ │ ├── StartRollupAction.kt │ │ │ │ │ ├── StartRollupRequest.kt │ │ │ │ │ └── TransportStartRollupAction.kt │ │ │ │ └── stop │ │ │ │ │ ├── StopRollupAction.kt │ │ │ │ │ ├── StopRollupRequest.kt │ │ │ │ │ └── TransportStopRollupAction.kt │ │ │ ├── actionfilter │ │ │ │ ├── FieldCapsFilter.kt │ │ │ │ └── SerDeHelper.kt │ │ │ ├── interceptor │ │ │ │ └── RollupInterceptor.kt │ │ │ ├── model │ │ │ │ ├── ExplainRollup.kt │ │ │ │ ├── ISMRollup.kt │ │ │ │ ├── Rollup.kt │ │ │ │ ├── RollupFieldMapping.kt │ │ │ │ ├── RollupMetadata.kt │ │ │ │ ├── RollupMetrics.kt │ │ │ │ ├── dimension │ │ │ │ │ ├── DateHistogram.kt │ │ │ │ │ ├── Dimension.kt │ │ │ │ │ ├── Histogram.kt │ │ │ │ │ └── Terms.kt │ │ │ │ └── metric │ │ │ │ │ ├── Average.kt │ │ │ │ │ ├── Max.kt │ │ │ │ │ ├── Metric.kt │ │ │ │ │ ├── Min.kt │ │ │ │ │ ├── Sum.kt │ │ │ │ │ └── ValueCount.kt │ │ │ ├── resthandler │ │ │ │ ├── RestDeleteRollupAction.kt │ │ │ │ ├── RestExplainRollupAction.kt │ │ │ │ ├── RestGetRollupAction.kt │ │ │ │ ├── RestIndexRollupAction.kt │ │ │ │ ├── RestStartRollupAction.kt │ │ │ │ └── RestStopRollupAction.kt │ │ │ ├── settings │ │ │ │ └── RollupSettings.kt │ │ │ └── util │ │ │ │ └── RollupUtils.kt │ │ │ └── util │ │ │ ├── IndexManagementException.kt │ │ │ ├── IndexUtils.kt │ │ │ ├── OpenForTesting.kt │ │ │ └── RestHandlerUtils.kt │ ├── plugin-metadata │ │ └── plugin-security.policy │ └── resources │ │ ├── META-INF │ │ └── services │ │ │ └── com.amazon.opendistroforelasticsearch.jobscheduler.spi.JobSchedulerExtension │ │ └── mappings │ │ ├── opendistro-ism-config.json │ │ ├── opendistro-ism-history.json │ │ └── opendistro-rollup-target.json └── test │ ├── kotlin │ └── com │ │ └── amazon │ │ └── opendistroforelasticsearch │ │ └── indexmanagement │ │ ├── IndexManagementIndicesIT.kt │ │ ├── IndexManagementRestTestCase.kt │ │ ├── ODFERestTestCase.kt │ │ ├── TestHelpers.kt │ │ ├── indexstatemanagement │ │ ├── ISMTemplateMigrationIT.kt │ │ ├── IndexStateManagementIntegTestCase.kt │ │ ├── IndexStateManagementRestTestCase.kt │ │ ├── ManagedIndexConfigTests.kt │ │ ├── MetadataRegressionIT.kt │ │ ├── TestHelpers.kt │ │ ├── action │ │ │ ├── ActionRetryIT.kt │ │ │ ├── ActionTimeoutIT.kt │ │ │ ├── AllocationActionIT.kt │ │ │ ├── CloseActionIT.kt │ │ │ ├── ForceMergeActionIT.kt │ │ │ ├── IndexPriorityActionIT.kt │ │ │ ├── IndexStateManagementHistoryIT.kt │ │ │ ├── NotificationActionIT.kt │ │ │ ├── OpenActionIT.kt │ │ │ ├── ReadOnlyActionIT.kt │ │ │ ├── ReadWriteActionIT.kt │ │ │ ├── ReplicaCountActionIT.kt │ │ │ ├── RolloverActionIT.kt │ │ │ ├── RollupActionIT.kt │ │ │ ├── SnapshotActionIT.kt │ │ │ └── TransitionActionIT.kt │ │ ├── coordinator │ │ │ ├── ManagedIndexCoordinatorIT.kt │ │ │ ├── ManagedIndexCoordinatorTests.kt │ │ │ └── SkipExecutionTests.kt │ │ ├── model │ │ │ ├── ActionConfigTests.kt │ │ │ ├── ActionPropertiesTests.kt │ │ │ ├── ConditionsTests.kt │ │ │ ├── DestinationTests.kt │ │ │ ├── ISMTemplateTests.kt │ │ │ ├── ManagedIndexMetaDataTests.kt │ │ │ ├── PolicyTests.kt │ │ │ ├── StateTests.kt │ │ │ └── XContentTests.kt │ │ ├── resthandler │ │ │ ├── ISMTemplateRestAPIIT.kt │ │ │ ├── IndexStateManagementRestApiIT.kt │ │ │ ├── RestAddPolicyActionIT.kt │ │ │ ├── RestChangePolicyActionIT.kt │ │ │ ├── RestExplainActionIT.kt │ │ │ ├── RestRemovePolicyActionIT.kt │ │ │ └── RestRetryFailedManagedIndexActionIT.kt │ │ ├── runner │ │ │ ├── ManagedIndexRunnerIT.kt │ │ │ └── ManagedIndexRunnerTests.kt │ │ ├── step │ │ │ ├── AttemptCloseStepTests.kt │ │ │ ├── AttemptCreateRollupJobStepTests.kt │ │ │ ├── AttemptDeleteStepTests.kt │ │ │ ├── AttemptOpenStepTests.kt │ │ │ ├── AttemptSetIndexPriorityStepTests.kt │ │ │ ├── AttemptSetReplicaCountStepTests.kt │ │ │ ├── AttemptSnapshotStepTests.kt │ │ │ ├── AttemptTransitionStepTests.kt │ │ │ ├── SetReadOnlyStepTests.kt │ │ │ ├── SetReadWriteStepTests.kt │ │ │ ├── WaitForRollupCompletionStepTests.kt │ │ │ └── WaitForSnapshotStepTests.kt │ │ ├── transport │ │ │ └── action │ │ │ │ ├── ActionTests.kt │ │ │ │ ├── ISMStatusResponseTests.kt │ │ │ │ ├── addpolicy │ │ │ │ └── AddPolicyRequestTests.kt │ │ │ │ ├── changepolicy │ │ │ │ └── ChangePolicyRequestTests.kt │ │ │ │ ├── deletepolicy │ │ │ │ └── DeletePolicyRequestTests.kt │ │ │ │ ├── explain │ │ │ │ ├── ExplainRequestTests.kt │ │ │ │ └── ExplainResponseTests.kt │ │ │ │ ├── getpolicy │ │ │ │ ├── GetPoliciesRequestTests.kt │ │ │ │ ├── GetPoliciesResponseTests.kt │ │ │ │ ├── GetPolicyRequestTests.kt │ │ │ │ └── GetPolicyResponseTests.kt │ │ │ │ ├── indexpolicy │ │ │ │ ├── IndexPolicyRequestTests.kt │ │ │ │ └── IndexPolicyResponseTests.kt │ │ │ │ ├── removepolicy │ │ │ │ └── RemovePolicyRequestTests.kt │ │ │ │ └── retryfailedmanagedindex │ │ │ │ └── RetryFailedManagedIndexRequestTests.kt │ │ └── util │ │ │ └── ManagedIndexUtilsTests.kt │ │ ├── refreshanalyzer │ │ ├── RefreshSearchAnalyzerActionIT.kt │ │ ├── RefreshSearchAnalyzerResponseTests.kt │ │ ├── RefreshSearchAnalyzerShardResponseTests.kt │ │ └── RestRefreshSearchAnalyzerActionIT.kt │ │ ├── rollup │ │ ├── RollupMapperServiceTests.kt │ │ ├── RollupMetadataServiceTests.kt │ │ ├── RollupRestTestCase.kt │ │ ├── TestHelpers.kt │ │ ├── action │ │ │ ├── ActionTests.kt │ │ │ ├── RequestTests.kt │ │ │ └── ResponseTests.kt │ │ ├── actionfilter │ │ │ ├── FieldCapsFilterIT.kt │ │ │ ├── FieldCapsFilterTests.kt │ │ │ └── SerDeTests.kt │ │ ├── interceptor │ │ │ └── RollupInterceptorIT.kt │ │ ├── model │ │ │ ├── DimensionTests.kt │ │ │ ├── ISMRollupTests.kt │ │ │ ├── RollupFieldMappingTests.kt │ │ │ ├── RollupMetricsTests.kt │ │ │ ├── RollupTests.kt │ │ │ ├── WriteableTests.kt │ │ │ └── XContentTests.kt │ │ ├── resthandler │ │ │ ├── RestDeleteRollupActionIT.kt │ │ │ ├── RestExplainRollupActionIT.kt │ │ │ ├── RestGetRollupActionIT.kt │ │ │ ├── RestIndexRollupActionIT.kt │ │ │ ├── RestStartRollupActionIT.kt │ │ │ └── RestStopRollupActionIT.kt │ │ ├── runner │ │ │ └── RollupRunnerIT.kt │ │ └── util │ │ │ └── RollupUtilsTests.kt │ │ └── util │ │ └── IndexUtilsTests.kt │ └── resources │ ├── data │ └── nyc_5000.ndjson │ ├── index-management │ └── opendistro-index-management-1.13.2.0.zip │ ├── job-scheduler │ └── opendistro-job-scheduler-1.13.0.0.zip │ ├── mappings │ ├── cached-opendistro-ism-config.json │ ├── cached-opendistro-ism-history.json │ └── kibana-sample-data.json │ └── security │ ├── esnode-key.pem │ ├── esnode.pem │ ├── kirk-key.pem │ ├── kirk.pem │ ├── root-ca.pem │ ├── sample.pem │ └── test-kirk.jks └── worksheets ├── ism └── create.http └── rollups ├── comparisons.http ├── create.http ├── kibana_sample_data.http ├── search_test.http ├── secured ├── nyc.http ├── security_calls.http └── security_setup.http └── unsecured └── nyc.http /.codecov.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opendistro-for-elasticsearch/index-management/HEAD/.codecov.yml -------------------------------------------------------------------------------- /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opendistro-for-elasticsearch/index-management/HEAD/.editorconfig -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/bug_report.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opendistro-for-elasticsearch/index-management/HEAD/.github/ISSUE_TEMPLATE/bug_report.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/feature_request.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opendistro-for-elasticsearch/index-management/HEAD/.github/ISSUE_TEMPLATE/feature_request.md -------------------------------------------------------------------------------- /.github/PULL_REQUEST_TEMPLATE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opendistro-for-elasticsearch/index-management/HEAD/.github/PULL_REQUEST_TEMPLATE.md -------------------------------------------------------------------------------- /.github/draft-release-notes-config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opendistro-for-elasticsearch/index-management/HEAD/.github/draft-release-notes-config.yml -------------------------------------------------------------------------------- /.github/workflows/draft-release-notes-workflow.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opendistro-for-elasticsearch/index-management/HEAD/.github/workflows/draft-release-notes-workflow.yml -------------------------------------------------------------------------------- /.github/workflows/multi-node-test-workflow.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opendistro-for-elasticsearch/index-management/HEAD/.github/workflows/multi-node-test-workflow.yml -------------------------------------------------------------------------------- /.github/workflows/release-workflow.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opendistro-for-elasticsearch/index-management/HEAD/.github/workflows/release-workflow.yml -------------------------------------------------------------------------------- /.github/workflows/test-and-build-workflow.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opendistro-for-elasticsearch/index-management/HEAD/.github/workflows/test-and-build-workflow.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opendistro-for-elasticsearch/index-management/HEAD/.gitignore -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opendistro-for-elasticsearch/index-management/HEAD/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opendistro-for-elasticsearch/index-management/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opendistro-for-elasticsearch/index-management/HEAD/LICENSE -------------------------------------------------------------------------------- /NOTICE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opendistro-for-elasticsearch/index-management/HEAD/NOTICE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opendistro-for-elasticsearch/index-management/HEAD/README.md -------------------------------------------------------------------------------- /detekt.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opendistro-for-elasticsearch/index-management/HEAD/detekt.yml -------------------------------------------------------------------------------- /docs/rfc.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opendistro-for-elasticsearch/index-management/HEAD/docs/rfc.md -------------------------------------------------------------------------------- /docs/rollup-rfc.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opendistro-for-elasticsearch/index-management/HEAD/docs/rollup-rfc.md -------------------------------------------------------------------------------- /docs/transform-rfc.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opendistro-for-elasticsearch/index-management/HEAD/docs/transform-rfc.md -------------------------------------------------------------------------------- /gradle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opendistro-for-elasticsearch/index-management/HEAD/gradle.properties -------------------------------------------------------------------------------- /gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opendistro-for-elasticsearch/index-management/HEAD/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opendistro-for-elasticsearch/index-management/HEAD/gradle/wrapper/gradle-wrapper.properties -------------------------------------------------------------------------------- /gradlew: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opendistro-for-elasticsearch/index-management/HEAD/gradlew -------------------------------------------------------------------------------- /gradlew.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opendistro-for-elasticsearch/index-management/HEAD/gradlew.bat -------------------------------------------------------------------------------- /release-notes/create_release_notes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opendistro-for-elasticsearch/index-management/HEAD/release-notes/create_release_notes.py -------------------------------------------------------------------------------- /release-notes/opendistro-for-elasticsearch-index-management.release-notes-1.10.0.0.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opendistro-for-elasticsearch/index-management/HEAD/release-notes/opendistro-for-elasticsearch-index-management.release-notes-1.10.0.0.md -------------------------------------------------------------------------------- /release-notes/opendistro-for-elasticsearch-index-management.release-notes-1.10.1.0.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opendistro-for-elasticsearch/index-management/HEAD/release-notes/opendistro-for-elasticsearch-index-management.release-notes-1.10.1.0.md -------------------------------------------------------------------------------- /release-notes/opendistro-for-elasticsearch-index-management.release-notes-1.10.1.1.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opendistro-for-elasticsearch/index-management/HEAD/release-notes/opendistro-for-elasticsearch-index-management.release-notes-1.10.1.1.md -------------------------------------------------------------------------------- /release-notes/opendistro-for-elasticsearch-index-management.release-notes-1.11.0.0.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opendistro-for-elasticsearch/index-management/HEAD/release-notes/opendistro-for-elasticsearch-index-management.release-notes-1.11.0.0.md -------------------------------------------------------------------------------- /release-notes/opendistro-for-elasticsearch-index-management.release-notes-1.12.0.0.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opendistro-for-elasticsearch/index-management/HEAD/release-notes/opendistro-for-elasticsearch-index-management.release-notes-1.12.0.0.md -------------------------------------------------------------------------------- /release-notes/opendistro-for-elasticsearch-index-management.release-notes-1.12.0.1.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opendistro-for-elasticsearch/index-management/HEAD/release-notes/opendistro-for-elasticsearch-index-management.release-notes-1.12.0.1.md -------------------------------------------------------------------------------- /release-notes/opendistro-for-elasticsearch-index-management.release-notes-1.13.0.0.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opendistro-for-elasticsearch/index-management/HEAD/release-notes/opendistro-for-elasticsearch-index-management.release-notes-1.13.0.0.md -------------------------------------------------------------------------------- /release-notes/opendistro-for-elasticsearch-index-management.release-notes-1.13.1.0.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opendistro-for-elasticsearch/index-management/HEAD/release-notes/opendistro-for-elasticsearch-index-management.release-notes-1.13.1.0.md -------------------------------------------------------------------------------- /release-notes/opendistro-for-elasticsearch-index-management.release-notes-1.13.2.0.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opendistro-for-elasticsearch/index-management/HEAD/release-notes/opendistro-for-elasticsearch-index-management.release-notes-1.13.2.0.md -------------------------------------------------------------------------------- /release-notes/opendistro-for-elasticsearch-index-management.release-notes-1.3.0.0.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opendistro-for-elasticsearch/index-management/HEAD/release-notes/opendistro-for-elasticsearch-index-management.release-notes-1.3.0.0.md -------------------------------------------------------------------------------- /release-notes/opendistro-for-elasticsearch-index-management.release-notes-1.4.0.0.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opendistro-for-elasticsearch/index-management/HEAD/release-notes/opendistro-for-elasticsearch-index-management.release-notes-1.4.0.0.md -------------------------------------------------------------------------------- /release-notes/opendistro-for-elasticsearch-index-management.release-notes-1.6.0.0.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opendistro-for-elasticsearch/index-management/HEAD/release-notes/opendistro-for-elasticsearch-index-management.release-notes-1.6.0.0.md -------------------------------------------------------------------------------- /release-notes/opendistro-for-elasticsearch-index-management.release-notes-1.7.0.0.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opendistro-for-elasticsearch/index-management/HEAD/release-notes/opendistro-for-elasticsearch-index-management.release-notes-1.7.0.0.md -------------------------------------------------------------------------------- /release-notes/opendistro-for-elasticsearch-index-management.release-notes-1.8.0.0.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opendistro-for-elasticsearch/index-management/HEAD/release-notes/opendistro-for-elasticsearch-index-management.release-notes-1.8.0.0.md -------------------------------------------------------------------------------- /release-notes/opendistro-for-elasticsearch-index-management.release-notes-1.9.0.0.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opendistro-for-elasticsearch/index-management/HEAD/release-notes/opendistro-for-elasticsearch-index-management.release-notes-1.9.0.0.md -------------------------------------------------------------------------------- /release-notes/opendistro-for-elasticsearch-index-management.release-notes-1.9.0.1.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opendistro-for-elasticsearch/index-management/HEAD/release-notes/opendistro-for-elasticsearch-index-management.release-notes-1.9.0.1.md -------------------------------------------------------------------------------- /settings.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opendistro-for-elasticsearch/index-management/HEAD/settings.gradle -------------------------------------------------------------------------------- /src/main/kotlin/com/amazon/opendistroforelasticsearch/indexmanagement/IndexManagementIndices.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opendistro-for-elasticsearch/index-management/HEAD/src/main/kotlin/com/amazon/opendistroforelasticsearch/indexmanagement/IndexManagementIndices.kt -------------------------------------------------------------------------------- /src/main/kotlin/com/amazon/opendistroforelasticsearch/indexmanagement/IndexManagementPlugin.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opendistro-for-elasticsearch/index-management/HEAD/src/main/kotlin/com/amazon/opendistroforelasticsearch/indexmanagement/IndexManagementPlugin.kt -------------------------------------------------------------------------------- /src/main/kotlin/com/amazon/opendistroforelasticsearch/indexmanagement/IndexManagementRunner.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opendistro-for-elasticsearch/index-management/HEAD/src/main/kotlin/com/amazon/opendistroforelasticsearch/indexmanagement/IndexManagementRunner.kt -------------------------------------------------------------------------------- /src/main/kotlin/com/amazon/opendistroforelasticsearch/indexmanagement/elasticapi/ElasticExtensions.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opendistro-for-elasticsearch/index-management/HEAD/src/main/kotlin/com/amazon/opendistroforelasticsearch/indexmanagement/elasticapi/ElasticExtensions.kt -------------------------------------------------------------------------------- /src/main/kotlin/com/amazon/opendistroforelasticsearch/indexmanagement/indexstatemanagement/ISMTemplateService.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opendistro-for-elasticsearch/index-management/HEAD/src/main/kotlin/com/amazon/opendistroforelasticsearch/indexmanagement/indexstatemanagement/ISMTemplateService.kt -------------------------------------------------------------------------------- /src/main/kotlin/com/amazon/opendistroforelasticsearch/indexmanagement/indexstatemanagement/IndexStateManagementHistory.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opendistro-for-elasticsearch/index-management/HEAD/src/main/kotlin/com/amazon/opendistroforelasticsearch/indexmanagement/indexstatemanagement/IndexStateManagementHistory.kt -------------------------------------------------------------------------------- /src/main/kotlin/com/amazon/opendistroforelasticsearch/indexmanagement/indexstatemanagement/ManagedIndexCoordinator.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opendistro-for-elasticsearch/index-management/HEAD/src/main/kotlin/com/amazon/opendistroforelasticsearch/indexmanagement/indexstatemanagement/ManagedIndexCoordinator.kt -------------------------------------------------------------------------------- /src/main/kotlin/com/amazon/opendistroforelasticsearch/indexmanagement/indexstatemanagement/ManagedIndexRunner.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opendistro-for-elasticsearch/index-management/HEAD/src/main/kotlin/com/amazon/opendistroforelasticsearch/indexmanagement/indexstatemanagement/ManagedIndexRunner.kt -------------------------------------------------------------------------------- /src/main/kotlin/com/amazon/opendistroforelasticsearch/indexmanagement/indexstatemanagement/MetadataService.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opendistro-for-elasticsearch/index-management/HEAD/src/main/kotlin/com/amazon/opendistroforelasticsearch/indexmanagement/indexstatemanagement/MetadataService.kt -------------------------------------------------------------------------------- /src/main/kotlin/com/amazon/opendistroforelasticsearch/indexmanagement/indexstatemanagement/SkipExecution.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opendistro-for-elasticsearch/index-management/HEAD/src/main/kotlin/com/amazon/opendistroforelasticsearch/indexmanagement/indexstatemanagement/SkipExecution.kt -------------------------------------------------------------------------------- /src/main/kotlin/com/amazon/opendistroforelasticsearch/indexmanagement/indexstatemanagement/action/Action.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opendistro-for-elasticsearch/index-management/HEAD/src/main/kotlin/com/amazon/opendistroforelasticsearch/indexmanagement/indexstatemanagement/action/Action.kt -------------------------------------------------------------------------------- /src/main/kotlin/com/amazon/opendistroforelasticsearch/indexmanagement/indexstatemanagement/action/AllocationAction.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opendistro-for-elasticsearch/index-management/HEAD/src/main/kotlin/com/amazon/opendistroforelasticsearch/indexmanagement/indexstatemanagement/action/AllocationAction.kt -------------------------------------------------------------------------------- /src/main/kotlin/com/amazon/opendistroforelasticsearch/indexmanagement/indexstatemanagement/action/CloseAction.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opendistro-for-elasticsearch/index-management/HEAD/src/main/kotlin/com/amazon/opendistroforelasticsearch/indexmanagement/indexstatemanagement/action/CloseAction.kt -------------------------------------------------------------------------------- /src/main/kotlin/com/amazon/opendistroforelasticsearch/indexmanagement/indexstatemanagement/action/DeleteAction.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opendistro-for-elasticsearch/index-management/HEAD/src/main/kotlin/com/amazon/opendistroforelasticsearch/indexmanagement/indexstatemanagement/action/DeleteAction.kt -------------------------------------------------------------------------------- /src/main/kotlin/com/amazon/opendistroforelasticsearch/indexmanagement/indexstatemanagement/action/ForceMergeAction.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opendistro-for-elasticsearch/index-management/HEAD/src/main/kotlin/com/amazon/opendistroforelasticsearch/indexmanagement/indexstatemanagement/action/ForceMergeAction.kt -------------------------------------------------------------------------------- /src/main/kotlin/com/amazon/opendistroforelasticsearch/indexmanagement/indexstatemanagement/action/IndexPriorityAction.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opendistro-for-elasticsearch/index-management/HEAD/src/main/kotlin/com/amazon/opendistroforelasticsearch/indexmanagement/indexstatemanagement/action/IndexPriorityAction.kt -------------------------------------------------------------------------------- /src/main/kotlin/com/amazon/opendistroforelasticsearch/indexmanagement/indexstatemanagement/action/NotificationAction.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opendistro-for-elasticsearch/index-management/HEAD/src/main/kotlin/com/amazon/opendistroforelasticsearch/indexmanagement/indexstatemanagement/action/NotificationAction.kt -------------------------------------------------------------------------------- /src/main/kotlin/com/amazon/opendistroforelasticsearch/indexmanagement/indexstatemanagement/action/OpenAction.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opendistro-for-elasticsearch/index-management/HEAD/src/main/kotlin/com/amazon/opendistroforelasticsearch/indexmanagement/indexstatemanagement/action/OpenAction.kt -------------------------------------------------------------------------------- /src/main/kotlin/com/amazon/opendistroforelasticsearch/indexmanagement/indexstatemanagement/action/ReadOnlyAction.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opendistro-for-elasticsearch/index-management/HEAD/src/main/kotlin/com/amazon/opendistroforelasticsearch/indexmanagement/indexstatemanagement/action/ReadOnlyAction.kt -------------------------------------------------------------------------------- /src/main/kotlin/com/amazon/opendistroforelasticsearch/indexmanagement/indexstatemanagement/action/ReadWriteAction.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opendistro-for-elasticsearch/index-management/HEAD/src/main/kotlin/com/amazon/opendistroforelasticsearch/indexmanagement/indexstatemanagement/action/ReadWriteAction.kt -------------------------------------------------------------------------------- /src/main/kotlin/com/amazon/opendistroforelasticsearch/indexmanagement/indexstatemanagement/action/ReplicaCountAction.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opendistro-for-elasticsearch/index-management/HEAD/src/main/kotlin/com/amazon/opendistroforelasticsearch/indexmanagement/indexstatemanagement/action/ReplicaCountAction.kt -------------------------------------------------------------------------------- /src/main/kotlin/com/amazon/opendistroforelasticsearch/indexmanagement/indexstatemanagement/action/RolloverAction.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opendistro-for-elasticsearch/index-management/HEAD/src/main/kotlin/com/amazon/opendistroforelasticsearch/indexmanagement/indexstatemanagement/action/RolloverAction.kt -------------------------------------------------------------------------------- /src/main/kotlin/com/amazon/opendistroforelasticsearch/indexmanagement/indexstatemanagement/action/RollupAction.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opendistro-for-elasticsearch/index-management/HEAD/src/main/kotlin/com/amazon/opendistroforelasticsearch/indexmanagement/indexstatemanagement/action/RollupAction.kt -------------------------------------------------------------------------------- /src/main/kotlin/com/amazon/opendistroforelasticsearch/indexmanagement/indexstatemanagement/action/SnapshotAction.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opendistro-for-elasticsearch/index-management/HEAD/src/main/kotlin/com/amazon/opendistroforelasticsearch/indexmanagement/indexstatemanagement/action/SnapshotAction.kt -------------------------------------------------------------------------------- /src/main/kotlin/com/amazon/opendistroforelasticsearch/indexmanagement/indexstatemanagement/action/TransitionsAction.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opendistro-for-elasticsearch/index-management/HEAD/src/main/kotlin/com/amazon/opendistroforelasticsearch/indexmanagement/indexstatemanagement/action/TransitionsAction.kt -------------------------------------------------------------------------------- /src/main/kotlin/com/amazon/opendistroforelasticsearch/indexmanagement/indexstatemanagement/elasticapi/ElasticExtensions.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opendistro-for-elasticsearch/index-management/HEAD/src/main/kotlin/com/amazon/opendistroforelasticsearch/indexmanagement/indexstatemanagement/elasticapi/ElasticExtensions.kt -------------------------------------------------------------------------------- /src/main/kotlin/com/amazon/opendistroforelasticsearch/indexmanagement/indexstatemanagement/model/ChangePolicy.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opendistro-for-elasticsearch/index-management/HEAD/src/main/kotlin/com/amazon/opendistroforelasticsearch/indexmanagement/indexstatemanagement/model/ChangePolicy.kt -------------------------------------------------------------------------------- /src/main/kotlin/com/amazon/opendistroforelasticsearch/indexmanagement/indexstatemanagement/model/ErrorNotification.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opendistro-for-elasticsearch/index-management/HEAD/src/main/kotlin/com/amazon/opendistroforelasticsearch/indexmanagement/indexstatemanagement/model/ErrorNotification.kt -------------------------------------------------------------------------------- /src/main/kotlin/com/amazon/opendistroforelasticsearch/indexmanagement/indexstatemanagement/model/ISMTemplate.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opendistro-for-elasticsearch/index-management/HEAD/src/main/kotlin/com/amazon/opendistroforelasticsearch/indexmanagement/indexstatemanagement/model/ISMTemplate.kt -------------------------------------------------------------------------------- /src/main/kotlin/com/amazon/opendistroforelasticsearch/indexmanagement/indexstatemanagement/model/ManagedIndexConfig.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opendistro-for-elasticsearch/index-management/HEAD/src/main/kotlin/com/amazon/opendistroforelasticsearch/indexmanagement/indexstatemanagement/model/ManagedIndexConfig.kt -------------------------------------------------------------------------------- /src/main/kotlin/com/amazon/opendistroforelasticsearch/indexmanagement/indexstatemanagement/model/ManagedIndexMetaData.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opendistro-for-elasticsearch/index-management/HEAD/src/main/kotlin/com/amazon/opendistroforelasticsearch/indexmanagement/indexstatemanagement/model/ManagedIndexMetaData.kt -------------------------------------------------------------------------------- /src/main/kotlin/com/amazon/opendistroforelasticsearch/indexmanagement/indexstatemanagement/model/Policy.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opendistro-for-elasticsearch/index-management/HEAD/src/main/kotlin/com/amazon/opendistroforelasticsearch/indexmanagement/indexstatemanagement/model/Policy.kt -------------------------------------------------------------------------------- /src/main/kotlin/com/amazon/opendistroforelasticsearch/indexmanagement/indexstatemanagement/model/SearchParams.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opendistro-for-elasticsearch/index-management/HEAD/src/main/kotlin/com/amazon/opendistroforelasticsearch/indexmanagement/indexstatemanagement/model/SearchParams.kt -------------------------------------------------------------------------------- /src/main/kotlin/com/amazon/opendistroforelasticsearch/indexmanagement/indexstatemanagement/model/State.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opendistro-for-elasticsearch/index-management/HEAD/src/main/kotlin/com/amazon/opendistroforelasticsearch/indexmanagement/indexstatemanagement/model/State.kt -------------------------------------------------------------------------------- /src/main/kotlin/com/amazon/opendistroforelasticsearch/indexmanagement/indexstatemanagement/model/StateFilter.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opendistro-for-elasticsearch/index-management/HEAD/src/main/kotlin/com/amazon/opendistroforelasticsearch/indexmanagement/indexstatemanagement/model/StateFilter.kt -------------------------------------------------------------------------------- /src/main/kotlin/com/amazon/opendistroforelasticsearch/indexmanagement/indexstatemanagement/model/Transition.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opendistro-for-elasticsearch/index-management/HEAD/src/main/kotlin/com/amazon/opendistroforelasticsearch/indexmanagement/indexstatemanagement/model/Transition.kt -------------------------------------------------------------------------------- /src/main/kotlin/com/amazon/opendistroforelasticsearch/indexmanagement/indexstatemanagement/model/action/ActionConfig.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opendistro-for-elasticsearch/index-management/HEAD/src/main/kotlin/com/amazon/opendistroforelasticsearch/indexmanagement/indexstatemanagement/model/action/ActionConfig.kt -------------------------------------------------------------------------------- /src/main/kotlin/com/amazon/opendistroforelasticsearch/indexmanagement/indexstatemanagement/model/action/ActionRetry.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opendistro-for-elasticsearch/index-management/HEAD/src/main/kotlin/com/amazon/opendistroforelasticsearch/indexmanagement/indexstatemanagement/model/action/ActionRetry.kt -------------------------------------------------------------------------------- /src/main/kotlin/com/amazon/opendistroforelasticsearch/indexmanagement/indexstatemanagement/model/action/ActionTimeout.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opendistro-for-elasticsearch/index-management/HEAD/src/main/kotlin/com/amazon/opendistroforelasticsearch/indexmanagement/indexstatemanagement/model/action/ActionTimeout.kt -------------------------------------------------------------------------------- /src/main/kotlin/com/amazon/opendistroforelasticsearch/indexmanagement/indexstatemanagement/model/action/AllocationActionConfig.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opendistro-for-elasticsearch/index-management/HEAD/src/main/kotlin/com/amazon/opendistroforelasticsearch/indexmanagement/indexstatemanagement/model/action/AllocationActionConfig.kt -------------------------------------------------------------------------------- /src/main/kotlin/com/amazon/opendistroforelasticsearch/indexmanagement/indexstatemanagement/model/action/CloseActionConfig.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opendistro-for-elasticsearch/index-management/HEAD/src/main/kotlin/com/amazon/opendistroforelasticsearch/indexmanagement/indexstatemanagement/model/action/CloseActionConfig.kt -------------------------------------------------------------------------------- /src/main/kotlin/com/amazon/opendistroforelasticsearch/indexmanagement/indexstatemanagement/model/action/DeleteActionConfig.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opendistro-for-elasticsearch/index-management/HEAD/src/main/kotlin/com/amazon/opendistroforelasticsearch/indexmanagement/indexstatemanagement/model/action/DeleteActionConfig.kt -------------------------------------------------------------------------------- /src/main/kotlin/com/amazon/opendistroforelasticsearch/indexmanagement/indexstatemanagement/model/action/ForceMergeActionConfig.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opendistro-for-elasticsearch/index-management/HEAD/src/main/kotlin/com/amazon/opendistroforelasticsearch/indexmanagement/indexstatemanagement/model/action/ForceMergeActionConfig.kt -------------------------------------------------------------------------------- /src/main/kotlin/com/amazon/opendistroforelasticsearch/indexmanagement/indexstatemanagement/model/action/IndexPriorityActionConfig.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opendistro-for-elasticsearch/index-management/HEAD/src/main/kotlin/com/amazon/opendistroforelasticsearch/indexmanagement/indexstatemanagement/model/action/IndexPriorityActionConfig.kt -------------------------------------------------------------------------------- /src/main/kotlin/com/amazon/opendistroforelasticsearch/indexmanagement/indexstatemanagement/model/action/NotificationActionConfig.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opendistro-for-elasticsearch/index-management/HEAD/src/main/kotlin/com/amazon/opendistroforelasticsearch/indexmanagement/indexstatemanagement/model/action/NotificationActionConfig.kt -------------------------------------------------------------------------------- /src/main/kotlin/com/amazon/opendistroforelasticsearch/indexmanagement/indexstatemanagement/model/action/OpenActionConfig.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opendistro-for-elasticsearch/index-management/HEAD/src/main/kotlin/com/amazon/opendistroforelasticsearch/indexmanagement/indexstatemanagement/model/action/OpenActionConfig.kt -------------------------------------------------------------------------------- /src/main/kotlin/com/amazon/opendistroforelasticsearch/indexmanagement/indexstatemanagement/model/action/ReadOnlyActionConfig.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opendistro-for-elasticsearch/index-management/HEAD/src/main/kotlin/com/amazon/opendistroforelasticsearch/indexmanagement/indexstatemanagement/model/action/ReadOnlyActionConfig.kt -------------------------------------------------------------------------------- /src/main/kotlin/com/amazon/opendistroforelasticsearch/indexmanagement/indexstatemanagement/model/action/ReadWriteActionConfig.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opendistro-for-elasticsearch/index-management/HEAD/src/main/kotlin/com/amazon/opendistroforelasticsearch/indexmanagement/indexstatemanagement/model/action/ReadWriteActionConfig.kt -------------------------------------------------------------------------------- /src/main/kotlin/com/amazon/opendistroforelasticsearch/indexmanagement/indexstatemanagement/model/action/ReplicaCountActionConfig.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opendistro-for-elasticsearch/index-management/HEAD/src/main/kotlin/com/amazon/opendistroforelasticsearch/indexmanagement/indexstatemanagement/model/action/ReplicaCountActionConfig.kt -------------------------------------------------------------------------------- /src/main/kotlin/com/amazon/opendistroforelasticsearch/indexmanagement/indexstatemanagement/model/action/RolloverActionConfig.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opendistro-for-elasticsearch/index-management/HEAD/src/main/kotlin/com/amazon/opendistroforelasticsearch/indexmanagement/indexstatemanagement/model/action/RolloverActionConfig.kt -------------------------------------------------------------------------------- /src/main/kotlin/com/amazon/opendistroforelasticsearch/indexmanagement/indexstatemanagement/model/action/RollupActionConfig.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opendistro-for-elasticsearch/index-management/HEAD/src/main/kotlin/com/amazon/opendistroforelasticsearch/indexmanagement/indexstatemanagement/model/action/RollupActionConfig.kt -------------------------------------------------------------------------------- /src/main/kotlin/com/amazon/opendistroforelasticsearch/indexmanagement/indexstatemanagement/model/action/SnapshotActionConfig.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opendistro-for-elasticsearch/index-management/HEAD/src/main/kotlin/com/amazon/opendistroforelasticsearch/indexmanagement/indexstatemanagement/model/action/SnapshotActionConfig.kt -------------------------------------------------------------------------------- /src/main/kotlin/com/amazon/opendistroforelasticsearch/indexmanagement/indexstatemanagement/model/action/TransitionsActionConfig.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opendistro-for-elasticsearch/index-management/HEAD/src/main/kotlin/com/amazon/opendistroforelasticsearch/indexmanagement/indexstatemanagement/model/action/TransitionsActionConfig.kt -------------------------------------------------------------------------------- /src/main/kotlin/com/amazon/opendistroforelasticsearch/indexmanagement/indexstatemanagement/model/coordinator/ClusterStateManagedIndexConfig.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opendistro-for-elasticsearch/index-management/HEAD/src/main/kotlin/com/amazon/opendistroforelasticsearch/indexmanagement/indexstatemanagement/model/coordinator/ClusterStateManagedIndexConfig.kt -------------------------------------------------------------------------------- /src/main/kotlin/com/amazon/opendistroforelasticsearch/indexmanagement/indexstatemanagement/model/coordinator/SweptManagedIndexConfig.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opendistro-for-elasticsearch/index-management/HEAD/src/main/kotlin/com/amazon/opendistroforelasticsearch/indexmanagement/indexstatemanagement/model/coordinator/SweptManagedIndexConfig.kt -------------------------------------------------------------------------------- /src/main/kotlin/com/amazon/opendistroforelasticsearch/indexmanagement/indexstatemanagement/model/destination/Chime.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opendistro-for-elasticsearch/index-management/HEAD/src/main/kotlin/com/amazon/opendistroforelasticsearch/indexmanagement/indexstatemanagement/model/destination/Chime.kt -------------------------------------------------------------------------------- /src/main/kotlin/com/amazon/opendistroforelasticsearch/indexmanagement/indexstatemanagement/model/destination/CustomWebhook.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opendistro-for-elasticsearch/index-management/HEAD/src/main/kotlin/com/amazon/opendistroforelasticsearch/indexmanagement/indexstatemanagement/model/destination/CustomWebhook.kt -------------------------------------------------------------------------------- /src/main/kotlin/com/amazon/opendistroforelasticsearch/indexmanagement/indexstatemanagement/model/destination/Destination.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opendistro-for-elasticsearch/index-management/HEAD/src/main/kotlin/com/amazon/opendistroforelasticsearch/indexmanagement/indexstatemanagement/model/destination/Destination.kt -------------------------------------------------------------------------------- /src/main/kotlin/com/amazon/opendistroforelasticsearch/indexmanagement/indexstatemanagement/model/destination/Slack.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opendistro-for-elasticsearch/index-management/HEAD/src/main/kotlin/com/amazon/opendistroforelasticsearch/indexmanagement/indexstatemanagement/model/destination/Slack.kt -------------------------------------------------------------------------------- /src/main/kotlin/com/amazon/opendistroforelasticsearch/indexmanagement/indexstatemanagement/model/managedindexmetadata/ActionMetaData.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opendistro-for-elasticsearch/index-management/HEAD/src/main/kotlin/com/amazon/opendistroforelasticsearch/indexmanagement/indexstatemanagement/model/managedindexmetadata/ActionMetaData.kt -------------------------------------------------------------------------------- /src/main/kotlin/com/amazon/opendistroforelasticsearch/indexmanagement/indexstatemanagement/model/managedindexmetadata/ActionProperties.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opendistro-for-elasticsearch/index-management/HEAD/src/main/kotlin/com/amazon/opendistroforelasticsearch/indexmanagement/indexstatemanagement/model/managedindexmetadata/ActionProperties.kt -------------------------------------------------------------------------------- /src/main/kotlin/com/amazon/opendistroforelasticsearch/indexmanagement/indexstatemanagement/model/managedindexmetadata/PolicyRetryInfoMetaData.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opendistro-for-elasticsearch/index-management/HEAD/src/main/kotlin/com/amazon/opendistroforelasticsearch/indexmanagement/indexstatemanagement/model/managedindexmetadata/PolicyRetryInfoMetaData.kt -------------------------------------------------------------------------------- /src/main/kotlin/com/amazon/opendistroforelasticsearch/indexmanagement/indexstatemanagement/model/managedindexmetadata/StateMetaData.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opendistro-for-elasticsearch/index-management/HEAD/src/main/kotlin/com/amazon/opendistroforelasticsearch/indexmanagement/indexstatemanagement/model/managedindexmetadata/StateMetaData.kt -------------------------------------------------------------------------------- /src/main/kotlin/com/amazon/opendistroforelasticsearch/indexmanagement/indexstatemanagement/model/managedindexmetadata/StepMetaData.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opendistro-for-elasticsearch/index-management/HEAD/src/main/kotlin/com/amazon/opendistroforelasticsearch/indexmanagement/indexstatemanagement/model/managedindexmetadata/StepMetaData.kt -------------------------------------------------------------------------------- /src/main/kotlin/com/amazon/opendistroforelasticsearch/indexmanagement/indexstatemanagement/resthandler/RestAddPolicyAction.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opendistro-for-elasticsearch/index-management/HEAD/src/main/kotlin/com/amazon/opendistroforelasticsearch/indexmanagement/indexstatemanagement/resthandler/RestAddPolicyAction.kt -------------------------------------------------------------------------------- /src/main/kotlin/com/amazon/opendistroforelasticsearch/indexmanagement/indexstatemanagement/resthandler/RestChangePolicyAction.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opendistro-for-elasticsearch/index-management/HEAD/src/main/kotlin/com/amazon/opendistroforelasticsearch/indexmanagement/indexstatemanagement/resthandler/RestChangePolicyAction.kt -------------------------------------------------------------------------------- /src/main/kotlin/com/amazon/opendistroforelasticsearch/indexmanagement/indexstatemanagement/resthandler/RestDeletePolicyAction.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opendistro-for-elasticsearch/index-management/HEAD/src/main/kotlin/com/amazon/opendistroforelasticsearch/indexmanagement/indexstatemanagement/resthandler/RestDeletePolicyAction.kt -------------------------------------------------------------------------------- /src/main/kotlin/com/amazon/opendistroforelasticsearch/indexmanagement/indexstatemanagement/resthandler/RestExplainAction.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opendistro-for-elasticsearch/index-management/HEAD/src/main/kotlin/com/amazon/opendistroforelasticsearch/indexmanagement/indexstatemanagement/resthandler/RestExplainAction.kt -------------------------------------------------------------------------------- /src/main/kotlin/com/amazon/opendistroforelasticsearch/indexmanagement/indexstatemanagement/resthandler/RestGetPolicyAction.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opendistro-for-elasticsearch/index-management/HEAD/src/main/kotlin/com/amazon/opendistroforelasticsearch/indexmanagement/indexstatemanagement/resthandler/RestGetPolicyAction.kt -------------------------------------------------------------------------------- /src/main/kotlin/com/amazon/opendistroforelasticsearch/indexmanagement/indexstatemanagement/resthandler/RestIndexPolicyAction.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opendistro-for-elasticsearch/index-management/HEAD/src/main/kotlin/com/amazon/opendistroforelasticsearch/indexmanagement/indexstatemanagement/resthandler/RestIndexPolicyAction.kt -------------------------------------------------------------------------------- /src/main/kotlin/com/amazon/opendistroforelasticsearch/indexmanagement/indexstatemanagement/resthandler/RestRemovePolicyAction.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opendistro-for-elasticsearch/index-management/HEAD/src/main/kotlin/com/amazon/opendistroforelasticsearch/indexmanagement/indexstatemanagement/resthandler/RestRemovePolicyAction.kt -------------------------------------------------------------------------------- /src/main/kotlin/com/amazon/opendistroforelasticsearch/indexmanagement/indexstatemanagement/resthandler/RestRetryFailedManagedIndexAction.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opendistro-for-elasticsearch/index-management/HEAD/src/main/kotlin/com/amazon/opendistroforelasticsearch/indexmanagement/indexstatemanagement/resthandler/RestRetryFailedManagedIndexAction.kt -------------------------------------------------------------------------------- /src/main/kotlin/com/amazon/opendistroforelasticsearch/indexmanagement/indexstatemanagement/settings/ManagedIndexSettings.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opendistro-for-elasticsearch/index-management/HEAD/src/main/kotlin/com/amazon/opendistroforelasticsearch/indexmanagement/indexstatemanagement/settings/ManagedIndexSettings.kt -------------------------------------------------------------------------------- /src/main/kotlin/com/amazon/opendistroforelasticsearch/indexmanagement/indexstatemanagement/step/Step.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opendistro-for-elasticsearch/index-management/HEAD/src/main/kotlin/com/amazon/opendistroforelasticsearch/indexmanagement/indexstatemanagement/step/Step.kt -------------------------------------------------------------------------------- /src/main/kotlin/com/amazon/opendistroforelasticsearch/indexmanagement/indexstatemanagement/step/allocation/AttemptAllocationStep.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opendistro-for-elasticsearch/index-management/HEAD/src/main/kotlin/com/amazon/opendistroforelasticsearch/indexmanagement/indexstatemanagement/step/allocation/AttemptAllocationStep.kt -------------------------------------------------------------------------------- /src/main/kotlin/com/amazon/opendistroforelasticsearch/indexmanagement/indexstatemanagement/step/close/AttemptCloseStep.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opendistro-for-elasticsearch/index-management/HEAD/src/main/kotlin/com/amazon/opendistroforelasticsearch/indexmanagement/indexstatemanagement/step/close/AttemptCloseStep.kt -------------------------------------------------------------------------------- /src/main/kotlin/com/amazon/opendistroforelasticsearch/indexmanagement/indexstatemanagement/step/delete/AttemptDeleteStep.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opendistro-for-elasticsearch/index-management/HEAD/src/main/kotlin/com/amazon/opendistroforelasticsearch/indexmanagement/indexstatemanagement/step/delete/AttemptDeleteStep.kt -------------------------------------------------------------------------------- /src/main/kotlin/com/amazon/opendistroforelasticsearch/indexmanagement/indexstatemanagement/step/forcemerge/AttemptCallForceMergeStep.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opendistro-for-elasticsearch/index-management/HEAD/src/main/kotlin/com/amazon/opendistroforelasticsearch/indexmanagement/indexstatemanagement/step/forcemerge/AttemptCallForceMergeStep.kt -------------------------------------------------------------------------------- /src/main/kotlin/com/amazon/opendistroforelasticsearch/indexmanagement/indexstatemanagement/step/forcemerge/AttemptSetReadOnlyStep.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opendistro-for-elasticsearch/index-management/HEAD/src/main/kotlin/com/amazon/opendistroforelasticsearch/indexmanagement/indexstatemanagement/step/forcemerge/AttemptSetReadOnlyStep.kt -------------------------------------------------------------------------------- /src/main/kotlin/com/amazon/opendistroforelasticsearch/indexmanagement/indexstatemanagement/step/forcemerge/WaitForForceMergeStep.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opendistro-for-elasticsearch/index-management/HEAD/src/main/kotlin/com/amazon/opendistroforelasticsearch/indexmanagement/indexstatemanagement/step/forcemerge/WaitForForceMergeStep.kt -------------------------------------------------------------------------------- /src/main/kotlin/com/amazon/opendistroforelasticsearch/indexmanagement/indexstatemanagement/step/indexpriority/AttemptSetIndexPriorityStep.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opendistro-for-elasticsearch/index-management/HEAD/src/main/kotlin/com/amazon/opendistroforelasticsearch/indexmanagement/indexstatemanagement/step/indexpriority/AttemptSetIndexPriorityStep.kt -------------------------------------------------------------------------------- /src/main/kotlin/com/amazon/opendistroforelasticsearch/indexmanagement/indexstatemanagement/step/notification/AttemptNotificationStep.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opendistro-for-elasticsearch/index-management/HEAD/src/main/kotlin/com/amazon/opendistroforelasticsearch/indexmanagement/indexstatemanagement/step/notification/AttemptNotificationStep.kt -------------------------------------------------------------------------------- /src/main/kotlin/com/amazon/opendistroforelasticsearch/indexmanagement/indexstatemanagement/step/open/AttemptOpenStep.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opendistro-for-elasticsearch/index-management/HEAD/src/main/kotlin/com/amazon/opendistroforelasticsearch/indexmanagement/indexstatemanagement/step/open/AttemptOpenStep.kt -------------------------------------------------------------------------------- /src/main/kotlin/com/amazon/opendistroforelasticsearch/indexmanagement/indexstatemanagement/step/readonly/SetReadOnlyStep.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opendistro-for-elasticsearch/index-management/HEAD/src/main/kotlin/com/amazon/opendistroforelasticsearch/indexmanagement/indexstatemanagement/step/readonly/SetReadOnlyStep.kt -------------------------------------------------------------------------------- /src/main/kotlin/com/amazon/opendistroforelasticsearch/indexmanagement/indexstatemanagement/step/readwrite/SetReadWriteStep.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opendistro-for-elasticsearch/index-management/HEAD/src/main/kotlin/com/amazon/opendistroforelasticsearch/indexmanagement/indexstatemanagement/step/readwrite/SetReadWriteStep.kt -------------------------------------------------------------------------------- /src/main/kotlin/com/amazon/opendistroforelasticsearch/indexmanagement/indexstatemanagement/step/replicacount/AttemptSetReplicaCountStep.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opendistro-for-elasticsearch/index-management/HEAD/src/main/kotlin/com/amazon/opendistroforelasticsearch/indexmanagement/indexstatemanagement/step/replicacount/AttemptSetReplicaCountStep.kt -------------------------------------------------------------------------------- /src/main/kotlin/com/amazon/opendistroforelasticsearch/indexmanagement/indexstatemanagement/step/rollover/AttemptRolloverStep.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opendistro-for-elasticsearch/index-management/HEAD/src/main/kotlin/com/amazon/opendistroforelasticsearch/indexmanagement/indexstatemanagement/step/rollover/AttemptRolloverStep.kt -------------------------------------------------------------------------------- /src/main/kotlin/com/amazon/opendistroforelasticsearch/indexmanagement/indexstatemanagement/step/rollup/AttemptCreateRollupJobStep.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opendistro-for-elasticsearch/index-management/HEAD/src/main/kotlin/com/amazon/opendistroforelasticsearch/indexmanagement/indexstatemanagement/step/rollup/AttemptCreateRollupJobStep.kt -------------------------------------------------------------------------------- /src/main/kotlin/com/amazon/opendistroforelasticsearch/indexmanagement/indexstatemanagement/step/rollup/WaitForRollupCompletionStep.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opendistro-for-elasticsearch/index-management/HEAD/src/main/kotlin/com/amazon/opendistroforelasticsearch/indexmanagement/indexstatemanagement/step/rollup/WaitForRollupCompletionStep.kt -------------------------------------------------------------------------------- /src/main/kotlin/com/amazon/opendistroforelasticsearch/indexmanagement/indexstatemanagement/step/snapshot/AttemptSnapshotStep.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opendistro-for-elasticsearch/index-management/HEAD/src/main/kotlin/com/amazon/opendistroforelasticsearch/indexmanagement/indexstatemanagement/step/snapshot/AttemptSnapshotStep.kt -------------------------------------------------------------------------------- /src/main/kotlin/com/amazon/opendistroforelasticsearch/indexmanagement/indexstatemanagement/step/snapshot/WaitForSnapshotStep.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opendistro-for-elasticsearch/index-management/HEAD/src/main/kotlin/com/amazon/opendistroforelasticsearch/indexmanagement/indexstatemanagement/step/snapshot/WaitForSnapshotStep.kt -------------------------------------------------------------------------------- /src/main/kotlin/com/amazon/opendistroforelasticsearch/indexmanagement/indexstatemanagement/step/transition/AttemptTransitionStep.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opendistro-for-elasticsearch/index-management/HEAD/src/main/kotlin/com/amazon/opendistroforelasticsearch/indexmanagement/indexstatemanagement/step/transition/AttemptTransitionStep.kt -------------------------------------------------------------------------------- /src/main/kotlin/com/amazon/opendistroforelasticsearch/indexmanagement/indexstatemanagement/transport/action/ISMStatusResponse.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opendistro-for-elasticsearch/index-management/HEAD/src/main/kotlin/com/amazon/opendistroforelasticsearch/indexmanagement/indexstatemanagement/transport/action/ISMStatusResponse.kt -------------------------------------------------------------------------------- /src/main/kotlin/com/amazon/opendistroforelasticsearch/indexmanagement/indexstatemanagement/transport/action/addpolicy/AddPolicyAction.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opendistro-for-elasticsearch/index-management/HEAD/src/main/kotlin/com/amazon/opendistroforelasticsearch/indexmanagement/indexstatemanagement/transport/action/addpolicy/AddPolicyAction.kt -------------------------------------------------------------------------------- /src/main/kotlin/com/amazon/opendistroforelasticsearch/indexmanagement/indexstatemanagement/transport/action/addpolicy/AddPolicyRequest.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opendistro-for-elasticsearch/index-management/HEAD/src/main/kotlin/com/amazon/opendistroforelasticsearch/indexmanagement/indexstatemanagement/transport/action/addpolicy/AddPolicyRequest.kt -------------------------------------------------------------------------------- /src/main/kotlin/com/amazon/opendistroforelasticsearch/indexmanagement/indexstatemanagement/transport/action/addpolicy/TransportAddPolicyAction.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opendistro-for-elasticsearch/index-management/HEAD/src/main/kotlin/com/amazon/opendistroforelasticsearch/indexmanagement/indexstatemanagement/transport/action/addpolicy/TransportAddPolicyAction.kt -------------------------------------------------------------------------------- /src/main/kotlin/com/amazon/opendistroforelasticsearch/indexmanagement/indexstatemanagement/transport/action/changepolicy/ChangePolicyAction.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opendistro-for-elasticsearch/index-management/HEAD/src/main/kotlin/com/amazon/opendistroforelasticsearch/indexmanagement/indexstatemanagement/transport/action/changepolicy/ChangePolicyAction.kt -------------------------------------------------------------------------------- /src/main/kotlin/com/amazon/opendistroforelasticsearch/indexmanagement/indexstatemanagement/transport/action/changepolicy/ChangePolicyRequest.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opendistro-for-elasticsearch/index-management/HEAD/src/main/kotlin/com/amazon/opendistroforelasticsearch/indexmanagement/indexstatemanagement/transport/action/changepolicy/ChangePolicyRequest.kt -------------------------------------------------------------------------------- /src/main/kotlin/com/amazon/opendistroforelasticsearch/indexmanagement/indexstatemanagement/transport/action/changepolicy/TransportChangePolicyAction.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opendistro-for-elasticsearch/index-management/HEAD/src/main/kotlin/com/amazon/opendistroforelasticsearch/indexmanagement/indexstatemanagement/transport/action/changepolicy/TransportChangePolicyAction.kt -------------------------------------------------------------------------------- /src/main/kotlin/com/amazon/opendistroforelasticsearch/indexmanagement/indexstatemanagement/transport/action/deletepolicy/DeletePolicyAction.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opendistro-for-elasticsearch/index-management/HEAD/src/main/kotlin/com/amazon/opendistroforelasticsearch/indexmanagement/indexstatemanagement/transport/action/deletepolicy/DeletePolicyAction.kt -------------------------------------------------------------------------------- /src/main/kotlin/com/amazon/opendistroforelasticsearch/indexmanagement/indexstatemanagement/transport/action/deletepolicy/DeletePolicyRequest.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opendistro-for-elasticsearch/index-management/HEAD/src/main/kotlin/com/amazon/opendistroforelasticsearch/indexmanagement/indexstatemanagement/transport/action/deletepolicy/DeletePolicyRequest.kt -------------------------------------------------------------------------------- /src/main/kotlin/com/amazon/opendistroforelasticsearch/indexmanagement/indexstatemanagement/transport/action/deletepolicy/TransportDeletePolicyAction.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opendistro-for-elasticsearch/index-management/HEAD/src/main/kotlin/com/amazon/opendistroforelasticsearch/indexmanagement/indexstatemanagement/transport/action/deletepolicy/TransportDeletePolicyAction.kt -------------------------------------------------------------------------------- /src/main/kotlin/com/amazon/opendistroforelasticsearch/indexmanagement/indexstatemanagement/transport/action/explain/ExplainAction.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opendistro-for-elasticsearch/index-management/HEAD/src/main/kotlin/com/amazon/opendistroforelasticsearch/indexmanagement/indexstatemanagement/transport/action/explain/ExplainAction.kt -------------------------------------------------------------------------------- /src/main/kotlin/com/amazon/opendistroforelasticsearch/indexmanagement/indexstatemanagement/transport/action/explain/ExplainAllResponse.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opendistro-for-elasticsearch/index-management/HEAD/src/main/kotlin/com/amazon/opendistroforelasticsearch/indexmanagement/indexstatemanagement/transport/action/explain/ExplainAllResponse.kt -------------------------------------------------------------------------------- /src/main/kotlin/com/amazon/opendistroforelasticsearch/indexmanagement/indexstatemanagement/transport/action/explain/ExplainRequest.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opendistro-for-elasticsearch/index-management/HEAD/src/main/kotlin/com/amazon/opendistroforelasticsearch/indexmanagement/indexstatemanagement/transport/action/explain/ExplainRequest.kt -------------------------------------------------------------------------------- /src/main/kotlin/com/amazon/opendistroforelasticsearch/indexmanagement/indexstatemanagement/transport/action/explain/ExplainResponse.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opendistro-for-elasticsearch/index-management/HEAD/src/main/kotlin/com/amazon/opendistroforelasticsearch/indexmanagement/indexstatemanagement/transport/action/explain/ExplainResponse.kt -------------------------------------------------------------------------------- /src/main/kotlin/com/amazon/opendistroforelasticsearch/indexmanagement/indexstatemanagement/transport/action/explain/TransportExplainAction.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opendistro-for-elasticsearch/index-management/HEAD/src/main/kotlin/com/amazon/opendistroforelasticsearch/indexmanagement/indexstatemanagement/transport/action/explain/TransportExplainAction.kt -------------------------------------------------------------------------------- /src/main/kotlin/com/amazon/opendistroforelasticsearch/indexmanagement/indexstatemanagement/transport/action/getpolicy/GetPoliciesAction.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opendistro-for-elasticsearch/index-management/HEAD/src/main/kotlin/com/amazon/opendistroforelasticsearch/indexmanagement/indexstatemanagement/transport/action/getpolicy/GetPoliciesAction.kt -------------------------------------------------------------------------------- /src/main/kotlin/com/amazon/opendistroforelasticsearch/indexmanagement/indexstatemanagement/transport/action/getpolicy/GetPoliciesRequest.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opendistro-for-elasticsearch/index-management/HEAD/src/main/kotlin/com/amazon/opendistroforelasticsearch/indexmanagement/indexstatemanagement/transport/action/getpolicy/GetPoliciesRequest.kt -------------------------------------------------------------------------------- /src/main/kotlin/com/amazon/opendistroforelasticsearch/indexmanagement/indexstatemanagement/transport/action/getpolicy/GetPoliciesResponse.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opendistro-for-elasticsearch/index-management/HEAD/src/main/kotlin/com/amazon/opendistroforelasticsearch/indexmanagement/indexstatemanagement/transport/action/getpolicy/GetPoliciesResponse.kt -------------------------------------------------------------------------------- /src/main/kotlin/com/amazon/opendistroforelasticsearch/indexmanagement/indexstatemanagement/transport/action/getpolicy/GetPolicyAction.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opendistro-for-elasticsearch/index-management/HEAD/src/main/kotlin/com/amazon/opendistroforelasticsearch/indexmanagement/indexstatemanagement/transport/action/getpolicy/GetPolicyAction.kt -------------------------------------------------------------------------------- /src/main/kotlin/com/amazon/opendistroforelasticsearch/indexmanagement/indexstatemanagement/transport/action/getpolicy/GetPolicyRequest.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opendistro-for-elasticsearch/index-management/HEAD/src/main/kotlin/com/amazon/opendistroforelasticsearch/indexmanagement/indexstatemanagement/transport/action/getpolicy/GetPolicyRequest.kt -------------------------------------------------------------------------------- /src/main/kotlin/com/amazon/opendistroforelasticsearch/indexmanagement/indexstatemanagement/transport/action/getpolicy/GetPolicyResponse.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opendistro-for-elasticsearch/index-management/HEAD/src/main/kotlin/com/amazon/opendistroforelasticsearch/indexmanagement/indexstatemanagement/transport/action/getpolicy/GetPolicyResponse.kt -------------------------------------------------------------------------------- /src/main/kotlin/com/amazon/opendistroforelasticsearch/indexmanagement/indexstatemanagement/transport/action/getpolicy/TransportGetPoliciesAction.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opendistro-for-elasticsearch/index-management/HEAD/src/main/kotlin/com/amazon/opendistroforelasticsearch/indexmanagement/indexstatemanagement/transport/action/getpolicy/TransportGetPoliciesAction.kt -------------------------------------------------------------------------------- /src/main/kotlin/com/amazon/opendistroforelasticsearch/indexmanagement/indexstatemanagement/transport/action/getpolicy/TransportGetPolicyAction.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opendistro-for-elasticsearch/index-management/HEAD/src/main/kotlin/com/amazon/opendistroforelasticsearch/indexmanagement/indexstatemanagement/transport/action/getpolicy/TransportGetPolicyAction.kt -------------------------------------------------------------------------------- /src/main/kotlin/com/amazon/opendistroforelasticsearch/indexmanagement/indexstatemanagement/transport/action/indexpolicy/IndexPolicyAction.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opendistro-for-elasticsearch/index-management/HEAD/src/main/kotlin/com/amazon/opendistroforelasticsearch/indexmanagement/indexstatemanagement/transport/action/indexpolicy/IndexPolicyAction.kt -------------------------------------------------------------------------------- /src/main/kotlin/com/amazon/opendistroforelasticsearch/indexmanagement/indexstatemanagement/transport/action/indexpolicy/IndexPolicyRequest.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opendistro-for-elasticsearch/index-management/HEAD/src/main/kotlin/com/amazon/opendistroforelasticsearch/indexmanagement/indexstatemanagement/transport/action/indexpolicy/IndexPolicyRequest.kt -------------------------------------------------------------------------------- /src/main/kotlin/com/amazon/opendistroforelasticsearch/indexmanagement/indexstatemanagement/transport/action/indexpolicy/IndexPolicyResponse.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opendistro-for-elasticsearch/index-management/HEAD/src/main/kotlin/com/amazon/opendistroforelasticsearch/indexmanagement/indexstatemanagement/transport/action/indexpolicy/IndexPolicyResponse.kt -------------------------------------------------------------------------------- /src/main/kotlin/com/amazon/opendistroforelasticsearch/indexmanagement/indexstatemanagement/transport/action/indexpolicy/TransportIndexPolicyAction.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opendistro-for-elasticsearch/index-management/HEAD/src/main/kotlin/com/amazon/opendistroforelasticsearch/indexmanagement/indexstatemanagement/transport/action/indexpolicy/TransportIndexPolicyAction.kt -------------------------------------------------------------------------------- /src/main/kotlin/com/amazon/opendistroforelasticsearch/indexmanagement/indexstatemanagement/transport/action/removepolicy/RemovePolicyAction.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opendistro-for-elasticsearch/index-management/HEAD/src/main/kotlin/com/amazon/opendistroforelasticsearch/indexmanagement/indexstatemanagement/transport/action/removepolicy/RemovePolicyAction.kt -------------------------------------------------------------------------------- /src/main/kotlin/com/amazon/opendistroforelasticsearch/indexmanagement/indexstatemanagement/transport/action/removepolicy/RemovePolicyRequest.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opendistro-for-elasticsearch/index-management/HEAD/src/main/kotlin/com/amazon/opendistroforelasticsearch/indexmanagement/indexstatemanagement/transport/action/removepolicy/RemovePolicyRequest.kt -------------------------------------------------------------------------------- /src/main/kotlin/com/amazon/opendistroforelasticsearch/indexmanagement/indexstatemanagement/transport/action/removepolicy/TransportRemovePolicyAction.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opendistro-for-elasticsearch/index-management/HEAD/src/main/kotlin/com/amazon/opendistroforelasticsearch/indexmanagement/indexstatemanagement/transport/action/removepolicy/TransportRemovePolicyAction.kt -------------------------------------------------------------------------------- /src/main/kotlin/com/amazon/opendistroforelasticsearch/indexmanagement/indexstatemanagement/transport/action/retryfailedmanagedindex/RetryFailedManagedIndexAction.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opendistro-for-elasticsearch/index-management/HEAD/src/main/kotlin/com/amazon/opendistroforelasticsearch/indexmanagement/indexstatemanagement/transport/action/retryfailedmanagedindex/RetryFailedManagedIndexAction.kt -------------------------------------------------------------------------------- /src/main/kotlin/com/amazon/opendistroforelasticsearch/indexmanagement/indexstatemanagement/transport/action/retryfailedmanagedindex/RetryFailedManagedIndexRequest.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opendistro-for-elasticsearch/index-management/HEAD/src/main/kotlin/com/amazon/opendistroforelasticsearch/indexmanagement/indexstatemanagement/transport/action/retryfailedmanagedindex/RetryFailedManagedIndexRequest.kt -------------------------------------------------------------------------------- /src/main/kotlin/com/amazon/opendistroforelasticsearch/indexmanagement/indexstatemanagement/transport/action/retryfailedmanagedindex/TransportRetryFailedManagedIndexAction.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opendistro-for-elasticsearch/index-management/HEAD/src/main/kotlin/com/amazon/opendistroforelasticsearch/indexmanagement/indexstatemanagement/transport/action/retryfailedmanagedindex/TransportRetryFailedManagedIndexAction.kt -------------------------------------------------------------------------------- /src/main/kotlin/com/amazon/opendistroforelasticsearch/indexmanagement/indexstatemanagement/transport/action/updateindexmetadata/TransportUpdateManagedIndexMetaDataAction.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opendistro-for-elasticsearch/index-management/HEAD/src/main/kotlin/com/amazon/opendistroforelasticsearch/indexmanagement/indexstatemanagement/transport/action/updateindexmetadata/TransportUpdateManagedIndexMetaDataAction.kt -------------------------------------------------------------------------------- /src/main/kotlin/com/amazon/opendistroforelasticsearch/indexmanagement/indexstatemanagement/transport/action/updateindexmetadata/UpdateManagedIndexMetaDataAction.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opendistro-for-elasticsearch/index-management/HEAD/src/main/kotlin/com/amazon/opendistroforelasticsearch/indexmanagement/indexstatemanagement/transport/action/updateindexmetadata/UpdateManagedIndexMetaDataAction.kt -------------------------------------------------------------------------------- /src/main/kotlin/com/amazon/opendistroforelasticsearch/indexmanagement/indexstatemanagement/transport/action/updateindexmetadata/UpdateManagedIndexMetaDataRequest.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opendistro-for-elasticsearch/index-management/HEAD/src/main/kotlin/com/amazon/opendistroforelasticsearch/indexmanagement/indexstatemanagement/transport/action/updateindexmetadata/UpdateManagedIndexMetaDataRequest.kt -------------------------------------------------------------------------------- /src/main/kotlin/com/amazon/opendistroforelasticsearch/indexmanagement/indexstatemanagement/util/DestinationType.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opendistro-for-elasticsearch/index-management/HEAD/src/main/kotlin/com/amazon/opendistroforelasticsearch/indexmanagement/indexstatemanagement/util/DestinationType.kt -------------------------------------------------------------------------------- /src/main/kotlin/com/amazon/opendistroforelasticsearch/indexmanagement/indexstatemanagement/util/ManagedIndexUtils.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opendistro-for-elasticsearch/index-management/HEAD/src/main/kotlin/com/amazon/opendistroforelasticsearch/indexmanagement/indexstatemanagement/util/ManagedIndexUtils.kt -------------------------------------------------------------------------------- /src/main/kotlin/com/amazon/opendistroforelasticsearch/indexmanagement/indexstatemanagement/util/RestHandlerUtils.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opendistro-for-elasticsearch/index-management/HEAD/src/main/kotlin/com/amazon/opendistroforelasticsearch/indexmanagement/indexstatemanagement/util/RestHandlerUtils.kt -------------------------------------------------------------------------------- /src/main/kotlin/com/amazon/opendistroforelasticsearch/indexmanagement/refreshanalyzer/RefreshSearchAnalyzerAction.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opendistro-for-elasticsearch/index-management/HEAD/src/main/kotlin/com/amazon/opendistroforelasticsearch/indexmanagement/refreshanalyzer/RefreshSearchAnalyzerAction.kt -------------------------------------------------------------------------------- /src/main/kotlin/com/amazon/opendistroforelasticsearch/indexmanagement/refreshanalyzer/RefreshSearchAnalyzerRequest.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opendistro-for-elasticsearch/index-management/HEAD/src/main/kotlin/com/amazon/opendistroforelasticsearch/indexmanagement/refreshanalyzer/RefreshSearchAnalyzerRequest.kt -------------------------------------------------------------------------------- /src/main/kotlin/com/amazon/opendistroforelasticsearch/indexmanagement/refreshanalyzer/RefreshSearchAnalyzerResponse.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opendistro-for-elasticsearch/index-management/HEAD/src/main/kotlin/com/amazon/opendistroforelasticsearch/indexmanagement/refreshanalyzer/RefreshSearchAnalyzerResponse.kt -------------------------------------------------------------------------------- /src/main/kotlin/com/amazon/opendistroforelasticsearch/indexmanagement/refreshanalyzer/RefreshSearchAnalyzerShardResponse.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opendistro-for-elasticsearch/index-management/HEAD/src/main/kotlin/com/amazon/opendistroforelasticsearch/indexmanagement/refreshanalyzer/RefreshSearchAnalyzerShardResponse.kt -------------------------------------------------------------------------------- /src/main/kotlin/com/amazon/opendistroforelasticsearch/indexmanagement/refreshanalyzer/RestRefreshSearchAnalyzerAction.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opendistro-for-elasticsearch/index-management/HEAD/src/main/kotlin/com/amazon/opendistroforelasticsearch/indexmanagement/refreshanalyzer/RestRefreshSearchAnalyzerAction.kt -------------------------------------------------------------------------------- /src/main/kotlin/com/amazon/opendistroforelasticsearch/indexmanagement/refreshanalyzer/TransportRefreshSearchAnalyzerAction.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opendistro-for-elasticsearch/index-management/HEAD/src/main/kotlin/com/amazon/opendistroforelasticsearch/indexmanagement/refreshanalyzer/TransportRefreshSearchAnalyzerAction.kt -------------------------------------------------------------------------------- /src/main/kotlin/com/amazon/opendistroforelasticsearch/indexmanagement/rollup/RollupIndexer.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opendistro-for-elasticsearch/index-management/HEAD/src/main/kotlin/com/amazon/opendistroforelasticsearch/indexmanagement/rollup/RollupIndexer.kt -------------------------------------------------------------------------------- /src/main/kotlin/com/amazon/opendistroforelasticsearch/indexmanagement/rollup/RollupMapperService.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opendistro-for-elasticsearch/index-management/HEAD/src/main/kotlin/com/amazon/opendistroforelasticsearch/indexmanagement/rollup/RollupMapperService.kt -------------------------------------------------------------------------------- /src/main/kotlin/com/amazon/opendistroforelasticsearch/indexmanagement/rollup/RollupMetadataService.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opendistro-for-elasticsearch/index-management/HEAD/src/main/kotlin/com/amazon/opendistroforelasticsearch/indexmanagement/rollup/RollupMetadataService.kt -------------------------------------------------------------------------------- /src/main/kotlin/com/amazon/opendistroforelasticsearch/indexmanagement/rollup/RollupRunner.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opendistro-for-elasticsearch/index-management/HEAD/src/main/kotlin/com/amazon/opendistroforelasticsearch/indexmanagement/rollup/RollupRunner.kt -------------------------------------------------------------------------------- /src/main/kotlin/com/amazon/opendistroforelasticsearch/indexmanagement/rollup/RollupSearchService.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opendistro-for-elasticsearch/index-management/HEAD/src/main/kotlin/com/amazon/opendistroforelasticsearch/indexmanagement/rollup/RollupSearchService.kt -------------------------------------------------------------------------------- /src/main/kotlin/com/amazon/opendistroforelasticsearch/indexmanagement/rollup/action/delete/DeleteRollupAction.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opendistro-for-elasticsearch/index-management/HEAD/src/main/kotlin/com/amazon/opendistroforelasticsearch/indexmanagement/rollup/action/delete/DeleteRollupAction.kt -------------------------------------------------------------------------------- /src/main/kotlin/com/amazon/opendistroforelasticsearch/indexmanagement/rollup/action/delete/DeleteRollupRequest.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opendistro-for-elasticsearch/index-management/HEAD/src/main/kotlin/com/amazon/opendistroforelasticsearch/indexmanagement/rollup/action/delete/DeleteRollupRequest.kt -------------------------------------------------------------------------------- /src/main/kotlin/com/amazon/opendistroforelasticsearch/indexmanagement/rollup/action/delete/TransportDeleteRollupAction.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opendistro-for-elasticsearch/index-management/HEAD/src/main/kotlin/com/amazon/opendistroforelasticsearch/indexmanagement/rollup/action/delete/TransportDeleteRollupAction.kt -------------------------------------------------------------------------------- /src/main/kotlin/com/amazon/opendistroforelasticsearch/indexmanagement/rollup/action/explain/ExplainRollupAction.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opendistro-for-elasticsearch/index-management/HEAD/src/main/kotlin/com/amazon/opendistroforelasticsearch/indexmanagement/rollup/action/explain/ExplainRollupAction.kt -------------------------------------------------------------------------------- /src/main/kotlin/com/amazon/opendistroforelasticsearch/indexmanagement/rollup/action/explain/ExplainRollupRequest.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opendistro-for-elasticsearch/index-management/HEAD/src/main/kotlin/com/amazon/opendistroforelasticsearch/indexmanagement/rollup/action/explain/ExplainRollupRequest.kt -------------------------------------------------------------------------------- /src/main/kotlin/com/amazon/opendistroforelasticsearch/indexmanagement/rollup/action/explain/ExplainRollupResponse.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opendistro-for-elasticsearch/index-management/HEAD/src/main/kotlin/com/amazon/opendistroforelasticsearch/indexmanagement/rollup/action/explain/ExplainRollupResponse.kt -------------------------------------------------------------------------------- /src/main/kotlin/com/amazon/opendistroforelasticsearch/indexmanagement/rollup/action/explain/TransportExplainRollupAction.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opendistro-for-elasticsearch/index-management/HEAD/src/main/kotlin/com/amazon/opendistroforelasticsearch/indexmanagement/rollup/action/explain/TransportExplainRollupAction.kt -------------------------------------------------------------------------------- /src/main/kotlin/com/amazon/opendistroforelasticsearch/indexmanagement/rollup/action/get/GetRollupAction.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opendistro-for-elasticsearch/index-management/HEAD/src/main/kotlin/com/amazon/opendistroforelasticsearch/indexmanagement/rollup/action/get/GetRollupAction.kt -------------------------------------------------------------------------------- /src/main/kotlin/com/amazon/opendistroforelasticsearch/indexmanagement/rollup/action/get/GetRollupRequest.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opendistro-for-elasticsearch/index-management/HEAD/src/main/kotlin/com/amazon/opendistroforelasticsearch/indexmanagement/rollup/action/get/GetRollupRequest.kt -------------------------------------------------------------------------------- /src/main/kotlin/com/amazon/opendistroforelasticsearch/indexmanagement/rollup/action/get/GetRollupResponse.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opendistro-for-elasticsearch/index-management/HEAD/src/main/kotlin/com/amazon/opendistroforelasticsearch/indexmanagement/rollup/action/get/GetRollupResponse.kt -------------------------------------------------------------------------------- /src/main/kotlin/com/amazon/opendistroforelasticsearch/indexmanagement/rollup/action/get/GetRollupsAction.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opendistro-for-elasticsearch/index-management/HEAD/src/main/kotlin/com/amazon/opendistroforelasticsearch/indexmanagement/rollup/action/get/GetRollupsAction.kt -------------------------------------------------------------------------------- /src/main/kotlin/com/amazon/opendistroforelasticsearch/indexmanagement/rollup/action/get/GetRollupsRequest.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opendistro-for-elasticsearch/index-management/HEAD/src/main/kotlin/com/amazon/opendistroforelasticsearch/indexmanagement/rollup/action/get/GetRollupsRequest.kt -------------------------------------------------------------------------------- /src/main/kotlin/com/amazon/opendistroforelasticsearch/indexmanagement/rollup/action/get/GetRollupsResponse.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opendistro-for-elasticsearch/index-management/HEAD/src/main/kotlin/com/amazon/opendistroforelasticsearch/indexmanagement/rollup/action/get/GetRollupsResponse.kt -------------------------------------------------------------------------------- /src/main/kotlin/com/amazon/opendistroforelasticsearch/indexmanagement/rollup/action/get/TransportGetRollupAction.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opendistro-for-elasticsearch/index-management/HEAD/src/main/kotlin/com/amazon/opendistroforelasticsearch/indexmanagement/rollup/action/get/TransportGetRollupAction.kt -------------------------------------------------------------------------------- /src/main/kotlin/com/amazon/opendistroforelasticsearch/indexmanagement/rollup/action/get/TransportGetRollupsAction.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opendistro-for-elasticsearch/index-management/HEAD/src/main/kotlin/com/amazon/opendistroforelasticsearch/indexmanagement/rollup/action/get/TransportGetRollupsAction.kt -------------------------------------------------------------------------------- /src/main/kotlin/com/amazon/opendistroforelasticsearch/indexmanagement/rollup/action/index/IndexRollupAction.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opendistro-for-elasticsearch/index-management/HEAD/src/main/kotlin/com/amazon/opendistroforelasticsearch/indexmanagement/rollup/action/index/IndexRollupAction.kt -------------------------------------------------------------------------------- /src/main/kotlin/com/amazon/opendistroforelasticsearch/indexmanagement/rollup/action/index/IndexRollupRequest.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opendistro-for-elasticsearch/index-management/HEAD/src/main/kotlin/com/amazon/opendistroforelasticsearch/indexmanagement/rollup/action/index/IndexRollupRequest.kt -------------------------------------------------------------------------------- /src/main/kotlin/com/amazon/opendistroforelasticsearch/indexmanagement/rollup/action/index/IndexRollupResponse.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opendistro-for-elasticsearch/index-management/HEAD/src/main/kotlin/com/amazon/opendistroforelasticsearch/indexmanagement/rollup/action/index/IndexRollupResponse.kt -------------------------------------------------------------------------------- /src/main/kotlin/com/amazon/opendistroforelasticsearch/indexmanagement/rollup/action/index/TransportIndexRollupAction.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opendistro-for-elasticsearch/index-management/HEAD/src/main/kotlin/com/amazon/opendistroforelasticsearch/indexmanagement/rollup/action/index/TransportIndexRollupAction.kt -------------------------------------------------------------------------------- /src/main/kotlin/com/amazon/opendistroforelasticsearch/indexmanagement/rollup/action/mapping/TransportUpdateRollupMappingAction.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opendistro-for-elasticsearch/index-management/HEAD/src/main/kotlin/com/amazon/opendistroforelasticsearch/indexmanagement/rollup/action/mapping/TransportUpdateRollupMappingAction.kt -------------------------------------------------------------------------------- /src/main/kotlin/com/amazon/opendistroforelasticsearch/indexmanagement/rollup/action/mapping/UpdateRollupMappingAction.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opendistro-for-elasticsearch/index-management/HEAD/src/main/kotlin/com/amazon/opendistroforelasticsearch/indexmanagement/rollup/action/mapping/UpdateRollupMappingAction.kt -------------------------------------------------------------------------------- /src/main/kotlin/com/amazon/opendistroforelasticsearch/indexmanagement/rollup/action/mapping/UpdateRollupMappingRequest.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opendistro-for-elasticsearch/index-management/HEAD/src/main/kotlin/com/amazon/opendistroforelasticsearch/indexmanagement/rollup/action/mapping/UpdateRollupMappingRequest.kt -------------------------------------------------------------------------------- /src/main/kotlin/com/amazon/opendistroforelasticsearch/indexmanagement/rollup/action/start/StartRollupAction.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opendistro-for-elasticsearch/index-management/HEAD/src/main/kotlin/com/amazon/opendistroforelasticsearch/indexmanagement/rollup/action/start/StartRollupAction.kt -------------------------------------------------------------------------------- /src/main/kotlin/com/amazon/opendistroforelasticsearch/indexmanagement/rollup/action/start/StartRollupRequest.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opendistro-for-elasticsearch/index-management/HEAD/src/main/kotlin/com/amazon/opendistroforelasticsearch/indexmanagement/rollup/action/start/StartRollupRequest.kt -------------------------------------------------------------------------------- /src/main/kotlin/com/amazon/opendistroforelasticsearch/indexmanagement/rollup/action/start/TransportStartRollupAction.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opendistro-for-elasticsearch/index-management/HEAD/src/main/kotlin/com/amazon/opendistroforelasticsearch/indexmanagement/rollup/action/start/TransportStartRollupAction.kt -------------------------------------------------------------------------------- /src/main/kotlin/com/amazon/opendistroforelasticsearch/indexmanagement/rollup/action/stop/StopRollupAction.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opendistro-for-elasticsearch/index-management/HEAD/src/main/kotlin/com/amazon/opendistroforelasticsearch/indexmanagement/rollup/action/stop/StopRollupAction.kt -------------------------------------------------------------------------------- /src/main/kotlin/com/amazon/opendistroforelasticsearch/indexmanagement/rollup/action/stop/StopRollupRequest.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opendistro-for-elasticsearch/index-management/HEAD/src/main/kotlin/com/amazon/opendistroforelasticsearch/indexmanagement/rollup/action/stop/StopRollupRequest.kt -------------------------------------------------------------------------------- /src/main/kotlin/com/amazon/opendistroforelasticsearch/indexmanagement/rollup/action/stop/TransportStopRollupAction.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opendistro-for-elasticsearch/index-management/HEAD/src/main/kotlin/com/amazon/opendistroforelasticsearch/indexmanagement/rollup/action/stop/TransportStopRollupAction.kt -------------------------------------------------------------------------------- /src/main/kotlin/com/amazon/opendistroforelasticsearch/indexmanagement/rollup/actionfilter/FieldCapsFilter.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opendistro-for-elasticsearch/index-management/HEAD/src/main/kotlin/com/amazon/opendistroforelasticsearch/indexmanagement/rollup/actionfilter/FieldCapsFilter.kt -------------------------------------------------------------------------------- /src/main/kotlin/com/amazon/opendistroforelasticsearch/indexmanagement/rollup/actionfilter/SerDeHelper.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opendistro-for-elasticsearch/index-management/HEAD/src/main/kotlin/com/amazon/opendistroforelasticsearch/indexmanagement/rollup/actionfilter/SerDeHelper.kt -------------------------------------------------------------------------------- /src/main/kotlin/com/amazon/opendistroforelasticsearch/indexmanagement/rollup/interceptor/RollupInterceptor.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opendistro-for-elasticsearch/index-management/HEAD/src/main/kotlin/com/amazon/opendistroforelasticsearch/indexmanagement/rollup/interceptor/RollupInterceptor.kt -------------------------------------------------------------------------------- /src/main/kotlin/com/amazon/opendistroforelasticsearch/indexmanagement/rollup/model/ExplainRollup.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opendistro-for-elasticsearch/index-management/HEAD/src/main/kotlin/com/amazon/opendistroforelasticsearch/indexmanagement/rollup/model/ExplainRollup.kt -------------------------------------------------------------------------------- /src/main/kotlin/com/amazon/opendistroforelasticsearch/indexmanagement/rollup/model/ISMRollup.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opendistro-for-elasticsearch/index-management/HEAD/src/main/kotlin/com/amazon/opendistroforelasticsearch/indexmanagement/rollup/model/ISMRollup.kt -------------------------------------------------------------------------------- /src/main/kotlin/com/amazon/opendistroforelasticsearch/indexmanagement/rollup/model/Rollup.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opendistro-for-elasticsearch/index-management/HEAD/src/main/kotlin/com/amazon/opendistroforelasticsearch/indexmanagement/rollup/model/Rollup.kt -------------------------------------------------------------------------------- /src/main/kotlin/com/amazon/opendistroforelasticsearch/indexmanagement/rollup/model/RollupFieldMapping.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opendistro-for-elasticsearch/index-management/HEAD/src/main/kotlin/com/amazon/opendistroforelasticsearch/indexmanagement/rollup/model/RollupFieldMapping.kt -------------------------------------------------------------------------------- /src/main/kotlin/com/amazon/opendistroforelasticsearch/indexmanagement/rollup/model/RollupMetadata.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opendistro-for-elasticsearch/index-management/HEAD/src/main/kotlin/com/amazon/opendistroforelasticsearch/indexmanagement/rollup/model/RollupMetadata.kt -------------------------------------------------------------------------------- /src/main/kotlin/com/amazon/opendistroforelasticsearch/indexmanagement/rollup/model/RollupMetrics.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opendistro-for-elasticsearch/index-management/HEAD/src/main/kotlin/com/amazon/opendistroforelasticsearch/indexmanagement/rollup/model/RollupMetrics.kt -------------------------------------------------------------------------------- /src/main/kotlin/com/amazon/opendistroforelasticsearch/indexmanagement/rollup/model/dimension/DateHistogram.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opendistro-for-elasticsearch/index-management/HEAD/src/main/kotlin/com/amazon/opendistroforelasticsearch/indexmanagement/rollup/model/dimension/DateHistogram.kt -------------------------------------------------------------------------------- /src/main/kotlin/com/amazon/opendistroforelasticsearch/indexmanagement/rollup/model/dimension/Dimension.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opendistro-for-elasticsearch/index-management/HEAD/src/main/kotlin/com/amazon/opendistroforelasticsearch/indexmanagement/rollup/model/dimension/Dimension.kt -------------------------------------------------------------------------------- /src/main/kotlin/com/amazon/opendistroforelasticsearch/indexmanagement/rollup/model/dimension/Histogram.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opendistro-for-elasticsearch/index-management/HEAD/src/main/kotlin/com/amazon/opendistroforelasticsearch/indexmanagement/rollup/model/dimension/Histogram.kt -------------------------------------------------------------------------------- /src/main/kotlin/com/amazon/opendistroforelasticsearch/indexmanagement/rollup/model/dimension/Terms.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opendistro-for-elasticsearch/index-management/HEAD/src/main/kotlin/com/amazon/opendistroforelasticsearch/indexmanagement/rollup/model/dimension/Terms.kt -------------------------------------------------------------------------------- /src/main/kotlin/com/amazon/opendistroforelasticsearch/indexmanagement/rollup/model/metric/Average.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opendistro-for-elasticsearch/index-management/HEAD/src/main/kotlin/com/amazon/opendistroforelasticsearch/indexmanagement/rollup/model/metric/Average.kt -------------------------------------------------------------------------------- /src/main/kotlin/com/amazon/opendistroforelasticsearch/indexmanagement/rollup/model/metric/Max.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opendistro-for-elasticsearch/index-management/HEAD/src/main/kotlin/com/amazon/opendistroforelasticsearch/indexmanagement/rollup/model/metric/Max.kt -------------------------------------------------------------------------------- /src/main/kotlin/com/amazon/opendistroforelasticsearch/indexmanagement/rollup/model/metric/Metric.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opendistro-for-elasticsearch/index-management/HEAD/src/main/kotlin/com/amazon/opendistroforelasticsearch/indexmanagement/rollup/model/metric/Metric.kt -------------------------------------------------------------------------------- /src/main/kotlin/com/amazon/opendistroforelasticsearch/indexmanagement/rollup/model/metric/Min.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opendistro-for-elasticsearch/index-management/HEAD/src/main/kotlin/com/amazon/opendistroforelasticsearch/indexmanagement/rollup/model/metric/Min.kt -------------------------------------------------------------------------------- /src/main/kotlin/com/amazon/opendistroforelasticsearch/indexmanagement/rollup/model/metric/Sum.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opendistro-for-elasticsearch/index-management/HEAD/src/main/kotlin/com/amazon/opendistroforelasticsearch/indexmanagement/rollup/model/metric/Sum.kt -------------------------------------------------------------------------------- /src/main/kotlin/com/amazon/opendistroforelasticsearch/indexmanagement/rollup/model/metric/ValueCount.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opendistro-for-elasticsearch/index-management/HEAD/src/main/kotlin/com/amazon/opendistroforelasticsearch/indexmanagement/rollup/model/metric/ValueCount.kt -------------------------------------------------------------------------------- /src/main/kotlin/com/amazon/opendistroforelasticsearch/indexmanagement/rollup/resthandler/RestDeleteRollupAction.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opendistro-for-elasticsearch/index-management/HEAD/src/main/kotlin/com/amazon/opendistroforelasticsearch/indexmanagement/rollup/resthandler/RestDeleteRollupAction.kt -------------------------------------------------------------------------------- /src/main/kotlin/com/amazon/opendistroforelasticsearch/indexmanagement/rollup/resthandler/RestExplainRollupAction.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opendistro-for-elasticsearch/index-management/HEAD/src/main/kotlin/com/amazon/opendistroforelasticsearch/indexmanagement/rollup/resthandler/RestExplainRollupAction.kt -------------------------------------------------------------------------------- /src/main/kotlin/com/amazon/opendistroforelasticsearch/indexmanagement/rollup/resthandler/RestGetRollupAction.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opendistro-for-elasticsearch/index-management/HEAD/src/main/kotlin/com/amazon/opendistroforelasticsearch/indexmanagement/rollup/resthandler/RestGetRollupAction.kt -------------------------------------------------------------------------------- /src/main/kotlin/com/amazon/opendistroforelasticsearch/indexmanagement/rollup/resthandler/RestIndexRollupAction.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opendistro-for-elasticsearch/index-management/HEAD/src/main/kotlin/com/amazon/opendistroforelasticsearch/indexmanagement/rollup/resthandler/RestIndexRollupAction.kt -------------------------------------------------------------------------------- /src/main/kotlin/com/amazon/opendistroforelasticsearch/indexmanagement/rollup/resthandler/RestStartRollupAction.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opendistro-for-elasticsearch/index-management/HEAD/src/main/kotlin/com/amazon/opendistroforelasticsearch/indexmanagement/rollup/resthandler/RestStartRollupAction.kt -------------------------------------------------------------------------------- /src/main/kotlin/com/amazon/opendistroforelasticsearch/indexmanagement/rollup/resthandler/RestStopRollupAction.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opendistro-for-elasticsearch/index-management/HEAD/src/main/kotlin/com/amazon/opendistroforelasticsearch/indexmanagement/rollup/resthandler/RestStopRollupAction.kt -------------------------------------------------------------------------------- /src/main/kotlin/com/amazon/opendistroforelasticsearch/indexmanagement/rollup/settings/RollupSettings.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opendistro-for-elasticsearch/index-management/HEAD/src/main/kotlin/com/amazon/opendistroforelasticsearch/indexmanagement/rollup/settings/RollupSettings.kt -------------------------------------------------------------------------------- /src/main/kotlin/com/amazon/opendistroforelasticsearch/indexmanagement/rollup/util/RollupUtils.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opendistro-for-elasticsearch/index-management/HEAD/src/main/kotlin/com/amazon/opendistroforelasticsearch/indexmanagement/rollup/util/RollupUtils.kt -------------------------------------------------------------------------------- /src/main/kotlin/com/amazon/opendistroforelasticsearch/indexmanagement/util/IndexManagementException.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opendistro-for-elasticsearch/index-management/HEAD/src/main/kotlin/com/amazon/opendistroforelasticsearch/indexmanagement/util/IndexManagementException.kt -------------------------------------------------------------------------------- /src/main/kotlin/com/amazon/opendistroforelasticsearch/indexmanagement/util/IndexUtils.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opendistro-for-elasticsearch/index-management/HEAD/src/main/kotlin/com/amazon/opendistroforelasticsearch/indexmanagement/util/IndexUtils.kt -------------------------------------------------------------------------------- /src/main/kotlin/com/amazon/opendistroforelasticsearch/indexmanagement/util/OpenForTesting.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opendistro-for-elasticsearch/index-management/HEAD/src/main/kotlin/com/amazon/opendistroforelasticsearch/indexmanagement/util/OpenForTesting.kt -------------------------------------------------------------------------------- /src/main/kotlin/com/amazon/opendistroforelasticsearch/indexmanagement/util/RestHandlerUtils.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opendistro-for-elasticsearch/index-management/HEAD/src/main/kotlin/com/amazon/opendistroforelasticsearch/indexmanagement/util/RestHandlerUtils.kt -------------------------------------------------------------------------------- /src/main/plugin-metadata/plugin-security.policy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opendistro-for-elasticsearch/index-management/HEAD/src/main/plugin-metadata/plugin-security.policy -------------------------------------------------------------------------------- /src/main/resources/META-INF/services/com.amazon.opendistroforelasticsearch.jobscheduler.spi.JobSchedulerExtension: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opendistro-for-elasticsearch/index-management/HEAD/src/main/resources/META-INF/services/com.amazon.opendistroforelasticsearch.jobscheduler.spi.JobSchedulerExtension -------------------------------------------------------------------------------- /src/main/resources/mappings/opendistro-ism-config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opendistro-for-elasticsearch/index-management/HEAD/src/main/resources/mappings/opendistro-ism-config.json -------------------------------------------------------------------------------- /src/main/resources/mappings/opendistro-ism-history.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opendistro-for-elasticsearch/index-management/HEAD/src/main/resources/mappings/opendistro-ism-history.json -------------------------------------------------------------------------------- /src/main/resources/mappings/opendistro-rollup-target.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opendistro-for-elasticsearch/index-management/HEAD/src/main/resources/mappings/opendistro-rollup-target.json -------------------------------------------------------------------------------- /src/test/kotlin/com/amazon/opendistroforelasticsearch/indexmanagement/IndexManagementIndicesIT.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opendistro-for-elasticsearch/index-management/HEAD/src/test/kotlin/com/amazon/opendistroforelasticsearch/indexmanagement/IndexManagementIndicesIT.kt -------------------------------------------------------------------------------- /src/test/kotlin/com/amazon/opendistroforelasticsearch/indexmanagement/IndexManagementRestTestCase.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opendistro-for-elasticsearch/index-management/HEAD/src/test/kotlin/com/amazon/opendistroforelasticsearch/indexmanagement/IndexManagementRestTestCase.kt -------------------------------------------------------------------------------- /src/test/kotlin/com/amazon/opendistroforelasticsearch/indexmanagement/ODFERestTestCase.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opendistro-for-elasticsearch/index-management/HEAD/src/test/kotlin/com/amazon/opendistroforelasticsearch/indexmanagement/ODFERestTestCase.kt -------------------------------------------------------------------------------- /src/test/kotlin/com/amazon/opendistroforelasticsearch/indexmanagement/TestHelpers.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opendistro-for-elasticsearch/index-management/HEAD/src/test/kotlin/com/amazon/opendistroforelasticsearch/indexmanagement/TestHelpers.kt -------------------------------------------------------------------------------- /src/test/kotlin/com/amazon/opendistroforelasticsearch/indexmanagement/indexstatemanagement/ISMTemplateMigrationIT.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opendistro-for-elasticsearch/index-management/HEAD/src/test/kotlin/com/amazon/opendistroforelasticsearch/indexmanagement/indexstatemanagement/ISMTemplateMigrationIT.kt -------------------------------------------------------------------------------- /src/test/kotlin/com/amazon/opendistroforelasticsearch/indexmanagement/indexstatemanagement/IndexStateManagementIntegTestCase.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opendistro-for-elasticsearch/index-management/HEAD/src/test/kotlin/com/amazon/opendistroforelasticsearch/indexmanagement/indexstatemanagement/IndexStateManagementIntegTestCase.kt -------------------------------------------------------------------------------- /src/test/kotlin/com/amazon/opendistroforelasticsearch/indexmanagement/indexstatemanagement/IndexStateManagementRestTestCase.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opendistro-for-elasticsearch/index-management/HEAD/src/test/kotlin/com/amazon/opendistroforelasticsearch/indexmanagement/indexstatemanagement/IndexStateManagementRestTestCase.kt -------------------------------------------------------------------------------- /src/test/kotlin/com/amazon/opendistroforelasticsearch/indexmanagement/indexstatemanagement/ManagedIndexConfigTests.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opendistro-for-elasticsearch/index-management/HEAD/src/test/kotlin/com/amazon/opendistroforelasticsearch/indexmanagement/indexstatemanagement/ManagedIndexConfigTests.kt -------------------------------------------------------------------------------- /src/test/kotlin/com/amazon/opendistroforelasticsearch/indexmanagement/indexstatemanagement/MetadataRegressionIT.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opendistro-for-elasticsearch/index-management/HEAD/src/test/kotlin/com/amazon/opendistroforelasticsearch/indexmanagement/indexstatemanagement/MetadataRegressionIT.kt -------------------------------------------------------------------------------- /src/test/kotlin/com/amazon/opendistroforelasticsearch/indexmanagement/indexstatemanagement/TestHelpers.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opendistro-for-elasticsearch/index-management/HEAD/src/test/kotlin/com/amazon/opendistroforelasticsearch/indexmanagement/indexstatemanagement/TestHelpers.kt -------------------------------------------------------------------------------- /src/test/kotlin/com/amazon/opendistroforelasticsearch/indexmanagement/indexstatemanagement/action/ActionRetryIT.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opendistro-for-elasticsearch/index-management/HEAD/src/test/kotlin/com/amazon/opendistroforelasticsearch/indexmanagement/indexstatemanagement/action/ActionRetryIT.kt -------------------------------------------------------------------------------- /src/test/kotlin/com/amazon/opendistroforelasticsearch/indexmanagement/indexstatemanagement/action/ActionTimeoutIT.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opendistro-for-elasticsearch/index-management/HEAD/src/test/kotlin/com/amazon/opendistroforelasticsearch/indexmanagement/indexstatemanagement/action/ActionTimeoutIT.kt -------------------------------------------------------------------------------- /src/test/kotlin/com/amazon/opendistroforelasticsearch/indexmanagement/indexstatemanagement/action/AllocationActionIT.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opendistro-for-elasticsearch/index-management/HEAD/src/test/kotlin/com/amazon/opendistroforelasticsearch/indexmanagement/indexstatemanagement/action/AllocationActionIT.kt -------------------------------------------------------------------------------- /src/test/kotlin/com/amazon/opendistroforelasticsearch/indexmanagement/indexstatemanagement/action/CloseActionIT.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opendistro-for-elasticsearch/index-management/HEAD/src/test/kotlin/com/amazon/opendistroforelasticsearch/indexmanagement/indexstatemanagement/action/CloseActionIT.kt -------------------------------------------------------------------------------- /src/test/kotlin/com/amazon/opendistroforelasticsearch/indexmanagement/indexstatemanagement/action/ForceMergeActionIT.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opendistro-for-elasticsearch/index-management/HEAD/src/test/kotlin/com/amazon/opendistroforelasticsearch/indexmanagement/indexstatemanagement/action/ForceMergeActionIT.kt -------------------------------------------------------------------------------- /src/test/kotlin/com/amazon/opendistroforelasticsearch/indexmanagement/indexstatemanagement/action/IndexPriorityActionIT.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opendistro-for-elasticsearch/index-management/HEAD/src/test/kotlin/com/amazon/opendistroforelasticsearch/indexmanagement/indexstatemanagement/action/IndexPriorityActionIT.kt -------------------------------------------------------------------------------- /src/test/kotlin/com/amazon/opendistroforelasticsearch/indexmanagement/indexstatemanagement/action/IndexStateManagementHistoryIT.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opendistro-for-elasticsearch/index-management/HEAD/src/test/kotlin/com/amazon/opendistroforelasticsearch/indexmanagement/indexstatemanagement/action/IndexStateManagementHistoryIT.kt -------------------------------------------------------------------------------- /src/test/kotlin/com/amazon/opendistroforelasticsearch/indexmanagement/indexstatemanagement/action/NotificationActionIT.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opendistro-for-elasticsearch/index-management/HEAD/src/test/kotlin/com/amazon/opendistroforelasticsearch/indexmanagement/indexstatemanagement/action/NotificationActionIT.kt -------------------------------------------------------------------------------- /src/test/kotlin/com/amazon/opendistroforelasticsearch/indexmanagement/indexstatemanagement/action/OpenActionIT.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opendistro-for-elasticsearch/index-management/HEAD/src/test/kotlin/com/amazon/opendistroforelasticsearch/indexmanagement/indexstatemanagement/action/OpenActionIT.kt -------------------------------------------------------------------------------- /src/test/kotlin/com/amazon/opendistroforelasticsearch/indexmanagement/indexstatemanagement/action/ReadOnlyActionIT.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opendistro-for-elasticsearch/index-management/HEAD/src/test/kotlin/com/amazon/opendistroforelasticsearch/indexmanagement/indexstatemanagement/action/ReadOnlyActionIT.kt -------------------------------------------------------------------------------- /src/test/kotlin/com/amazon/opendistroforelasticsearch/indexmanagement/indexstatemanagement/action/ReadWriteActionIT.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opendistro-for-elasticsearch/index-management/HEAD/src/test/kotlin/com/amazon/opendistroforelasticsearch/indexmanagement/indexstatemanagement/action/ReadWriteActionIT.kt -------------------------------------------------------------------------------- /src/test/kotlin/com/amazon/opendistroforelasticsearch/indexmanagement/indexstatemanagement/action/ReplicaCountActionIT.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opendistro-for-elasticsearch/index-management/HEAD/src/test/kotlin/com/amazon/opendistroforelasticsearch/indexmanagement/indexstatemanagement/action/ReplicaCountActionIT.kt -------------------------------------------------------------------------------- /src/test/kotlin/com/amazon/opendistroforelasticsearch/indexmanagement/indexstatemanagement/action/RolloverActionIT.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opendistro-for-elasticsearch/index-management/HEAD/src/test/kotlin/com/amazon/opendistroforelasticsearch/indexmanagement/indexstatemanagement/action/RolloverActionIT.kt -------------------------------------------------------------------------------- /src/test/kotlin/com/amazon/opendistroforelasticsearch/indexmanagement/indexstatemanagement/action/RollupActionIT.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opendistro-for-elasticsearch/index-management/HEAD/src/test/kotlin/com/amazon/opendistroforelasticsearch/indexmanagement/indexstatemanagement/action/RollupActionIT.kt -------------------------------------------------------------------------------- /src/test/kotlin/com/amazon/opendistroforelasticsearch/indexmanagement/indexstatemanagement/action/SnapshotActionIT.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opendistro-for-elasticsearch/index-management/HEAD/src/test/kotlin/com/amazon/opendistroforelasticsearch/indexmanagement/indexstatemanagement/action/SnapshotActionIT.kt -------------------------------------------------------------------------------- /src/test/kotlin/com/amazon/opendistroforelasticsearch/indexmanagement/indexstatemanagement/action/TransitionActionIT.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opendistro-for-elasticsearch/index-management/HEAD/src/test/kotlin/com/amazon/opendistroforelasticsearch/indexmanagement/indexstatemanagement/action/TransitionActionIT.kt -------------------------------------------------------------------------------- /src/test/kotlin/com/amazon/opendistroforelasticsearch/indexmanagement/indexstatemanagement/coordinator/ManagedIndexCoordinatorIT.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opendistro-for-elasticsearch/index-management/HEAD/src/test/kotlin/com/amazon/opendistroforelasticsearch/indexmanagement/indexstatemanagement/coordinator/ManagedIndexCoordinatorIT.kt -------------------------------------------------------------------------------- /src/test/kotlin/com/amazon/opendistroforelasticsearch/indexmanagement/indexstatemanagement/coordinator/ManagedIndexCoordinatorTests.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opendistro-for-elasticsearch/index-management/HEAD/src/test/kotlin/com/amazon/opendistroforelasticsearch/indexmanagement/indexstatemanagement/coordinator/ManagedIndexCoordinatorTests.kt -------------------------------------------------------------------------------- /src/test/kotlin/com/amazon/opendistroforelasticsearch/indexmanagement/indexstatemanagement/coordinator/SkipExecutionTests.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opendistro-for-elasticsearch/index-management/HEAD/src/test/kotlin/com/amazon/opendistroforelasticsearch/indexmanagement/indexstatemanagement/coordinator/SkipExecutionTests.kt -------------------------------------------------------------------------------- /src/test/kotlin/com/amazon/opendistroforelasticsearch/indexmanagement/indexstatemanagement/model/ActionConfigTests.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opendistro-for-elasticsearch/index-management/HEAD/src/test/kotlin/com/amazon/opendistroforelasticsearch/indexmanagement/indexstatemanagement/model/ActionConfigTests.kt -------------------------------------------------------------------------------- /src/test/kotlin/com/amazon/opendistroforelasticsearch/indexmanagement/indexstatemanagement/model/ActionPropertiesTests.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opendistro-for-elasticsearch/index-management/HEAD/src/test/kotlin/com/amazon/opendistroforelasticsearch/indexmanagement/indexstatemanagement/model/ActionPropertiesTests.kt -------------------------------------------------------------------------------- /src/test/kotlin/com/amazon/opendistroforelasticsearch/indexmanagement/indexstatemanagement/model/ConditionsTests.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opendistro-for-elasticsearch/index-management/HEAD/src/test/kotlin/com/amazon/opendistroforelasticsearch/indexmanagement/indexstatemanagement/model/ConditionsTests.kt -------------------------------------------------------------------------------- /src/test/kotlin/com/amazon/opendistroforelasticsearch/indexmanagement/indexstatemanagement/model/DestinationTests.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opendistro-for-elasticsearch/index-management/HEAD/src/test/kotlin/com/amazon/opendistroforelasticsearch/indexmanagement/indexstatemanagement/model/DestinationTests.kt -------------------------------------------------------------------------------- /src/test/kotlin/com/amazon/opendistroforelasticsearch/indexmanagement/indexstatemanagement/model/ISMTemplateTests.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opendistro-for-elasticsearch/index-management/HEAD/src/test/kotlin/com/amazon/opendistroforelasticsearch/indexmanagement/indexstatemanagement/model/ISMTemplateTests.kt -------------------------------------------------------------------------------- /src/test/kotlin/com/amazon/opendistroforelasticsearch/indexmanagement/indexstatemanagement/model/ManagedIndexMetaDataTests.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opendistro-for-elasticsearch/index-management/HEAD/src/test/kotlin/com/amazon/opendistroforelasticsearch/indexmanagement/indexstatemanagement/model/ManagedIndexMetaDataTests.kt -------------------------------------------------------------------------------- /src/test/kotlin/com/amazon/opendistroforelasticsearch/indexmanagement/indexstatemanagement/model/PolicyTests.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opendistro-for-elasticsearch/index-management/HEAD/src/test/kotlin/com/amazon/opendistroforelasticsearch/indexmanagement/indexstatemanagement/model/PolicyTests.kt -------------------------------------------------------------------------------- /src/test/kotlin/com/amazon/opendistroforelasticsearch/indexmanagement/indexstatemanagement/model/StateTests.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opendistro-for-elasticsearch/index-management/HEAD/src/test/kotlin/com/amazon/opendistroforelasticsearch/indexmanagement/indexstatemanagement/model/StateTests.kt -------------------------------------------------------------------------------- /src/test/kotlin/com/amazon/opendistroforelasticsearch/indexmanagement/indexstatemanagement/model/XContentTests.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opendistro-for-elasticsearch/index-management/HEAD/src/test/kotlin/com/amazon/opendistroforelasticsearch/indexmanagement/indexstatemanagement/model/XContentTests.kt -------------------------------------------------------------------------------- /src/test/kotlin/com/amazon/opendistroforelasticsearch/indexmanagement/indexstatemanagement/resthandler/ISMTemplateRestAPIIT.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opendistro-for-elasticsearch/index-management/HEAD/src/test/kotlin/com/amazon/opendistroforelasticsearch/indexmanagement/indexstatemanagement/resthandler/ISMTemplateRestAPIIT.kt -------------------------------------------------------------------------------- /src/test/kotlin/com/amazon/opendistroforelasticsearch/indexmanagement/indexstatemanagement/resthandler/IndexStateManagementRestApiIT.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opendistro-for-elasticsearch/index-management/HEAD/src/test/kotlin/com/amazon/opendistroforelasticsearch/indexmanagement/indexstatemanagement/resthandler/IndexStateManagementRestApiIT.kt -------------------------------------------------------------------------------- /src/test/kotlin/com/amazon/opendistroforelasticsearch/indexmanagement/indexstatemanagement/resthandler/RestAddPolicyActionIT.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opendistro-for-elasticsearch/index-management/HEAD/src/test/kotlin/com/amazon/opendistroforelasticsearch/indexmanagement/indexstatemanagement/resthandler/RestAddPolicyActionIT.kt -------------------------------------------------------------------------------- /src/test/kotlin/com/amazon/opendistroforelasticsearch/indexmanagement/indexstatemanagement/resthandler/RestChangePolicyActionIT.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opendistro-for-elasticsearch/index-management/HEAD/src/test/kotlin/com/amazon/opendistroforelasticsearch/indexmanagement/indexstatemanagement/resthandler/RestChangePolicyActionIT.kt -------------------------------------------------------------------------------- /src/test/kotlin/com/amazon/opendistroforelasticsearch/indexmanagement/indexstatemanagement/resthandler/RestExplainActionIT.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opendistro-for-elasticsearch/index-management/HEAD/src/test/kotlin/com/amazon/opendistroforelasticsearch/indexmanagement/indexstatemanagement/resthandler/RestExplainActionIT.kt -------------------------------------------------------------------------------- /src/test/kotlin/com/amazon/opendistroforelasticsearch/indexmanagement/indexstatemanagement/resthandler/RestRemovePolicyActionIT.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opendistro-for-elasticsearch/index-management/HEAD/src/test/kotlin/com/amazon/opendistroforelasticsearch/indexmanagement/indexstatemanagement/resthandler/RestRemovePolicyActionIT.kt -------------------------------------------------------------------------------- /src/test/kotlin/com/amazon/opendistroforelasticsearch/indexmanagement/indexstatemanagement/resthandler/RestRetryFailedManagedIndexActionIT.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opendistro-for-elasticsearch/index-management/HEAD/src/test/kotlin/com/amazon/opendistroforelasticsearch/indexmanagement/indexstatemanagement/resthandler/RestRetryFailedManagedIndexActionIT.kt -------------------------------------------------------------------------------- /src/test/kotlin/com/amazon/opendistroforelasticsearch/indexmanagement/indexstatemanagement/runner/ManagedIndexRunnerIT.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opendistro-for-elasticsearch/index-management/HEAD/src/test/kotlin/com/amazon/opendistroforelasticsearch/indexmanagement/indexstatemanagement/runner/ManagedIndexRunnerIT.kt -------------------------------------------------------------------------------- /src/test/kotlin/com/amazon/opendistroforelasticsearch/indexmanagement/indexstatemanagement/runner/ManagedIndexRunnerTests.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opendistro-for-elasticsearch/index-management/HEAD/src/test/kotlin/com/amazon/opendistroforelasticsearch/indexmanagement/indexstatemanagement/runner/ManagedIndexRunnerTests.kt -------------------------------------------------------------------------------- /src/test/kotlin/com/amazon/opendistroforelasticsearch/indexmanagement/indexstatemanagement/step/AttemptCloseStepTests.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opendistro-for-elasticsearch/index-management/HEAD/src/test/kotlin/com/amazon/opendistroforelasticsearch/indexmanagement/indexstatemanagement/step/AttemptCloseStepTests.kt -------------------------------------------------------------------------------- /src/test/kotlin/com/amazon/opendistroforelasticsearch/indexmanagement/indexstatemanagement/step/AttemptCreateRollupJobStepTests.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opendistro-for-elasticsearch/index-management/HEAD/src/test/kotlin/com/amazon/opendistroforelasticsearch/indexmanagement/indexstatemanagement/step/AttemptCreateRollupJobStepTests.kt -------------------------------------------------------------------------------- /src/test/kotlin/com/amazon/opendistroforelasticsearch/indexmanagement/indexstatemanagement/step/AttemptDeleteStepTests.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opendistro-for-elasticsearch/index-management/HEAD/src/test/kotlin/com/amazon/opendistroforelasticsearch/indexmanagement/indexstatemanagement/step/AttemptDeleteStepTests.kt -------------------------------------------------------------------------------- /src/test/kotlin/com/amazon/opendistroforelasticsearch/indexmanagement/indexstatemanagement/step/AttemptOpenStepTests.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opendistro-for-elasticsearch/index-management/HEAD/src/test/kotlin/com/amazon/opendistroforelasticsearch/indexmanagement/indexstatemanagement/step/AttemptOpenStepTests.kt -------------------------------------------------------------------------------- /src/test/kotlin/com/amazon/opendistroforelasticsearch/indexmanagement/indexstatemanagement/step/AttemptSetIndexPriorityStepTests.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opendistro-for-elasticsearch/index-management/HEAD/src/test/kotlin/com/amazon/opendistroforelasticsearch/indexmanagement/indexstatemanagement/step/AttemptSetIndexPriorityStepTests.kt -------------------------------------------------------------------------------- /src/test/kotlin/com/amazon/opendistroforelasticsearch/indexmanagement/indexstatemanagement/step/AttemptSetReplicaCountStepTests.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opendistro-for-elasticsearch/index-management/HEAD/src/test/kotlin/com/amazon/opendistroforelasticsearch/indexmanagement/indexstatemanagement/step/AttemptSetReplicaCountStepTests.kt -------------------------------------------------------------------------------- /src/test/kotlin/com/amazon/opendistroforelasticsearch/indexmanagement/indexstatemanagement/step/AttemptSnapshotStepTests.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opendistro-for-elasticsearch/index-management/HEAD/src/test/kotlin/com/amazon/opendistroforelasticsearch/indexmanagement/indexstatemanagement/step/AttemptSnapshotStepTests.kt -------------------------------------------------------------------------------- /src/test/kotlin/com/amazon/opendistroforelasticsearch/indexmanagement/indexstatemanagement/step/AttemptTransitionStepTests.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opendistro-for-elasticsearch/index-management/HEAD/src/test/kotlin/com/amazon/opendistroforelasticsearch/indexmanagement/indexstatemanagement/step/AttemptTransitionStepTests.kt -------------------------------------------------------------------------------- /src/test/kotlin/com/amazon/opendistroforelasticsearch/indexmanagement/indexstatemanagement/step/SetReadOnlyStepTests.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opendistro-for-elasticsearch/index-management/HEAD/src/test/kotlin/com/amazon/opendistroforelasticsearch/indexmanagement/indexstatemanagement/step/SetReadOnlyStepTests.kt -------------------------------------------------------------------------------- /src/test/kotlin/com/amazon/opendistroforelasticsearch/indexmanagement/indexstatemanagement/step/SetReadWriteStepTests.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opendistro-for-elasticsearch/index-management/HEAD/src/test/kotlin/com/amazon/opendistroforelasticsearch/indexmanagement/indexstatemanagement/step/SetReadWriteStepTests.kt -------------------------------------------------------------------------------- /src/test/kotlin/com/amazon/opendistroforelasticsearch/indexmanagement/indexstatemanagement/step/WaitForRollupCompletionStepTests.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opendistro-for-elasticsearch/index-management/HEAD/src/test/kotlin/com/amazon/opendistroforelasticsearch/indexmanagement/indexstatemanagement/step/WaitForRollupCompletionStepTests.kt -------------------------------------------------------------------------------- /src/test/kotlin/com/amazon/opendistroforelasticsearch/indexmanagement/indexstatemanagement/step/WaitForSnapshotStepTests.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opendistro-for-elasticsearch/index-management/HEAD/src/test/kotlin/com/amazon/opendistroforelasticsearch/indexmanagement/indexstatemanagement/step/WaitForSnapshotStepTests.kt -------------------------------------------------------------------------------- /src/test/kotlin/com/amazon/opendistroforelasticsearch/indexmanagement/indexstatemanagement/transport/action/ActionTests.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opendistro-for-elasticsearch/index-management/HEAD/src/test/kotlin/com/amazon/opendistroforelasticsearch/indexmanagement/indexstatemanagement/transport/action/ActionTests.kt -------------------------------------------------------------------------------- /src/test/kotlin/com/amazon/opendistroforelasticsearch/indexmanagement/indexstatemanagement/transport/action/ISMStatusResponseTests.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opendistro-for-elasticsearch/index-management/HEAD/src/test/kotlin/com/amazon/opendistroforelasticsearch/indexmanagement/indexstatemanagement/transport/action/ISMStatusResponseTests.kt -------------------------------------------------------------------------------- /src/test/kotlin/com/amazon/opendistroforelasticsearch/indexmanagement/indexstatemanagement/transport/action/addpolicy/AddPolicyRequestTests.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opendistro-for-elasticsearch/index-management/HEAD/src/test/kotlin/com/amazon/opendistroforelasticsearch/indexmanagement/indexstatemanagement/transport/action/addpolicy/AddPolicyRequestTests.kt -------------------------------------------------------------------------------- /src/test/kotlin/com/amazon/opendistroforelasticsearch/indexmanagement/indexstatemanagement/transport/action/changepolicy/ChangePolicyRequestTests.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opendistro-for-elasticsearch/index-management/HEAD/src/test/kotlin/com/amazon/opendistroforelasticsearch/indexmanagement/indexstatemanagement/transport/action/changepolicy/ChangePolicyRequestTests.kt -------------------------------------------------------------------------------- /src/test/kotlin/com/amazon/opendistroforelasticsearch/indexmanagement/indexstatemanagement/transport/action/deletepolicy/DeletePolicyRequestTests.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opendistro-for-elasticsearch/index-management/HEAD/src/test/kotlin/com/amazon/opendistroforelasticsearch/indexmanagement/indexstatemanagement/transport/action/deletepolicy/DeletePolicyRequestTests.kt -------------------------------------------------------------------------------- /src/test/kotlin/com/amazon/opendistroforelasticsearch/indexmanagement/indexstatemanagement/transport/action/explain/ExplainRequestTests.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opendistro-for-elasticsearch/index-management/HEAD/src/test/kotlin/com/amazon/opendistroforelasticsearch/indexmanagement/indexstatemanagement/transport/action/explain/ExplainRequestTests.kt -------------------------------------------------------------------------------- /src/test/kotlin/com/amazon/opendistroforelasticsearch/indexmanagement/indexstatemanagement/transport/action/explain/ExplainResponseTests.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opendistro-for-elasticsearch/index-management/HEAD/src/test/kotlin/com/amazon/opendistroforelasticsearch/indexmanagement/indexstatemanagement/transport/action/explain/ExplainResponseTests.kt -------------------------------------------------------------------------------- /src/test/kotlin/com/amazon/opendistroforelasticsearch/indexmanagement/indexstatemanagement/transport/action/getpolicy/GetPoliciesRequestTests.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opendistro-for-elasticsearch/index-management/HEAD/src/test/kotlin/com/amazon/opendistroforelasticsearch/indexmanagement/indexstatemanagement/transport/action/getpolicy/GetPoliciesRequestTests.kt -------------------------------------------------------------------------------- /src/test/kotlin/com/amazon/opendistroforelasticsearch/indexmanagement/indexstatemanagement/transport/action/getpolicy/GetPoliciesResponseTests.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opendistro-for-elasticsearch/index-management/HEAD/src/test/kotlin/com/amazon/opendistroforelasticsearch/indexmanagement/indexstatemanagement/transport/action/getpolicy/GetPoliciesResponseTests.kt -------------------------------------------------------------------------------- /src/test/kotlin/com/amazon/opendistroforelasticsearch/indexmanagement/indexstatemanagement/transport/action/getpolicy/GetPolicyRequestTests.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opendistro-for-elasticsearch/index-management/HEAD/src/test/kotlin/com/amazon/opendistroforelasticsearch/indexmanagement/indexstatemanagement/transport/action/getpolicy/GetPolicyRequestTests.kt -------------------------------------------------------------------------------- /src/test/kotlin/com/amazon/opendistroforelasticsearch/indexmanagement/indexstatemanagement/transport/action/getpolicy/GetPolicyResponseTests.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opendistro-for-elasticsearch/index-management/HEAD/src/test/kotlin/com/amazon/opendistroforelasticsearch/indexmanagement/indexstatemanagement/transport/action/getpolicy/GetPolicyResponseTests.kt -------------------------------------------------------------------------------- /src/test/kotlin/com/amazon/opendistroforelasticsearch/indexmanagement/indexstatemanagement/transport/action/indexpolicy/IndexPolicyRequestTests.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opendistro-for-elasticsearch/index-management/HEAD/src/test/kotlin/com/amazon/opendistroforelasticsearch/indexmanagement/indexstatemanagement/transport/action/indexpolicy/IndexPolicyRequestTests.kt -------------------------------------------------------------------------------- /src/test/kotlin/com/amazon/opendistroforelasticsearch/indexmanagement/indexstatemanagement/transport/action/indexpolicy/IndexPolicyResponseTests.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opendistro-for-elasticsearch/index-management/HEAD/src/test/kotlin/com/amazon/opendistroforelasticsearch/indexmanagement/indexstatemanagement/transport/action/indexpolicy/IndexPolicyResponseTests.kt -------------------------------------------------------------------------------- /src/test/kotlin/com/amazon/opendistroforelasticsearch/indexmanagement/indexstatemanagement/transport/action/removepolicy/RemovePolicyRequestTests.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opendistro-for-elasticsearch/index-management/HEAD/src/test/kotlin/com/amazon/opendistroforelasticsearch/indexmanagement/indexstatemanagement/transport/action/removepolicy/RemovePolicyRequestTests.kt -------------------------------------------------------------------------------- /src/test/kotlin/com/amazon/opendistroforelasticsearch/indexmanagement/indexstatemanagement/transport/action/retryfailedmanagedindex/RetryFailedManagedIndexRequestTests.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opendistro-for-elasticsearch/index-management/HEAD/src/test/kotlin/com/amazon/opendistroforelasticsearch/indexmanagement/indexstatemanagement/transport/action/retryfailedmanagedindex/RetryFailedManagedIndexRequestTests.kt -------------------------------------------------------------------------------- /src/test/kotlin/com/amazon/opendistroforelasticsearch/indexmanagement/indexstatemanagement/util/ManagedIndexUtilsTests.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opendistro-for-elasticsearch/index-management/HEAD/src/test/kotlin/com/amazon/opendistroforelasticsearch/indexmanagement/indexstatemanagement/util/ManagedIndexUtilsTests.kt -------------------------------------------------------------------------------- /src/test/kotlin/com/amazon/opendistroforelasticsearch/indexmanagement/refreshanalyzer/RefreshSearchAnalyzerActionIT.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opendistro-for-elasticsearch/index-management/HEAD/src/test/kotlin/com/amazon/opendistroforelasticsearch/indexmanagement/refreshanalyzer/RefreshSearchAnalyzerActionIT.kt -------------------------------------------------------------------------------- /src/test/kotlin/com/amazon/opendistroforelasticsearch/indexmanagement/refreshanalyzer/RefreshSearchAnalyzerResponseTests.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opendistro-for-elasticsearch/index-management/HEAD/src/test/kotlin/com/amazon/opendistroforelasticsearch/indexmanagement/refreshanalyzer/RefreshSearchAnalyzerResponseTests.kt -------------------------------------------------------------------------------- /src/test/kotlin/com/amazon/opendistroforelasticsearch/indexmanagement/refreshanalyzer/RefreshSearchAnalyzerShardResponseTests.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opendistro-for-elasticsearch/index-management/HEAD/src/test/kotlin/com/amazon/opendistroforelasticsearch/indexmanagement/refreshanalyzer/RefreshSearchAnalyzerShardResponseTests.kt -------------------------------------------------------------------------------- /src/test/kotlin/com/amazon/opendistroforelasticsearch/indexmanagement/refreshanalyzer/RestRefreshSearchAnalyzerActionIT.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opendistro-for-elasticsearch/index-management/HEAD/src/test/kotlin/com/amazon/opendistroforelasticsearch/indexmanagement/refreshanalyzer/RestRefreshSearchAnalyzerActionIT.kt -------------------------------------------------------------------------------- /src/test/kotlin/com/amazon/opendistroforelasticsearch/indexmanagement/rollup/RollupMapperServiceTests.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opendistro-for-elasticsearch/index-management/HEAD/src/test/kotlin/com/amazon/opendistroforelasticsearch/indexmanagement/rollup/RollupMapperServiceTests.kt -------------------------------------------------------------------------------- /src/test/kotlin/com/amazon/opendistroforelasticsearch/indexmanagement/rollup/RollupMetadataServiceTests.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opendistro-for-elasticsearch/index-management/HEAD/src/test/kotlin/com/amazon/opendistroforelasticsearch/indexmanagement/rollup/RollupMetadataServiceTests.kt -------------------------------------------------------------------------------- /src/test/kotlin/com/amazon/opendistroforelasticsearch/indexmanagement/rollup/RollupRestTestCase.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opendistro-for-elasticsearch/index-management/HEAD/src/test/kotlin/com/amazon/opendistroforelasticsearch/indexmanagement/rollup/RollupRestTestCase.kt -------------------------------------------------------------------------------- /src/test/kotlin/com/amazon/opendistroforelasticsearch/indexmanagement/rollup/TestHelpers.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opendistro-for-elasticsearch/index-management/HEAD/src/test/kotlin/com/amazon/opendistroforelasticsearch/indexmanagement/rollup/TestHelpers.kt -------------------------------------------------------------------------------- /src/test/kotlin/com/amazon/opendistroforelasticsearch/indexmanagement/rollup/action/ActionTests.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opendistro-for-elasticsearch/index-management/HEAD/src/test/kotlin/com/amazon/opendistroforelasticsearch/indexmanagement/rollup/action/ActionTests.kt -------------------------------------------------------------------------------- /src/test/kotlin/com/amazon/opendistroforelasticsearch/indexmanagement/rollup/action/RequestTests.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opendistro-for-elasticsearch/index-management/HEAD/src/test/kotlin/com/amazon/opendistroforelasticsearch/indexmanagement/rollup/action/RequestTests.kt -------------------------------------------------------------------------------- /src/test/kotlin/com/amazon/opendistroforelasticsearch/indexmanagement/rollup/action/ResponseTests.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opendistro-for-elasticsearch/index-management/HEAD/src/test/kotlin/com/amazon/opendistroforelasticsearch/indexmanagement/rollup/action/ResponseTests.kt -------------------------------------------------------------------------------- /src/test/kotlin/com/amazon/opendistroforelasticsearch/indexmanagement/rollup/actionfilter/FieldCapsFilterIT.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opendistro-for-elasticsearch/index-management/HEAD/src/test/kotlin/com/amazon/opendistroforelasticsearch/indexmanagement/rollup/actionfilter/FieldCapsFilterIT.kt -------------------------------------------------------------------------------- /src/test/kotlin/com/amazon/opendistroforelasticsearch/indexmanagement/rollup/actionfilter/FieldCapsFilterTests.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opendistro-for-elasticsearch/index-management/HEAD/src/test/kotlin/com/amazon/opendistroforelasticsearch/indexmanagement/rollup/actionfilter/FieldCapsFilterTests.kt -------------------------------------------------------------------------------- /src/test/kotlin/com/amazon/opendistroforelasticsearch/indexmanagement/rollup/actionfilter/SerDeTests.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opendistro-for-elasticsearch/index-management/HEAD/src/test/kotlin/com/amazon/opendistroforelasticsearch/indexmanagement/rollup/actionfilter/SerDeTests.kt -------------------------------------------------------------------------------- /src/test/kotlin/com/amazon/opendistroforelasticsearch/indexmanagement/rollup/interceptor/RollupInterceptorIT.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opendistro-for-elasticsearch/index-management/HEAD/src/test/kotlin/com/amazon/opendistroforelasticsearch/indexmanagement/rollup/interceptor/RollupInterceptorIT.kt -------------------------------------------------------------------------------- /src/test/kotlin/com/amazon/opendistroforelasticsearch/indexmanagement/rollup/model/DimensionTests.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opendistro-for-elasticsearch/index-management/HEAD/src/test/kotlin/com/amazon/opendistroforelasticsearch/indexmanagement/rollup/model/DimensionTests.kt -------------------------------------------------------------------------------- /src/test/kotlin/com/amazon/opendistroforelasticsearch/indexmanagement/rollup/model/ISMRollupTests.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opendistro-for-elasticsearch/index-management/HEAD/src/test/kotlin/com/amazon/opendistroforelasticsearch/indexmanagement/rollup/model/ISMRollupTests.kt -------------------------------------------------------------------------------- /src/test/kotlin/com/amazon/opendistroforelasticsearch/indexmanagement/rollup/model/RollupFieldMappingTests.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opendistro-for-elasticsearch/index-management/HEAD/src/test/kotlin/com/amazon/opendistroforelasticsearch/indexmanagement/rollup/model/RollupFieldMappingTests.kt -------------------------------------------------------------------------------- /src/test/kotlin/com/amazon/opendistroforelasticsearch/indexmanagement/rollup/model/RollupMetricsTests.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opendistro-for-elasticsearch/index-management/HEAD/src/test/kotlin/com/amazon/opendistroforelasticsearch/indexmanagement/rollup/model/RollupMetricsTests.kt -------------------------------------------------------------------------------- /src/test/kotlin/com/amazon/opendistroforelasticsearch/indexmanagement/rollup/model/RollupTests.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opendistro-for-elasticsearch/index-management/HEAD/src/test/kotlin/com/amazon/opendistroforelasticsearch/indexmanagement/rollup/model/RollupTests.kt -------------------------------------------------------------------------------- /src/test/kotlin/com/amazon/opendistroforelasticsearch/indexmanagement/rollup/model/WriteableTests.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opendistro-for-elasticsearch/index-management/HEAD/src/test/kotlin/com/amazon/opendistroforelasticsearch/indexmanagement/rollup/model/WriteableTests.kt -------------------------------------------------------------------------------- /src/test/kotlin/com/amazon/opendistroforelasticsearch/indexmanagement/rollup/model/XContentTests.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opendistro-for-elasticsearch/index-management/HEAD/src/test/kotlin/com/amazon/opendistroforelasticsearch/indexmanagement/rollup/model/XContentTests.kt -------------------------------------------------------------------------------- /src/test/kotlin/com/amazon/opendistroforelasticsearch/indexmanagement/rollup/resthandler/RestDeleteRollupActionIT.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opendistro-for-elasticsearch/index-management/HEAD/src/test/kotlin/com/amazon/opendistroforelasticsearch/indexmanagement/rollup/resthandler/RestDeleteRollupActionIT.kt -------------------------------------------------------------------------------- /src/test/kotlin/com/amazon/opendistroforelasticsearch/indexmanagement/rollup/resthandler/RestExplainRollupActionIT.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opendistro-for-elasticsearch/index-management/HEAD/src/test/kotlin/com/amazon/opendistroforelasticsearch/indexmanagement/rollup/resthandler/RestExplainRollupActionIT.kt -------------------------------------------------------------------------------- /src/test/kotlin/com/amazon/opendistroforelasticsearch/indexmanagement/rollup/resthandler/RestGetRollupActionIT.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opendistro-for-elasticsearch/index-management/HEAD/src/test/kotlin/com/amazon/opendistroforelasticsearch/indexmanagement/rollup/resthandler/RestGetRollupActionIT.kt -------------------------------------------------------------------------------- /src/test/kotlin/com/amazon/opendistroforelasticsearch/indexmanagement/rollup/resthandler/RestIndexRollupActionIT.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opendistro-for-elasticsearch/index-management/HEAD/src/test/kotlin/com/amazon/opendistroforelasticsearch/indexmanagement/rollup/resthandler/RestIndexRollupActionIT.kt -------------------------------------------------------------------------------- /src/test/kotlin/com/amazon/opendistroforelasticsearch/indexmanagement/rollup/resthandler/RestStartRollupActionIT.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opendistro-for-elasticsearch/index-management/HEAD/src/test/kotlin/com/amazon/opendistroforelasticsearch/indexmanagement/rollup/resthandler/RestStartRollupActionIT.kt -------------------------------------------------------------------------------- /src/test/kotlin/com/amazon/opendistroforelasticsearch/indexmanagement/rollup/resthandler/RestStopRollupActionIT.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opendistro-for-elasticsearch/index-management/HEAD/src/test/kotlin/com/amazon/opendistroforelasticsearch/indexmanagement/rollup/resthandler/RestStopRollupActionIT.kt -------------------------------------------------------------------------------- /src/test/kotlin/com/amazon/opendistroforelasticsearch/indexmanagement/rollup/runner/RollupRunnerIT.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opendistro-for-elasticsearch/index-management/HEAD/src/test/kotlin/com/amazon/opendistroforelasticsearch/indexmanagement/rollup/runner/RollupRunnerIT.kt -------------------------------------------------------------------------------- /src/test/kotlin/com/amazon/opendistroforelasticsearch/indexmanagement/rollup/util/RollupUtilsTests.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opendistro-for-elasticsearch/index-management/HEAD/src/test/kotlin/com/amazon/opendistroforelasticsearch/indexmanagement/rollup/util/RollupUtilsTests.kt -------------------------------------------------------------------------------- /src/test/kotlin/com/amazon/opendistroforelasticsearch/indexmanagement/util/IndexUtilsTests.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opendistro-for-elasticsearch/index-management/HEAD/src/test/kotlin/com/amazon/opendistroforelasticsearch/indexmanagement/util/IndexUtilsTests.kt -------------------------------------------------------------------------------- /src/test/resources/data/nyc_5000.ndjson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opendistro-for-elasticsearch/index-management/HEAD/src/test/resources/data/nyc_5000.ndjson -------------------------------------------------------------------------------- /src/test/resources/index-management/opendistro-index-management-1.13.2.0.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opendistro-for-elasticsearch/index-management/HEAD/src/test/resources/index-management/opendistro-index-management-1.13.2.0.zip -------------------------------------------------------------------------------- /src/test/resources/job-scheduler/opendistro-job-scheduler-1.13.0.0.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opendistro-for-elasticsearch/index-management/HEAD/src/test/resources/job-scheduler/opendistro-job-scheduler-1.13.0.0.zip -------------------------------------------------------------------------------- /src/test/resources/mappings/cached-opendistro-ism-config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opendistro-for-elasticsearch/index-management/HEAD/src/test/resources/mappings/cached-opendistro-ism-config.json -------------------------------------------------------------------------------- /src/test/resources/mappings/cached-opendistro-ism-history.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opendistro-for-elasticsearch/index-management/HEAD/src/test/resources/mappings/cached-opendistro-ism-history.json -------------------------------------------------------------------------------- /src/test/resources/mappings/kibana-sample-data.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opendistro-for-elasticsearch/index-management/HEAD/src/test/resources/mappings/kibana-sample-data.json -------------------------------------------------------------------------------- /src/test/resources/security/esnode-key.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opendistro-for-elasticsearch/index-management/HEAD/src/test/resources/security/esnode-key.pem -------------------------------------------------------------------------------- /src/test/resources/security/esnode.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opendistro-for-elasticsearch/index-management/HEAD/src/test/resources/security/esnode.pem -------------------------------------------------------------------------------- /src/test/resources/security/kirk-key.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opendistro-for-elasticsearch/index-management/HEAD/src/test/resources/security/kirk-key.pem -------------------------------------------------------------------------------- /src/test/resources/security/kirk.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opendistro-for-elasticsearch/index-management/HEAD/src/test/resources/security/kirk.pem -------------------------------------------------------------------------------- /src/test/resources/security/root-ca.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opendistro-for-elasticsearch/index-management/HEAD/src/test/resources/security/root-ca.pem -------------------------------------------------------------------------------- /src/test/resources/security/sample.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opendistro-for-elasticsearch/index-management/HEAD/src/test/resources/security/sample.pem -------------------------------------------------------------------------------- /src/test/resources/security/test-kirk.jks: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opendistro-for-elasticsearch/index-management/HEAD/src/test/resources/security/test-kirk.jks -------------------------------------------------------------------------------- /worksheets/ism/create.http: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opendistro-for-elasticsearch/index-management/HEAD/worksheets/ism/create.http -------------------------------------------------------------------------------- /worksheets/rollups/comparisons.http: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opendistro-for-elasticsearch/index-management/HEAD/worksheets/rollups/comparisons.http -------------------------------------------------------------------------------- /worksheets/rollups/create.http: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opendistro-for-elasticsearch/index-management/HEAD/worksheets/rollups/create.http -------------------------------------------------------------------------------- /worksheets/rollups/kibana_sample_data.http: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opendistro-for-elasticsearch/index-management/HEAD/worksheets/rollups/kibana_sample_data.http -------------------------------------------------------------------------------- /worksheets/rollups/search_test.http: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opendistro-for-elasticsearch/index-management/HEAD/worksheets/rollups/search_test.http -------------------------------------------------------------------------------- /worksheets/rollups/secured/nyc.http: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opendistro-for-elasticsearch/index-management/HEAD/worksheets/rollups/secured/nyc.http -------------------------------------------------------------------------------- /worksheets/rollups/secured/security_calls.http: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opendistro-for-elasticsearch/index-management/HEAD/worksheets/rollups/secured/security_calls.http -------------------------------------------------------------------------------- /worksheets/rollups/secured/security_setup.http: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opendistro-for-elasticsearch/index-management/HEAD/worksheets/rollups/secured/security_setup.http -------------------------------------------------------------------------------- /worksheets/rollups/unsecured/nyc.http: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opendistro-for-elasticsearch/index-management/HEAD/worksheets/rollups/unsecured/nyc.http --------------------------------------------------------------------------------